diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..74b70987b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +--- +version: 2 +updates: + # When the Dependabot ignore-manifests issue is fixed, we can just ignore the + # /lessons directory only: + # https://github.com/dependabot/dependabot-core/issues/4364 + - package-ecosystem: "pip" + directory: "/scripts" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/.github" + schedule: + interval: "weekly" diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 000000000..9b5ff989c --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,64 @@ +--- +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + push: + branches: ["gh-pages"] + workflow_dispatch: + +permissions: + contents: read + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + # Generate event posts by reading them from the UofTCoders/Events issues. + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.12 + - name: Install pipenv + run: pip install pipenv + - name: Publish events + working-directory: scripts + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + pipenv install + pipenv run publish_events + + - name: Setup Pages + uses: actions/configure-pages@v4 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + deploy: + permissions: + contents: read + pages: write + id-token: write + + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index c2487f29a..803b49eb0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,9 @@ +_site/ + +# Google calendar secret key client_secret.json + +.Rproj.user +_emails/ +.Rbuildignore + diff --git a/.here b/.here new file mode 100644 index 000000000..e69de29bb diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..a17266918 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,138 @@ +--- +layout: page +title: Contributing to UofT Coders +--- +Welcome to the Contributing guideline for UofT Coders. Thanks for taking the time to contribute! + +The following is a set of guidelines for contributing to the UofT Coders community, whether it be by teaching a lesson, fixing the website, helping to plan and organize our various events, or taking on a leadership role. + +### Table of Contents + +1. [About UofT Coders](#about-uoft-coders) + - [Code of Conduct](#code-of-conduct) + +2. [How You Can Contribute](#how-you-can-contribute) + - [Leading a Lesson](#leading-a-lesson) + - [Creating the Content](#creating-the-content) + - [Teaching in Class](#teaching-in-class) + - [Fixing and Updating the Website](#fixing-and-updating-the-website) + - [Other Ways to Get Involved](#other-ways-to-get-involved) + +----- +# About UofT Coders + +UofT Coders was formed to share and learn about coding techniques and +best practices for computing and analysis in research. We hold weekly sessions +in the format of code-alongs, coworking sessions or journal clubs/discussions. +To see our previous and upcoming events, you can visit our [Events repo](https://github.com/UofTCoders/Events/issues) or [website](https://uoftcoders.github.io/studyGroup/#events). +To learn more about our group, you can read our [constitution](https://github.com/UofTCoders/council/blob/master/Constitution.md). + +## Code of Conduct + +We adhere to a [Code of Conduct](https://github.com/UofTCoders/studyGroup/blob/gh-pages/codeOfConduct.md) +and by participating, you agree to also uphold this code. Please report any +unacceptable behaviour to uoftcoders@gmail.com. If you feel that a member of +the executive team has been violating the Code of Conduct, please email +groups.officer@utoronto.ca to report. + +----- +# How You Can Contribute + +## Leading a Lesson + +The Mozilla Study Group +handbook [**here**](https://mozillascience.github.io/studyGroupHandbook/lessons.html#reuse) +and [**here**](https://mozillascience.github.io/studyGroupHandbook/event-types.html#workalong) +has several very good points about making a lesson. This section summarizes bits +of the handbook, but also adds pieces that are missing from it. Check out the +[lesson bank too](https://github.com/mozillascience/studyGroupLessons/issues). + +### Creating the Content + ++ **Minimal use of slides**: The most effective sessions are ones that are very +hands-on. We strongly encourage [*live-coding*](#more-on-live-coding) as a +teaching method; it's best to keep slides to a minimum or avoid them completely. ++ **Keep in mind beginners**: Make few assumptions about the knowledge of the audience, +unless specified that this is an intermediate level lesson, requiring prior knowledge. +Keep it simple. Don't attempt to cover too much material in a single session. ++ **Use Built-in Datasets**: Use built-in sample datasets instead of requiring +attendees to download files. ++ **Code Review**: The lesson code is posted to GitHub along with a pull request to +[UofTCoders/studyGroup](https://github.com/UofTCoders/studyGroup) repository at +least 1 full day prior to the lesson date to allow for review. +See [Submitting a Pull Request](https://uoftcoders.github.io/studyGroup/pull-request/) + +#### More on Live-Coding + +Live-coding is a hands-on method of teaching coding to a group in which the instructor +shares their screen with the group and types all commands on their computer while the +group follows along. Live-coding is a very effective teaching technique: it forces the +instructor to go slowly and ensures that participants get to try out every command +being used. It allows learners to experience common errors themselves and debug them +in a supportive environment, to explore variations on material as they go, and to +immediately check their understanding by trying things hands-on. + +Live-coding is a technique used by [Software Carpentry](https://software-carpentry.org/about/). +Software Carpentry has lots of great resources explaining the why and how of live-coding: ++ [10 tips and tricks for instructing and teaching by means of live coding](https://software-carpentry.org/blog/2016/04/tips-tricks-live-coding.html) ++ The Software Carpentry [instructor training manual](http://carpentries.github.io/instructor-training/) +includes many resources about programming education. + +To see live-coding in action in the UofT Coders group, watch a portion of the +[Intro to R livestream](https://www.youtube.com/watch?v=b74V54VFL98) taught by +[Ahmed](https://github.com/aays), or look over the code that was covered in an +[R lesson](https://github.com/UofTCoders/studyGroup/blob/gh-pages/lessons/r/intro/Intro_R_Sept21.R) +created by [Luke](https://github.com/lwjohnst86). + +### Teaching in Class + ++ **Arrive early**: Come 10 minutes before the lesson starts to set up. ++ **Introduce yourself**: Start by introducing yourself and perhaps why you're teaching this lesson. ++ **Stay on time**: Keep mindful of the time, lessons are 50-60 minutes long. ++ **Start from the very beginning**: Briefly explain all aspects of the what you are doing when live-coding including: + - show how to open the program or IDE (e.g. RStudio/Jupyter Notebook/Shell or Terminal/etc) + - how to run code (e.g. press `Shift+Enter` in the Jupyter Notebook) + - if this is an intro lesson, explain the concept of an IDE or shell + - importing modules and packages such as `import numpy as np` or `library(dplyr)` + ++ **Live-coding**: Use of slides is minimal, majority of lesson involves writing the code WITH the audience during the lesson ++ **Stay on topic**: There is only one hour, if a question arises that is off-topic, you can always suggest discussing afterwards. ++ **Check in with participants**: We distribute coloured sticky notes to each +participant so that they can flag problems with one colour and success with +another colour. Use these indicators to stay aware of your pacing and where the group is at, +and/or verbally ask how everyone is doing and leave time for questions. + +----- + +## Fixing and updating the website + +There are two ways of fixing or adding to the website, either by: + +- Creating an [Issue](https://github.com/UofTCoders/studyGroup/issues/new) +describing the problem or enhancement. This is technically not doing anything +yourself, just recommending something to be done. +- Submitting a Pull Request from a clone of this repo. This way takes a bit more work and requires knowledge of Git and likely HTML. But we + would appreciate any help! No harm in giving it a try! That's a beauty of using Git, it's hard to mess up and break something. + +If you want to view the website before submitting a Pull Request to make sure +your changes are as you expect, you'll need to: + +- Install Jekyll by following these [instructions](https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/). +- To build the site locally, run `jekyll serve`. +- The built site can also be viewed at your forked version +(`https:://yourusername.github.io/studyGroup`). + +---- + +## Other Ways to Get Involved + +### Helping Out at Our Events + +We hold various sessions that incorporate code-alongs, and having the help of more advanced users to help out the beginners is very much appreciated. +- If you see a session topic that is more beginner than your current level, we highly encourage you to attend anyway and help answer questions or provide more one-on-one support during lessons. +- You can also lend a hand at our co-working sessions to people who have come to work on their own projects. +- We do a call for helpers for all our Software Carpentry workshops, and we definitely wouldn't be able to run these without the help of volunteers like you! + +### Taking On A Leadership Role + +The planning and organization of our the group and our various events are done by our executive council. We hold elections every April to elect the executive council members, however, we are always open to suggestions on new roles and positions for interested members of the UofT Coders community who wish to take on more a leadership role. To read more about these positions, please see our [Council Roles](https://github.com/UofTCoders/council/blob/master/Council_Roles.md) document. diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 000000000..0f9b8fe0b --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,22 @@ +Package: studyGroup +Version: 0.0.0.9000 +Title: Website for UofTCoders +Description: Content for studyGroup website. +Encoding: UTF-8 +LazyData: true +ByteCompile: true +Imports: + yaml, + here, + purrr, + dplyr, + stringr, + lubridate, + glue, + fs, + gh, + usethis, + assertr, + readr +URL: https://github.com/SaraMati/studyGroup +BugReports: https://github.com/SaraMati/studyGroup/issues diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..255fc754d --- /dev/null +++ b/ISSUE_TEMPLATE.md @@ -0,0 +1,13 @@ + diff --git a/README.md b/README.md index 1797c14b5..3920139bc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Mozilla Study Groups ============ +[![Join the chat at https://gitter.im/UofTCoders/Lobby](https://badges.gitter.im/UofTCoders/studyGroup.svg)](https://gitter.im/UofTCoders/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + Welcome to [Mozilla Science Lab](https://www.mozillascience.org/)'s Study Group project! From here, we'll set you up with everything you need to start your own study group. ### Wait What's a 'Mozilla Study Group'? @@ -11,12 +13,14 @@ Mozilla Study Groups are fun, informal meetups of your friends and colleagues fr Welcome to our Mozilla Study Group! A few things to do & know now that you're here: - - **Watch this repo:** up in the top right, there's a button that says 'Watch'; click it, and set yourself to 'Watching'. This will send you email notifications of new discussions; if you don't want email, but would like an alert just on GitHub, change the setting in Settings -> Notification Center (Settings is the little cog in the top right). + - **Watch the [Events](https://github.com/UofTCoders/Events) repo and/or this repo:** up in the top right, there's a button that says 'Watch'; click it, and set yourself to 'Watching'. This will send you email notifications of new discussions. If you only want to be notified about events (and not any other discussion topics), watch just the [Events](https://github.com/UofTCoders/Events) repo. If you want to stay updated on all group doings, watch this repo AND the Events repo. If you don't want email, but would like an alert just on GitHub, change the setting in Settings -> Notification Center (Settings is the little cog in the top right). - **Check out the issue tracker:** click on 'issues' in the sidebar on the right; this is where all the conversations this study groups is having live. Use this space to ask questions, request events, make suggestions, or just say hi. - **Read the code of conduct:** this Study Group is for everyone - we abide by a [set of rules](https://www.mozillascience.org/code-of-conduct/) that require everyone be treated with respect. Help us make a space where everyone feels welcome, and we'll all have a better time! - **Add yourself to the website:** If you'd like to appear on the website under the 'Who we Are' section, have a look at the `_data/members.yml`; send us a pull request with an entry for yourself, or open an issue and we'll do it for you. -## For Organizers +## For Organizers/Instructors + +Check out the [`CONTRIBUTING` file](https://github.com/UofTCoders/studyGroup/blob/gh-pages/CONTRIBUTING.md) or [the page on the site](https://uoftcoders.github.io/studyGroup/CONTRIBUTING) for more details. ### It's Broken, I Need Help @@ -70,7 +74,7 @@ When you're ready to list a new event for your Study Group, follow these steps, where `YYYY-MM-DD` is the date of your event, and `word` is anything you want. 4. **Cut and paste the following into your new file:** - + ``` --- title: Study Group Meetup @@ -106,7 +110,7 @@ Your website includes a gallery of participants in your Study Group; adding peop ``` - name: their human name - affiliation: school, lab, department, business.... + degree: school, lab, department, business.... github: their GitHub handle interests: - list one to three diff --git a/_config.yml b/_config.yml index e401d5126..b3650094f 100644 --- a/_config.yml +++ b/_config.yml @@ -1,9 +1,10 @@ #Setup ~~~ #Follow these 2 steps to set up your site. +exclude: [".Rproj.user"] #Step 1: give your study group a name and a short description: -title: Our Study Group -description: "A study group." +title: University of Toronto Coders +description: "We are a group of students and researchers dedicated to learning about and sharing scientific coding techniques and knowledge in an effort to improve scientific research." #Step 2: press the green 'Commit Changes' button at the bottom of this page. @@ -16,9 +17,9 @@ description: "A study group." # Optional Configuration # None of these things need to be changed - but feel free! -titleBackground: "https://s3-us-west-2.amazonaws.com/webmaker-kits/learning%402x.jpg" -headlineSmall: "Welcome To Our Study Group!" +headlineSmall: "Welcome To The U of T Coders Group!" headlineMain: "Let's Work Together" +avatar: "img/logos/logo_icon_dark.png" # Setup Google Calendar # Usage: @@ -26,10 +27,24 @@ headlineMain: "Let's Work Together" # 2. change 'USER' in the example urls below to the username of the google account you made for your calendar # 3. set calendar_on: True. -calendar_on: False -calendar_embed_url: "https://www.google.com/calendar/embed?src=USER@gmail.com" -calendar_ical_url: "https://www.google.com/calendar/ical/USER@gmail.com/public/basic.ics" +calendar_on: True +calendar_embed_url: "https://www.google.com/calendar/embed?src=uoftcoders@gmail.com" +calendar_ical_url: "https://www.google.com/calendar/ical/uoftcoders@gmail.com/public/basic.ics" +# =============================== +# Categories for sorting lessons. +# =============================== + +languages: + - python + - r + - git + - misc + +levels: + - beginner + - intermediate + - advanced #======================================== # No touching anything below this line :) @@ -43,3 +58,4 @@ color: # Build settings markdown: kramdown permalink: pretty +future: true diff --git a/_data/admin.yml b/_data/admin.yml new file mode 100644 index 000000000..12272fc1a --- /dev/null +++ b/_data/admin.yml @@ -0,0 +1,65 @@ +--- +- name: Yeshoda Harry-Paul + position: President + degree: PhD, Cell and Systems Biology + github: YeshodaHP + interests: + - R + - Python + - Bash + +- name: Margot Lautens + position: Co-working Coordinator + degree: PhD, Molecular Genetics + github: margot-l + interests: + - R + - Python + +- name: Sophie Breitbart + position: RGASC Liaison + degree: PhD, Ecology and Evolutionary Biology + github: sbreitbart + interests: + - R + - Git + - Markdown + - Visualization + +- name: Elliott Sales de Andrade + position: Technical Admin + degree: PhD, Physics + github: QuLogic + interests: + - Fortran + - Python + - Visualization + +- name: Vicki Zhang + position: Admin + degree: PhD, Ecology and Evolutionary Biology + github: vickimzhang + interests: + - R + - Python + +- name: Madeleine Oman + position: Treasurer + degree: PhD, Ecology and Evolutionary Biology + github: MadeleineOman + interests: + - Python + - R + - Git + - Bash + - Bioinformatic workflows + - Machine learning + +- name: Denise (Denny) Maranga + position: Marketing Coordinator + degree: PhD, Ecology and Evolutionary Biology + github: souceira + interests: + - R + - Python + - Git diff --git a/_data/coffee-code.yml b/_data/coffee-code.yml new file mode 100644 index 000000000..6e06b9e9d --- /dev/null +++ b/_data/coffee-code.yml @@ -0,0 +1,92 @@ + +# Date of the event in YYYY-MM-DD format +- date: 2019-01-15 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" + + +# Date of the event in YYYY-MM-DD format +- date: 2019-01-29 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" + +# Date of the event in YYYY-MM-DD format +- date: 2019-02-12 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" + + +# Date of the event in YYYY-MM-DD format +- date: 2019-02-26 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" + + + +# Date of the event in YYYY-MM-DD format +- date: 2019-03-12 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" + + + +# Date of the event in YYYY-MM-DD format +- date: 2019-03-26 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" + + + +# Date of the event in YYYY-MM-DD format +- date: 2019-04-09 + # Start and end time for event in 24 hour HH:MM format + start_time: "9:00" + end_time: "11:00" + # Where the event will take place + location: Second Cup at Grad Room + # The URL for the location + location_url: "http://map.utoronto.ca/marker/grad_room_second_cup-313" + # Only one label that will be put into the GitHub Issue + gh_labels: "co-working" diff --git a/_data/contributors.yml b/_data/contributors.yml new file mode 100644 index 000000000..3af42b8a2 --- /dev/null +++ b/_data/contributors.yml @@ -0,0 +1,136 @@ +--- +- name: Madeleine Bonsma + degree: Physics + github: mbonsma + +- name: Lina Tran + degree: PhD, Physiology + github: linamnt + interests: + - Python + - R + +- name: Ahmed Hasan + degree: PhD, Biology + github: aays + interests: + - R + - Python + - LaTeX + +- name: Sara Mahallati + degree: PhD, Biomedical Engineering + github: SaraMati + interests: + - MATLAB + - LaTeX + - Python + +- name: James Santangelo + degree: PhD, Biology + github: James-S-Santangelo + interests: + - R + +- name: Lindsay Coome + degree: Psychology + github: lcoome + +- name: Nil Sahin + degree: Molecular Genetics + github: nsahin + +- name: Frances Wong + degree: Faculty, Biology + github: FrancesWong + interests: + - R + - Git + - Markdown + +- name: Haidy Giratallah + degree: PhD, Pharmacology + github: HaidyGiratallah + interests: + - Python + +- name: Amin Banihashemi + degree: PhD, IMS + github: ab2347 + interests: + - Python + - R + +- name: Tara Henechowicz + degree: PhD, Neuroscience + github: tarahenechowicz + interests: + - R + - Python + +- name: Kathy Chung + degree: Digital Humanities + github: chungkky + +- name: Zoe Francis + github: zoelynnfrancis + +- name: Derek Howard + github: derekhoward + interests: + - Python + +- name: Serena Jeblee + degree: Computer Science + github: sjeblee + +- name: Luke W Johnston + degree: PhD, Nutritional Sciences + github: lwjohnst86 + interests: + - R + +- name: John Ladan + degree: MMath, PhD Physics + github: jladan + interests: + - Python + - Julia + - Javascript + +- name: Abigail Cabunoc Mayes + degree: Mozilla Science Lab + github: acabunoc + +- name: Sarah Meister + github: thesarahmeister + +- name: Ian Dennis Miller + degree: PhD, Psychology + github: iandennismiller + interests: + - Python + - R + - Social Network Analysis + - LaTeX + - Flask + +- name: Dano Morrison + github: jdpigeon + +- name: Joel Östblom + degree: PhD, Biomedical Engineering + github: joelostblom + interests: + - Python + - Linux + +- name: Raul Samayoa + github: ralle123 + +- name: Brian Sutherland + github: bksutherland + +- name: Dawn Walker + degree: MI, iSchool + github: dcwalk diff --git a/_data/events.yml b/_data/events.yml new file mode 100644 index 000000000..ef63b2348 --- /dev/null +++ b/_data/events.yml @@ -0,0 +1,104 @@ + # Key is the part of the filename in _posts/ +- key: py-data-vis + # Title of event that will show up as the GH Issue title + title: "Data visualization in Python" + # Explanation of event as a paragraph form + description: "An introduction to exploring and visualizing your data in Python." + # Date of the event in YYYY-MM-DD format + date: 2023-02-01 + # Start and end time for event in 24 hour HH:MM format + start_time: "18:00" + end_time: "19:00" + # Where the event will take place + location: Discord + # The URL for the location + location_url: "https://github.com/UofTCoders/Events/issues/328" + # Packages to install, a space separating each package + # (e.g. "dplyr tidyr" or "Pandas>=0.21 Seaborn") + packages: "" + youtube_link: "" + skill_level: Beginner + # Beginner Intermediate Advanced + # R or Python + program_language: Python + # Only one label that will be put into the GitHub Issue + gh_labels: code-along + + # Key is the part of the filename in _posts/ +- key: intro-bash + # Title of event that will show up as the GH Issue title + title: "Introduction to Bash" + # Explanation of event as a paragraph form + description: "A brief overview of working at the command line in Unix environments." + # Date of the event in YYYY-MM-DD format + date: 2023-02-15 + # Start and end time for event in 24 hour HH:MM format + start_time: "18:00" + end_time: "19:00" + # Where the event will take place + location: Discord + # The URL for the location + location_url: "https://github.com/UofTCoders/Events/issues/329" + # Packages to install, a space separating each package + # (e.g. "dplyr tidyr" or "Pandas>=0.21 Seaborn") + packages: "" + youtube_link: "" + skill_level: Beginner + # Beginner Intermediate Advanced + # R or Python + program_language: Bash + # Only one label that will be put into the GitHub Issue + gh_labels: code-along + + # Key is the part of the filename in _posts/ +- key: python-numpy-pandas + # Title of event that will show up as the GH Issue title + title: "Python: Data processing with numpy and pandas" + # Explanation of event as a paragraph form + description: "A code-along demonstrating two popular libraries for data processing in Python." + # Date of the event in YYYY-MM-DD format + date: 2023-03-01 + # Start and end time for event in 24 hour HH:MM format + start_time: "18:00" + end_time: "19:00" + # Where the event will take place + location: TBA in-person + Discord + # The URL for the location + location_url: "https://github.com/UofTCoders/Events/issues/330" + # Packages to install, a space separating each package + # (e.g. "dplyr tidyr" or "Pandas>=0.21 Seaborn") + packages: "" + youtube_link: "" + skill_level: Intermediate + # Beginner Intermediate Advanced + # R or Python + program_language: Python + # Only one label that will be put into the GitHub Issue + gh_labels: code-along + + # Key is the part of the filename in _posts/ +- key: python-intro-ml + # Title of event that will show up as the GH Issue title + title: "Python: Intro to machine learning" + # Explanation of event as a paragraph form + description: "A tutorial covering basic ML topics in Python." + # Date of the event in YYYY-MM-DD format + date: 2023-03-15 + # Start and end time for event in 24 hour HH:MM format + start_time: "18:00" + end_time: "19:00" + # Where the event will take place + location: TBA in-person + Discord + # The URL for the location + location_url: "https://github.com/UofTCoders/Events/issues/331" + # Packages to install, a space separating each package + # (e.g. "dplyr tidyr" or "Pandas>=0.21 Seaborn") + packages: "" + youtube_link: "" + skill_level: Intermediate + # Beginner Intermediate Advanced + # R or Python + program_language: Python + # Only one label that will be put into the GitHub Issue + gh_labels: code-along + diff --git a/_data/members.yml b/_data/members.yml deleted file mode 100644 index db3855296..000000000 --- a/_data/members.yml +++ /dev/null @@ -1,6 +0,0 @@ -- name: Bill Mills - affiliation: Mozilla Science Lab - github: BillMills - interests: - - Programming - - Open Science diff --git a/_includes/about.html b/_includes/about.html deleted file mode 100644 index f6ca89e7c..000000000 --- a/_includes/about.html +++ /dev/null @@ -1,80 +0,0 @@ - -
-
-
-
-

About

-

Lorem ipsum dolor sit amet consectetur.

-
-
-
-
-
    -
  • -
    - -
    -
    -
    -

    2009-2011

    -

    Our Humble Beginnings

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!

    -
    -
    -
  • -
  • -
    - -
    -
    -
    -

    March 2011

    -

    An Agency is Born

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!

    -
    -
    -
  • -
  • -
    - -
    -
    -
    -

    December 2012

    -

    Transition to Full Service

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!

    -
    -
    -
  • -
  • -
    - -
    -
    -
    -

    July 2014

    -

    Phase Two Expansion

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!

    -
    -
    -
  • -
  • -
    -

    Be Part -
    Of Our -
    Story!

    -
    -
  • -
-
-
-
-
\ No newline at end of file diff --git a/_includes/clients.html b/_includes/clients.html deleted file mode 100644 index e77797f06..000000000 --- a/_includes/clients.html +++ /dev/null @@ -1,13 +0,0 @@ - - diff --git a/_includes/come-say-hi.html b/_includes/come-say-hi.html new file mode 100644 index 000000000..b9dd5774a --- /dev/null +++ b/_includes/come-say-hi.html @@ -0,0 +1,35 @@ +
+
+
+
+

Come Say Hi

+

We use GitHub to get coding help, talk about events and share files. Join us there!

+
+
+
+ +
+
+
+

We also use Google groups to send out emails of our events and weekly sessions.

+
+
+ +
+
+

We use Discord for chatting between virtual events and for co-working sessions.

+
+
+ +
+
diff --git a/_includes/contact.html b/_includes/contact.html deleted file mode 100644 index 10b33b820..000000000 --- a/_includes/contact.html +++ /dev/null @@ -1,15 +0,0 @@ -
-
-
-
-

Come Say Hi

-

We use GitHub to get coding help, talk about events and share files. Join us there!

-
-
-
- -
-
-
diff --git a/_includes/css/agency.css b/_includes/css/agency.css index c237aa9da..35c15956f 100644 --- a/_includes/css/agency.css +++ b/_includes/css/agency.css @@ -62,12 +62,16 @@ ul.events{ } .eventSub{ - color: #553982; + color: #696969; margin-left:2em; - font-style:italic; + /* font-style:italic; */ margin-bottom: 1em; } +section#come-say-hi h3.section-subheading { +color:#FFFFFF; +} + .eventTitle{ font-size:150%; } @@ -191,7 +195,7 @@ fieldset[disabled] .btn-xl.active { } .navbar-default .navbar-brand { - font-family: "Kaushan Script","Helvetica Neue",Helvetica,Arial,cursive; + font-family: 'Pacifico', "Helvetica Neue",Helvetica,Arial,cursive; color: #{{ site.color.primary }}; } @@ -257,7 +261,7 @@ fieldset[disabled] .btn-xl.active { } .navbar-default .navbar-brand { - font-size: 2em; + font-size: 2.5em; -webkit-transition: all .3s; -moz-transition: all .3s; transition: all .3s; @@ -273,7 +277,7 @@ fieldset[disabled] .btn-xl.active { } .navbar-default.navbar-shrink .navbar-brand { - font-size: 1.5em; + font-size: 1.75em; } } @@ -281,7 +285,7 @@ header { text-align: center; color: #fff; background-attachment: scroll; - background-image: url({{ site.titleBackground }}); + background-image: url(img/header1.jpg); background-position: center center; background-repeat: none; -webkit-background-size: cover; @@ -361,24 +365,24 @@ section h3.section-subheading { } } -.service-heading { +.what-we-do-heading { margin: 15px 0; text-transform: none; } -#portfolio .portfolio-item { +#what-we-do .what-we-do-item { right: 0; margin: 0 0 15px; } -#portfolio .portfolio-item .portfolio-link { +#what-we-do .what-we-do-item .what-we-do-link { display: block; position: relative; margin: 0 auto; max-width: 400px; } -#portfolio .portfolio-item .portfolio-link .portfolio-hover { +#what-we-do .what-we-do-item .what-we-do-link .what-we-do-hover { position: absolute; width: 100%; height: 100%; @@ -390,11 +394,11 @@ section h3.section-subheading { background: rgba({{ site.color.primary | hex_to_rgb | join: ',' }}, .9); } -#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover { +#what-we-do .what-we-do-item .what-we-do-link .what-we-do-hover:hover { opacity: 1; } -#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content { +#what-we-do .what-we-do-item .what-we-do-link .what-we-do-hover .what-we-do-hover-content { position: absolute; top: 50%; width: 100%; @@ -405,16 +409,16 @@ section h3.section-subheading { color: #fff; } -#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i { +#what-we-do .what-we-do-item .what-we-do-link .what-we-do-hover .what-we-do-hover-content i { margin-top: -12px; } -#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3, -#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 { +#what-we-do .what-we-do-item .what-we-do-link .what-we-do-hover .what-we-do-hover-content h3, +#what-we-do .what-we-do-item .what-we-do-link .what-we-do-hover .what-we-do-hover-content h4 { margin: 0; } -#portfolio .portfolio-item .portfolio-caption { +#what-we-do .what-we-do-item .what-we-do-caption { margin: 0 auto; padding: 25px; max-width: 400px; @@ -422,24 +426,24 @@ section h3.section-subheading { background-color: #fff; } -#portfolio .portfolio-item .portfolio-caption h4 { +#what-we-do .what-we-do-item .what-we-do-caption h4 { margin: 0; text-transform: none; } -#portfolio .portfolio-item .portfolio-caption p { +#what-we-do .what-we-do-item .what-we-do-caption p { margin: 0; font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 16px; font-style: italic; } -#portfolio * { +#what-we-do * { z-index: 2; } @media(min-width:767px) { - #portfolio .portfolio-item { + #what-we-do .what-we-do-item { margin: 0 0 30px; } } @@ -664,72 +668,68 @@ section h3.section-subheading { margin-top: 0; } -aside.clients img { - margin: 50px auto; -} - -section#contact { +section#come-say-hi { background-color: #222; - background-image: url(img/map-image.png); + background-image: url(img/newbackground.png); background-position: center; background-repeat: no-repeat; } -section#contact .section-heading { +section#come-say-hi .section-heading { color: #fff; } -section#contact .form-group { +section#come-say-hi .form-group { margin-bottom: 25px; } -section#contact .form-group input, -section#contact .form-group textarea { +section#come-say-hi .form-group input, +section#come-say-hi .form-group textarea { padding: 20px; } -section#contact .form-group input.form-control { +section#come-say-hi .form-group input.form-control { height: auto; } -section#contact .form-group textarea.form-control { +section#come-say-hi .form-group textarea.form-control { height: 236px; } -section#contact .form-control:focus { +section#come-say-hi .form-control:focus { border-color: #{{ site.color.primary }}; box-shadow: none; } -section#contact::-webkit-input-placeholder { +section#come-say-hi::-webkit-input-placeholder { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; color: #bbb; } -section#contact:-moz-placeholder { +section#come-say-hi:-moz-placeholder { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; color: #bbb; } -section#contact::-moz-placeholder { +section#come-say-hi::-moz-placeholder { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; color: #bbb; } -section#contact:-ms-input-placeholder { +section#come-say-hi:-ms-input-placeholder { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; color: #bbb; } -section#contact .text-danger { +section#come-say-hi .text-danger { color: #e74c3c; } @@ -785,7 +785,7 @@ ul.social-buttons li a:active { outline: 0; } -.portfolio-modal .modal-content { +.what-we-do-modal .modal-content { padding: 100px 0; min-height: 100%; border: 0; @@ -796,32 +796,32 @@ ul.social-buttons li a:active { box-shadow: none; } -.portfolio-modal .modal-content h2 { +.what-we-do-modal .modal-content h2 { margin-bottom: 15px; font-size: 3em; } -.portfolio-modal .modal-content p { +.what-we-do-modal .modal-content p { margin-bottom: 30px; } -.portfolio-modal .modal-content p.item-intro { +.what-we-do-modal .modal-content p.item-intro { margin: 20px 0 30px; font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 16px; font-style: italic; } -.portfolio-modal .modal-content ul.list-inline { +.what-we-do-modal .modal-content ul.list-inline { margin-top: 0; margin-bottom: 30px; } -.portfolio-modal .modal-content img { +.what-we-do-modal .modal-content img { margin-bottom: 30px; } -.portfolio-modal .close-modal { +.what-we-do-modal .close-modal { position: absolute; top: 25px; right: 25px; @@ -831,11 +831,11 @@ ul.social-buttons li a:active { cursor: pointer; } -.portfolio-modal .close-modal:hover { +.what-we-do-modal .close-modal:hover { opacity: .3; } -.portfolio-modal .close-modal .lr { +.what-we-do-modal .close-modal .lr { z-index: 1051; width: 1px; height: 75px; @@ -846,7 +846,7 @@ ul.social-buttons li a:active { transform: rotate(45deg); } -.portfolio-modal .close-modal .lr .rl { +.what-we-do-modal .close-modal .lr .rl { z-index: 1052; width: 1px; height: 75px; diff --git a/_includes/css/custom.css b/_includes/css/custom.css index f76136c5d..3dd9456f8 100644 --- a/_includes/css/custom.css +++ b/_includes/css/custom.css @@ -4,3 +4,54 @@ .team-member i.fa { font-size: 110px; } +.col-xs-offset-1half,.col-sm-offset-1half,.col-md-offset-1half,.col-lg-offset-1half{ + margin-left:12.5% +} +/* Ensure body is below navbar */ +body.no-header { + padding-top: 100px; +} +body.no-header nav.navbar { + background-color: #222; +} +/* Sticky footer: http://getbootstrap.com/examples/sticky-footer-navbar/ */ +html.sticky-footer { + position: relative; + min-height: 100%; +} +body.sticky-footer { + /* Margin bottom by footer height */ + margin-bottom: 100px; +} +body.sticky-footer footer { + position: absolute; + bottom: 0; + width: 100%; + /* Set the fixed height of the footer here */ + height: 100px; +} + +.site-avatar { + float: left; + width: 60px; + height: auto; + margin-right: 15px; + + @include mobile { + float: none; + display: block; + margin: 0 auto; + } + + img { + border-radius: 5px; + } +} + +section#come-say-hi { + padding: 100px 0; +} +section#come-say-hi h3.section-subheading { + margin-bottom: 20px; + margin-top: 40px; +} diff --git a/_includes/portfolio_grid.html b/_includes/events.html similarity index 57% rename from _includes/portfolio_grid.html rename to _includes/events.html index 465f5656b..ed76255be 100644 --- a/_includes/portfolio_grid.html +++ b/_includes/events.html @@ -1,10 +1,22 @@ - -
+ +

Events

-

Our upcoming and recent events:

+

+ Unless otherwise stated, all our events run from 5:30-7 PM, and are open to everyone + (i.e. no registration necessary, just show up!) and are held in + CDRS (Collaborative Digital Research Space, MN 3230) at the + Maanjiwe + Nendamowinan building. + The CDRS is at the north end of the third level. Once you go + through the main entrance of MN, take the elevator to the third + floor, turn left, and go all the way down the hall. The door + should be open 10-15 minutes before the lesson. + + A list of all previous events and sessions can be found on the "Past Events" page. +

@@ -20,8 +32,8 @@

Our upcoming and recent events:

{% if postyear > nowyear or postday >= nowday and postyear >= nowyear %} {% assign isEvent = 1 %}
  • - {{ post.title }}, {{ post.location }}, {{ post.date | date: "%-d %B %Y"}}, {{post.startTime | date:"%r"}} -
    {{ post.text }}
    + {{ post.title }} +
    {{ post.date | date: "%-d %B %Y"}}, {{ post.startTime | date:"%I:%M %p" }}, {{ post.location }}
    {{ post.text }}
  • {% endif %} {% endfor %} @@ -30,8 +42,8 @@

    Our upcoming and recent events:

    {% else %} {% endif %} @@ -43,10 +55,10 @@

    Our upcoming and recent events:

    {% endif %}

    Want to be notified of our upcoming events?

    -

    Head over to GitHub and watch our repository, like this:

    -
    - -
    Look in the top right-hand corner of our repo, and click 'Watching.'
    You can undo this at any time in the same place.
    +

    Head over to GitHub and watch our repository, like this:

    +
    + A screenshot of the Watch settings in the top-right of the GitHub Events repo. +
    Look in the top right-hand corner of our repo, click 'Watch' and pick 'All Activity'
    You can undo this at any time in the same place.
    {% if site.calendar_on %} diff --git a/_includes/footer.html b/_includes/footer.html index b77f16a12..15ac2e2db 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -3,7 +3,7 @@
    diff --git a/_includes/friends-and-resources.html b/_includes/friends-and-resources.html new file mode 100644 index 000000000..9524dda33 --- /dev/null +++ b/_includes/friends-and-resources.html @@ -0,0 +1,53 @@ +
    +
    +
    +
    +

    Friends and Resources

    +

    Groups and resources for coding and research

    +
    +
    +
    +
      +
    • + Software Carpentry +
      Introductory lessons on various topics in computing for research.
      +
    • +
    • + Internet Research Network +
      An interdisciplinary network of researchers at UofT studying how the rise of the Internet is changing society, politics and the economy — and vice versa.
      +
    • +
    • + The University of Toronto Association for Computer Machinery +
      The University of Toronto Association for Computer Machinery Student Chapter, affiliated with the Faculty of Information iSchool. They also host professional and research skills workshops open to people from outside iSchool.
      +
    • +
    • + Scientific Computing Fundamentals at CAMH +
      This group occasionally has an intensive several days of training in computing skills, for the most part open to UofT graduate students.
      +
    • +
    • + Map and Data Library Workshops +
      The Map & Data Library hosts workshops during the academic year, providing introductions to mapmaking in ArcGIS and QGIS, cartography, use of statistical software packages, data visualization, and creating and finding data.
      +
    • +
    • + St. George Library Workshops +
      This site (LibCal) often has workshops that teach computing and coding skills. Check often!
      +
    • +
    • + Graduate Professional Skills program +
      Like the LibCal workshops, this program often has workshops that teach computing and coding skills.
      +
    • +
    • + University of Toronto Machine Learning Club +
      Join the Machine Learning Club to work through machine learning tutorials. No pre-requisite knowledge of machine learning is required. The club will aim to encourage students to pursue and also share their interests in the field of data science and machine learning.
      +
    • +
    • + freeCodeCamp Toronto +
      Weekly meetups for community members to work on coding projects together plus technical workshops and guest speakers.
      +
    • +
    +
    +
    +
    diff --git a/_includes/head.html b/_includes/head.html index b6e24ebb7..1fef977ed 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -13,10 +13,11 @@ - + + diff --git a/_includes/header.html b/_includes/header.html index bbd33ad60..8f00e5716 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,38 +1,4 @@ - - + {% include navbar.html %}
    @@ -40,7 +6,7 @@
    {{ site.headlineSmall }}
    {{ site.headlineMain }}
    - Tell Me More + Tell Me More
    diff --git a/_includes/js.html b/_includes/js.html index df30ee404..03318ae8c 100644 --- a/_includes/js.html +++ b/_includes/js.html @@ -9,9 +9,5 @@ - - - - diff --git a/_includes/modals.html b/_includes/modals.html deleted file mode 100644 index 7002f6dcf..000000000 --- a/_includes/modals.html +++ /dev/null @@ -1,42 +0,0 @@ - - {% for post in site.posts %} - -{% endfor %} diff --git a/_includes/navbar.html b/_includes/navbar.html new file mode 100644 index 000000000..c6a7bf3f9 --- /dev/null +++ b/_includes/navbar.html @@ -0,0 +1,40 @@ + + + diff --git a/_includes/past-events.html b/_includes/past-events.html new file mode 100644 index 000000000..722078837 --- /dev/null +++ b/_includes/past-events.html @@ -0,0 +1,36 @@ + +
    +
    +
    +
    +

    Past events

    +

    + This is a list of past UofTCoders events or sessions. +

    +
    +
    +
    +
      + {% assign isEvent = 0 %} + {% for post in site.posts %} + {% capture nowyear %}{{'now' | date: '%Y'}}{% endcapture %} + {% capture postyear %}{{post.date | date: '%Y'}}{% endcapture %} + {% capture nowday %}{{'now' | date: '%j'}}{% endcapture %} + {% capture postday %}{{post.date | date: '%j'}}{% endcapture %} + {% assign postday = postday | plus: 0 %} + {% assign nowday = nowday | minus: 2 %} + {% if postyear < nowyear or postday <= nowday and postyear <= nowyear %} + {% assign isEvent = 1 %} +
    • + {{ post.title }} +
      {{ post.date | date: "%-d %B %Y"}}, {{ post.startTime | date:"%I:%M %p" }}, {{ post.location }}
      {{ post.text }}
      +
    • + {% endif %} + {% endfor %} + {% if isEvent == 0 %} + Nothing yet! Propose an event here. + {% endif %} +
    +
    +
    +
    diff --git a/_includes/team.html b/_includes/team.html deleted file mode 100644 index 011031f77..000000000 --- a/_includes/team.html +++ /dev/null @@ -1,46 +0,0 @@ - -
    -
    -
    -
    -

    Who We Are

    -

    - We're scientists, students and researchers who want to work with you! -

    -
    -
    -
    - {% for member in site.data.members %} - {% assign loopindex = forloop.index0 | modulo: 4 %} - {% if loopindex == 0 %} - {% if forloop.first == false %} -
    - {% if forloop.last == false %} -
    - {% endif %} - {% endif %} - {% endif %} -
    -
    - {% if member.github %} - -

    {{ member.name }}

    - {% else %} - -

    {{ member.name }}

    - {% endif %} -

    {{ member.affiliation }}

    - {% if member.interests %} - Interests: -
      - {% for interest in member.interests %} -
    •  {{ interest }}
    • - {% endfor %} -
    - {% endif %} -
    -
    - {% endfor %} -
    -
    -
    diff --git a/_includes/services.html b/_includes/what-we-do.html similarity index 86% rename from _includes/services.html rename to _includes/what-we-do.html index 41acd23e2..81ffc911d 100644 --- a/_includes/services.html +++ b/_includes/what-we-do.html @@ -1,5 +1,5 @@ - -
    + +
    @@ -13,7 +13,7 @@

    and you can too!

    -

    Skill Sharing

    +

    Skill Sharing

    Share your favorite coding skills and tools with your friends and colleagues in friendly, no-pressure work-alongs.

    @@ -21,7 +21,7 @@

    Skill Sharing

    -

    Co-Working

    +

    Co-Working

    Get together to work on your coding projects, help each other out and share your work.

    @@ -29,7 +29,7 @@

    Co-Working

    -

    Community Building

    +

    Community Building

    Meet new people in your field, organization or community - and find out what we can do when we work together.

    diff --git a/_includes/who-we-are.html b/_includes/who-we-are.html new file mode 100644 index 000000000..406b1da38 --- /dev/null +++ b/_includes/who-we-are.html @@ -0,0 +1,83 @@ + +
    +
    +
    +
    +

    Who We Are

    +

    + We are a diverse group hailing from multiple departments across the University and beyond. +

    +
    +
    +

    Executive council

    + {% for member in site.data.admin %} + {% assign loopindex = forloop.index0 | modulo: 3 %} + {% if loopindex == 0 %} + {% if forloop.first == false %} +
    + {% endif %} +
    +
    + {% else %} +
    + {% endif %} +
    + {% if member.github %} + +

    {{ member.name }}

    + {% else %} + +

    {{ member.name }}

    + {% endif %} +

    {{ member.position }}

    +

    {{ member.degree }}

    + {% if member.interests %} + Interests: +
      + {% for interest in member.interests %} +
    •  {{ interest }}
    • + {% endfor %} +
    + {% endif %} +
    +
    + {% if forloop.last == true %} +
    + {% endif %} + {% endfor %} +

    Contributors

    +
    + {% for member in site.data.contributors %} + {% assign loopindex = forloop.index0 | modulo: 4 %} + {% if loopindex == 0 %} + {% if forloop.first == false %} +
    + {% if forloop.last == false %} +
    + {% endif %} + {% endif %} + {% endif %} +
    +
    + {% if member.github %} + +

    {{ member.name }}

    + {% else %} + +

    {{ member.name }}

    + {% endif %} +

    {{ member.degree }}

    + {% if member.interests %} + Interests: +
      + {% for interest in member.interests %} +
    •  {{ interest }}
    • + {% endfor %} +
    + {% endif %} +
    +
    + {% endfor %} +
    +
    +
    diff --git a/_layouts/default.html b/_layouts/default.html index d16cc334e..38f1f922c 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -7,10 +7,11 @@ {% include header.html %} - {% include services.html %} - {% include portfolio_grid.html %} - {% include contact.html %} - {% include team.html %} + {% include what-we-do.html %} + {% include events.html %} + {% include come-say-hi.html %} + {% include who-we-are.html %} + {% include friends-and-resources.html %} {% include footer.html %} {% include js.html %} diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 000000000..3f11135d1 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,21 @@ + + + + {% include head.html %} + + + {% include navbar.html %} + +
    +
    +

    {{ page.title }}

    + +
    + + {{ content }} +
    +
    + {% include footer.html %} + {% include js.html %} + + diff --git a/_posts/2015-06-11-HackyHour.markdown b/_posts/2015-06-11-HackyHour.markdown new file mode 100644 index 000000000..d00351e08 --- /dev/null +++ b/_posts/2015-06-11-HackyHour.markdown @@ -0,0 +1,8 @@ +--- +title: Study Group Meetup +text: A discussion on what the commmunity would like to see happen at future Study Group meetings +location: Sammy's Multicultural Eatery & Bar, Hart House +link: https://github.com/mbonsma/studyGroup/issues/1 +date: 2015-06-11 + +--- diff --git a/_posts/2015-06-18-CodeAlong.markdown b/_posts/2015-06-18-CodeAlong.markdown new file mode 100644 index 000000000..5ceb4c2f0 --- /dev/null +++ b/_posts/2015-06-18-CodeAlong.markdown @@ -0,0 +1,7 @@ +--- +title: Introduction to Git +text: Introduction to Git code-along session +location: MP 408 +link: https://github.com/mbonsma/studyGroup/issues/5 +date: 2015-06-18 +--- diff --git a/_posts/2015-06-25-Coworking.markdown b/_posts/2015-06-25-Coworking.markdown new file mode 100644 index 000000000..c358d76a9 --- /dev/null +++ b/_posts/2015-06-25-Coworking.markdown @@ -0,0 +1,7 @@ +--- +title: Co-working session +text: Casual coding with research peers +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/1 +date: 2015-06-25 +--- diff --git a/_posts/2015-07-09-IntroToPython.markdown b/_posts/2015-07-09-IntroToPython.markdown new file mode 100644 index 000000000..5108743f9 --- /dev/null +++ b/_posts/2015-07-09-IntroToPython.markdown @@ -0,0 +1,7 @@ +--- +title: Introduction to Python +text: A beginner-friendly code along on the Python programming language +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/3 +date: 2015-07-09 +--- diff --git a/_posts/2015-07-16-Brainstorm.markdown b/_posts/2015-07-16-Brainstorm.markdown new file mode 100644 index 000000000..f5c3cb467 --- /dev/null +++ b/_posts/2015-07-16-Brainstorm.markdown @@ -0,0 +1,7 @@ +--- +title: Brainstorming session +text: Discuss the great programming challenges of your field +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/2 +date: 2015-07-16 +--- diff --git a/_posts/2015-07-23-IntroR.markdown b/_posts/2015-07-23-IntroR.markdown new file mode 100644 index 000000000..cae1c8de6 --- /dev/null +++ b/_posts/2015-07-23-IntroR.markdown @@ -0,0 +1,7 @@ +--- +title: Introduction to R via data wrangling and reproducible documents +text: Learn the basics of R with an emphasis on using knitr and dplyr +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/4 +date: 2015-07-23 +--- diff --git a/_posts/2015-07-30-IntroShiny.markdown b/_posts/2015-07-30-IntroShiny.markdown new file mode 100644 index 000000000..01887327a --- /dev/null +++ b/_posts/2015-07-30-IntroShiny.markdown @@ -0,0 +1,7 @@ +--- +title: Introduction to Shiny R +text: Learn the basics of Shiny through an interactive tutorial +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/5 +date: 2015-07-30 +--- diff --git a/_posts/2015-08-06-PythonPlotting.markdown b/_posts/2015-08-06-PythonPlotting.markdown new file mode 100644 index 000000000..6cff517a1 --- /dev/null +++ b/_posts/2015-08-06-PythonPlotting.markdown @@ -0,0 +1,7 @@ +--- +title: Plotting with Python and Matplotlib +text: A beginner's guide to plotting in Python with a focus on animations and reproducible figures +location: McLennan Physical Laboratories, room 408 +link: https://github.com/UofTCoders/Events/issues/6 +date: 2015-08-06 +--- diff --git a/_posts/2015-08-13-PlottingCoworking.markdown b/_posts/2015-08-13-PlottingCoworking.markdown new file mode 100644 index 000000000..a8489fd98 --- /dev/null +++ b/_posts/2015-08-13-PlottingCoworking.markdown @@ -0,0 +1,7 @@ +--- +title: 'Coworking session: plotting in Python and R' +text: Discuss the making of plots in Python and R with peers +location: McLennan Physical Laboratories, room 408 +link: https://github.com/UofTCoders/Events/issues/7 +date: 2015-08-13 +--- diff --git a/_posts/2015-08-20-CodingLightning1.markdown b/_posts/2015-08-20-CodingLightning1.markdown new file mode 100644 index 000000000..ae27dd2cf --- /dev/null +++ b/_posts/2015-08-20-CodingLightning1.markdown @@ -0,0 +1,7 @@ +--- +title: 'Coding lightning demos' +text: Short demos, including IPython notebook and Biopython +location: McLennan Physical Laboratories, room 408 +link: https://github.com/UofTCoders/Events/issues/8 +date: 2015-08-20 +--- diff --git a/_posts/2015-08-27-PythonUnitTesting.markdown b/_posts/2015-08-27-PythonUnitTesting.markdown new file mode 100644 index 000000000..b18689024 --- /dev/null +++ b/_posts/2015-08-27-PythonUnitTesting.markdown @@ -0,0 +1,7 @@ +--- +title: 'Intro to unit testing in Python' +text: Learn about unit testing in Python and what it's good for. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/10 +date: 2015-08-27 +--- diff --git a/_posts/2015-09-03-PlanTheNewYear.markdown b/_posts/2015-09-03-PlanTheNewYear.markdown new file mode 100644 index 000000000..0f57724a3 --- /dev/null +++ b/_posts/2015-09-03-PlanTheNewYear.markdown @@ -0,0 +1,7 @@ +--- +title: 'Hacky Hour - planning the new school year' +text: Join the discussion on what the study group should be up to in the new term +location: GSU pub +link: https://github.com/UofTCoders/Events/issues/9 +date: 2015-09-03 +--- diff --git a/_posts/2015-09-10-CoworkingReal.markdown b/_posts/2015-09-10-CoworkingReal.markdown new file mode 100644 index 000000000..021600b2b --- /dev/null +++ b/_posts/2015-09-10-CoworkingReal.markdown @@ -0,0 +1,7 @@ +--- +title: Coworking session (with real work!) +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/11 +date: 2015-09-10 +--- diff --git a/_posts/2015-09-17-WelcomeHackyHour.markdown b/_posts/2015-09-17-WelcomeHackyHour.markdown new file mode 100644 index 000000000..813d70a72 --- /dev/null +++ b/_posts/2015-09-17-WelcomeHackyHour.markdown @@ -0,0 +1,7 @@ +--- +title: Welcome Hacky Hour +text: Celebrate the start of term and meet peers who code. +location: GSU Pub, 16 Bancroft Ave +link: https://github.com/UofTCoders/Events/issues/12 +date: 2015-09-17 +--- diff --git a/_posts/2015-09-24-IntroToGit2.markdown b/_posts/2015-09-24-IntroToGit2.markdown new file mode 100644 index 000000000..f3a775a94 --- /dev/null +++ b/_posts/2015-09-24-IntroToGit2.markdown @@ -0,0 +1,7 @@ +--- +title: Introduction to Git +text: Introduction to Git code-along session - no experience necessary! +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/13 +date: 2015-09-23 +--- diff --git a/_posts/2015-10-01-MoreOnGit.markdown b/_posts/2015-10-01-MoreOnGit.markdown new file mode 100644 index 000000000..e2dd8c47b --- /dev/null +++ b/_posts/2015-10-01-MoreOnGit.markdown @@ -0,0 +1,9 @@ +--- +title: More on Git +text: More about version control and collaboration using Git, building on knowledge of basic Git commands. +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/14 +date: 2015-10-01 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2015-10-08-Coworking4.markdown b/_posts/2015-10-08-Coworking4.markdown new file mode 100644 index 000000000..91b17eb56 --- /dev/null +++ b/_posts/2015-10-08-Coworking4.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/15 +date: 2015-10-08 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2015-10-15-BasicStats.markdown b/_posts/2015-10-15-BasicStats.markdown new file mode 100644 index 000000000..1e76ee95b --- /dev/null +++ b/_posts/2015-10-15-BasicStats.markdown @@ -0,0 +1,9 @@ +--- +title: Basic Statistics +text: A primer on basic statistical concepts - no prior knowledge necessary. +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/16 +date: 2015-10-15 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2015-10-22-IntroToPython2.markdown b/_posts/2015-10-22-IntroToPython2.markdown new file mode 100644 index 000000000..d69c7df1f --- /dev/null +++ b/_posts/2015-10-22-IntroToPython2.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Python +text: A beginner-friendly code-along introducing the basics of coding in Python. +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/19 +date: 2015-10-22 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2015-10-29-Coworking5.markdown b/_posts/2015-10-29-Coworking5.markdown new file mode 100644 index 000000000..dcf4a484f --- /dev/null +++ b/_posts/2015-10-29-Coworking5.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/17 +date: 2015-10-29 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2015-11-05-CodingLightning2.markdown b/_posts/2015-11-05-CodingLightning2.markdown new file mode 100644 index 000000000..8bc16f5de --- /dev/null +++ b/_posts/2015-11-05-CodingLightning2.markdown @@ -0,0 +1,9 @@ +--- +title: Python Coding Lightning Demos +text: Short demos from a variety of people of cool things you can do in Python +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/20 +date: 2015-11-05 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2015-11-12-Coworking6.markdown b/_posts/2015-11-12-Coworking6.markdown new file mode 100644 index 000000000..871155b1e --- /dev/null +++ b/_posts/2015-11-12-Coworking6.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/21 +date: 2015-11-12 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2015-11-19-IntroR_2.markdown b/_posts/2015-11-19-IntroR_2.markdown new file mode 100644 index 000000000..17e24d146 --- /dev/null +++ b/_posts/2015-11-19-IntroR_2.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to R via data wrangling and reproducible documents +text: Learn the basics of R with an emphasis on using knitr and dplyr +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/18 +date: 2015-11-19 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2015-11-26-ggplot.markdown b/_posts/2015-11-26-ggplot.markdown new file mode 100644 index 000000000..da5e8bd0c --- /dev/null +++ b/_posts/2015-11-26-ggplot.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to ggplot2 +text: A brief introduction to the ggplot2 package and making simple graphs +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/22 +date: 2015-11-26 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2015-12-03-Coworking7.markdown b/_posts/2015-12-03-Coworking7.markdown new file mode 100644 index 000000000..026edf760 --- /dev/null +++ b/_posts/2015-12-03-Coworking7.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP 408 (Mclennan Physical Labs) +link: https://github.com/UofTCoders/Events/issues/23 +date: 2015-12-03 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2015-12-10-UnixPipelines.markdown b/_posts/2015-12-10-UnixPipelines.markdown new file mode 100644 index 000000000..9091357ab --- /dev/null +++ b/_posts/2015-12-10-UnixPipelines.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Unix Pipelines +text: An introduction to Unix pipelines and Make for data science +location: MP 408 +link: https://github.com/UofTCoders/Events/issues/24 +date: 2015-12-10 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2015-12-17-EndOfTermParty.markdown b/_posts/2015-12-17-EndOfTermParty.markdown new file mode 100644 index 000000000..2288334ff --- /dev/null +++ b/_posts/2015-12-17-EndOfTermParty.markdown @@ -0,0 +1,9 @@ +--- +title: End-of-term party +text: An informal gathering to relax at the end of Fall 2015. +location: GSU Pub, 16 Bancroft Ave +link: https://github.com/UofTCoders/Events/issues/25 +date: 2015-12-17 +startTime: '18:00' +endTime: '21:00' +--- diff --git a/_posts/2016-01-14-IntroToRuby.markdown b/_posts/2016-01-14-IntroToRuby.markdown new file mode 100644 index 000000000..ab23ab7ed --- /dev/null +++ b/_posts/2016-01-14-IntroToRuby.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Ruby +text: Beginner-friendly basics of the programming language Ruby +location: MP408 +link: https://github.com/UofTCoders/Events/issues/26 +date: 2016-01-14 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2016-01-21-PythonClasses.markdown b/_posts/2016-01-21-PythonClasses.markdown new file mode 100644 index 000000000..962189e8d --- /dev/null +++ b/_posts/2016-01-21-PythonClasses.markdown @@ -0,0 +1,9 @@ +--- +title: The "Class" Structure in Python +text: Creating and using the "class" structure in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/28 +date: 2016-01-21 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2016-01-28-Coworking8.markdown b/_posts/2016-01-28-Coworking8.markdown new file mode 100644 index 000000000..8340a9ef8 --- /dev/null +++ b/_posts/2016-01-28-Coworking8.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/27 +date: 2016-01-28 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2016-02-04-DebuggingRStudio.markdown b/_posts/2016-02-04-DebuggingRStudio.markdown new file mode 100644 index 000000000..11f90da59 --- /dev/null +++ b/_posts/2016-02-04-DebuggingRStudio.markdown @@ -0,0 +1,9 @@ +--- +title: Debugging in R Studio +text: Introduction to the debugging tools built into RStudio +location: MP408 +link: https://github.com/UofTCoders/Events/issues/30 +date: 2016-02-04 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2016-02-11-ForLoopsR.markdown b/_posts/2016-02-11-ForLoopsR.markdown new file mode 100644 index 000000000..bebae34b6 --- /dev/null +++ b/_posts/2016-02-11-ForLoopsR.markdown @@ -0,0 +1,9 @@ +--- +title: High Performance Loops in R +text: Learn the how and when to apply for loops in R +location: MP408 +link: https://github.com/UofTCoders/Events/issues/31 +date: 2016-02-11 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2016-02-18-Coworking9.markdown b/_posts/2016-02-18-Coworking9.markdown new file mode 100644 index 000000000..36dc676dd --- /dev/null +++ b/_posts/2016-02-18-Coworking9.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/32 +date: 2016-02-18 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2016-02-25-PackagesPython.markdown b/_posts/2016-02-25-PackagesPython.markdown new file mode 100644 index 000000000..3715d4af6 --- /dev/null +++ b/_posts/2016-02-25-PackagesPython.markdown @@ -0,0 +1,9 @@ +--- +title: Building Packages in Python +text: Learn how to build packages in Python for reusable code. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/34 +date: 2016-02-25 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2016-03-03-Coworking10.markdown b/_posts/2016-03-03-Coworking10.markdown new file mode 100644 index 000000000..f98b8060a --- /dev/null +++ b/_posts/2016-03-03-Coworking10.markdown @@ -0,0 +1,9 @@ +--- +title: Co-Working Session +text: Bring your projects and problems and work with peers, get help with questions, and show off your progress. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/35 +date: 2016-03-03 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2016-03-10-IntroLaTeX.markdown b/_posts/2016-03-10-IntroLaTeX.markdown new file mode 100644 index 000000000..47f35dd74 --- /dev/null +++ b/_posts/2016-03-10-IntroLaTeX.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to LaTeX +text: Learn about what LaTeX is and what it is used for and how to make your first LaTeX document. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/33 +date: 2016-03-10 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-03-17-CodeReview.markdown b/_posts/2016-03-17-CodeReview.markdown new file mode 100644 index 000000000..e80e067b2 --- /dev/null +++ b/_posts/2016-03-17-CodeReview.markdown @@ -0,0 +1,9 @@ +--- +title: Code Review and Reproducible Computational Research +text: A discussion on reproducible computational research, and reviewing each other's analysis scripts together using principles of good code review. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/36 +date: 2016-03-17 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-03-24-Coworking11.markdown b/_posts/2016-03-24-Coworking11.markdown new file mode 100644 index 000000000..e9479043c --- /dev/null +++ b/_posts/2016-03-24-Coworking11.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Bring a project to work on alongside peers. It can be research, homework, open science, or just something fun you're working on, and it's okay if it's you're just starting out. Everyone is welcome, and bring your friends! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/37 +date: 2016-03-24 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2016-03-31-GitBranch.markdown b/_posts/2016-03-31-GitBranch.markdown new file mode 100644 index 000000000..421671ea5 --- /dev/null +++ b/_posts/2016-03-31-GitBranch.markdown @@ -0,0 +1,9 @@ +--- +title: Using Branches in Git +text: Come to this code-along session to learn about how, why, and when to use branches in Git! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/39 +date: 2016-03-31 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-04-07-Coworking12.markdown b/_posts/2016-04-07-Coworking12.markdown new file mode 100644 index 000000000..17eac36e4 --- /dev/null +++ b/_posts/2016-04-07-Coworking12.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: "Come with a problem and get feedback on what tools, packages and strategies you can use to solve it! Beginners welcome and bring your friends!" +location: MP408 +link: https://github.com/UofTCoders/Events/issues/41 +date: 2016-04-07 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-04-14-GitHubPages.markdown b/_posts/2016-04-14-GitHubPages.markdown new file mode 100644 index 000000000..08e04c5c5 --- /dev/null +++ b/_posts/2016-04-14-GitHubPages.markdown @@ -0,0 +1,9 @@ +--- +title: Web design with Jekyll/Github Pages +text: Come to this code-along session for a basic introduction to using GitHub Pages and Jekyll to host a web page! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/42 +date: 2016-04-14 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-04-21-ElectionCoworking.markdown b/_posts/2016-04-21-ElectionCoworking.markdown new file mode 100644 index 000000000..c95095383 --- /dev/null +++ b/_posts/2016-04-21-ElectionCoworking.markdown @@ -0,0 +1,9 @@ +--- +title: Elections and Coworking Session +text: Participate in the elections by voting or nominating yourself for a position on the exec council; followed by pair-programming co-working session. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/44 +date: 2016-04-21 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-04-25-SwcRUnixGit.markdown b/_posts/2016-04-25-SwcRUnixGit.markdown new file mode 100644 index 000000000..50ec847a3 --- /dev/null +++ b/_posts/2016-04-25-SwcRUnixGit.markdown @@ -0,0 +1,9 @@ +--- +title: Software Carpentry Workshop (2 days) - R, Unix Shell and Git +text: "Join us for a hands-on two-day Software Carpentry workshop covering core small research team skills: programming with R, automating tasks with Unix Shell, and version control with Git. Workshop costs $20, click to see the event page for more details and registration!" +location: BL224, Claude T. Bissell Building, 140 St. George Street +link: https://uoftcoders.github.io/2016-04-25-utoronto/ +date: 2016-04-25 +startTime: '09:00' +endTime: '16:00' +--- diff --git a/_posts/2016-04-28-PandasPython.markdown b/_posts/2016-04-28-PandasPython.markdown new file mode 100644 index 000000000..47bf3e847 --- /dev/null +++ b/_posts/2016-04-28-PandasPython.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Pandas in Python +text: Learn about the data structures and analysis tools provided by Pandas in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/45 +date: 2016-04-28 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-05-05-Coworking14.markdown b/_posts/2016-05-05-Coworking14.markdown new file mode 100644 index 000000000..4197f900e --- /dev/null +++ b/_posts/2016-05-05-Coworking14.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Bring a project to work on or something you want to discuss with the group! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/48 +date: 2016-05-05 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-05-09-SwcPythonUnixGit.markdown b/_posts/2016-05-09-SwcPythonUnixGit.markdown new file mode 100644 index 000000000..b95584e25 --- /dev/null +++ b/_posts/2016-05-09-SwcPythonUnixGit.markdown @@ -0,0 +1,9 @@ +--- +title: Software Carpentry Workshop (2 days) - Python, Unix Shell and Git +text: "Join us for a hands-on two-day Software Carpentry workshop covering core small research team skills: building programs with Python, automating tasks with Unix Shell, and version control with Git. Workshop costs $20, click to see the event page for more details and registration!" +location: BL224, Claude T. Bissell Building, 140 St. George Street +link: https://uoftcoders.github.io/2016-05-09-utoronto/ +date: 2016-05-09 +startTime: '09:00' +endTime: '16:00' +--- diff --git a/_posts/2016-05-12-SpringSocial.markdown b/_posts/2016-05-12-SpringSocial.markdown new file mode 100644 index 000000000..bbe1b9dd6 --- /dev/null +++ b/_posts/2016-05-12-SpringSocial.markdown @@ -0,0 +1,9 @@ +--- +title: Hacky Hour Social +text: Mingle and get to know your fellow coders! +location: GSU Pub, second floor +link: https://github.com/UofTCoders/Events/issues/46 +date: 2016-05-12 +startTime: '18:10' +endTime: '21:00' +--- diff --git a/_posts/2016-05-19-VersionControl.markdown b/_posts/2016-05-19-VersionControl.markdown new file mode 100644 index 000000000..2f797c76b --- /dev/null +++ b/_posts/2016-05-19-VersionControl.markdown @@ -0,0 +1,9 @@ +--- +title: The Use and Philosophy of Version Control +text: Learn how and why to use version control with your projects! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/47 +date: 2016-05-19 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-05-26-IntroR.markdown b/_posts/2016-05-26-IntroR.markdown new file mode 100644 index 000000000..6a0c889ae --- /dev/null +++ b/_posts/2016-05-26-IntroR.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to R +text: Learn the basics of programming and data wrangling in R +location: MP408 +link: https://github.com/UofTCoders/Events/issues/49 +date: 2016-05-26 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-05-26-SwcRUnixGit.markdown b/_posts/2016-05-26-SwcRUnixGit.markdown new file mode 100644 index 000000000..93d3bc714 --- /dev/null +++ b/_posts/2016-05-26-SwcRUnixGit.markdown @@ -0,0 +1,11 @@ +--- +title: Software Carpentry Workshop (2 days) - R, Unix Shell and Git - for people who identify as female +text: "Join us for a hands-on two-day Software Carpentry workshop covering core small research team skills: +programming with R, automating tasks with Unix Shell, and version control with Git. +Workshop costs $20 and is open to people who identify as female. Click to see the event page for more details and registration!" +location: BL224, Claude T. Bissell Building, 140 St. George Street +link: https://uoftcoders.github.io/2016-05-26-utoronto/ +date: 2016-05-26 +startTime: '09:00' +endTime: '16:00' +--- diff --git a/_posts/2016-06-02-GlobalSprint.markdown b/_posts/2016-06-02-GlobalSprint.markdown new file mode 100644 index 000000000..0eb85d0ed --- /dev/null +++ b/_posts/2016-06-02-GlobalSprint.markdown @@ -0,0 +1,9 @@ +--- +title: Mozilla Science Lab Global Sprint +text: Collaborate on open science projects! +location: Mozilla Toronto office, 366 Adelaide St. W. +link: https://github.com/UofTCoders/Events/issues/50 +date: 2016-06-02 +startTime: '09:00' +endTime: '17:00' +--- diff --git a/_posts/2016-06-09-IntroPython.markdown b/_posts/2016-06-09-IntroPython.markdown new file mode 100644 index 000000000..f6e5cecb4 --- /dev/null +++ b/_posts/2016-06-09-IntroPython.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Python +text: Learn the basics of programming in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/51 +date: 2016-06-09 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-06-16-IntroSQL.markdown b/_posts/2016-06-16-IntroSQL.markdown new file mode 100644 index 000000000..c2a5c19df --- /dev/null +++ b/_posts/2016-06-16-IntroSQL.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to SQL +text: Learn about how to use SQL to work with data and databases +location: MP408 +link: https://github.com/UofTCoders/Events/issues/53 +date: 2016-06-16 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-06-23-AcademicWorkflows.markdown b/_posts/2016-06-23-AcademicWorkflows.markdown new file mode 100644 index 000000000..34fb46fb4 --- /dev/null +++ b/_posts/2016-06-23-AcademicWorkflows.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos - Academic Workflows +text: See how your colleagues use different tools and techniques in their academic workflows. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/54 +date: 2016-06-23 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-07-07-Coworking15.markdown b/_posts/2016-07-07-Coworking15.markdown new file mode 100644 index 000000000..d9c56baa0 --- /dev/null +++ b/_posts/2016-07-07-Coworking15.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Come work on a project and get advice on tools and strategies. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/55 +date: 2016-07-07 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-07-14-DebuggingPython.markdown b/_posts/2016-07-14-DebuggingPython.markdown new file mode 100644 index 000000000..dc915391c --- /dev/null +++ b/_posts/2016-07-14-DebuggingPython.markdown @@ -0,0 +1,9 @@ +--- +title: Debugging in Python +text: Learn to use the debugging tool for your Python code +location: MP408 +link: https://github.com/UofTCoders/Events/issues/56 +date: 2016-07-14 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-07-21-ggplot2R.markdown b/_posts/2016-07-21-ggplot2R.markdown new file mode 100644 index 000000000..92f2acbe9 --- /dev/null +++ b/_posts/2016-07-21-ggplot2R.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to ggplot2 in R +text: Basics of ggplot2 R package and simple graph making +location: MP408 +link: https://github.com/UofTCoders/Events/issues/57 +date: 2016-07-21 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-07-28-Coworking16.markdown b/_posts/2016-07-28-Coworking16.markdown new file mode 100644 index 000000000..45671cbdf --- /dev/null +++ b/_posts/2016-07-28-Coworking16.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work on a project and get suggestions and help from your peers +location: MP408 +link: https://github.com/UofTCoders/Events/issues/59 +date: 2016-07-28 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-08-04-VizDemos.markdown b/_posts/2016-08-04-VizDemos.markdown new file mode 100644 index 000000000..c2193d997 --- /dev/null +++ b/_posts/2016-08-04-VizDemos.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos Data Visualization + Pub Night +text: Quick demos showing how we visualize our data, followed by a social at GSU Pub. +location: MP408 + GSU Pub +link: https://github.com/UofTCoders/Events/issues/58 +date: 2016-08-04 +startTime: '18:10' +endTime: '21:00' +--- diff --git a/_posts/2016-08-11-Coworking17.markdown b/_posts/2016-08-11-Coworking17.markdown new file mode 100644 index 000000000..b7a00ab17 --- /dev/null +++ b/_posts/2016-08-11-Coworking17.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work on a project with the advice and suggestions of your peers +location: MP408 +link: https://github.com/UofTCoders/Events/issues/59 +date: 2016-08-11 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-08-18-PythonClasses.markdown b/_posts/2016-08-18-PythonClasses.markdown new file mode 100644 index 000000000..1025ac700 --- /dev/null +++ b/_posts/2016-08-18-PythonClasses.markdown @@ -0,0 +1,9 @@ +--- +title: Classes in Python +text: Intro to object oriented programming and the class structure in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/61 +date: 2016-08-18 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-08-25-PythonLargeDatasets.markdown b/_posts/2016-08-25-PythonLargeDatasets.markdown new file mode 100644 index 000000000..2d739a4b4 --- /dev/null +++ b/_posts/2016-08-25-PythonLargeDatasets.markdown @@ -0,0 +1,9 @@ +--- +title: Large Datasets in Python +text: How to work with large datasets in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/60 +date: 2016-08-25 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-09-07-HackyHour.markdown b/_posts/2016-09-07-HackyHour.markdown new file mode 100644 index 000000000..0e0b9d0c3 --- /dev/null +++ b/_posts/2016-09-07-HackyHour.markdown @@ -0,0 +1,9 @@ +--- +title: Welcome Hacky Hour +text: Social pub night to get to know other UofT Coders' members +location: GSU Pub Main Floor +link: https://github.com/UofTCoders/Events/issues/63 +date: 2016-09-07 +startTime: '18:00' +endTime: '21:00' +--- diff --git a/_posts/2016-09-14-IntroToPython.markdown b/_posts/2016-09-14-IntroToPython.markdown new file mode 100644 index 000000000..c5d275840 --- /dev/null +++ b/_posts/2016-09-14-IntroToPython.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Python +text: A brief introduction to Python programming +location: MP408 +link: https://github.com/UofTCoders/Events/issues/64 +date: 2016-09-14 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-09-21-IntroToR.markdown b/_posts/2016-09-21-IntroToR.markdown new file mode 100644 index 000000000..e98567ca9 --- /dev/null +++ b/_posts/2016-09-21-IntroToR.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to R +text: A brief introduction to R programming. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/65 +date: 2016-09-21 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-09-28-GitCoworking18.markdown b/_posts/2016-09-28-GitCoworking18.markdown new file mode 100644 index 000000000..236cf50d1 --- /dev/null +++ b/_posts/2016-09-28-GitCoworking18.markdown @@ -0,0 +1,9 @@ +--- +title: Git-Themed Coworking Session +text: Get help and advice about using Git with your code +location: MP408 +link: https://github.com/UofTCoders/Events/issues/66 +date: 2016-09-28 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-10-05-MappingPython.markdown b/_posts/2016-10-05-MappingPython.markdown new file mode 100644 index 000000000..46f2c5f1a --- /dev/null +++ b/_posts/2016-10-05-MappingPython.markdown @@ -0,0 +1,9 @@ +--- +title: Mapping in Python +text: An overview of cartography and mapping methods in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/76 +date: 2016-10-05 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-10-12-PackagesR.markdown b/_posts/2016-10-12-PackagesR.markdown new file mode 100644 index 000000000..a2f86ee52 --- /dev/null +++ b/_posts/2016-10-12-PackagesR.markdown @@ -0,0 +1,9 @@ +--- +title: Making Packages in R +text: Package your R code for reuse +location: MP408 +link: https://github.com/UofTCoders/Events/issues/68 +date: 2016-10-12 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-10-19-Coworking19.markdown b/_posts/2016-10-19-Coworking19.markdown new file mode 100644 index 000000000..fd900b170 --- /dev/null +++ b/_posts/2016-10-19-Coworking19.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work on your code with your colleagues +location: MP408 +link: https://github.com/UofTCoders/Events/issues/67 +date: 2016-10-19 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-10-26-IntroBash.markdown b/_posts/2016-10-26-IntroBash.markdown new file mode 100644 index 000000000..af6815927 --- /dev/null +++ b/_posts/2016-10-26-IntroBash.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Bash +text: Basic shell scripting in Bash +location: MP408 +link: https://github.com/UofTCoders/Events/issues/69 +date: 2016-10-26 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-11-02-IntroSQL.markdown b/_posts/2016-11-02-IntroSQL.markdown new file mode 100644 index 000000000..07218c036 --- /dev/null +++ b/_posts/2016-11-02-IntroSQL.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to SQL and Databases +text: Learn about databases and working with them in SQL +location: MP408 +link: https://github.com/UofTCoders/Events/issues/70 +date: 2016-11-02 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-11-09-IntroLaTeX.markdown b/_posts/2016-11-09-IntroLaTeX.markdown new file mode 100644 index 000000000..9e623d163 --- /dev/null +++ b/_posts/2016-11-09-IntroLaTeX.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to LaTeX +text: How to make documents in LaTeX +location: MP408 +link: https://github.com/UofTCoders/Events/issues/71 +date: 2016-11-09 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-11-16-CareersDiscussion.markdown b/_posts/2016-11-16-CareersDiscussion.markdown new file mode 100644 index 000000000..a390fb341 --- /dev/null +++ b/_posts/2016-11-16-CareersDiscussion.markdown @@ -0,0 +1,9 @@ +--- +title: Careers Outside Academia Discussion +text: Discussion about opportunities outside academia +location: MP408 +link: https://github.com/UofTCoders/Events/issues/72 +date: 2016-11-16 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-11-23-JekyllGithubPages.markdown b/_posts/2016-11-23-JekyllGithubPages.markdown new file mode 100644 index 000000000..28182c217 --- /dev/null +++ b/_posts/2016-11-23-JekyllGithubPages.markdown @@ -0,0 +1,9 @@ +--- +title: Web Design with Jekyll and Github Pages +text: Learn how to set up a website with Jekyll and Github Pages +location: MP408 +link: https://github.com/UofTCoders/Events/issues/74 +date: 2016-11-23 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-11-30-PandocMarkdown.markdown b/_posts/2016-11-30-PandocMarkdown.markdown new file mode 100644 index 000000000..91c9e029c --- /dev/null +++ b/_posts/2016-11-30-PandocMarkdown.markdown @@ -0,0 +1,9 @@ +--- +title: Pandoc and Markdown +text: Make your documents in markdown and convert between document types with Pandoc +location: MP408 +link: https://github.com/UofTCoders/Events/issues/73 +date: 2016-11-30 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2016-12-07-Coworking20.markdown b/_posts/2016-12-07-Coworking20.markdown new file mode 100644 index 000000000..4441c1c46 --- /dev/null +++ b/_posts/2016-12-07-Coworking20.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work on your projects with the help of your colleagues +location: MP408 +link: https://github.com/UofTCoders/Events/issues/75 +date: 2016-12-07 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2016-12-08-HackUofTCoders.markdown b/_posts/2016-12-08-HackUofTCoders.markdown new file mode 100644 index 000000000..9da081900 --- /dev/null +++ b/_posts/2016-12-08-HackUofTCoders.markdown @@ -0,0 +1,9 @@ +--- +title: Hack UofT Coders +text: Join us for an afternoon at the pub working on the website together! +location: GSU Pub (Main Floor) +link: https://github.com/UofTCoders/Events/issues/77 +date: 2016-12-08 +startTime: '15:00' +endTime: '21:00' +--- diff --git a/_posts/2017-01-11-IntroGit.markdown b/_posts/2017-01-11-IntroGit.markdown new file mode 100644 index 000000000..1e8ebf1be --- /dev/null +++ b/_posts/2017-01-11-IntroGit.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Git +text: Learn about the use and philosophy of version control with Git +location: MP408 +link: https://github.com/UofTCoders/Events/issues/79 +date: 2017-01-11 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-01-18-IntroPython.markdown b/_posts/2017-01-18-IntroPython.markdown new file mode 100644 index 000000000..45009bf63 --- /dev/null +++ b/_posts/2017-01-18-IntroPython.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Python +text: A brief introduction to programming in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/80 +date: 2017-01-18 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-01-25-Coworking21.markdown b/_posts/2017-01-25-Coworking21.markdown new file mode 100644 index 000000000..568c27010 --- /dev/null +++ b/_posts/2017-01-25-Coworking21.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Come work on a project and get advice on tools and strategies. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/81 +date: 2017-01-25 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-02-01-CodeReview.md b/_posts/2017-02-01-CodeReview.md new file mode 100644 index 000000000..d2625d59e --- /dev/null +++ b/_posts/2017-02-01-CodeReview.md @@ -0,0 +1,9 @@ +--- +title: Code Review +text: Learn about code review and then group code review will begin. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/82 +date: 2017-02-01 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-02-08-Coworking22.markdown b/_posts/2017-02-08-Coworking22.markdown new file mode 100644 index 000000000..1f5db6e44 --- /dev/null +++ b/_posts/2017-02-08-Coworking22.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Come work on a project and get advice on tools and strategies. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/85 +date: 2017-02-08 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-02-15-ggplot2.markdown b/_posts/2017-02-15-ggplot2.markdown new file mode 100644 index 000000000..59f8229ad --- /dev/null +++ b/_posts/2017-02-15-ggplot2.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to ggplot2 in R +text: ggplot2 is a great plotting package in R, learn the basics in this lesson! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/84 +date: 2017-02-15 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-02-22-collaborative-github.markdown b/_posts/2017-02-22-collaborative-github.markdown new file mode 100644 index 000000000..75832ae22 --- /dev/null +++ b/_posts/2017-02-22-collaborative-github.markdown @@ -0,0 +1,9 @@ +--- +title: Collaborating with Github +text: Learn how to use github to code collaboratively +location: MP408 +link: https://github.com/UofTCoders/Events/issues/83 +date: 2017-02-22 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-03-01-open-data.markdown b/_posts/2017-03-01-open-data.markdown new file mode 100644 index 000000000..8f000ffd0 --- /dev/null +++ b/_posts/2017-03-01-open-data.markdown @@ -0,0 +1,9 @@ +--- +title: Opening Up Your Data +text: Learn the principles of open data and how you can contribute! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/86 +date: 2017-03-01 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-03-08-ld-data-visualization.markdown b/_posts/2017-03-08-ld-data-visualization.markdown new file mode 100644 index 000000000..543693c09 --- /dev/null +++ b/_posts/2017-03-08-ld-data-visualization.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos Data Visualization +text: Quick demos on data visualizations people have made or tools and packages to use. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/87 +date: 2017-03-08 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-03-15-intro-sql.markdown b/_posts/2017-03-15-intro-sql.markdown new file mode 100644 index 000000000..2f40b6eb3 --- /dev/null +++ b/_posts/2017-03-15-intro-sql.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to SQL +text: Learn about databases and SQL +location: MP408 +link: https://github.com/UofTCoders/Events/issues/88 +date: 2017-03-15 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-03-22-coworking23.markdown b/_posts/2017-03-22-coworking23.markdown new file mode 100644 index 000000000..82e63287d --- /dev/null +++ b/_posts/2017-03-22-coworking23.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work together on your coding projects. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/89 +date: 2017-03-22 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-03-29-intermediate-R.markdown b/_posts/2017-03-29-intermediate-R.markdown new file mode 100644 index 000000000..ac3bce611 --- /dev/null +++ b/_posts/2017-03-29-intermediate-R.markdown @@ -0,0 +1,9 @@ +--- +title: Intermediate Topics in R +text: Come learn a bit more about the R language beyond an intro programming lesson. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/90 +date: 2017-03-29 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-04-05-intermediate-Python.markdown b/_posts/2017-04-05-intermediate-Python.markdown new file mode 100644 index 000000000..9868eb7dd --- /dev/null +++ b/_posts/2017-04-05-intermediate-Python.markdown @@ -0,0 +1,9 @@ +--- +title: Intermediate Topics in Python +text: Come learn a bit more about the Python language beyond an intro programming lesson. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/91 +date: 2017-04-05 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-04-12-ld-academic-workflows.markdown b/_posts/2017-04-12-ld-academic-workflows.markdown new file mode 100644 index 000000000..70524345d --- /dev/null +++ b/_posts/2017-04-12-ld-academic-workflows.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos - Academic Workflows +text: See how others analyze, visualize and communicate their research in their workflows. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/92 +date: 2017-04-12 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-04-19-coworking24.markdown b/_posts/2017-04-19-coworking24.markdown new file mode 100644 index 000000000..cd9e624f2 --- /dev/null +++ b/_posts/2017-04-19-coworking24.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work together on your coding projects. Beginners welcome. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/95 +date: 2017-04-19 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-04-26-elections-hacky-hour.markdown b/_posts/2017-04-26-elections-hacky-hour.markdown new file mode 100644 index 000000000..e12e06686 --- /dev/null +++ b/_posts/2017-04-26-elections-hacky-hour.markdown @@ -0,0 +1,9 @@ +--- +title: Elections + Hacky Hour +text: Annual exec elections followed by pub night at GSU pub. +location: MP408 + GSU Pub +link: https://github.com/UofTCoders/Events/issues/96 +date: 2017-04-26 +startTime: '18:10' +endTime: '22:00' +--- diff --git a/_posts/2017-05-03-careers-outside-academia.markdown b/_posts/2017-05-03-careers-outside-academia.markdown new file mode 100644 index 000000000..fe76f82b3 --- /dev/null +++ b/_posts/2017-05-03-careers-outside-academia.markdown @@ -0,0 +1,9 @@ +--- +title: Careers Outside Academia Panel +text: Are you or do you know someone who started in research but took opportunities outside academia? Or are you interested in the different paths after a graduate research program? Come to this session where we will have a discussion on these topics. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/97 +date: 2017-05-03 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-05-10-ld-large-datasets.markdown b/_posts/2017-05-10-ld-large-datasets.markdown new file mode 100644 index 000000000..eb69bf420 --- /dev/null +++ b/_posts/2017-05-10-ld-large-datasets.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos - Working with Very Large Datasets +text: Do you know a tool or package for working with very large datasets (on the order or GB/TB)? Or want to learn more? Come see our quick (10 min or less) demos on this topic. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/98 +date: 2017-05-10 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-05-17-coworking25.markdown b/_posts/2017-05-17-coworking25.markdown new file mode 100644 index 000000000..f142e06eb --- /dev/null +++ b/_posts/2017-05-17-coworking25.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Get together to work on your coding projects. Beginners welcome! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/99 +date: 2017-05-17 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-05-24-htmlcssjs.markdown b/_posts/2017-05-24-htmlcssjs.markdown new file mode 100644 index 000000000..599c3d9bb --- /dev/null +++ b/_posts/2017-05-24-htmlcssjs.markdown @@ -0,0 +1,9 @@ +--- +title: HTML/JS/CSS +text: Learn about web development using HTML, CSS and Javascript +location: MP408 +link: https://github.com/UofTCoders/Events/issues/100 +date: 2017-05-24 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-05-31-intro-bash.markdown b/_posts/2017-05-31-intro-bash.markdown new file mode 100644 index 000000000..3774dccbe --- /dev/null +++ b/_posts/2017-05-31-intro-bash.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Bash +text: Basic shell scripting in Bash +location: MP408 +link: https://github.com/UofTCoders/Events/issues/101 +date: 2017-05-31 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-06-07-scikit-learn.markdown b/_posts/2017-06-07-scikit-learn.markdown new file mode 100644 index 000000000..3db8ac775 --- /dev/null +++ b/_posts/2017-06-07-scikit-learn.markdown @@ -0,0 +1,9 @@ +--- +title: Python scikit-learn for Machine Learning +text: Overview of using Python's scikit-learn for machine learning +location: MP408 +link: https://github.com/UofTCoders/Events/issues/102 +date: 2017-06-07 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-06-14-coworking26.markdown b/_posts/2017-06-14-coworking26.markdown new file mode 100644 index 000000000..2be830f93 --- /dev/null +++ b/_posts/2017-06-14-coworking26.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session - Unit Testing/Pair Programming +text: Work on your projects together, with a focus on learning to unit test your code. Beginners welcome! +location: MP408 +link: https://github.com/UofTCoders/Events/issues/103 +date: 2017-06-14 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-06-21-git-continuous-testing.markdown b/_posts/2017-06-21-git-continuous-testing.markdown new file mode 100644 index 000000000..9f7979ef8 --- /dev/null +++ b/_posts/2017-06-21-git-continuous-testing.markdown @@ -0,0 +1,9 @@ +--- +title: Continuous Integration and Testing via Github +text: Using Github, travis CI for continuous integration of projects +location: MP408 +link: https://github.com/UofTCoders/Events/issues/104 +date: 2017-06-21 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-06-28-ld-data-visualization.markdown b/_posts/2017-06-28-ld-data-visualization.markdown new file mode 100644 index 000000000..ae512c738 --- /dev/null +++ b/_posts/2017-06-28-ld-data-visualization.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos - Data Visualization +text: Demonstrations of some cool tools and techniques for visualizing data +location: MP408 +link: https://github.com/UofTCoders/Events/issues/105 +date: 2017-06-28 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-07-05-intermediate-sql.markdown b/_posts/2017-07-05-intermediate-sql.markdown new file mode 100644 index 000000000..140f629b0 --- /dev/null +++ b/_posts/2017-07-05-intermediate-sql.markdown @@ -0,0 +1,9 @@ +--- +title: Intermediate SQL +text: Intermediate topics in SQL and databases using mySQL +location: MP408 +link: https://github.com/UofTCoders/Events/issues/106 +date: 2017-07-05 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-07-12-coworking27-packages.markdown b/_posts/2017-07-12-coworking27-packages.markdown new file mode 100644 index 000000000..32b756587 --- /dev/null +++ b/_posts/2017-07-12-coworking27-packages.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session on Making Packages +text: Work together to package up your code for reuse in R or Python. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/107 +date: 2017-07-12 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-07-19-r-dplyr-magrittr.markdown b/_posts/2017-07-19-r-dplyr-magrittr.markdown new file mode 100644 index 000000000..b77abc49b --- /dev/null +++ b/_posts/2017-07-19-r-dplyr-magrittr.markdown @@ -0,0 +1,9 @@ +--- +title: R - dplyr and magrittr +text: Learn these tools for data manipulation in R. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/108 +date: 2017-07-19 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-07-26-python-parallel.markdown b/_posts/2017-07-26-python-parallel.markdown new file mode 100644 index 000000000..11c1aa705 --- /dev/null +++ b/_posts/2017-07-26-python-parallel.markdown @@ -0,0 +1,9 @@ +--- +title: Parallel Processing in Python +text: Learn about Python packages for multiprocessing +location: MP408 +link: https://github.com/UofTCoders/Events/issues/109 +date: 2017-07-26 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-08-02-collaborative-github.markdown b/_posts/2017-08-02-collaborative-github.markdown new file mode 100644 index 000000000..52d2d9b8a --- /dev/null +++ b/_posts/2017-08-02-collaborative-github.markdown @@ -0,0 +1,9 @@ +--- +title: Collaborating with others using GitHub +text: Learn how to use GitHub on collaborative projects +location: MP408 +link: https://github.com/UofTCoders/Events/issues/110 +date: 2017-08-02 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-08-09-coworking28.markdown b/_posts/2017-08-09-coworking28.markdown new file mode 100644 index 000000000..24a507911 --- /dev/null +++ b/_posts/2017-08-09-coworking28.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work together to package up your code for reuse in R or Python. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/111 +date: 2017-08-09 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-08-16-R-resampling.markdown b/_posts/2017-08-16-R-resampling.markdown new file mode 100644 index 000000000..1b9652b17 --- /dev/null +++ b/_posts/2017-08-16-R-resampling.markdown @@ -0,0 +1,9 @@ +--- +title: R - Resampling Techniques (Bootstrapping & Permutations) +text: Learn about common resampling methods in R. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/112 +date: 2017-08-16 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-09-14-intro-r.markdown b/_posts/2017-09-14-intro-r.markdown new file mode 100644 index 000000000..f604c108f --- /dev/null +++ b/_posts/2017-09-14-intro-r.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to R +text: Learn the basics of programming in R. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/116 +date: 2017-09-14 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-09-21-social.markdown b/_posts/2017-09-21-social.markdown new file mode 100644 index 000000000..6bc1390c2 --- /dev/null +++ b/_posts/2017-09-21-social.markdown @@ -0,0 +1,9 @@ +--- +title: Hacky Hour Social +text: Look for the UofT Coders posters to find where we're seated! +location: Red Lounge (College/Spadina) +link: https://github.com/UofTCoders/Events/issues/117 +date: 2017-09-21 +startTime: '18:00' +endTime: '21:00' +--- diff --git a/_posts/2017-09-28-intro-python.markdown b/_posts/2017-09-28-intro-python.markdown new file mode 100644 index 000000000..147b6ed1d --- /dev/null +++ b/_posts/2017-09-28-intro-python.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Python +text: Learn the basics of how to program in Python +location: MP408 +link: https://github.com/UofTCoders/Events/issues/118 +date: 2017-09-28 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-10-03-coworking.markdown b/_posts/2017-10-03-coworking.markdown new file mode 100644 index 000000000..5de20e770 --- /dev/null +++ b/_posts/2017-10-03-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Tuesday Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: Hart House Reading Room (1st Floor) +link: https://github.com/UofTCoders/Events/issues/126 +date: 2017-10-03 +startTime: '16:00' +endTime: '18:00' +--- diff --git a/_posts/2017-10-05-intro-git.markdown b/_posts/2017-10-05-intro-git.markdown new file mode 100644 index 000000000..86bb4265d --- /dev/null +++ b/_posts/2017-10-05-intro-git.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Version Control with Git/Github +text: Learn how to use version control with your code using Git and Github. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/119 +date: 2017-10-05 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-10-12-coworking-git.markdown b/_posts/2017-10-12-coworking-git.markdown new file mode 100644 index 000000000..04abef46e --- /dev/null +++ b/_posts/2017-10-12-coworking-git.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session - Git and Github +text: Work through any of your questions about Git and Github in an informal session. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/120 +date: 2017-10-12 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-10-17-coworking.markdown b/_posts/2017-10-17-coworking.markdown new file mode 100644 index 000000000..3d2d16e2a --- /dev/null +++ b/_posts/2017-10-17-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Tuesday Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: Hart House Reading Room (1st Floor) +link: https://github.com/UofTCoders/Events/issues/126 +date: 2017-10-17 +startTime: '16:00' +endTime: '18:00' +--- diff --git a/_posts/2017-10-19-machine-learning.markdown b/_posts/2017-10-19-machine-learning.markdown new file mode 100644 index 000000000..4e949c32b --- /dev/null +++ b/_posts/2017-10-19-machine-learning.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Machine Learning +text: Machine learning crosses the boundaries of discipline and is found everywhere these days from our Netflix recommendations to how banks catch fraudulent transactions. This session will be an overview of important concepts behind machine learning and what it actually entails in more a lecture style session. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/121 +date: 2017-10-19 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-10-26-scikit-learn.markdown b/_posts/2017-10-26-scikit-learn.markdown new file mode 100644 index 000000000..a2d9458e1 --- /dev/null +++ b/_posts/2017-10-26-scikit-learn.markdown @@ -0,0 +1,9 @@ +--- +title: Python's scikit-learn for Machine Learning +text: Get an overview of how to use Python's scikit-learn package to implement common machine learning algorithms for problems like regression, and classification. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/122 +date: 2017-10-26 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-10-31-coworking.markdown b/_posts/2017-10-31-coworking.markdown new file mode 100644 index 000000000..32780e1ae --- /dev/null +++ b/_posts/2017-10-31-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Tuesday Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: Hart House Reading Room (1st Floor) +link: https://github.com/UofTCoders/Events/issues/126 +date: 2017-10-31 +startTime: '16:00' +endTime: '18:00' +--- diff --git a/_posts/2017-11-02-intro-to-natural-language-processing.markdown b/_posts/2017-11-02-intro-to-natural-language-processing.markdown new file mode 100644 index 000000000..0d082487b --- /dev/null +++ b/_posts/2017-11-02-intro-to-natural-language-processing.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Natural Language Processing +text: Natural language processing (NLP) is its own field of machine learning focused on building systems that can understand language. While it is a very broad field, this session will be focused on the NLTK package in Python to tackle some basic NLP problems. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/123 +date: 2017-11-02 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-11-09-pair-programing-coding-challenges.markdown b/_posts/2017-11-09-pair-programing-coding-challenges.markdown new file mode 100644 index 000000000..627e33fdc --- /dev/null +++ b/_posts/2017-11-09-pair-programing-coding-challenges.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session - Pair Programming Coding Challenges +text: Come work on your general programming skills (whether you're a complete beginner or have been cdoing for years) by doing some coding challenges in the style of Pair Programming. Or if you'd prefer, come by with some of your own code to work on and if you need help, you can always ask for help from the other community members. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/124 +date: 2017-11-09 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2017-11-14-coworking.markdown b/_posts/2017-11-14-coworking.markdown new file mode 100644 index 000000000..ccdf2e26f --- /dev/null +++ b/_posts/2017-11-14-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Tuesday Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: Hart House Reading Room (1st Floor) +link: https://github.com/UofTCoders/Events/issues/126 +date: 2017-11-14 +startTime: '16:00' +endTime: '18:00' +--- diff --git a/_posts/2017-11-16-Intro-Bash.markdown b/_posts/2017-11-16-Intro-Bash.markdown new file mode 100644 index 000000000..11cd431c8 --- /dev/null +++ b/_posts/2017-11-16-Intro-Bash.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Bash +text: Basic shell scripting in Bash +location: MP408 +link: https://github.com/UofTCoders/Events/issues/130 +date: 2017-11-16 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-11-23-Gadgets-and-hardware-Intro-Programming-Small-Devices.markdown b/_posts/2017-11-23-Gadgets-and-hardware-Intro-Programming-Small-Devices.markdown new file mode 100644 index 000000000..621784b6c --- /dev/null +++ b/_posts/2017-11-23-Gadgets-and-hardware-Intro-Programming-Small-Devices.markdown @@ -0,0 +1,9 @@ +--- +title: "Gadgets and hardware: Introduction to Programming Small Devices" +text: We will be introduced to the Arduino open source microcontroller development system and build a device using the Adafruit ESP8266 Feather Huzzah [https://www.adafruit.com/product/2821], a postage stamp sized 80MHz WiFi computer with stackable peripherals (called 'Wings'), that uses 1/2 Watt. +location: BL520 +link: https://github.com/UofTCoders/Events/issues/128 +date: 2017-11-23 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-11-28-coworking.markdown b/_posts/2017-11-28-coworking.markdown new file mode 100644 index 000000000..5a0c226ba --- /dev/null +++ b/_posts/2017-11-28-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Tuesday Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: Hart House Reading Room (1st Floor) +link: https://github.com/UofTCoders/Events/issues/126 +date: 2017-11-28 +startTime: '16:00' +endTime: '18:00' +--- diff --git a/_posts/2017-11-30-Intro-quantum-computing.markdown b/_posts/2017-11-30-Intro-quantum-computing.markdown new file mode 100644 index 000000000..e1c3abcdc --- /dev/null +++ b/_posts/2017-11-30-Intro-quantum-computing.markdown @@ -0,0 +1,9 @@ +--- +title: Introduction to Topics in Quantum Computing +text: We'll go over some basic concepts of quantum computing, including qubits, quantum gates and some algorithms. We’ll also test out IBM’s 5-qubit quantum processor using their online interface. +location: MP408 +link: https://github.com/UofTCoders/Events/issues/127 +date: 2017-11-30 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2017-12-07-hacky-hour.markdown b/_posts/2017-12-07-hacky-hour.markdown new file mode 100644 index 000000000..814d1b2ce --- /dev/null +++ b/_posts/2017-12-07-hacky-hour.markdown @@ -0,0 +1,9 @@ +--- +title: Hacky Hour Social +text: Come meet the UofT Coders community members in a less formal setting. Everyone is welcome even if you've never come to a session before. +location: GSU Pub +link: https://github.com/UofTCoders/Events/issues/129 +date: 2017-12-07 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-01-11-IntroR.markdown b/_posts/2018-01-11-IntroR.markdown new file mode 100644 index 000000000..e5397e182 --- /dev/null +++ b/_posts/2018-01-11-IntroR.markdown @@ -0,0 +1,9 @@ +--- +title: "Introduction to R" +text: A brief introduction to R programming. No experience is necessary to attend this lesson. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/131 +date: 2018-01-11 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-01-18-Intro-Git.markdown b/_posts/2018-01-18-Intro-Git.markdown new file mode 100644 index 000000000..8a068ea4f --- /dev/null +++ b/_posts/2018-01-18-Intro-Git.markdown @@ -0,0 +1,9 @@ +--- +title: "Introduction to Git and the Philosophy of Version Control" +text: Learn how to use version control for your project using Git and Github +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/133 +date: 2018-01-18 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-01-18-SwcRUnixGit.markdown b/_posts/2018-01-18-SwcRUnixGit.markdown new file mode 100644 index 000000000..250eb771a --- /dev/null +++ b/_posts/2018-01-18-SwcRUnixGit.markdown @@ -0,0 +1,11 @@ +--- +title: Software Carpentry Workshop (2 days) - R, Unix Shell and Git +text: "Join us for a hands-on two-day Software Carpentry workshop covering core small research team skills: +programming with R, automating tasks with Unix Shell, and version control with Git. +Workshop costs $25 and is open to everyone. Click to see the event page for more details and registration!" +location: MADLab, Gerstein Science Information Centre, Room B112 +link: https://uoftcoders.github.io/2018-01-18-utoronto/ +date: 2018-01-18 +startTime: '09:00' +endTime: '16:00' +--- diff --git a/_posts/2018-01-25-intro-python.markdown b/_posts/2018-01-25-intro-python.markdown new file mode 100644 index 000000000..ab6e27dea --- /dev/null +++ b/_posts/2018-01-25-intro-python.markdown @@ -0,0 +1,9 @@ +--- +title: "Introduction to Data Analysis with Python" +text: The very basics of data analysis using the programming language Python with a beginner-friendly code-along. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/134 +date: 2018-01-25 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-02-01-ML-for-CompBio-R.markdown b/_posts/2018-02-01-ML-for-CompBio-R.markdown new file mode 100644 index 000000000..94d110321 --- /dev/null +++ b/_posts/2018-02-01-ML-for-CompBio-R.markdown @@ -0,0 +1,9 @@ +--- +title: "Machine Learning for Computational Biology using R" +text: Learning about machine learning good practices in computational biology and tips to avoid common mistakes by a code-along application of k-nearest neighbors (k-NN) to a cancer sample dataset, using R. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/135 +date: 2018-02-01 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-02-08-ImageProcessing-python.markdown b/_posts/2018-02-08-ImageProcessing-python.markdown new file mode 100644 index 000000000..ac1d7e6d2 --- /dev/null +++ b/_posts/2018-02-08-ImageProcessing-python.markdown @@ -0,0 +1,9 @@ +--- +title: Image Processing in Python +text: This is an introductory tutorial on image processing using Python packages. We will do a code along to understand image data types, manipulate and prepare images for analysis such as image segmentation. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/137 +date: 2018-02-08 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-02-15-ggplot2R.markdown b/_posts/2018-02-15-ggplot2R.markdown new file mode 100644 index 000000000..476ce7e0e --- /dev/null +++ b/_posts/2018-02-15-ggplot2R.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to ggplot2 in R +text: ggplot2 is a great plotting package in R, learn the basics in this lesson! +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/136 +date: 2018-02-15 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-02-22-graphic-design.markdown b/_posts/2018-02-22-graphic-design.markdown new file mode 100644 index 000000000..12397b5b5 --- /dev/null +++ b/_posts/2018-02-22-graphic-design.markdown @@ -0,0 +1,9 @@ +--- +title: Open Source Tools for Graphic Design +text: Learn to use the open source software Inkscape. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/138 +date: 2018-02-22 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-03-01-IntermediateR.markdown b/_posts/2018-03-01-IntermediateR.markdown new file mode 100644 index 000000000..8aec17046 --- /dev/null +++ b/_posts/2018-03-01-IntermediateR.markdown @@ -0,0 +1,9 @@ +--- +title: Intermediate Topics in R +text: More intermediate level topics in R +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/143 +date: 2018-03-01 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-03-06-coffeeandcode.markdown b/_posts/2018-03-06-coffeeandcode.markdown new file mode 100644 index 000000000..86a03f4b7 --- /dev/null +++ b/_posts/2018-03-06-coffeeandcode.markdown @@ -0,0 +1,9 @@ +--- +title: Coffee and Code +text: Informal "Coffee and Code" meet-ups +location: Second Cup at Grad House +link: https://github.com/UofTCoders/Events/issues/141 +date: 2018-03-06 +startTime: '09:00' +endTime: '11:00' +--- diff --git a/_posts/2018-03-08-blockchain.markdown b/_posts/2018-03-08-blockchain.markdown new file mode 100644 index 000000000..7199c00b6 --- /dev/null +++ b/_posts/2018-03-08-blockchain.markdown @@ -0,0 +1,9 @@ +--- +title: What is Blockchain +text: Learn about cryptocurrencies and blockchain. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/139 +date: 2018-03-08 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-03-15-3dprinting.markdown b/_posts/2018-03-15-3dprinting.markdown new file mode 100644 index 000000000..559860ebc --- /dev/null +++ b/_posts/2018-03-15-3dprinting.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to 3D Printing (MADLab Certification) +text: Learn how to safely operate Gerstein Library's Makerbot Replicator 2 3D printers +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/140 +date: 2018-03-15 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-03-22-neuralnetworkspython.markdown b/_posts/2018-03-22-neuralnetworkspython.markdown new file mode 100644 index 000000000..523ec7c1d --- /dev/null +++ b/_posts/2018-03-22-neuralnetworkspython.markdown @@ -0,0 +1,9 @@ +--- +title: Neural Networks in Python +text: Learn to build neural networks in Python using Tensorflow and Keras +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/142 +date: 2018-03-22 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-03-29-academicworkflows.markdown b/_posts/2018-03-29-academicworkflows.markdown new file mode 100644 index 000000000..ab703cc0e --- /dev/null +++ b/_posts/2018-03-29-academicworkflows.markdown @@ -0,0 +1,9 @@ +--- +title: Academic Workflows +text: Learn about tools for reproducible research and maintaining a digital lab notebook using Jupyter Notebook. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/145 +date: 2018-03-29 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-04-05-interactiveplotting.markdown b/_posts/2018-04-05-interactiveplotting.markdown new file mode 100644 index 000000000..e308b719d --- /dev/null +++ b/_posts/2018-04-05-interactiveplotting.markdown @@ -0,0 +1,9 @@ +--- +title: Interactive Plotting in Python and R +text: Make interactive plots in both R (with Shiny) and Python (with Pandas and Altair). +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/146 +date: 2018-04-05 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2018-04-10-coffeeandcode.markdown b/_posts/2018-04-10-coffeeandcode.markdown new file mode 100644 index 000000000..5ecf78bad --- /dev/null +++ b/_posts/2018-04-10-coffeeandcode.markdown @@ -0,0 +1,9 @@ +--- +title: Coffee and Code +text: A casual co-working session - bring your laptop and whatever you're working on! +location: Second Cup at Grad House +link: https://github.com/UofTCoders/Events/issues/144 +date: 2018-04-10 +startTime: '09:00' +endTime: '11:00' +--- diff --git a/_posts/2018-04-12-coworking.markdown b/_posts/2018-04-12-coworking.markdown new file mode 100644 index 000000000..73de15e40 --- /dev/null +++ b/_posts/2018-04-12-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/148 +date: 2018-04-12 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2018-04-13-bugbbq.markdown b/_posts/2018-04-13-bugbbq.markdown new file mode 100644 index 000000000..7393c0ce1 --- /dev/null +++ b/_posts/2018-04-13-bugbbq.markdown @@ -0,0 +1,9 @@ +--- +title: Software Carpentry Bug BBQ +text: Help improve the Software Carpentry lessons, drink coffee, and meet your coding peers! +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/147 +date: 2018-04-13 +startTime: '09:00' +endTime: '14:00' +--- diff --git a/_posts/2018-04-19-coworking.markdown b/_posts/2018-04-19-coworking.markdown new file mode 100644 index 000000000..799cd1847 --- /dev/null +++ b/_posts/2018-04-19-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: MADLAB at Gerstein +link: https://github.com/UofTCoders/Events/issues/149 +date: 2018-04-19 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2018-04-26-elections.markdown b/_posts/2018-04-26-elections.markdown new file mode 100644 index 000000000..0c97afd06 --- /dev/null +++ b/_posts/2018-04-26-elections.markdown @@ -0,0 +1,9 @@ +--- +title: Elections + Pub Night +text: Vote and/or run in the executive elections and celebrate afterwards at the pub. +location: MADLAB at Gerstein, O'Grady's Pub +link: https://github.com/UofTCoders/Events/issues/150 +date: 2018-04-26 +startTime: '18:00' +endTime: '22:00' +--- diff --git a/_posts/2018-05-01-coffeeandcode.markdown b/_posts/2018-05-01-coffeeandcode.markdown new file mode 100644 index 000000000..1fb72e8dd --- /dev/null +++ b/_posts/2018-05-01-coffeeandcode.markdown @@ -0,0 +1,9 @@ +--- +title: Coffee and Code +text: A casual co-working session - bring your laptop and whatever you're working on! +location: Second Cup at Grad House +link: https://github.com/UofTCoders/Events/issues/151 +date: 2018-05-01 +startTime: '09:00' +endTime: '11:00' +--- diff --git a/_posts/2018-05-03-coworking.markdown b/_posts/2018-05-03-coworking.markdown new file mode 100644 index 000000000..dbd3fd6aa --- /dev/null +++ b/_posts/2018-05-03-coworking.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking Session +text: Work through any of your coding problems in a friendly and collaborative environment. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/152 +date: 2018-05-03 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2018-05-10-LD-R.markdown b/_posts/2018-05-10-LD-R.markdown new file mode 100644 index 000000000..d1653af8f --- /dev/null +++ b/_posts/2018-05-10-LD-R.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos - R +text: Demonstrate what you've created using R, or demo a tool or package that you've found useful. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/154 +date: 2018-05-10 +startTime: '18:00' +endTime: '19:00' +--- diff --git a/_posts/2018-05-10-mozsprint.markdown b/_posts/2018-05-10-mozsprint.markdown new file mode 100644 index 000000000..21a171894 --- /dev/null +++ b/_posts/2018-05-10-mozsprint.markdown @@ -0,0 +1,11 @@ +--- +title: Mozilla Global Sprint +text: A fun two-day hackathon (May 10-11) where people from all over the world work on projects to promote internet health. +location: Mozilla Toronto Office +link: https://github.com/UofTCoders/Events/issues/153 +date: 2018-05-10 +startTime: '09:00' +endTime: '17:00' +--- + + diff --git a/_posts/2018-05-17-intro-r.markdown b/_posts/2018-05-17-intro-r.markdown new file mode 100644 index 000000000..e802b0e57 --- /dev/null +++ b/_posts/2018-05-17-intro-r.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to R +text: An introduction to programming in R and using RStudio. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/155 +date: 2018-05-17 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2018-05-24-intro-stats-r.markdown b/_posts/2018-05-24-intro-stats-r.markdown new file mode 100644 index 000000000..14b352ca8 --- /dev/null +++ b/_posts/2018-05-24-intro-stats-r.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Statistics in R +text: Learn how to use R for your statistical analyses. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/156 +date: 2018-05-24 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2018-05-31-intermediate-stats-r.markdown b/_posts/2018-05-31-intermediate-stats-r.markdown new file mode 100644 index 000000000..a42c7ee3d --- /dev/null +++ b/_posts/2018-05-31-intermediate-stats-r.markdown @@ -0,0 +1,9 @@ +--- +title: Intermediate Statistics in R +text: Learn how to use R for your statistical analyses. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/157 +date: 2018-05-31 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2018-06-05-coffeeandcode.markdown b/_posts/2018-06-05-coffeeandcode.markdown new file mode 100644 index 000000000..682604d5f --- /dev/null +++ b/_posts/2018-06-05-coffeeandcode.markdown @@ -0,0 +1,9 @@ +--- +title: Coffee and Code +text: A casual co-working session - bring your laptop and whatever you're working on! +location: Second Cup at Grad House +link: https://github.com/UofTCoders/Events/issues/173 +date: 2018-06-05 +startTime: '09:00' +endTime: '11:00' +--- diff --git a/_posts/2018-06-07-lightningdemo-editor.markdown b/_posts/2018-06-07-lightningdemo-editor.markdown new file mode 100644 index 000000000..076ee50bd --- /dev/null +++ b/_posts/2018-06-07-lightningdemo-editor.markdown @@ -0,0 +1,9 @@ +--- +title: Lightning Demos - Your favourite text editor +text: Show off your favourite text editor and why you love using it over the others whether it's Vim, Sublime, Atom, etc. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/160 +date: 2018-06-07 +startTime: '18:00' +endTime: '19:30' +--- diff --git a/_posts/2018-06-14-intro-bash.markdown b/_posts/2018-06-14-intro-bash.markdown new file mode 100644 index 000000000..bf61592b8 --- /dev/null +++ b/_posts/2018-06-14-intro-bash.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Bash +text: Basic shell scripting in Bash +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/159 +date: 2018-06-14 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-06-18-DC-python.markdown b/_posts/2018-06-18-DC-python.markdown new file mode 100644 index 000000000..69969d9a2 --- /dev/null +++ b/_posts/2018-06-18-DC-python.markdown @@ -0,0 +1,11 @@ +--- +title: Data Carpentry Workshop (2 days) - Data analysis and visualization in Python +text: "Join us for a hands-on two-day Data Carpentry workshop covering core small research team skills +including data organization and cleaning, data analysis, and data visualization. +Workshop costs $30 and is open to everyone. Click to see the event page for more details and registration!" +location: MADLab, Gerstein Science Information Centre, Room B112 +link: https://uoftcoders.github.io/2018-06-18-utoronto/ +date: 2018-06-18 +startTime: '09:00' +endTime: '16:30' +--- diff --git a/_posts/2018-06-21-intro-latex.markdown b/_posts/2018-06-21-intro-latex.markdown new file mode 100644 index 000000000..4cc787080 --- /dev/null +++ b/_posts/2018-06-21-intro-latex.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to LaTeX +text: We will introduce LaTeX and the basics of creating scientific documents with it. +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/158 +date: 2018-06-21 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-06-26-coffeeandcode.markdown b/_posts/2018-06-26-coffeeandcode.markdown new file mode 100644 index 000000000..b8048c41d --- /dev/null +++ b/_posts/2018-06-26-coffeeandcode.markdown @@ -0,0 +1,9 @@ +--- +title: Coffee and Code +text: A casual co-working session - bring your laptop and whatever you're working on! +location: Second Cup at Grad House +link: https://github.com/UofTCoders/Events/issues/175 +date: 2018-06-26 +startTime: '09:00' +endTime: '11:00' +--- diff --git a/_posts/2018-06-28-rmarkdown-pandoc.markdown b/_posts/2018-06-28-rmarkdown-pandoc.markdown new file mode 100644 index 000000000..6c38bcb3c --- /dev/null +++ b/_posts/2018-06-28-rmarkdown-pandoc.markdown @@ -0,0 +1,9 @@ +--- +title: RMarkdown, Markdown, and Pandoc +text: "Learn how to use RMarkdown, knitR, and Markdown, Pandoc to convert between file formats: PDF, html, Word, etc. " +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/161 +date: 2018-06-28 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-07-05-gadgets-hardware.markdown b/_posts/2018-07-05-gadgets-hardware.markdown new file mode 100644 index 000000000..78718b3f2 --- /dev/null +++ b/_posts/2018-07-05-gadgets-hardware.markdown @@ -0,0 +1,9 @@ +--- +title: Gadgets and Hardware +text: Programming small devices +location: BL520 (Claude T Bissell Building, 5th Floor) +link: https://github.com/UofTCoders/Events/issues/163 +date: 2018-07-05 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2018-07-10-coffeeandcode.markdown b/_posts/2018-07-10-coffeeandcode.markdown new file mode 100644 index 000000000..b77f28cae --- /dev/null +++ b/_posts/2018-07-10-coffeeandcode.markdown @@ -0,0 +1,9 @@ +--- +title: Coffee and Code +text: A casual co-working session - bring your laptop and whatever you're working on! +location: Second Cup at Grad House +link: https://github.com/UofTCoders/Events/issues/176 +date: 2018-07-10 +startTime: '09:00' +endTime: '11:00' +--- diff --git a/_posts/2018-07-12-DC-python.markdown b/_posts/2018-07-12-DC-python.markdown new file mode 100644 index 000000000..f518d8da5 --- /dev/null +++ b/_posts/2018-07-12-DC-python.markdown @@ -0,0 +1,11 @@ +--- +title: Data Carpentry Workshop (2 days) - Data analysis and visualization in Python +text: "Join us for a hands-on two-day Data Carpentry workshop covering core small research team skills +including data organization and cleaning, data analysis, and data visualization. +Workshop costs $30 and is open to everyone. Click to see the event page for more details and registration!" +location: MADLab, Gerstein Science Information Centre, Room B112 +link: https://uoftcoders.github.io/2018-07-12-utoronto/ +date: 2018-07-12 +startTime: '09:00' +endTime: '16:30' +--- diff --git a/_posts/2018-07-12-coworking-hardware.markdown b/_posts/2018-07-12-coworking-hardware.markdown new file mode 100644 index 000000000..e5f4de8cb --- /dev/null +++ b/_posts/2018-07-12-coworking-hardware.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking - Programming Gadgets +text: Applying what we learned in the previous session and programming our devices +location: BL520 (Claude T Bissell Building, 5th Floor) +link: https://github.com/UofTCoders/Events/issues/164 +date: 2018-07-12 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-07-19-Intro-python.markdown b/_posts/2018-07-19-Intro-python.markdown new file mode 100644 index 000000000..99287b852 --- /dev/null +++ b/_posts/2018-07-19-Intro-python.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Python +text: The basics of the programming language Python with a beginner-friendly code-along +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/165 +date: 2018-07-19 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-07-24-coffee-and-code.md b/_posts/2018-07-24-coffee-and-code.md new file mode 100644 index 000000000..0aec46a09 --- /dev/null +++ b/_posts/2018-07-24-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/178" +date: "2018-07-24" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-07-26-statistical-testing-python.markdown b/_posts/2018-07-26-statistical-testing-python.markdown new file mode 100644 index 000000000..433e59d38 --- /dev/null +++ b/_posts/2018-07-26-statistical-testing-python.markdown @@ -0,0 +1,9 @@ +--- +title: Measures of association and statistical testing of hypotheses in Python +text: Introduction to statistical testing of hypotheses in Python using SciPy +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/166 +date: 2018-07-26 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2018-08-02-web-scraping.markdown b/_posts/2018-08-02-web-scraping.markdown new file mode 100644 index 000000000..2b3afbd8e --- /dev/null +++ b/_posts/2018-08-02-web-scraping.markdown @@ -0,0 +1,9 @@ +--- +title: Web Scraping +text: +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/167 +date: 2018-08-02 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-08-07-coffee-and-code.md b/_posts/2018-08-07-coffee-and-code.md new file mode 100644 index 000000000..debc1918b --- /dev/null +++ b/_posts/2018-08-07-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/179" +date: "2018-08-07" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-08-09-coworking-python.markdown b/_posts/2018-08-09-coworking-python.markdown new file mode 100644 index 000000000..f623de3d6 --- /dev/null +++ b/_posts/2018-08-09-coworking-python.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking - Python +text: Python-themed coworking session +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/168 +date: 2018-08-09 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-08-16-intro-git.markdown b/_posts/2018-08-16-intro-git.markdown new file mode 100644 index 000000000..a45c45f0f --- /dev/null +++ b/_posts/2018-08-16-intro-git.markdown @@ -0,0 +1,9 @@ +--- +title: Intro to Git +text: Introduction to Git version control +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/169 +date: 2018-08-16 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-08-23-open-source-project-101.markdown b/_posts/2018-08-23-open-source-project-101.markdown new file mode 100644 index 000000000..cbdf68d6f --- /dev/null +++ b/_posts/2018-08-23-open-source-project-101.markdown @@ -0,0 +1,9 @@ +--- +title: Contributing to an Open Source Project 101 +text: Learn how to contribute to an open source project +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/170 +date: 2018-08-23 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-08-30-virtualization-docker-sphinx.markdown b/_posts/2018-08-30-virtualization-docker-sphinx.markdown new file mode 100644 index 000000000..65b53b525 --- /dev/null +++ b/_posts/2018-08-30-virtualization-docker-sphinx.markdown @@ -0,0 +1,9 @@ +--- +title: Virtualization vs. Docker Images, Sphinx for Documentation +text: +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/171 +date: 2018-08-30 +startTime: '18:10' +endTime: '19:30' +--- diff --git a/_posts/2018-09-04-coffee-and-code.md b/_posts/2018-09-04-coffee-and-code.md new file mode 100644 index 000000000..1c925a3eb --- /dev/null +++ b/_posts/2018-09-04-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/181" +date: "2018-09-04" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-09-06-coworking-bugs-pull-reqs.markdown b/_posts/2018-09-06-coworking-bugs-pull-reqs.markdown new file mode 100644 index 000000000..4424beb6e --- /dev/null +++ b/_posts/2018-09-06-coworking-bugs-pull-reqs.markdown @@ -0,0 +1,9 @@ +--- +title: Coworking - Bugs and Pull Requests +text: A coworking session to practice contributing to open source projects +location: MADLab at Gerstein +link: https://github.com/UofTCoders/Events/issues/172 +date: 2018-09-06 +startTime: '18:10' +endTime: '19:00' +--- diff --git a/_posts/2018-09-10-DC-python.markdown b/_posts/2018-09-10-DC-python.markdown new file mode 100644 index 000000000..bce0222aa --- /dev/null +++ b/_posts/2018-09-10-DC-python.markdown @@ -0,0 +1,11 @@ +--- +title: Data Carpentry Workshop (2 days) - Data analysis and visualization in Python +text: "Join us for a hands-on two-day Data Carpentry workshop covering core small research team skills +including data organization and cleaning, data analysis, and data visualization. +Workshop costs $25 and is open to everyone. Click to see the event page for more details and registration!" +location: MADLab, Gerstein Science Information Centre, Room B112 +link: https://uoftcoders.github.io/2018-09-10-utoronto/ +date: 2018-09-10 +startTime: '09:00' +endTime: '16:30' +--- diff --git a/_posts/2018-09-13-social.md b/_posts/2018-09-13-social.md new file mode 100644 index 000000000..081e67cb1 --- /dev/null +++ b/_posts/2018-09-13-social.md @@ -0,0 +1,9 @@ +--- +title: "UofT Coders Social- September 13" +text: "We're having a social at the GSU Pub to welcome new and returning members with the start of the new academic year. Join us and get to know the exec and fellow members of the UofT Coders community in a less formal environment. You do not need to have attended an event previously to attend. Everyone is welcome." +location: "GSU pub" +link: "https://github.com/UofTCoders/Events/issues/182" +date: "2018-09-13" +startTime: "18:10" +endTime: "21:00" +--- diff --git a/_posts/2018-09-18-coffee-and-code.md b/_posts/2018-09-18-coffee-and-code.md new file mode 100644 index 000000000..203b64059 --- /dev/null +++ b/_posts/2018-09-18-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/183" +date: "2018-09-18" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-09-20-coworking.md b/_posts/2018-09-20-coworking.md new file mode 100644 index 000000000..9390de276 --- /dev/null +++ b/_posts/2018-09-20-coworking.md @@ -0,0 +1,10 @@ +--- +title: "Coworking" +text: "Co-working sessions are meetings where you can work on projects and discuss strategies and tools to solve your coding problems with the help of other coding group members. Even if you're just starting out, this is a great place to get started. +" +location: "MADLab at Gerstein Science Information Centre" +link: "https://github.com/UofTCoders/Events/issues/186" +date: "2018-09-20" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-09-27-demo-reproducible-documents.md b/_posts/2018-09-27-demo-reproducible-documents.md new file mode 100644 index 000000000..71e56157a --- /dev/null +++ b/_posts/2018-09-27-demo-reproducible-documents.md @@ -0,0 +1,10 @@ +--- +title: "Lightning Demos: reproducible documents (reports, papers and thesis)" +text: "What is your approach to creating reproducible documents? how do you use the capabilities in R, Python, Latex, pandoc, etc. to integrate your data analysis with writing your reports and other manuscripts? Come to this session and show your peers what is your workflow for creating reproducible documents or hear from others how they do it. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/187" +date: "2018-09-27" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-10-02-coffee-and-code.md b/_posts/2018-10-02-coffee-and-code.md new file mode 100644 index 000000000..f1c7817c0 --- /dev/null +++ b/_posts/2018-10-02-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/184" +date: "2018-10-02" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-10-04-git-intro.md b/_posts/2018-10-04-git-intro.md new file mode 100644 index 000000000..df0575c52 --- /dev/null +++ b/_posts/2018-10-04-git-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Version Control with Git and GitHub" +text: "Learn how to take advantage of version control for your projects and why it can be useful. We will be focusing on Git, a popular piece of software that does version control. This session is geared towards complete beginners - if you've never touched Git before, this is for you! +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/196" +date: "2018-10-04" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-10-11-git-intermediate.md b/_posts/2018-10-11-git-intermediate.md new file mode 100644 index 000000000..3bb3de9ce --- /dev/null +++ b/_posts/2018-10-11-git-intermediate.md @@ -0,0 +1,10 @@ +--- +title: "Intermediate Topics in Git and GitHub" +text: "In this session, we will build on the material presented at last week's Intro to Git and will discuss more advanced ways to use Git in collaboration with others. The material will be aimed at an audience that has some familiarity with basic Git commands, but by no means do you need to be experienced or an expert. If you attended last week's session or have used Git before or have looked over the material from last week, you should be well-prepared. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/195" +date: "2018-10-11" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-10-18-R-intro.md b/_posts/2018-10-18-R-intro.md new file mode 100644 index 000000000..40df62e38 --- /dev/null +++ b/_posts/2018-10-18-R-intro.md @@ -0,0 +1,9 @@ +--- +title: "Intro R and Tidyverse" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/197" +date: "2018-10-18" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-10-25-python-intro.md b/_posts/2018-10-25-python-intro.md new file mode 100644 index 000000000..57894e067 --- /dev/null +++ b/_posts/2018-10-25-python-intro.md @@ -0,0 +1,9 @@ +--- +title: "Intro Python with Numpy and Pandas" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/198" +date: "2018-10-25" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-10-30-coffee-and-code.md b/_posts/2018-10-30-coffee-and-code.md new file mode 100644 index 000000000..2993f23e6 --- /dev/null +++ b/_posts/2018-10-30-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/206" +date: "2018-10-30" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-11-01-R-plotting.md b/_posts/2018-11-01-R-plotting.md new file mode 100644 index 000000000..3b85d462d --- /dev/null +++ b/_posts/2018-11-01-R-plotting.md @@ -0,0 +1,9 @@ +--- +title: "R: Plotting with theme of Heatmaps" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/199" +date: "2018-11-01" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-11-08-python-plotting.md b/_posts/2018-11-08-python-plotting.md new file mode 100644 index 000000000..c05d020ed --- /dev/null +++ b/_posts/2018-11-08-python-plotting.md @@ -0,0 +1,9 @@ +--- +title: "Python: Plotting with Seaborn and Matplotlib" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/200" +date: "2018-11-08" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-11-13-coffee-and-code.md b/_posts/2018-11-13-coffee-and-code.md new file mode 100644 index 000000000..31449de12 --- /dev/null +++ b/_posts/2018-11-13-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/207" +date: "2018-11-13" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-11-15-R-data-wrangling.md b/_posts/2018-11-15-R-data-wrangling.md new file mode 100644 index 000000000..cc151d5dc --- /dev/null +++ b/_posts/2018-11-15-R-data-wrangling.md @@ -0,0 +1,9 @@ +--- +title: "R: Magrittr/Dplyr/Tidyr for data wrangling" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/201" +date: "2018-11-15" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-11-22-python-machine-learning.md b/_posts/2018-11-22-python-machine-learning.md new file mode 100644 index 000000000..f386f7ed6 --- /dev/null +++ b/_posts/2018-11-22-python-machine-learning.md @@ -0,0 +1,9 @@ +--- +title: "Python: Machine Learning with scikit-learn" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/202" +date: "2018-11-22" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-11-27-coffee-and-code.md b/_posts/2018-11-27-coffee-and-code.md new file mode 100644 index 000000000..e8da7015a --- /dev/null +++ b/_posts/2018-11-27-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/208" +date: "2018-11-27" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2018-11-29-R-stats.md b/_posts/2018-11-29-R-stats.md new file mode 100644 index 000000000..2b1ed13f9 --- /dev/null +++ b/_posts/2018-11-29-R-stats.md @@ -0,0 +1,9 @@ +--- +title: "R: Statistical Methods" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/203" +date: "2018-11-29" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-12-06-python-stats.md b/_posts/2018-12-06-python-stats.md new file mode 100644 index 000000000..efaeef70d --- /dev/null +++ b/_posts/2018-12-06-python-stats.md @@ -0,0 +1,9 @@ +--- +title: "Python: Statistical Methods" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/204" +date: "2018-12-06" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2018-12-11-coffee-and-code.md b/_posts/2018-12-11-coffee-and-code.md new file mode 100644 index 000000000..946ffddc8 --- /dev/null +++ b/_posts/2018-12-11-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/209" +date: "2018-12-11" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-01-10-intro-python.md b/_posts/2019-01-10-intro-python.md new file mode 100644 index 000000000..940876848 --- /dev/null +++ b/_posts/2019-01-10-intro-python.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Python" +text: "The basics of data analysis using the programming language Python with a beginner-friendly participatory live-coding. +" +location: "MADLab" +link: "NA" +date: "2019-01-10" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-01-15-coffee-and-code.md b/_posts/2019-01-15-coffee-and-code.md new file mode 100644 index 000000000..1a44243f7 --- /dev/null +++ b/_posts/2019-01-15-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/211" +date: "2019-01-15" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-01-17-Intro-R.md b/_posts/2019-01-17-Intro-R.md new file mode 100644 index 000000000..6029d2326 --- /dev/null +++ b/_posts/2019-01-17-Intro-R.md @@ -0,0 +1,10 @@ +--- +title: "Intro to R and Tidyverse" +text: "The basics of using R and the Tidyverse for working with data, specifically: - Intro to R/navigating RStudio - Intro to Tidyverse - pipe operators - Basic data wrangling with dplyr and tidyr packages +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/219" +date: "2019-01-17" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-01-24-Intro-Bash.md b/_posts/2019-01-24-Intro-Bash.md new file mode 100644 index 000000000..5303b593a --- /dev/null +++ b/_posts/2019-01-24-Intro-Bash.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Bash/Shell Scripting" +text: "This introduction to BASH aims to make participants capable of working from the command line in Unix environments. The focus of this lesson will be to learn common file system tasks and to use built-in tools to make your work more efficient (and fun!). This is a beginner level workshop, so no previous knowledge is required. A few intermediate level concept will be introduced, but we will not go into scripting in BASH. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/220" +date: "2019-01-24" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-01-29-coffee-and-code.md b/_posts/2019-01-29-coffee-and-code.md new file mode 100644 index 000000000..3f9ca0cab --- /dev/null +++ b/_posts/2019-01-29-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/212" +date: "2019-01-29" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-01-31-inkscape.md b/_posts/2019-01-31-inkscape.md new file mode 100644 index 000000000..240e4b700 --- /dev/null +++ b/_posts/2019-01-31-inkscape.md @@ -0,0 +1,11 @@ +--- +title: "Inkscape - An Open-Source Alternative to Adobe Illustrator" +text: "We will learn to use Inkscape, a cross-platform open source graphic design software. +We will cover: - why use vector graphics instead of rasterized, - basic interface features of Inkscape - paths/shapes - strokes/fills - groups/layers/alignment - resizing drawing region and exporting - importing from other sources (e.g. plots generated in R or Python) +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/221" +date: "2019-01-31" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-02-07-R-reshape2.md b/_posts/2019-02-07-R-reshape2.md new file mode 100644 index 000000000..32708beac --- /dev/null +++ b/_posts/2019-02-07-R-reshape2.md @@ -0,0 +1,9 @@ +--- +title: "Intro to TidyR and Reshape2" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/222" +date: "2019-02-07" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-02-12-coffee-and-code.md b/_posts/2019-02-12-coffee-and-code.md new file mode 100644 index 000000000..4efb45db8 --- /dev/null +++ b/_posts/2019-02-12-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/213" +date: "2019-02-12" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-02-14-python-imageprocessing.md b/_posts/2019-02-14-python-imageprocessing.md new file mode 100644 index 000000000..77238604c --- /dev/null +++ b/_posts/2019-02-14-python-imageprocessing.md @@ -0,0 +1,10 @@ +--- +title: "Image Processing in Python" +text: "This is an introductory tutorial on image processing using Python packages. We will understand image data types, manipulate and prepare images for analysis such as image segmentation. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/223" +date: "2019-02-14" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-02-21-R-shinyapps.md b/_posts/2019-02-21-R-shinyapps.md new file mode 100644 index 000000000..ef5131fc1 --- /dev/null +++ b/_posts/2019-02-21-R-shinyapps.md @@ -0,0 +1,9 @@ +--- +title: "R: Interactive Plotting with Shinny Apps" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/224" +date: "2019-02-21" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-02-26-coffee-and-code.md b/_posts/2019-02-26-coffee-and-code.md new file mode 100644 index 000000000..d252e73af --- /dev/null +++ b/_posts/2019-02-26-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/214" +date: "2019-02-26" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-02-28-deeplearning-tensorflow.md b/_posts/2019-02-28-deeplearning-tensorflow.md new file mode 100644 index 000000000..f9cb88c95 --- /dev/null +++ b/_posts/2019-02-28-deeplearning-tensorflow.md @@ -0,0 +1,9 @@ +--- +title: "Co-working Session" +text: "Work on your code/research in a friendly and welcoming environment." +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/225" +date: "2019-02-28" +startTime: "18:10" +endTime: "19:30" +--- diff --git a/_posts/2019-03-07-git-testing.md b/_posts/2019-03-07-git-testing.md new file mode 100644 index 000000000..b1a36f79e --- /dev/null +++ b/_posts/2019-03-07-git-testing.md @@ -0,0 +1,9 @@ +--- +title: "Git Continuous Integration and Testing" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/226" +date: "2019-03-07" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-03-12-coffee-and-code.md b/_posts/2019-03-12-coffee-and-code.md new file mode 100644 index 000000000..1d53875cd --- /dev/null +++ b/_posts/2019-03-12-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/215" +date: "2019-03-12" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-03-14-software-defined-radio.md b/_posts/2019-03-14-software-defined-radio.md new file mode 100644 index 000000000..1342fe7b7 --- /dev/null +++ b/_posts/2019-03-14-software-defined-radio.md @@ -0,0 +1,9 @@ +--- +title: "Information on the Air - Software Defined Radio" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/227" +date: "2019-03-14" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-03-21-Regression-R.md b/_posts/2019-03-21-Regression-R.md new file mode 100644 index 000000000..ca6477d74 --- /dev/null +++ b/_posts/2019-03-21-Regression-R.md @@ -0,0 +1,9 @@ +--- +title: "Regression Models in R" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/228" +date: "2019-03-21" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-03-26-coffee-and-code.md b/_posts/2019-03-26-coffee-and-code.md new file mode 100644 index 000000000..932af1a4d --- /dev/null +++ b/_posts/2019-03-26-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/216" +date: "2019-03-26" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-03-28-HTML.md b/_posts/2019-03-28-HTML.md new file mode 100644 index 000000000..8a642ae37 --- /dev/null +++ b/_posts/2019-03-28-HTML.md @@ -0,0 +1,9 @@ +--- +title: "HTML and Web Design" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/229" +date: "2019-03-28" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-04-04-ggplot2.md b/_posts/2019-04-04-ggplot2.md new file mode 100644 index 000000000..5dcdb4512 --- /dev/null +++ b/_posts/2019-04-04-ggplot2.md @@ -0,0 +1,9 @@ +--- +title: "Intro to ggplot2 in R" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/230" +date: "2019-04-04" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-04-09-coffee-and-code.md b/_posts/2019-04-09-coffee-and-code.md new file mode 100644 index 000000000..7ebf3fb04 --- /dev/null +++ b/_posts/2019-04-09-coffee-and-code.md @@ -0,0 +1,9 @@ +--- +title: "Coffee and Code" +text: "A casual co-working session - bring your laptop and whatever you're working on!" +location: "Second Cup at Grad Room" +link: "https://github.com/UofTCoders/Events/issues/217" +date: "2019-04-09" +startTime: "09:00" +endTime: "11:00" +--- diff --git a/_posts/2019-04-11-co-working.md b/_posts/2019-04-11-co-working.md new file mode 100644 index 000000000..2b4d83296 --- /dev/null +++ b/_posts/2019-04-11-co-working.md @@ -0,0 +1,9 @@ +--- +title: "co-working" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/232" +date: "2019-04-11" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-04-18-Deeplearning-pytorch.md b/_posts/2019-04-18-Deeplearning-pytorch.md new file mode 100644 index 000000000..4df8b11ed --- /dev/null +++ b/_posts/2019-04-18-Deeplearning-pytorch.md @@ -0,0 +1,9 @@ +--- +title: "Deep Learning with PyTorch" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/231" +date: "2019-04-18" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-04-25-social.md b/_posts/2019-04-25-social.md new file mode 100644 index 000000000..4361c22ef --- /dev/null +++ b/_posts/2019-04-25-social.md @@ -0,0 +1,9 @@ +--- +title: "End of Term Social" +text: "" +location: "TBA" +link: "https://github.com/UofTCoders/Events/issues/233" +date: "2019-04-25" +startTime: "19:00" +endTime: "21:00" +--- diff --git a/_posts/2019-05-23-Intro-R.md b/_posts/2019-05-23-Intro-R.md new file mode 100644 index 000000000..5a9b26a29 --- /dev/null +++ b/_posts/2019-05-23-Intro-R.md @@ -0,0 +1,10 @@ +--- +title: "Intro to R and Tidyverse" +text: "The basics of using R and the Tidyverse for working with data, specifically: - Intro to R/navigating RStudio - Intro to Tidyverse - pipe operators - Basic data wrangling with dplyr and tidyr packages +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/235" +date: "2019-05-23" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-05-30-r-ggplot.md b/_posts/2019-05-30-r-ggplot.md new file mode 100644 index 000000000..2f57048fc --- /dev/null +++ b/_posts/2019-05-30-r-ggplot.md @@ -0,0 +1,9 @@ +--- +title: "Data visualization in R with ggplot2" +text: "The fundamentals of visualizing data in R using the ggplot2 package." +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/236" +date: "2019-05-30" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-06-06-r-statistics.md b/_posts/2019-06-06-r-statistics.md new file mode 100644 index 000000000..a89766bf7 --- /dev/null +++ b/_posts/2019-06-06-r-statistics.md @@ -0,0 +1,10 @@ +--- +title: "Statistics in R" +text: "Building from our previous lesson, we will go over more advanced statistical analyses using the R programming language, and especially cases where your data may be a little bit messy or you might be working with repeated-measures data (also known as hierarchical data or within-subject data). We'll assume that you are familiar with basic linear regression (e.g. testing if x predicts y) and statistics basics (e.g. how to interpret a p-value), but we will do a brief review and explain everything else as we go! +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/237" +date: "2019-06-06" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-06-13-intro-python.md b/_posts/2019-06-13-intro-python.md new file mode 100644 index 000000000..8d28b8e4a --- /dev/null +++ b/_posts/2019-06-13-intro-python.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Python" +text: "Introduction to the programming language Python with a beginner-friendly participatory live-coding. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/238" +date: "2019-06-13" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-06-20-data-analysis-workflow.md b/_posts/2019-06-20-data-analysis-workflow.md new file mode 100644 index 000000000..a3267f48e --- /dev/null +++ b/_posts/2019-06-20-data-analysis-workflow.md @@ -0,0 +1,10 @@ +--- +title: "Designing data analysis workflows" +text: "How to make data analysis workflows in the programming language Python with a beginner-friendly participatory live-coding. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/239" +date: "2019-06-20" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-06-27-oop-python.md b/_posts/2019-06-27-oop-python.md new file mode 100644 index 000000000..1f33aaaaf --- /dev/null +++ b/_posts/2019-06-27-oop-python.md @@ -0,0 +1,10 @@ +--- +title: "Object-oriented programming in Python" +text: "Understanding and using object-oriented programming in the programming language Python with a beginner-friendly participatory live-coding. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/240" +date: "2019-06-27" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-07-04-coworking.md b/_posts/2019-07-04-coworking.md new file mode 100644 index 000000000..8662594ff --- /dev/null +++ b/_posts/2019-07-04-coworking.md @@ -0,0 +1,10 @@ +--- +title: "Co-working" +text: "Join us to work on some code in good company. Bring something to work on, ask and discuss with your fellow coders. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/254" +date: "2019-07-04" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-07-11-bash-intro.md b/_posts/2019-07-11-bash-intro.md new file mode 100644 index 000000000..09a0c8554 --- /dev/null +++ b/_posts/2019-07-11-bash-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Bash and shell scripting" +text: "This introduction to BASH aims to make participants capable of working from the command line in Unix environments. The focus of this lesson will be to learn common file system tasks and to use built-in tools to make your work more efficient (and fun!). This is a beginner level workshop, so no previous knowledge is required. A few intermediate level concept will be introduced, but we will not go into scripting in BASH. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/242" +date: "2019-07-11" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-07-18-git-intro.md b/_posts/2019-07-18-git-intro.md new file mode 100644 index 000000000..9c7dc5a3e --- /dev/null +++ b/_posts/2019-07-18-git-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Git" +text: "Learn how to take advantage of version control for your projects and why it can be useful. We will be focusing on Git, a popular piece of software that does version control. This session is geared towards complete beginners - if you've never touched Git before, this is for you! +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/243" +date: "2019-07-18" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-07-25-journal-club.md b/_posts/2019-07-25-journal-club.md new file mode 100644 index 000000000..445542bd6 --- /dev/null +++ b/_posts/2019-07-25-journal-club.md @@ -0,0 +1,10 @@ +--- +title: "Journal Club - academic workflows" +text: "The basics of data analysis using the programming language Python with a beginner-friendly participatory live-coding. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/255" +date: "2019-07-25" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-08-01-collaborating-github.md b/_posts/2019-08-01-collaborating-github.md new file mode 100644 index 000000000..74cd3d5fe --- /dev/null +++ b/_posts/2019-08-01-collaborating-github.md @@ -0,0 +1,10 @@ +--- +title: "Collaborating on GitHub" +text: "Git and Github are tools not only for version control of your own code, but are widely used for collaborative team coding! Learn more about how you can use Git collaboratively on a project, the genereal workflow as well as details about the step-by-step process. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/256" +date: "2019-08-01" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-08-08-machine-learning.md b/_posts/2019-08-08-machine-learning.md new file mode 100644 index 000000000..5e056a6fd --- /dev/null +++ b/_posts/2019-08-08-machine-learning.md @@ -0,0 +1,9 @@ +--- +title: "Machine learning: introduction to topics" +text: "" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/257" +date: "2019-08-08" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-08-15-image-processing-python.md b/_posts/2019-08-15-image-processing-python.md new file mode 100644 index 000000000..2edbcb5a5 --- /dev/null +++ b/_posts/2019-08-15-image-processing-python.md @@ -0,0 +1,10 @@ +--- +title: "Image processing in Python" +text: "This is an introductory tutorial on image processing using Python packages. We will understand image data types, manipulate and prepare images for analysis such as image segmentation. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/258" +date: "2019-08-15" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-08-22-coworking.md b/_posts/2019-08-22-coworking.md new file mode 100644 index 000000000..3fb924416 --- /dev/null +++ b/_posts/2019-08-22-coworking.md @@ -0,0 +1,10 @@ +--- +title: "Co-working" +text: "Join us to work on some code in good company. Bring something to work on, ask and discuss with your fellow coders. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/259" +date: "2019-08-22" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-09-26-python-intro.md b/_posts/2019-09-26-python-intro.md new file mode 100644 index 000000000..e80dd33f4 --- /dev/null +++ b/_posts/2019-09-26-python-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Python" +text: "Introduction to the programming language Python with a beginner-friendly participatory live-coding. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/262" +date: "2019-09-26" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-10-03-SWC-python.md b/_posts/2019-10-03-SWC-python.md new file mode 100644 index 000000000..3b3d37ce2 --- /dev/null +++ b/_posts/2019-10-03-SWC-python.md @@ -0,0 +1,11 @@ +--- +title: Software Carpentry Workshop (2 days) - Python/Unix Shell/Git +text: "Join us for a hands-on two-day Software Carpentry workshop covering core small research team skills +including programming with Python, automating tasks with Unix Shell, and version control with Git. +Workshop costs $25 and is open to everyone. Click to see the event page for more details and registration!" +location: MADLab, Gerstein Science Information Centre, Room B112 +link: https://uoftcoders.github.io/2019-10-03-utoronto/ +date: 2019-10-03 +startTime: '09:00' +endTime: '16:30' +--- diff --git a/_posts/2019-10-03-r-intro.md b/_posts/2019-10-03-r-intro.md new file mode 100644 index 000000000..07342ca19 --- /dev/null +++ b/_posts/2019-10-03-r-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to R" +text: "The basics of using R and the Tidyverse for working with data, specifically: - Intro to R/navigating RStudio - Intro to Tidyverse - pipe operators - Basic data wrangling with dplyr and tidyr packages +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/271" +date: "2019-10-03" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-10-10-bash-intro.md b/_posts/2019-10-10-bash-intro.md new file mode 100644 index 000000000..d015f9240 --- /dev/null +++ b/_posts/2019-10-10-bash-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Bash and shell scripting" +text: "This introduction to BASH aims to make participants capable of working from the command line in Unix environments. The focus of this lesson will be to learn common file system tasks and to use built-in tools to make your work more efficient (and fun!). This is a beginner level workshop, so no previous knowledge is required. A few intermediate level concept will be introduced, but we will not go into scripting in BASH. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/263" +date: "2019-10-10" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-10-17-git-intro.md b/_posts/2019-10-17-git-intro.md new file mode 100644 index 000000000..5dd83fcc1 --- /dev/null +++ b/_posts/2019-10-17-git-intro.md @@ -0,0 +1,10 @@ +--- +title: "Intro to Git" +text: "Learn how to take advantage of version control for your projects and why it can be useful. We will be focusing on Git, a popular piece of software that does version control. This session is geared towards complete beginners - if you've never touched Git before, this is for you! +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/264" +date: "2019-10-17" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-10-24-reproducible-programming-bp.md b/_posts/2019-10-24-reproducible-programming-bp.md new file mode 100644 index 000000000..6cf7488c6 --- /dev/null +++ b/_posts/2019-10-24-reproducible-programming-bp.md @@ -0,0 +1,10 @@ +--- +title: "Best practices for reproducible programming" +text: "People are talking a lot these days about research being 'open' and 'reproducible'. It all sounds great, but HOW do we do it? How can we apply these great ideals to our actual work? This week we'll discuss reproducible computational research, guided by [Ten simple rules for computational research](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003285) and Mozilla's [code review guidelines](https://mozillascience.github.io/codeReview/review.html) +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/265" +date: "2019-10-24" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-10-31-code-review.md b/_posts/2019-10-31-code-review.md new file mode 100644 index 000000000..24c291578 --- /dev/null +++ b/_posts/2019-10-31-code-review.md @@ -0,0 +1,10 @@ +--- +title: "Code Review" +text: "We will have a brief overview of code review (looking over code for mistakes, optimization etc. to increase the overall quality of the code), why you should do it, and how to do it. Then we will jump in and look at some of the attendees' code in pairs or groups. If you have some code that is currently being developed, we encourage you to bring it to the session for code review. Don't worry if you haven't fully optimized it yet, that's why we're holding this session :) Or if you'd prefer you can take part as just a reviewer instead and see how others write code and help them check for errors too! +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/266" +date: "2019-10-31" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-11-07-python-unit-tests.md b/_posts/2019-11-07-python-unit-tests.md new file mode 100644 index 000000000..ee49f3a55 --- /dev/null +++ b/_posts/2019-11-07-python-unit-tests.md @@ -0,0 +1,10 @@ +--- +title: "Python Unit Tests" +text: "Want to be sure your code works as intended? Say hello to unit testing! Unit tests are an automated way to check your code for bugs. Not only that but developing unit tests will improve your code all on its own. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/267" +date: "2019-11-07" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-11-14-python-statistics.md b/_posts/2019-11-14-python-statistics.md new file mode 100644 index 000000000..d163811d7 --- /dev/null +++ b/_posts/2019-11-14-python-statistics.md @@ -0,0 +1,12 @@ +--- +title: "Intro to Statistics in Python" +text: "Statistics is an important cornerstone to data analysis. + Our introduction to doing statistics in Python lesson + will go over basic descriptive and inferential statistics +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/268" +date: "2019-11-14" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-11-21-r-statistics.md b/_posts/2019-11-21-r-statistics.md new file mode 100644 index 000000000..e995952dd --- /dev/null +++ b/_posts/2019-11-21-r-statistics.md @@ -0,0 +1,10 @@ +--- +title: "Statistics in R" +text: "Building from our previous lesson, we will go over more advanced statistical analyses using the R programming language, and especially cases where your data may be a little bit messy or you might be working with repeated-measures data (also known as hierarchical data or within-subject data). We'll assume that you are familiar with basic linear regression (e.g. testing if x predicts y) and statistics basics (e.g. how to interpret a p-value), but we will do a brief review and explain everything else as we go! +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/269" +date: "2019-11-21" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2019-11-28-r-ggplot.md b/_posts/2019-11-28-r-ggplot.md new file mode 100644 index 000000000..f8f1c6b8c --- /dev/null +++ b/_posts/2019-11-28-r-ggplot.md @@ -0,0 +1,10 @@ +--- +title: "Data visualization in R with ggplot2" +text: "The fundamentals of visualizing data in R using the ggplot2 package. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/270" +date: "2019-11-28" +startTime: "18:10" +endTime: "19:00" +--- diff --git a/_posts/2020-02-06-reproducible-rstudio.md b/_posts/2020-02-06-reproducible-rstudio.md new file mode 100644 index 000000000..3f8acf2d4 --- /dev/null +++ b/_posts/2020-02-06-reproducible-rstudio.md @@ -0,0 +1,10 @@ +--- +title: "Reproducible Science in RStudio" +text: "An overview of the RStudio IDE highlighting features to make your work better documented and more reproducible. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/280" +date: "2020-02-06" +startTime: "18:10" +endTime: "20:00" +--- diff --git a/_posts/2020-02-27-supervised-ml-python.md b/_posts/2020-02-27-supervised-ml-python.md new file mode 100644 index 000000000..33cd2e58d --- /dev/null +++ b/_posts/2020-02-27-supervised-ml-python.md @@ -0,0 +1,10 @@ +--- +title: "Supervised machine learning in Python" +text: "An introduction to supervised machine learning in Python. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/281" +date: "2020-02-27" +startTime: "18:10" +endTime: "20:00" +--- diff --git a/_posts/2020-03-12-git-ci-python.md b/_posts/2020-03-12-git-ci-python.md new file mode 100644 index 000000000..44a4aa1e4 --- /dev/null +++ b/_posts/2020-03-12-git-ci-python.md @@ -0,0 +1,10 @@ +--- +title: "Git: continuous integration with examples in Python" +text: "An overview of setting up continuous integration in a Git repo with worked examples in Python. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/283" +date: "2020-03-12" +startTime: "18:10" +endTime: "20:00" +--- diff --git a/_posts/2020-03-26-programming-tidyverse.md b/_posts/2020-03-26-programming-tidyverse.md new file mode 100644 index 000000000..c2a384ea0 --- /dev/null +++ b/_posts/2020-03-26-programming-tidyverse.md @@ -0,0 +1,10 @@ +--- +title: "Programming and Data Wrangling in R with the Tidyverse" +text: "Exploring how to develop basic software for data wrangling with the Tidyverse suite of packages. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/282" +date: "2020-03-26" +startTime: "18:10" +endTime: "20:00" +--- diff --git a/_posts/2020-04-09-writing-latex-pandoc.md b/_posts/2020-04-09-writing-latex-pandoc.md new file mode 100644 index 000000000..1769bc0c8 --- /dev/null +++ b/_posts/2020-04-09-writing-latex-pandoc.md @@ -0,0 +1,10 @@ +--- +title: "Scientific writing with LaTeX and Pandoc" +text: "An introduction to writing scientific and technical documents with LaTeX and managing document formats with Pandoc. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/284" +date: "2020-04-09" +startTime: "18:10" +endTime: "20:00" +--- diff --git a/_posts/2020-04-23-image-processing.md b/_posts/2020-04-23-image-processing.md new file mode 100644 index 000000000..3829e60e6 --- /dev/null +++ b/_posts/2020-04-23-image-processing.md @@ -0,0 +1,10 @@ +--- +title: "Image Processing" +text: "An introduction to Image Processing in Python. +" +location: "MADLab" +link: "https://github.com/UofTCoders/Events/issues/285" +date: "2020-04-23" +startTime: "18:10" +endTime: "20:00" +--- diff --git a/_posts/2020-10-22-lightning-demos-general.md b/_posts/2020-10-22-lightning-demos-general.md new file mode 100644 index 000000000..98ce444dd --- /dev/null +++ b/_posts/2020-10-22-lightning-demos-general.md @@ -0,0 +1,10 @@ +--- +title: "Lightning demos + welcome back" +text: "Short coding demos. Anyone is welcome to present! +" +location: "Zoom" +link: "NA" +date: "2020-10-22" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2020-10-29-reproducible-rstudio.md b/_posts/2020-10-29-reproducible-rstudio.md new file mode 100644 index 000000000..eb984a317 --- /dev/null +++ b/_posts/2020-10-29-reproducible-rstudio.md @@ -0,0 +1,10 @@ +--- +title: "Reproducible Science in RStudio" +text: "An overview of the RStudio IDE highlighting features to make your work better documented and more reproducible. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/287" +date: "2020-10-29" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2020-11-05-lightning-demos-python.md b/_posts/2020-11-05-lightning-demos-python.md new file mode 100644 index 000000000..a1f62129d --- /dev/null +++ b/_posts/2020-11-05-lightning-demos-python.md @@ -0,0 +1,10 @@ +--- +title: "Lightning demos: Python" +text: "Short coding demos - this time themed specifically around Python. Anyone is welcome to present! +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/288" +date: "2020-11-05" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2020-11-12-programming-tidyverse.md b/_posts/2020-11-12-programming-tidyverse.md new file mode 100644 index 000000000..65c6b6cee --- /dev/null +++ b/_posts/2020-11-12-programming-tidyverse.md @@ -0,0 +1,10 @@ +--- +title: "Programming and Data Wrangling in R with the Tidyverse" +text: "Exploring how to develop basic software for data wrangling with the tidyverse suite of packages. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/289" +date: "2020-11-12" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2020-11-19-lightning-demos-r.md b/_posts/2020-11-19-lightning-demos-r.md new file mode 100644 index 000000000..7407aeb61 --- /dev/null +++ b/_posts/2020-11-19-lightning-demos-r.md @@ -0,0 +1,10 @@ +--- +title: "Lightning demos: R" +text: "Short coding demos - this time themed specifically around R. Anyone is welcome to present! +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/290" +date: "2020-11-19" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2020-11-26-writing-markdown-pandoc.md b/_posts/2020-11-26-writing-markdown-pandoc.md new file mode 100644 index 000000000..a6bcf82f5 --- /dev/null +++ b/_posts/2020-11-26-writing-markdown-pandoc.md @@ -0,0 +1,10 @@ +--- +title: "Scientific writing with Markdown and Pandoc" +text: "An introduction to writing scientific and technical documents with Markdown and managing document formats with Pandoc. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/291" +date: "2020-11-26" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2020-12-03-lightning-demos-data-viz.md b/_posts/2020-12-03-lightning-demos-data-viz.md new file mode 100644 index 000000000..08b174c99 --- /dev/null +++ b/_posts/2020-12-03-lightning-demos-data-viz.md @@ -0,0 +1,10 @@ +--- +title: "Lightning demos: Data visualization" +text: "Short coding demos - this time themed specifically around data visualization with any language. Anyone is welcome to present! +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/292" +date: "2020-12-03" +startTime: "19:00" +endTime: "20:00" +--- diff --git a/_posts/2021-01-13-intro-python.md b/_posts/2021-01-13-intro-python.md new file mode 100644 index 000000000..b4b527eec --- /dev/null +++ b/_posts/2021-01-13-intro-python.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to Python" +text: "A brief introduction to Python for beginners. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/293" +date: "2021-01-13" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-01-20-intro-r.md b/_posts/2021-01-20-intro-r.md new file mode 100644 index 000000000..fe271f962 --- /dev/null +++ b/_posts/2021-01-20-intro-r.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to R" +text: "A brief introduction to R for beginners. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/294" +date: "2021-01-20" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-01-27-intro-git.md b/_posts/2021-01-27-intro-git.md new file mode 100644 index 000000000..0e0674c9e --- /dev/null +++ b/_posts/2021-01-27-intro-git.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to Git" +text: "A brief introduction to version control with Git for beginners. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/295" +date: "2021-01-27" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-02-03-python-scikit-learn.md b/_posts/2021-02-03-python-scikit-learn.md new file mode 100644 index 000000000..654c20771 --- /dev/null +++ b/_posts/2021-02-03-python-scikit-learn.md @@ -0,0 +1,10 @@ +--- +title: "Python: scikit-learn" +text: "An introduction to using scikit-learn in Python. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/296" +date: "2021-02-03" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-02-10-r-stat-methods.md b/_posts/2021-02-10-r-stat-methods.md new file mode 100644 index 000000000..2c38dc401 --- /dev/null +++ b/_posts/2021-02-10-r-stat-methods.md @@ -0,0 +1,10 @@ +--- +title: "R: Statistical methods" +text: "A beginner-oriented overview of implementing statistical tests and models in R. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/297" +date: "2021-02-10" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-02-24-lightning-demos.md b/_posts/2021-02-24-lightning-demos.md new file mode 100644 index 000000000..4a9694c51 --- /dev/null +++ b/_posts/2021-02-24-lightning-demos.md @@ -0,0 +1,10 @@ +--- +title: "Lightning demos" +text: "Short coding demos - anyone is welcome to present! +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/298" +date: "2021-02-24" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-03-03-git-collab.md b/_posts/2021-03-03-git-collab.md new file mode 100644 index 000000000..91d4b8889 --- /dev/null +++ b/_posts/2021-03-03-git-collab.md @@ -0,0 +1,10 @@ +--- +title: "Collaborating with Git and GitHub" +text: "An overview of how to collaborate on projects using Git/GitHub. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/299" +date: "2021-03-03" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-03-10-intro-latex.md b/_posts/2021-03-10-intro-latex.md new file mode 100644 index 000000000..2b4821f0a --- /dev/null +++ b/_posts/2021-03-10-intro-latex.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to LaTeX" +text: "An introduction to preparing documents with LaTeX. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/300" +date: "2021-03-10" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-03-17-git-adv-topics.md b/_posts/2021-03-17-git-adv-topics.md new file mode 100644 index 000000000..d4bdbbd09 --- /dev/null +++ b/_posts/2021-03-17-git-adv-topics.md @@ -0,0 +1,10 @@ +--- +title: "Git: advanced topics" +text: "Advanced topics in Git - specific topics TBA. +" +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/301" +date: "2021-03-17" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-10-06-intro-python.md b/_posts/2021-10-06-intro-python.md new file mode 100644 index 000000000..5bb16865c --- /dev/null +++ b/_posts/2021-10-06-intro-python.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to Python" +text: "A brief introduction to Python for beginners. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/304" +date: "2021-10-06" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-10-13-intro-r.md b/_posts/2021-10-13-intro-r.md new file mode 100644 index 000000000..fbbdf74d9 --- /dev/null +++ b/_posts/2021-10-13-intro-r.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to R" +text: "A brief introduction to R for beginners. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/305" +date: "2021-10-13" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-10-20-intro-git.md b/_posts/2021-10-20-intro-git.md new file mode 100644 index 000000000..751ad34ca --- /dev/null +++ b/_posts/2021-10-20-intro-git.md @@ -0,0 +1,10 @@ +--- +title: "Introduction to Git" +text: "A brief introduction to version control with Git for beginners. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/306" +date: "2021-10-20" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-10-27-r-data-visualization.md b/_posts/2021-10-27-r-data-visualization.md new file mode 100644 index 000000000..4f7a003d5 --- /dev/null +++ b/_posts/2021-10-27-r-data-visualization.md @@ -0,0 +1,10 @@ +--- +title: "R: Data visualization with ggplot2" +text: "A beginner-oriented overview of plotting in R with ggplot2. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/307" +date: "2021-10-27" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-11-03-python-scikit-learn.md b/_posts/2021-11-03-python-scikit-learn.md new file mode 100644 index 000000000..a82a5fea7 --- /dev/null +++ b/_posts/2021-11-03-python-scikit-learn.md @@ -0,0 +1,10 @@ +--- +title: "Python: Machine learning with scikit-learn" +text: "An introduction to using scikit-learn in Python. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/308" +date: "2021-11-03" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-11-17-pandoc-markdown.md b/_posts/2021-11-17-pandoc-markdown.md new file mode 100644 index 000000000..b9a5a43c4 --- /dev/null +++ b/_posts/2021-11-17-pandoc-markdown.md @@ -0,0 +1,10 @@ +--- +title: "Pandoc and Markdown" +text: "An introduction to preparing documents with Pandoc and Markdown. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/309" +date: "2021-11-17" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-11-24-lightning-demos.md b/_posts/2021-11-24-lightning-demos.md new file mode 100644 index 000000000..0ffed90e7 --- /dev/null +++ b/_posts/2021-11-24-lightning-demos.md @@ -0,0 +1,10 @@ +--- +title: "Lightning demos" +text: "Short coding demos - anyone is welcome to present! +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/310" +date: "2021-11-24" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-12-01-r-blogdown.md b/_posts/2021-12-01-r-blogdown.md new file mode 100644 index 000000000..52c9aea9f --- /dev/null +++ b/_posts/2021-12-01-r-blogdown.md @@ -0,0 +1,10 @@ +--- +title: "Creating websites with RStudio and blogdown" +text: "An overview of how to create personal and professional websites using blogdown in RStudio. +" +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/311" +date: "2021-12-01" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2021-winter-co-working.md b/_posts/2021-winter-co-working.md new file mode 100644 index 000000000..6a39e659f --- /dev/null +++ b/_posts/2021-winter-co-working.md @@ -0,0 +1,10 @@ +--- +title: "Weekly co-working" +text: "An informal co-working session - come hang out with us while + working on code or whatever else you want to get done." +location: "Zoom" +link: "https://github.com/UofTCoders/Events/issues/302" +date: "NA" +startTime: "13:00" +endTime: "14:00" +--- diff --git a/_posts/2022-02-09-clustering-r.md b/_posts/2022-02-09-clustering-r.md new file mode 100644 index 000000000..a7dabb782 --- /dev/null +++ b/_posts/2022-02-09-clustering-r.md @@ -0,0 +1,9 @@ +--- +title: "Clustering with R" +text: "An introduction to clustering methods with R." +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/312" +date: "2022-02-09" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-03-02-supervised-learning-r.md b/_posts/2022-03-02-supervised-learning-r.md new file mode 100644 index 000000000..54222edc8 --- /dev/null +++ b/_posts/2022-03-02-supervised-learning-r.md @@ -0,0 +1,9 @@ +--- +title: "Supervised learning with R" +text: "A walkthrough of a supervised learning workflow in R." +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/313" +date: "2022-03-02" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-03-16-r-tidyverse-functions.md b/_posts/2022-03-16-r-tidyverse-functions.md new file mode 100644 index 000000000..2d4d42589 --- /dev/null +++ b/_posts/2022-03-16-r-tidyverse-functions.md @@ -0,0 +1,9 @@ +--- +title: "R: Writing functions with the tidyverse" +text: "An exploration of writing functions with tidyverse syntax in R." +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/314" +date: "2022-03-16" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-03-30-epidemic-modelling.md b/_posts/2022-03-30-epidemic-modelling.md new file mode 100644 index 000000000..152912ad8 --- /dev/null +++ b/_posts/2022-03-30-epidemic-modelling.md @@ -0,0 +1,9 @@ +--- +title: "Epidemic modelling" +text: "A brief overview on modelling epidemics with code." +location: "UofT Coders Discord server" +link: "https://github.com/UofTCoders/Events/issues/315" +date: "2022-03-30" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-10-19-co-working.md b/_posts/2022-10-19-co-working.md new file mode 100644 index 000000000..e0493850b --- /dev/null +++ b/_posts/2022-10-19-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTSG + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "MADLab, Room B112, Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/321" +date: "2022-10-19" +startTime: "15:00" +endTime: "17:00" +--- diff --git a/_posts/2022-10-19-python-pandas.md b/_posts/2022-10-19-python-pandas.md new file mode 100644 index 000000000..4d447ed16 --- /dev/null +++ b/_posts/2022-10-19-python-pandas.md @@ -0,0 +1,9 @@ +--- +title: "Python: Pandas" +text: "An introduction to working with data frames in Python using Pandas." +location: "MADLab, Room B112 Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/316" +date: "2022-10-19" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-10-28-co-working.md b/_posts/2022-10-28-co-working.md new file mode 100644 index 000000000..041e212ea --- /dev/null +++ b/_posts/2022-10-28-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTM + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "Graduate Lounge, William G. Davis Building" +link: "https://github.com/UofTCoders/Events/issues/322" +date: "2022-10-28" +startTime: "10:00" +endTime: "12:00" +--- diff --git a/_posts/2022-11-02-co-working.md b/_posts/2022-11-02-co-working.md new file mode 100644 index 000000000..46fd88d44 --- /dev/null +++ b/_posts/2022-11-02-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTSG + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "MADLab, Room B112, Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/323" +date: "2022-11-02" +startTime: "15:00" +endTime: "17:00" +--- diff --git a/_posts/2022-11-02-r-data-viz.md b/_posts/2022-11-02-r-data-viz.md new file mode 100644 index 000000000..c96a9fc13 --- /dev/null +++ b/_posts/2022-11-02-r-data-viz.md @@ -0,0 +1,9 @@ +--- +title: "Data visualization with R" +text: "A crash course in making plots in R using the ggplot2 library." +location: "University of Toronto Mississauga (Room TBA)" +link: "https://github.com/UofTCoders/Events/issues/317" +date: "2022-11-02" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-11-11-co-working.md b/_posts/2022-11-11-co-working.md new file mode 100644 index 000000000..35a0f34d0 --- /dev/null +++ b/_posts/2022-11-11-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTM + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "Graduate Lounge, William G. Davis Building" +link: "https://github.com/UofTCoders/Events/issues/324" +date: "2022-11-11" +startTime: "10:00" +endTime: "12:00" +--- diff --git a/_posts/2022-11-16-co-working.md b/_posts/2022-11-16-co-working.md new file mode 100644 index 000000000..79069d7c9 --- /dev/null +++ b/_posts/2022-11-16-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTSG + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "MADLab, Room B112, Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/325" +date: "2022-11-16" +startTime: "15:00" +endTime: "17:00" +--- diff --git a/_posts/2022-11-16-r-sql.md b/_posts/2022-11-16-r-sql.md new file mode 100644 index 000000000..b778c57f0 --- /dev/null +++ b/_posts/2022-11-16-r-sql.md @@ -0,0 +1,9 @@ +--- +title: "SQL with R" +text: "A lesson covering working with SQL databases entirely using R." +location: "MADLab, Room B112, Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/318" +date: "2022-11-16" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-11-30-co-working.md b/_posts/2022-11-30-co-working.md new file mode 100644 index 000000000..9d779872d --- /dev/null +++ b/_posts/2022-11-30-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTSG + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "MADLab, Room B112, Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/326" +date: "2022-11-30" +startTime: "15:00" +endTime: "17:00" +--- diff --git a/_posts/2022-11-30-r-functions-tidyverse.md b/_posts/2022-11-30-r-functions-tidyverse.md new file mode 100644 index 000000000..e9945f118 --- /dev/null +++ b/_posts/2022-11-30-r-functions-tidyverse.md @@ -0,0 +1,9 @@ +--- +title: "R: Writing functions with the tidyverse" +text: "A lesson covering how to write flexible functions using the tidyverse in R." +location: "MADLab, Room B112, Gerstein Library" +link: "https://github.com/UofTCoders/Events/issues/319" +date: "2022-11-30" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2022-12-09-co-working.md b/_posts/2022-12-09-co-working.md new file mode 100644 index 000000000..4c88b6585 --- /dev/null +++ b/_posts/2022-12-09-co-working.md @@ -0,0 +1,9 @@ +--- +title: "Co-working (UTM + online)" +text: "A friendly co-working session. Bring yourself and something to work on!" +location: "Graduate Lounge, William G. Davis Building" +link: "https://github.com/UofTCoders/Events/issues/327" +date: "2022-12-09" +startTime: "10:00" +endTime: "12:00" +--- diff --git a/_posts/2023-02-01-py-data-vis.md b/_posts/2023-02-01-py-data-vis.md new file mode 100644 index 000000000..0a3b86cf9 --- /dev/null +++ b/_posts/2023-02-01-py-data-vis.md @@ -0,0 +1,9 @@ +--- +title: "Data visualization in Python" +text: "An introduction to exploring and visualizing your data in Python." +location: "Discord" +link: "https://github.com/UofTCoders/Events/issues/328" +date: "2023-02-01" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2023-02-15-intro-bash.md b/_posts/2023-02-15-intro-bash.md new file mode 100644 index 000000000..49264e52b --- /dev/null +++ b/_posts/2023-02-15-intro-bash.md @@ -0,0 +1,9 @@ +--- +title: "Introduction to Bash" +text: "A brief overview of working at the command line in Unix environments." +location: "Discord" +link: "https://github.com/UofTCoders/Events/issues/329" +date: "2023-02-15" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2023-03-01-python-numpy-pandas.md b/_posts/2023-03-01-python-numpy-pandas.md new file mode 100644 index 000000000..5fd3e0cbf --- /dev/null +++ b/_posts/2023-03-01-python-numpy-pandas.md @@ -0,0 +1,9 @@ +--- +title: "Python: Data processing with numpy and pandas" +text: "A code-along demonstrating two popular libraries for data processing in Python." +location: "TBA in-person + Discord" +link: "https://github.com/UofTCoders/Events/issues/330" +date: "2023-03-01" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2023-03-15-python-intro-ml.md b/_posts/2023-03-15-python-intro-ml.md new file mode 100644 index 000000000..29735d9cf --- /dev/null +++ b/_posts/2023-03-15-python-intro-ml.md @@ -0,0 +1,9 @@ +--- +title: "Python: Intro to machine learning" +text: "A tutorial covering basic ML topics in Python." +location: "TBA in-person + Discord" +link: "https://github.com/UofTCoders/Events/issues/331" +date: "2023-03-15" +startTime: "18:00" +endTime: "19:00" +--- diff --git a/_posts/2023-03-29-social.md b/_posts/2023-03-29-social.md new file mode 100644 index 000000000..85e3e379a --- /dev/null +++ b/_posts/2023-03-29-social.md @@ -0,0 +1,9 @@ +--- +title: "End of Term Social" +text: "" +location: "GSU Pub" +link: "https://github.com/UofTCoders/Events/issues/332" +date: "2023-03-29" +startTime: "18:00" +endTime: "20:00" +--- diff --git a/_posts/2077-01-01-myEvent.markdown b/_posts/2077-01-01-myEvent.markdown deleted file mode 100644 index 40f904497..000000000 --- a/_posts/2077-01-01-myEvent.markdown +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Make Your First Event -text: In order to make your first event, follow the instructions here. -location: Your Location -link: https://github.com/mozillascience/studyGroup#how-to-launch-a-new-event -date: 2077-01-01 -startTime: '20:00' -endTime: '21:00' - ---- diff --git a/codeOfConduct.md b/codeOfConduct.md index 45356d833..5dcdc2f92 100644 --- a/codeOfConduct.md +++ b/codeOfConduct.md @@ -1,25 +1,16 @@ -# Code of Conduct - -Study Group events are community events intended for networking and collaboration as well as learning. We value the participation of every member of the scientific community and want all attendees to have an enjoyable and fulfilling experience. Accordingly, all attendees are expected to show respect and courtesy to other attendees throughout the event and in interactions online associated with Study Group. +Study Group events are community events intended for networking and collaboration as well as learning. We value the participation of every member of the scientific community and want all attendees to have an enjoyable and fulfilling experience. Accordingly, all attendees are expected to show respect and courtesy to other attendees throughout the events and in interactions online associated with Study Group. To make clear what is expected, everyone taking part in Study Group events and discussions—instructors, helpers, organizers, and learners—is required to conform to the following Code of Conduct. Organizers will enforce this code throughout events, but you may also contact us privately; all communication will be treated as confidential. -### The Short Version - - - Study Group is dedicated to providing a harassment-free learning experience for everyone, regardless of gender, sexual orientation, disability, physical appearance, body size, race, religion, or choice of text editor. We do not tolerate harassment of participants in any form. - - All communication should be appropriate for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate for any event. - - Be kind to others. Do not insult or put down other attendees. - - Behave professionally. Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate. - - Attendees violating these rules may be asked to leave the event at the sole discretion of the event organizers without a refund of any charge that may have been levied. +## Code of Conduct -Thank you for helping make this a welcoming, friendly event for all. - -### The Longer Version +We are dedicated to providing a harassment-free learning experience for everyone, regardless of gender, sexual orientation, disability, physical appearance, body size, race, religion, choice of operating system, or choice of text editor. We do not tolerate harassment of participants in any form. Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. +Participants asked to stop any harassing behaviour are expected to comply immediately. -Participants asked to stop any harassing behavior are expected to comply immediately. +Be kind to others. Be aware of your words, and use language that is positive and community-building. All communication should be appropriate for a professional audience including people of many different backgrounds. Remember that sexist, racist, and other exclusionary jokes can be offensive to those around you. -Be careful in the words that you choose. Remember that sexist, racist, and other exclusionary jokes can be offensive to those around you. +If a participant engages in behaviour that violates this code of conduct, the organizers may take any action they deem appropriate, including warning the offender or expulsion from the event. -If a participant engages in behavior that violates this code of conduct, the organizers may take any action they deem appropriate, including warning the offender or expulsion from the event with no refund of any fee that may have been levied. \ No newline at end of file +Thank you for helping make this a welcoming, friendly event for all. diff --git a/img/UofTCoders_Lightbulb.psd b/img/UofTCoders_Lightbulb.psd new file mode 100644 index 000000000..c7a381eb1 Binary files /dev/null and b/img/UofTCoders_Lightbulb.psd differ diff --git a/img/about/1.jpg b/img/about/1.jpg deleted file mode 100644 index 0eadb7923..000000000 Binary files a/img/about/1.jpg and /dev/null differ diff --git a/img/about/2.jpg b/img/about/2.jpg deleted file mode 100644 index 24b4e5bc4..000000000 Binary files a/img/about/2.jpg and /dev/null differ diff --git a/img/about/3.jpg b/img/about/3.jpg deleted file mode 100644 index 6ed1b35a8..000000000 Binary files a/img/about/3.jpg and /dev/null differ diff --git a/img/about/4.jpg b/img/about/4.jpg deleted file mode 100644 index 4a4321017..000000000 Binary files a/img/about/4.jpg and /dev/null differ diff --git a/img/header-bg.jpg b/img/header-bg.jpg deleted file mode 100644 index eaf775ec1..000000000 Binary files a/img/header-bg.jpg and /dev/null differ diff --git a/img/header1.jpg b/img/header1.jpg new file mode 100644 index 000000000..7dfe547ca Binary files /dev/null and b/img/header1.jpg differ diff --git a/img/logos/aetuts.jpg b/img/logos/aetuts.jpg deleted file mode 100644 index c75addaec..000000000 Binary files a/img/logos/aetuts.jpg and /dev/null differ diff --git a/img/logos/creative-market.jpg b/img/logos/creative-market.jpg deleted file mode 100644 index 3f308535e..000000000 Binary files a/img/logos/creative-market.jpg and /dev/null differ diff --git a/img/logos/designmodo.jpg b/img/logos/designmodo.jpg deleted file mode 100644 index 44ce8893b..000000000 Binary files a/img/logos/designmodo.jpg and /dev/null differ diff --git a/img/logos/envato.jpg b/img/logos/envato.jpg deleted file mode 100644 index 5d70a8705..000000000 Binary files a/img/logos/envato.jpg and /dev/null differ diff --git a/img/logos/lightbulb_src.png b/img/logos/lightbulb_src.png new file mode 100644 index 000000000..eacbf4fd7 Binary files /dev/null and b/img/logos/lightbulb_src.png differ diff --git a/img/logos/logo_fullsize.png b/img/logos/logo_fullsize.png new file mode 100644 index 000000000..53d028932 Binary files /dev/null and b/img/logos/logo_fullsize.png differ diff --git a/img/logos/logo_fullsize_dark.png b/img/logos/logo_fullsize_dark.png new file mode 100644 index 000000000..c50028866 Binary files /dev/null and b/img/logos/logo_fullsize_dark.png differ diff --git a/img/logos/logo_icon.png b/img/logos/logo_icon.png new file mode 100644 index 000000000..094ab457e Binary files /dev/null and b/img/logos/logo_icon.png differ diff --git a/img/logos/logo_icon_dark.png b/img/logos/logo_icon_dark.png new file mode 100644 index 000000000..43f0a5baf Binary files /dev/null and b/img/logos/logo_icon_dark.png differ diff --git a/img/logos/microlancer.jpg b/img/logos/microlancer.jpg deleted file mode 100644 index c4b91112a..000000000 Binary files a/img/logos/microlancer.jpg and /dev/null differ diff --git a/img/logos/themeforest.jpg b/img/logos/themeforest.jpg deleted file mode 100644 index 1dbba6f43..000000000 Binary files a/img/logos/themeforest.jpg and /dev/null differ diff --git a/img/logos/wordpress.jpg b/img/logos/wordpress.jpg deleted file mode 100644 index 29be11dce..000000000 Binary files a/img/logos/wordpress.jpg and /dev/null differ diff --git a/img/map-image.png b/img/map-image.png deleted file mode 100644 index a047a27d3..000000000 Binary files a/img/map-image.png and /dev/null differ diff --git a/img/newbackground.png b/img/newbackground.png new file mode 100644 index 000000000..e97df1020 Binary files /dev/null and b/img/newbackground.png differ diff --git a/img/portfolio/dreams-thumbnail.png b/img/portfolio/dreams-thumbnail.png deleted file mode 100644 index 1b925d810..000000000 Binary files a/img/portfolio/dreams-thumbnail.png and /dev/null differ diff --git a/img/portfolio/dreams.png b/img/portfolio/dreams.png deleted file mode 100644 index e2773b237..000000000 Binary files a/img/portfolio/dreams.png and /dev/null differ diff --git a/img/portfolio/escape-thumbnail.png b/img/portfolio/escape-thumbnail.png deleted file mode 100644 index d5fcee8dd..000000000 Binary files a/img/portfolio/escape-thumbnail.png and /dev/null differ diff --git a/img/portfolio/escape.png b/img/portfolio/escape.png deleted file mode 100644 index a2343b4de..000000000 Binary files a/img/portfolio/escape.png and /dev/null differ diff --git a/img/portfolio/golden-thumbnail.png b/img/portfolio/golden-thumbnail.png deleted file mode 100644 index 9b971ae83..000000000 Binary files a/img/portfolio/golden-thumbnail.png and /dev/null differ diff --git a/img/portfolio/golden.png b/img/portfolio/golden.png deleted file mode 100644 index b8fe73590..000000000 Binary files a/img/portfolio/golden.png and /dev/null differ diff --git a/img/portfolio/roundicons-thumbnail.png b/img/portfolio/roundicons-thumbnail.png deleted file mode 100644 index 97c0e9a71..000000000 Binary files a/img/portfolio/roundicons-thumbnail.png and /dev/null differ diff --git a/img/portfolio/roundicons.png b/img/portfolio/roundicons.png deleted file mode 100644 index dec02785c..000000000 Binary files a/img/portfolio/roundicons.png and /dev/null differ diff --git a/img/portfolio/startup-framework-thumbnail.png b/img/portfolio/startup-framework-thumbnail.png deleted file mode 100644 index 3516bbc42..000000000 Binary files a/img/portfolio/startup-framework-thumbnail.png and /dev/null differ diff --git a/img/portfolio/startup-framework.png b/img/portfolio/startup-framework.png deleted file mode 100644 index 0b612f39f..000000000 Binary files a/img/portfolio/startup-framework.png and /dev/null differ diff --git a/img/portfolio/treehouse-thumbnail.png b/img/portfolio/treehouse-thumbnail.png deleted file mode 100644 index a800611cc..000000000 Binary files a/img/portfolio/treehouse-thumbnail.png and /dev/null differ diff --git a/img/portfolio/treehouse.png b/img/portfolio/treehouse.png deleted file mode 100644 index df0447447..000000000 Binary files a/img/portfolio/treehouse.png and /dev/null differ diff --git a/img/team/1.jpg b/img/team/1.jpg deleted file mode 100644 index cabfc561c..000000000 Binary files a/img/team/1.jpg and /dev/null differ diff --git a/img/team/2.jpg b/img/team/2.jpg deleted file mode 100644 index 49d1c706d..000000000 Binary files a/img/team/2.jpg and /dev/null differ diff --git a/img/team/3.jpg b/img/team/3.jpg deleted file mode 100644 index f34ef1fe2..000000000 Binary files a/img/team/3.jpg and /dev/null differ diff --git a/img/watch.png b/img/watch.png new file mode 100644 index 000000000..6f007f70e Binary files /dev/null and b/img/watch.png differ diff --git a/js/contact_me.js b/js/contact_me.js deleted file mode 100644 index 056706762..000000000 --- a/js/contact_me.js +++ /dev/null @@ -1,70 +0,0 @@ -$(function() { - - $("input,textarea").jqBootstrapValidation({ - preventSubmit: true, - submitError: function($form, event, errors) { - // additional error messages or events - }, - submitSuccess: function($form, event) { - event.preventDefault(); // prevent default submit behaviour - // get values from FORM - var name = $("input#name").val(); - var email = $("input#email").val(); - var phone = $("input#phone").val(); - var message = $("textarea#message").val(); - var firstName = name; // For Success/Failure Message - // Check for white space in name for Success/Fail message - if (firstName.indexOf(' ') >= 0) { - firstName = name.split(' ').slice(0, -1).join(' '); - } - $.ajax({ - url: "././mail/contact_me.php", - type: "POST", - data: { - name: name, - phone: phone, - email: email, - message: message - }, - cache: false, - success: function() { - // Success message - $('#success').html("
    "); - $('#success > .alert-success').html(""); - $('#success > .alert-success') - .append("Your message has been sent. "); - $('#success > .alert-success') - .append('
    '); - - //clear all fields - $('#contactForm').trigger("reset"); - }, - error: function() { - // Fail message - $('#success').html("
    "); - $('#success > .alert-danger').html(""); - $('#success > .alert-danger').append("Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!"); - $('#success > .alert-danger').append('
    '); - //clear all fields - $('#contactForm').trigger("reset"); - }, - }) - }, - filter: function() { - return $(this).is(":visible"); - }, - }); - - $("a[data-toggle=\"tab\"]").click(function(e) { - e.preventDefault(); - $(this).tab("show"); - }); -}); - - -/*When clicking on Full hide fail/success boxes */ -$('#name').focus(function() { - $('#success').html(''); -}); diff --git a/js/jqBootstrapValidation.js b/js/jqBootstrapValidation.js deleted file mode 100644 index 29cbb083e..000000000 --- a/js/jqBootstrapValidation.js +++ /dev/null @@ -1,912 +0,0 @@ -/* jqBootstrapValidation - * A plugin for automating validation on Twitter Bootstrap formatted forms. - * - * v1.3.6 - * - * License: MIT - see LICENSE file - * - * http://ReactiveRaven.github.com/jqBootstrapValidation/ - */ - -(function( $ ){ - - var createdElements = []; - - var defaults = { - options: { - prependExistingHelpBlock: false, - sniffHtml: true, // sniff for 'required', 'maxlength', etc - preventSubmit: true, // stop the form submit event from firing if validation fails - submitError: false, // function called if there is an error when trying to submit - submitSuccess: false, // function called just before a successful submit event is sent to the server - semanticallyStrict: false, // set to true to tidy up generated HTML output - autoAdd: { - helpBlocks: true - }, - filter: function () { - // return $(this).is(":visible"); // only validate elements you can see - return true; // validate everything - } - }, - methods: { - init : function( options ) { - - var settings = $.extend(true, {}, defaults); - - settings.options = $.extend(true, settings.options, options); - - var $siblingElements = this; - - var uniqueForms = $.unique( - $siblingElements.map( function () { - return $(this).parents("form")[0]; - }).toArray() - ); - - $(uniqueForms).bind("submit", function (e) { - var $form = $(this); - var warningsFound = 0; - var $inputs = $form.find("input,textarea,select").not("[type=submit],[type=image]").filter(settings.options.filter); - $inputs.trigger("submit.validation").trigger("validationLostFocus.validation"); - - $inputs.each(function (i, el) { - var $this = $(el), - $controlGroup = $this.parents(".control-group").first(); - if ( - $controlGroup.hasClass("warning") - ) { - $controlGroup.removeClass("warning").addClass("error"); - warningsFound++; - } - }); - - $inputs.trigger("validationLostFocus.validation"); - - if (warningsFound) { - if (settings.options.preventSubmit) { - e.preventDefault(); - } - $form.addClass("error"); - if ($.isFunction(settings.options.submitError)) { - settings.options.submitError($form, e, $inputs.jqBootstrapValidation("collectErrors", true)); - } - } else { - $form.removeClass("error"); - if ($.isFunction(settings.options.submitSuccess)) { - settings.options.submitSuccess($form, e); - } - } - }); - - return this.each(function(){ - - // Get references to everything we're interested in - var $this = $(this), - $controlGroup = $this.parents(".control-group").first(), - $helpBlock = $controlGroup.find(".help-block").first(), - $form = $this.parents("form").first(), - validatorNames = []; - - // create message container if not exists - if (!$helpBlock.length && settings.options.autoAdd && settings.options.autoAdd.helpBlocks) { - $helpBlock = $('
    '); - $controlGroup.find('.controls').append($helpBlock); - createdElements.push($helpBlock[0]); - } - - // ============================================================= - // SNIFF HTML FOR VALIDATORS - // ============================================================= - - // *snort sniff snuffle* - - if (settings.options.sniffHtml) { - var message = ""; - // --------------------------------------------------------- - // PATTERN - // --------------------------------------------------------- - if ($this.attr("pattern") !== undefined) { - message = "Not in the expected format"; - if ($this.data("validationPatternMessage")) { - message = $this.data("validationPatternMessage"); - } - $this.data("validationPatternMessage", message); - $this.data("validationPatternRegex", $this.attr("pattern")); - } - // --------------------------------------------------------- - // MAX - // --------------------------------------------------------- - if ($this.attr("max") !== undefined || $this.attr("aria-valuemax") !== undefined) { - var max = ($this.attr("max") !== undefined ? $this.attr("max") : $this.attr("aria-valuemax")); - message = "Too high: Maximum of '" + max + "'"; - if ($this.data("validationMaxMessage")) { - message = $this.data("validationMaxMessage"); - } - $this.data("validationMaxMessage", message); - $this.data("validationMaxMax", max); - } - // --------------------------------------------------------- - // MIN - // --------------------------------------------------------- - if ($this.attr("min") !== undefined || $this.attr("aria-valuemin") !== undefined) { - var min = ($this.attr("min") !== undefined ? $this.attr("min") : $this.attr("aria-valuemin")); - message = "Too low: Minimum of '" + min + "'"; - if ($this.data("validationMinMessage")) { - message = $this.data("validationMinMessage"); - } - $this.data("validationMinMessage", message); - $this.data("validationMinMin", min); - } - // --------------------------------------------------------- - // MAXLENGTH - // --------------------------------------------------------- - if ($this.attr("maxlength") !== undefined) { - message = "Too long: Maximum of '" + $this.attr("maxlength") + "' characters"; - if ($this.data("validationMaxlengthMessage")) { - message = $this.data("validationMaxlengthMessage"); - } - $this.data("validationMaxlengthMessage", message); - $this.data("validationMaxlengthMaxlength", $this.attr("maxlength")); - } - // --------------------------------------------------------- - // MINLENGTH - // --------------------------------------------------------- - if ($this.attr("minlength") !== undefined) { - message = "Too short: Minimum of '" + $this.attr("minlength") + "' characters"; - if ($this.data("validationMinlengthMessage")) { - message = $this.data("validationMinlengthMessage"); - } - $this.data("validationMinlengthMessage", message); - $this.data("validationMinlengthMinlength", $this.attr("minlength")); - } - // --------------------------------------------------------- - // REQUIRED - // --------------------------------------------------------- - if ($this.attr("required") !== undefined || $this.attr("aria-required") !== undefined) { - message = settings.builtInValidators.required.message; - if ($this.data("validationRequiredMessage")) { - message = $this.data("validationRequiredMessage"); - } - $this.data("validationRequiredMessage", message); - } - // --------------------------------------------------------- - // NUMBER - // --------------------------------------------------------- - if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "number") { - message = settings.builtInValidators.number.message; - if ($this.data("validationNumberMessage")) { - message = $this.data("validationNumberMessage"); - } - $this.data("validationNumberMessage", message); - } - // --------------------------------------------------------- - // EMAIL - // --------------------------------------------------------- - if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "email") { - message = "Not a valid email address"; - if ($this.data("validationValidemailMessage")) { - message = $this.data("validationValidemailMessage"); - } else if ($this.data("validationEmailMessage")) { - message = $this.data("validationEmailMessage"); - } - $this.data("validationValidemailMessage", message); - } - // --------------------------------------------------------- - // MINCHECKED - // --------------------------------------------------------- - if ($this.attr("minchecked") !== undefined) { - message = "Not enough options checked; Minimum of '" + $this.attr("minchecked") + "' required"; - if ($this.data("validationMincheckedMessage")) { - message = $this.data("validationMincheckedMessage"); - } - $this.data("validationMincheckedMessage", message); - $this.data("validationMincheckedMinchecked", $this.attr("minchecked")); - } - // --------------------------------------------------------- - // MAXCHECKED - // --------------------------------------------------------- - if ($this.attr("maxchecked") !== undefined) { - message = "Too many options checked; Maximum of '" + $this.attr("maxchecked") + "' required"; - if ($this.data("validationMaxcheckedMessage")) { - message = $this.data("validationMaxcheckedMessage"); - } - $this.data("validationMaxcheckedMessage", message); - $this.data("validationMaxcheckedMaxchecked", $this.attr("maxchecked")); - } - } - - // ============================================================= - // COLLECT VALIDATOR NAMES - // ============================================================= - - // Get named validators - if ($this.data("validation") !== undefined) { - validatorNames = $this.data("validation").split(","); - } - - // Get extra ones defined on the element's data attributes - $.each($this.data(), function (i, el) { - var parts = i.replace(/([A-Z])/g, ",$1").split(","); - if (parts[0] === "validation" && parts[1]) { - validatorNames.push(parts[1]); - } - }); - - // ============================================================= - // NORMALISE VALIDATOR NAMES - // ============================================================= - - var validatorNamesToInspect = validatorNames; - var newValidatorNamesToInspect = []; - - do // repeatedly expand 'shortcut' validators into their real validators - { - // Uppercase only the first letter of each name - $.each(validatorNames, function (i, el) { - validatorNames[i] = formatValidatorName(el); - }); - - // Remove duplicate validator names - validatorNames = $.unique(validatorNames); - - // Pull out the new validator names from each shortcut - newValidatorNamesToInspect = []; - $.each(validatorNamesToInspect, function(i, el) { - if ($this.data("validation" + el + "Shortcut") !== undefined) { - // Are these custom validators? - // Pull them out! - $.each($this.data("validation" + el + "Shortcut").split(","), function(i2, el2) { - newValidatorNamesToInspect.push(el2); - }); - } else if (settings.builtInValidators[el.toLowerCase()]) { - // Is this a recognised built-in? - // Pull it out! - var validator = settings.builtInValidators[el.toLowerCase()]; - if (validator.type.toLowerCase() === "shortcut") { - $.each(validator.shortcut.split(","), function (i, el) { - el = formatValidatorName(el); - newValidatorNamesToInspect.push(el); - validatorNames.push(el); - }); - } - } - }); - - validatorNamesToInspect = newValidatorNamesToInspect; - - } while (validatorNamesToInspect.length > 0) - - // ============================================================= - // SET UP VALIDATOR ARRAYS - // ============================================================= - - var validators = {}; - - $.each(validatorNames, function (i, el) { - // Set up the 'override' message - var message = $this.data("validation" + el + "Message"); - var hasOverrideMessage = (message !== undefined); - var foundValidator = false; - message = - ( - message - ? message - : "'" + el + "' validation failed " - ) - ; - - $.each( - settings.validatorTypes, - function (validatorType, validatorTemplate) { - if (validators[validatorType] === undefined) { - validators[validatorType] = []; - } - if (!foundValidator && $this.data("validation" + el + formatValidatorName(validatorTemplate.name)) !== undefined) { - validators[validatorType].push( - $.extend( - true, - { - name: formatValidatorName(validatorTemplate.name), - message: message - }, - validatorTemplate.init($this, el) - ) - ); - foundValidator = true; - } - } - ); - - if (!foundValidator && settings.builtInValidators[el.toLowerCase()]) { - - var validator = $.extend(true, {}, settings.builtInValidators[el.toLowerCase()]); - if (hasOverrideMessage) { - validator.message = message; - } - var validatorType = validator.type.toLowerCase(); - - if (validatorType === "shortcut") { - foundValidator = true; - } else { - $.each( - settings.validatorTypes, - function (validatorTemplateType, validatorTemplate) { - if (validators[validatorTemplateType] === undefined) { - validators[validatorTemplateType] = []; - } - if (!foundValidator && validatorType === validatorTemplateType.toLowerCase()) { - $this.data("validation" + el + formatValidatorName(validatorTemplate.name), validator[validatorTemplate.name.toLowerCase()]); - validators[validatorType].push( - $.extend( - validator, - validatorTemplate.init($this, el) - ) - ); - foundValidator = true; - } - } - ); - } - } - - if (! foundValidator) { - $.error("Cannot find validation info for '" + el + "'"); - } - }); - - // ============================================================= - // STORE FALLBACK VALUES - // ============================================================= - - $helpBlock.data( - "original-contents", - ( - $helpBlock.data("original-contents") - ? $helpBlock.data("original-contents") - : $helpBlock.html() - ) - ); - - $helpBlock.data( - "original-role", - ( - $helpBlock.data("original-role") - ? $helpBlock.data("original-role") - : $helpBlock.attr("role") - ) - ); - - $controlGroup.data( - "original-classes", - ( - $controlGroup.data("original-clases") - ? $controlGroup.data("original-classes") - : $controlGroup.attr("class") - ) - ); - - $this.data( - "original-aria-invalid", - ( - $this.data("original-aria-invalid") - ? $this.data("original-aria-invalid") - : $this.attr("aria-invalid") - ) - ); - - // ============================================================= - // VALIDATION - // ============================================================= - - $this.bind( - "validation.validation", - function (event, params) { - - var value = getValue($this); - - // Get a list of the errors to apply - var errorsFound = []; - - $.each(validators, function (validatorType, validatorTypeArray) { - if (value || value.length || (params && params.includeEmpty) || (!!settings.validatorTypes[validatorType].blockSubmit && params && !!params.submitting)) { - $.each(validatorTypeArray, function (i, validator) { - if (settings.validatorTypes[validatorType].validate($this, value, validator)) { - errorsFound.push(validator.message); - } - }); - } - }); - - return errorsFound; - } - ); - - $this.bind( - "getValidators.validation", - function () { - return validators; - } - ); - - // ============================================================= - // WATCH FOR CHANGES - // ============================================================= - $this.bind( - "submit.validation", - function () { - return $this.triggerHandler("change.validation", {submitting: true}); - } - ); - $this.bind( - [ - "keyup", - "focus", - "blur", - "click", - "keydown", - "keypress", - "change" - ].join(".validation ") + ".validation", - function (e, params) { - - var value = getValue($this); - - var errorsFound = []; - - $controlGroup.find("input,textarea,select").each(function (i, el) { - var oldCount = errorsFound.length; - $.each($(el).triggerHandler("validation.validation", params), function (j, message) { - errorsFound.push(message); - }); - if (errorsFound.length > oldCount) { - $(el).attr("aria-invalid", "true"); - } else { - var original = $this.data("original-aria-invalid"); - $(el).attr("aria-invalid", (original !== undefined ? original : false)); - } - }); - - $form.find("input,select,textarea").not($this).not("[name=\"" + $this.attr("name") + "\"]").trigger("validationLostFocus.validation"); - - errorsFound = $.unique(errorsFound.sort()); - - // Were there any errors? - if (errorsFound.length) { - // Better flag it up as a warning. - $controlGroup.removeClass("success error").addClass("warning"); - - // How many errors did we find? - if (settings.options.semanticallyStrict && errorsFound.length === 1) { - // Only one? Being strict? Just output it. - $helpBlock.html(errorsFound[0] + - ( settings.options.prependExistingHelpBlock ? $helpBlock.data("original-contents") : "" )); - } else { - // Multiple? Being sloppy? Glue them together into an UL. - $helpBlock.html("
    • " + errorsFound.join("
    • ") + "
    " + - ( settings.options.prependExistingHelpBlock ? $helpBlock.data("original-contents") : "" )); - } - } else { - $controlGroup.removeClass("warning error success"); - if (value.length > 0) { - $controlGroup.addClass("success"); - } - $helpBlock.html($helpBlock.data("original-contents")); - } - - if (e.type === "blur") { - $controlGroup.removeClass("success"); - } - } - ); - $this.bind("validationLostFocus.validation", function () { - $controlGroup.removeClass("success"); - }); - }); - }, - destroy : function( ) { - - return this.each( - function() { - - var - $this = $(this), - $controlGroup = $this.parents(".control-group").first(), - $helpBlock = $controlGroup.find(".help-block").first(); - - // remove our events - $this.unbind('.validation'); // events are namespaced. - // reset help text - $helpBlock.html($helpBlock.data("original-contents")); - // reset classes - $controlGroup.attr("class", $controlGroup.data("original-classes")); - // reset aria - $this.attr("aria-invalid", $this.data("original-aria-invalid")); - // reset role - $helpBlock.attr("role", $this.data("original-role")); - // remove all elements we created - if (createdElements.indexOf($helpBlock[0]) > -1) { - $helpBlock.remove(); - } - - } - ); - - }, - collectErrors : function(includeEmpty) { - - var errorMessages = {}; - this.each(function (i, el) { - var $el = $(el); - var name = $el.attr("name"); - var errors = $el.triggerHandler("validation.validation", {includeEmpty: true}); - errorMessages[name] = $.extend(true, errors, errorMessages[name]); - }); - - $.each(errorMessages, function (i, el) { - if (el.length === 0) { - delete errorMessages[i]; - } - }); - - return errorMessages; - - }, - hasErrors: function() { - - var errorMessages = []; - - this.each(function (i, el) { - errorMessages = errorMessages.concat( - $(el).triggerHandler("getValidators.validation") ? $(el).triggerHandler("validation.validation", {submitting: true}) : [] - ); - }); - - return (errorMessages.length > 0); - }, - override : function (newDefaults) { - defaults = $.extend(true, defaults, newDefaults); - } - }, - validatorTypes: { - callback: { - name: "callback", - init: function ($this, name) { - return { - validatorName: name, - callback: $this.data("validation" + name + "Callback"), - lastValue: $this.val(), - lastValid: true, - lastFinished: true - }; - }, - validate: function ($this, value, validator) { - if (validator.lastValue === value && validator.lastFinished) { - return !validator.lastValid; - } - - if (validator.lastFinished === true) - { - validator.lastValue = value; - validator.lastValid = true; - validator.lastFinished = false; - - var rrjqbvValidator = validator; - var rrjqbvThis = $this; - executeFunctionByName( - validator.callback, - window, - $this, - value, - function (data) { - if (rrjqbvValidator.lastValue === data.value) { - rrjqbvValidator.lastValid = data.valid; - if (data.message) { - rrjqbvValidator.message = data.message; - } - rrjqbvValidator.lastFinished = true; - rrjqbvThis.data("validation" + rrjqbvValidator.validatorName + "Message", rrjqbvValidator.message); - // Timeout is set to avoid problems with the events being considered 'already fired' - setTimeout(function () { - rrjqbvThis.trigger("change.validation"); - }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst - } - } - ); - } - - return false; - - } - }, - ajax: { - name: "ajax", - init: function ($this, name) { - return { - validatorName: name, - url: $this.data("validation" + name + "Ajax"), - lastValue: $this.val(), - lastValid: true, - lastFinished: true - }; - }, - validate: function ($this, value, validator) { - if (""+validator.lastValue === ""+value && validator.lastFinished === true) { - return validator.lastValid === false; - } - - if (validator.lastFinished === true) - { - validator.lastValue = value; - validator.lastValid = true; - validator.lastFinished = false; - $.ajax({ - url: validator.url, - data: "value=" + value + "&field=" + $this.attr("name"), - dataType: "json", - success: function (data) { - if (""+validator.lastValue === ""+data.value) { - validator.lastValid = !!(data.valid); - if (data.message) { - validator.message = data.message; - } - validator.lastFinished = true; - $this.data("validation" + validator.validatorName + "Message", validator.message); - // Timeout is set to avoid problems with the events being considered 'already fired' - setTimeout(function () { - $this.trigger("change.validation"); - }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst - } - }, - failure: function () { - validator.lastValid = true; - validator.message = "ajax call failed"; - validator.lastFinished = true; - $this.data("validation" + validator.validatorName + "Message", validator.message); - // Timeout is set to avoid problems with the events being considered 'already fired' - setTimeout(function () { - $this.trigger("change.validation"); - }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst - } - }); - } - - return false; - - } - }, - regex: { - name: "regex", - init: function ($this, name) { - return {regex: regexFromString($this.data("validation" + name + "Regex"))}; - }, - validate: function ($this, value, validator) { - return (!validator.regex.test(value) && ! validator.negative) - || (validator.regex.test(value) && validator.negative); - } - }, - required: { - name: "required", - init: function ($this, name) { - return {}; - }, - validate: function ($this, value, validator) { - return !!(value.length === 0 && ! validator.negative) - || !!(value.length > 0 && validator.negative); - }, - blockSubmit: true - }, - match: { - name: "match", - init: function ($this, name) { - var element = $this.parents("form").first().find("[name=\"" + $this.data("validation" + name + "Match") + "\"]").first(); - element.bind("validation.validation", function () { - $this.trigger("change.validation", {submitting: true}); - }); - return {"element": element}; - }, - validate: function ($this, value, validator) { - return (value !== validator.element.val() && ! validator.negative) - || (value === validator.element.val() && validator.negative); - }, - blockSubmit: true - }, - max: { - name: "max", - init: function ($this, name) { - return {max: $this.data("validation" + name + "Max")}; - }, - validate: function ($this, value, validator) { - return (parseFloat(value, 10) > parseFloat(validator.max, 10) && ! validator.negative) - || (parseFloat(value, 10) <= parseFloat(validator.max, 10) && validator.negative); - } - }, - min: { - name: "min", - init: function ($this, name) { - return {min: $this.data("validation" + name + "Min")}; - }, - validate: function ($this, value, validator) { - return (parseFloat(value) < parseFloat(validator.min) && ! validator.negative) - || (parseFloat(value) >= parseFloat(validator.min) && validator.negative); - } - }, - maxlength: { - name: "maxlength", - init: function ($this, name) { - return {maxlength: $this.data("validation" + name + "Maxlength")}; - }, - validate: function ($this, value, validator) { - return ((value.length > validator.maxlength) && ! validator.negative) - || ((value.length <= validator.maxlength) && validator.negative); - } - }, - minlength: { - name: "minlength", - init: function ($this, name) { - return {minlength: $this.data("validation" + name + "Minlength")}; - }, - validate: function ($this, value, validator) { - return ((value.length < validator.minlength) && ! validator.negative) - || ((value.length >= validator.minlength) && validator.negative); - } - }, - maxchecked: { - name: "maxchecked", - init: function ($this, name) { - var elements = $this.parents("form").first().find("[name=\"" + $this.attr("name") + "\"]"); - elements.bind("click.validation", function () { - $this.trigger("change.validation", {includeEmpty: true}); - }); - return {maxchecked: $this.data("validation" + name + "Maxchecked"), elements: elements}; - }, - validate: function ($this, value, validator) { - return (validator.elements.filter(":checked").length > validator.maxchecked && ! validator.negative) - || (validator.elements.filter(":checked").length <= validator.maxchecked && validator.negative); - }, - blockSubmit: true - }, - minchecked: { - name: "minchecked", - init: function ($this, name) { - var elements = $this.parents("form").first().find("[name=\"" + $this.attr("name") + "\"]"); - elements.bind("click.validation", function () { - $this.trigger("change.validation", {includeEmpty: true}); - }); - return {minchecked: $this.data("validation" + name + "Minchecked"), elements: elements}; - }, - validate: function ($this, value, validator) { - return (validator.elements.filter(":checked").length < validator.minchecked && ! validator.negative) - || (validator.elements.filter(":checked").length >= validator.minchecked && validator.negative); - }, - blockSubmit: true - } - }, - builtInValidators: { - email: { - name: "Email", - type: "shortcut", - shortcut: "validemail" - }, - validemail: { - name: "Validemail", - type: "regex", - regex: "[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\\.[A-Za-z]{2,4}", - message: "Not a valid email address" - }, - passwordagain: { - name: "Passwordagain", - type: "match", - match: "password", - message: "Does not match the given password" - }, - positive: { - name: "Positive", - type: "shortcut", - shortcut: "number,positivenumber" - }, - negative: { - name: "Negative", - type: "shortcut", - shortcut: "number,negativenumber" - }, - number: { - name: "Number", - type: "regex", - regex: "([+-]?\\\d+(\\\.\\\d*)?([eE][+-]?[0-9]+)?)?", - message: "Must be a number" - }, - integer: { - name: "Integer", - type: "regex", - regex: "[+-]?\\\d+", - message: "No decimal places allowed" - }, - positivenumber: { - name: "Positivenumber", - type: "min", - min: 0, - message: "Must be a positive number" - }, - negativenumber: { - name: "Negativenumber", - type: "max", - max: 0, - message: "Must be a negative number" - }, - required: { - name: "Required", - type: "required", - message: "This is required" - }, - checkone: { - name: "Checkone", - type: "minchecked", - minchecked: 1, - message: "Check at least one option" - } - } - }; - - var formatValidatorName = function (name) { - return name - .toLowerCase() - .replace( - /(^|\s)([a-z])/g , - function(m,p1,p2) { - return p1+p2.toUpperCase(); - } - ) - ; - }; - - var getValue = function ($this) { - // Extract the value we're talking about - var value = $this.val(); - var type = $this.attr("type"); - if (type === "checkbox") { - value = ($this.is(":checked") ? value : ""); - } - if (type === "radio") { - value = ($('input[name="' + $this.attr("name") + '"]:checked').length > 0 ? value : ""); - } - return value; - }; - - function regexFromString(inputstring) { - return new RegExp("^" + inputstring + "$"); - } - - /** - * Thanks to Jason Bunting via StackOverflow.com - * - * http://stackoverflow.com/questions/359788/how-to-execute-a-javascript-function-when-i-have-its-name-as-a-string#answer-359910 - * Short link: http://tinyurl.com/executeFunctionByName - **/ - function executeFunctionByName(functionName, context /*, args*/) { - var args = Array.prototype.slice.call(arguments).splice(2); - var namespaces = functionName.split("."); - var func = namespaces.pop(); - for(var i = 0; i < namespaces.length; i++) { - context = context[namespaces[i]]; - } - return context[func].apply(this, args); - } - - $.fn.jqBootstrapValidation = function( method ) { - - if ( defaults.methods[method] ) { - return defaults.methods[method].apply( this, Array.prototype.slice.call( arguments, 1 )); - } else if ( typeof method === 'object' || ! method ) { - return defaults.methods.init.apply( this, arguments ); - } else { - $.error( 'Method ' + method + ' does not exist on jQuery.jqBootstrapValidation' ); - return null; - } - - }; - - $.jqBootstrapValidation = function (options) { - $(":input").not("[type=image],[type=submit]").jqBootstrapValidation.apply(this,arguments); - }; - -})( jQuery ); diff --git a/knitpost.R b/knitpost.R new file mode 100755 index 000000000..d42522664 --- /dev/null +++ b/knitpost.R @@ -0,0 +1,30 @@ +#!/usr/bin/Rscript --vanilla +# +# Convert a Rmd file to a md file for Jekyll +# +# Usage: +# -arg1 The Rmd file to convert to md for Jekyll use. +# +# Example: +# cd lesson/lesson_name/ +# Rscript ../../knitpost.R lesson.Rmd +# +# Change `visible: false` to `visible: true` in the generated lesson.md file. +# + +KnitPost <- function(input) { + outfile <- rename_to_post(input) + knitr::opts_knit$set(base.url = '../') + knitr::opts_chunk$set(fig.cap = "center") + knitr::render_markdown() + knitr::knit(input, outfile, envir = parent.frame()) +} + +rename_to_post <- function(draft) + paste0(sub(".Rmd$", ".md", draft)) + +args <- commandArgs(trailingOnly = TRUE) +if (length(args) > 1) + stop('Please pass only one argument: the file.') + +KnitPost(args[1]) diff --git a/lessons/git/advanced/beamercolorthemesolarized.sty b/lessons/git/advanced/beamercolorthemesolarized.sty new file mode 100644 index 000000000..5d5874c71 --- /dev/null +++ b/lessons/git/advanced/beamercolorthemesolarized.sty @@ -0,0 +1,156 @@ +% Beamer Color Theme using the Solarized Palette, +% http://ethanschoonover.com/solarized. +% +% Copyright 2012 Jeffrey B. Arnold +% +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . + +\ProvidesPackage{beamercolorthemesolarized}[2013/10/11 1.0.1 Solarized color theme for beamer] +\RequirePackage{etoolbox} +\RequirePackage{kvoptions} + +%% This is ugly. First time using options and conditionals in LaTeX +\SetupKeyvalOptions{ + family=solarized, + prefix=solarized@, +} +\DeclareBoolOption[false]{dark} +\DeclareComplementaryOption{light}{dark} +\DeclareStringOption[yellow]{accent}[yellow] +\ProcessKeyvalOptions* + +% Solarized palette +\definecolor{solarizedBase03}{HTML}{002B36} +\definecolor{solarizedBase02}{HTML}{073642} +\definecolor{solarizedBase01}{HTML}{586e75} +\definecolor{solarizedBase00}{HTML}{657b83} +\definecolor{solarizedBase0}{HTML}{839496} +\definecolor{solarizedBase1}{HTML}{93a1a1} +\definecolor{solarizedBase2}{HTML}{EEE8D5} +\definecolor{solarizedBase3}{HTML}{FDF6E3} +\definecolor{solarizedYellow}{HTML}{B58900} +\definecolor{solarizedOrange}{HTML}{CB4B16} +\definecolor{solarizedRed}{HTML}{DC322F} +\definecolor{solarizedMagenta}{HTML}{D33682} +\definecolor{solarizedViolet}{HTML}{6C71C4} +\definecolor{solarizedBlue}{HTML}{268BD2} +\definecolor{solarizedCyan}{HTML}{2AA198} +\definecolor{solarizedGreen}{HTML}{859900} + +% Set Accent color +% Ugly. Should be done with a switch +\ifdefstring{\solarized@accent}{yellow}{ + \colorlet{solarizedAccent}{solarizedYellow} +}{} +\ifdefstring{\solarized@accent}{orange}{ + \colorlet{solarizedAccent}{solarizedOrange} +}{} +\ifdefstring{\solarized@accent}{red}{ + \colorlet{solarizedAccent}{solarizedRed} +}{} +\ifdefstring{\solarized@accent}{magenta}{ + \colorlet{solarizedAccent}{solarizedMagenta} +}{} +\ifdefstring{\solarized@accent}{violet}{ + \colorlet{solarizedAccent}{solarizedViolet} +}{} +\ifdefstring{\solarized@accent}{blue}{ + \colorlet{solarizedAccent}{solarizedBlue} +}{} +\ifdefstring{\solarized@accent}{cyan}{ + \colorlet{solarizedAccent}{solarizedCyan} +}{} +\ifdefstring{\solarized@accent}{green}{ + \colorlet{solarizedAccent}{solarizedGreen} +}{} + +%% Set base colors for dark or light versions +%% Dark +% Switch between light and dark themes using the method in the CSS +% stylesheet http://ethanschoonover.com/solarized +\ifboolexpe{ bool {solarized@dark}}{ + \colorlet{solarizedRebase03}{solarizedBase03} + \colorlet{solarizedRebase02}{solarizedBase02} + \colorlet{solarizedRebase01}{solarizedBase01} + \colorlet{solarizedRebase00}{solarizedBase00} + \colorlet{solarizedRebase0}{solarizedBase0} + \colorlet{solarizedRebase1}{solarizedBase1} + \colorlet{solarizedRebase2}{solarizedBase2} + \colorlet{solarizedRebase3}{solarizedBase3} +}{ + %% Light + \colorlet{solarizedRebase03}{solarizedBase3} + \colorlet{solarizedRebase02}{solarizedBase2} + \colorlet{solarizedRebase01}{solarizedBase1} + \colorlet{solarizedRebase00}{solarizedBase0} + \colorlet{solarizedRebase0}{solarizedBase00} + \colorlet{solarizedRebase1}{solarizedBase01} + \colorlet{solarizedRebase2}{solarizedBase02} + \colorlet{solarizedRebase3}{solarizedBase03} +} + +\mode + +\setbeamercolor{normal text}{fg=solarizedRebase0, bg=solarizedRebase03} +\setbeamercolor{alerted text}{fg=solarizedAccent} +% based css pre element +\setbeamercolor{example text}{fg=solarizedRebase1, bg=solarizedRebase02} + +% Header and footer from CSS +\setbeamercolor{footline}{bg=solarizedRebase02,fg=solarizedRebase01} +\setbeamercolor{headline}{bg=solarizedRebase01,fg=solarizedRebase1} + +% Titles +\setbeamercolor*{titlelike}{fg=solarizedAccent} +\setbeamercolor*{frametitle}{fg=solarizedAccent} +\setbeamercolor*{title}{fg=solarizedAccent} + +% Structure elements use css style for header +\setbeamercolor*{structure}{bg=solarizedRebase01, fg=solarizedRebase1} + +% Do not mess with subtle colors in palette. I don't like it. +\setbeamercolor*{palette primary}{bg=solarizedRebase01, fg=solarizedRebase1} +\setbeamercolor*{palette secondary}{bg=solarizedRebase01, fg=solarizedRebase1} +\setbeamercolor*{palette tertiary}{bg=solarizedRebase01, fg=solarizedRebase1} +\setbeamercolor*{palette quaternary}{bg=solarizedRebase01, fg=solarizedRebase1} + +% Make Blocks slightly lighter/darker +\setbeamercolor{block title}{fg=solarizedAccent, bg=solarizedRebase02} +%\setbeamercolor{block title alerted}{} +%\setbeamercolor{block title example}{} + +\setbeamercolor{block body}{parent=normal text, bg=solarizedRebase02} +% \setbeamercolor{block body alerted}{} +% \setbeamercolor{block body example}{} + +% same as footline +% Set Sidebar and footline to use the css style for footer +\setbeamercolor*{sidebar}{parent=headline} +\setbeamercolor*{palette sidebar primary}{fg=solarizedRebase01, fg=solarizedRebase1} +\setbeamercolor*{palette sidebar secondary}{fg=solarizedRebase01, fg=solarizedRebase1} +\setbeamercolor*{palette sidebar tertiary}{fg=solarizedRebase01, fg=solarizedRebase1} +\setbeamercolor*{palette sidebar quaternary}{fg=solarizedRebase01, fg=solarizedRebase1} + +% border-color for headings +\setbeamercolor{separation line}{fg=solarizedRebase0} +\setbeamercolor{fine separation line}{fg=solarizedRebase0} + +\setbeamercolor*{section in sidebar shaded}{parent=palette sidebar primary} +% a.hover.navlink in CSS +\setbeamercolor*{section in sidebar}{parent=palette sidebar primary, fg=solarizedRebase02} +\setbeamercolor*{subsection in sidebar}{parent=section in sidebar} +\setbeamercolor*{subsection in sidebar shaded}{parent=section in sidebar shaded} + +\mode + diff --git a/lessons/git/advanced/lesson.md b/lessons/git/advanced/lesson.md new file mode 100644 index 000000000..6f842732a --- /dev/null +++ b/lessons/git/advanced/lesson.md @@ -0,0 +1,25 @@ +--- +layout: page +title: 'An Intermediate Look at Git + GitHub' +visible: true +tags: + - git + - advanced +--- + + - **Authors**: Elliott Sales de Andrade + - **Research field**: Seismology + - **Lesson topic**: Version control (Git) + - **Lesson content URL**: + +## Recap: ## + +* Configure your git client (`git config user.name` + `user.email`) +* Create a git repository (`git init`) +* Start tracking a file with git (`git add`) +* Commit changes to the history (`git commit`) +* Check what's going on (`git status`) +* Compare a file with the one in the history (`git diff`) +* Look into your history (`git log`) + +Please follow along in the [slides](../slides.pdf) for the remaining information. diff --git a/lessons/git/advanced/slides.pdf b/lessons/git/advanced/slides.pdf new file mode 100644 index 000000000..a9508cc9c Binary files /dev/null and b/lessons/git/advanced/slides.pdf differ diff --git a/lessons/git/advanced/slides.tex b/lessons/git/advanced/slides.tex new file mode 100644 index 000000000..c787ff3d4 --- /dev/null +++ b/lessons/git/advanced/slides.tex @@ -0,0 +1,339 @@ +\documentclass{beamer} + +\usepackage[utf8]{inputenc} +\usepackage[T1]{fontenc} +\usepackage{lmodern,tgadventor} +\usepackage{textcomp} +\usepackage{tikz} +\usetikzlibrary{backgrounds,decorations.pathreplacing,decorations.text,fadings,trees} + +\useinnertheme{rectangles} +\usecolortheme[accent=blue]{solarized} +\setbeamercolor{description item}{fg=solarizedAccent} +\beamertemplatenavigationsymbolsempty +\setbeamertemplate{footline}[frame number] + +% Shell highlighting +\newcommand{\command}[1]{\textcolor{solarizedAccent}{\$} + \textcolor{solarizedRebase2}{#1}} +\newcommand{\comment}[1]{\textit{\# #1}} +\newcommand{\hiRed}[1]{\textcolor{solarizedRed}{#1}} +\newcommand{\hiGreen}[1]{\textcolor{solarizedGreen}{#1}} +\newcommand{\hiBlue}[1]{\textcolor{solarizedBlue}{#1}} +\newcommand{\hiYellow}[1]{\textcolor{solarizedYellow}{#1}} + +% DAG commands +\newcommand\commit[2]{\node[commit] (#1) {};% + \node[clabel] (#1 label) at (#1) {\texttt{#1}: #2};} +\newcommand\ghost[1]{\coordinate (#1);} +\newcommand\connect[2]{\path[connections] (#1) to[out=90,in=-90] (#2);} +\newcommand\gittag[1]{% + \begin{tikzpicture}[baseline] + \node[fill=solarizedRebase02, rounded corners, inner sep=1pt, anchor=base] { + \color{solarizedYellow}\vphantom{|}#1 + }; + \end{tikzpicture}% +} +\newcommand\branch[1]{% + \begin{tikzpicture}[baseline] + \node[fill=solarizedRebase02, rounded corners, inner sep=1pt, anchor=base] { + \color{solarizedRed}\vphantom{|}#1 + }; + \end{tikzpicture}% +} + +% https://tex.stackexchange.com/questions/55806/tikzpicture-in-beamer/55827#55827 +\tikzset{ + invisible/.style={opacity=0}, + visible on/.style={alt=#1{}{invisible}}, + alt/.code args={<#1>#2#3}{% + \alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}} + }, +} + +\author{U of T Scientific Coders} +\title{An Intermediate Look at Git + GitHub} +\institute{University of Toronto} +\date{October 1, 2015} +\titlegraphic{% + \begin{tikzpicture}[ + commit/.style={draw, circle, fill=solarizedViolet, inner sep=0pt, + minimum size=5pt}, + clabel/.style={right, outer sep=1em}, + connections/.style={draw, solarizedViolet} + ] + \useasboundingbox (0,1em) rectangle (10.7,6.5em); % Mysteriously chosen to fit... + \matrix [column sep={1em,between origins}, row sep=\lineskip, + ampersand replacement=\&]% + { + \commit{fd7a4e4}{\branch{gh-pages} Create 2015-10-08-Coworking4.markd\dots} \& \& \\ + \commit{c3cb768}{Merge pull request \#41 from mbonsma/gh-pages} \& \& \\ + \& \commit{e2764b7}{Incorporated PR comments into Biopython/less\dots} \& \\ + \& \commit{d212bdd}{Merge remote-tracking branch `upstream/gh-p\dots} \& \\ + \commit{85791b7}{Added start and end time to event post} \& \& \\ + \& \commit{b83b3e0}{Merge remote-tracking branch `upstream/gh-p\dots} \& \\ + \commit{0b7d78c}{Create 2015-10-01-MoreObGit.markdown} \& \& \\ + \commit{c188bb0}{Merge pull request \#48 from lwjohnst86/gh-pages} \& \& \\ + \ghost{ghost00} \& \ghost{ghost01} \& \\ + }; + % Left branch + \connect{c3cb768}{fd7a4e4}; + \connect{85791b7}{c3cb768}; + \connect{0b7d78c}{85791b7}; + \connect{c188bb0}{0b7d78c}; + \connect{ghost00}{c188bb0}; + % Upper right branch + \connect{e2764b7}{c3cb768}; + \connect{d212bdd}{e2764b7}; + \connect{85791b7}{d212bdd}; + % Lower right branch + \connect{b83b3e0}{d212bdd}; + \connect{0b7d78c}{b83b3e0}; + \connect{ghost01}{b83b3e0}; + \fill [color=solarizedRebase03, path fading=north] (-1,-1.5) rectangle (16,0); + \end{tikzpicture}% +} + +\AtBeginSection[]{\frame{\sectionpage}} + +\begin{document} + +\begin{frame}[plain,noframenumbering] + \titlepage +\end{frame} + +\begin{frame} + \frametitle{Outline} + \tableofcontents +\end{frame} + +\section{Review} + +\begin{frame} + \frametitle{Review} + + \begin{itemize} + \item Configure your git client (\texttt{git config user.name} + \texttt{user.email}) + \item Create a git repository (\texttt{git init}) + \pause + \begin{tikzpicture}[% + remember picture, + show background rectangle, + background rectangle/.style={draw, visible on=<2->}, + visible on=<2-> + ] + \begin{scope}[ + every node/.style={anchor=west, minimum height=1em, + font={\tiny\ttfamily}, inner sep=2.5pt}, + every edge/.style={thick}, + root/.style={}, + grow via three points={one child at (0.25,-0.75em) and + two children at (0.25,-0.75em) and (0.25,-1.25em)}, + edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)} + ] + \node[anchor=west, font={\scriptsize}, align=center] + at (0,0) (work) {Working\\Directory}; + \node [root, anchor=north] at (work.south) (work root) {my\_project/} + child { node (git folder) {.git/} } + child { node (first folder) {foo/} } + child { node {bar/} } + child { node {baz.txt} } + child { node {qux.txt} } + child { node (last folder) {\dots} }; + \end{scope} + \node[anchor=north west, font={\scriptsize}, xshift=4em] + at (work.north east) (repository) {Repository}; + \begin{scope}[ + every node/.style={anchor=west, minimum height=1em, + font={\tiny\ttfamily}, inner sep=2.5pt}, + every edge/.style={thick}, + root/.style={}, + grow via three points={one child at (0.25,-0.75em) and + two children at (0.25,-0.75em) and (0.25,-1.25em)}, + edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)} + ] + \node[anchor=north, font={\scriptsize}, align=center] + at (repository.south) (index) {Index/\\Staging Area}; + \node<3->[root, anchor=north, align=center] + at (index.south) (snapshot) {\color{solarizedAccent} (Snapshot)} + child { node {foo/} } + child { node {baz.txt} } + child { node {\dots} }; + \end{scope} + \begin{scope}[ + commit/.style={draw, rectangle, rounded corners, fill=solarizedRebase02, + inner sep=1pt, minimum height=0.75em, minimum width=1em, + font={\tiny\sffamily}}, + connections/.style={draw} + ] + \node[anchor=west, font={\scriptsize}, align=center, xshift=1em] at (index.east) + (history) {History}; + \matrix at (history.south) + [column sep={1em,between origins}, row sep={1em,between origins}, + ampersand replacement=\&, yshift=-2.5em]% + { + \node[commit,visible on=<4->] (10) {\color{solarizedAccent} 10}; \\ + \node[commit] (9) {9}; \\ + \node[commit] (8) {8}; \\ + \ghost{7}; \\ + }; + \path[connections, visible on=<4->] (9) -- (10); + \connect{8}{9}; + \path[connections, densely dotted] (7) -- (8); + \end{scope} + \begin{scope}[ + path/.style={->}, + label/.style={decorate, decoration={text along path, text align=center, + text color=solarizedRebase0, + raise=1pt}} + ] + \draw[path] (git folder.east) to[out=0,in=180] (repository.west); + \draw (index.north west) rectangle (7.south -| history.east); + \draw<3->[decorate, decoration={brace, raise=0.75em, aspect=0.45}] + (first folder.east) |- (last folder.east) node[near start] (mid selection) {}; + \draw<3->[path] (mid selection.east) + (0.6em,0) to[out=0,in=180] (snapshot.west); + \draw<4->[path] (snapshot.east) to[out=0,in=180] (10.west); + \end{scope} + \end{tikzpicture} + \pause + \item Start tracking a file with git (\texttt{git add}) + \pause + \item Commit changes to the history (\texttt{git commit}) + \pause + \item Check what's going on (\texttt{git status}) + \item Compare a file with the one in the history (\texttt{git diff}) + \item Look into your history (\texttt{git log}) + \end{itemize} +\end{frame} + +\section{Viewing History} + +\begin{frame} + \frametitle{Viewing History} + + Viewing the log allows you to ``see'' history: + \begin{itemize} + \item \texttt{git log} + \pause + \item \texttt{git log \alert{..}} + \item \texttt{git log \alert{-{}- }} + \item \texttt{git log \alert{-{}-oneline}} + \item \texttt{git log \alert{-{}-graph}} + \item \texttt{git log -{}-graph \alert{-{}-decorate}} \\ + \end{itemize} + \pause + \begin{itemize} + \item \texttt{git blame } + \end{itemize} + \pause + \begin{itemize} + \item \texttt{gitk} + \texttt{gitg} + other viewers + \end{itemize} +\end{frame} + +\section{Branching} + +\begin{frame} + \frametitle{Branches} + + What are branches? + \begin{itemize}[<+->] + \item Divergent commits (two commits with the same parent) could be + considered ``virtual'' branches + \item Branches are simply a \alert{named pointer} to a commit + \item Branches automatically \emph{move forward} as commits are made + \end{itemize} + \pause[\thebeamerpauses] + Why use them? + \pause + \begin{itemize}[<+->] + \item They're cheap! Just pointers. No heavy changes, e.g., an extra + directory in svn. + \item To keep experimental work apart + \item To separate trials + \item To ease collaboration + \end{itemize} +\end{frame} + +\begin{frame} + \frametitle{Branches} + + Managing branches: + \begin{itemize} + \item \texttt{git branch [commit]} + \item \texttt{git branch -d } + \item \texttt{git branch [-l]} + \end{itemize} + + \pause + Switching branches: + \begin{itemize} + \item \texttt{git checkout } + \item \texttt{git checkout -b [commit]} --- Create and switch + in one go + \end{itemize} + + \pause + Merging branches: + \begin{itemize} + \item \texttt{git merge } + \item \texttt{git merge \alert{-{}-ff-only} } + \item \texttt{git merge \alert{-{}-no-ff} } + \end{itemize} +\end{frame} + +\section{Collaborating with Others} + +\begin{frame} + \frametitle{Clones and Remotes} + + Clones are complete copies of a repository's history (i.e., excluding the + index and working directory) + \pause + \begin{itemize} + \item \texttt{git clone } + \end{itemize} + + \pause + Remotes are \emph{pointers} to other clones + \pause + \begin{itemize} + \item \texttt{git remote [-v]} + \item \texttt{git remote add } + \item \texttt{git remote rm } + \item Local branches can \emph{track} remote branches\\ + \texttt{git branch -u } + \end{itemize} + + \pause + \emph{You} are responsible for syncing + \begin{itemize} + \item \texttt{git push [] []} + \item \texttt{git fetch []} + \item \texttt{git pull []} --- \texttt{fetch} + \texttt{merge} + \end{itemize} +\end{frame} + +\begin{frame}[plain] + \vfill + \begin{center} + \LARGE \color{solarizedAccent} GitHub Example + \end{center} + \vfill +\end{frame} + +\appendix + +\section{Advanced Topics} + +\begin{frame} + \frametitle{Advanced Topics} + + \begin{itemize}[<+->] + \item \texttt{git add \alert{-{}-patch}} + \item \texttt{git rebase} + \item Ignoring unwanted files + \end{itemize} +\end{frame} + +\end{document} diff --git a/lessons/git/branches/lesson.md b/lessons/git/branches/lesson.md new file mode 100644 index 000000000..78d38e33d --- /dev/null +++ b/lessons/git/branches/lesson.md @@ -0,0 +1,168 @@ +--- +layout: page +title: 'Using branches in Git' +visible: true +tags: + - git + - intermediate +--- + +# Why and how branches are used in Git + + - **Authors**: Luke Johnston + - **Research field**: Nutritional and diabetes epidemiology + - **Lesson topic**: Git branches + - **Lesson content URL**: + - **Lesson video stream**: + +## Preface: ## + +Version control systems like Git help manage changes to files. Sometimes, you'll +want (or need) to make some 'feature' or 'patches' to a collaborative research +project. Or maybe you want to make some experimental changes to your code, but +don't want to touch your main code. This, and more, is where branches come into +play. + +In this code-along we'll go over what branches are, and how and why you would use +them. + +### Pre-requisites: + +* Obviously, have [Git installed](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) +* Make sure to [configure your git](http://codeasmanuscript.org/lessons/git/cheatsheet/) + + +## What are Git branches + +In very simple terms, git branches are individual projects within a git +repository. Different branches within a repository can have completely different +files and folders, or it could have everything the same except for some lines of +code in a file. + +Let's use a few real world examples (at least that I've used before, others may +have used them differently): + +- Pretend you submitted a research article to a journal and they want you to +revise it based on some reviewers comments. There are several ways to deal with +the comments, so instead of changing your main manuscript, you create a +`revision` branch in your manuscript git repository. In that branch you make the +changes to your manuscript in response to the reviewers. Once you are satisfied, +you merge the branch into the `master` branch and resubmit the article. +- Imagine you have a dataset that multiple people work off of but that is also +often updated with more data. You think you found a problem with the dataset, +but aren't sure. So you create a new branch `fixing` to fix the problems without +messing with the master dataset. After you confirm the problem is real and that +you have the solution, you submit a pull request of the `fixing` branch to be +merged with the `master` branch. +- What is often the case in software development, a bug or missing feature in +the software gets identified. Because the software is already in production use +(fairly stable, other people rely on it, etc), you can't just make changes to +the main software code. So a `hotfix` or `feature` branch is created to address +these problems, which will eventually get merged in with the `master` branch for +the next version of the software. This ensures that other people's code isn't +broken everytime a bug gets fixed. + +There are many uses of branches in Git. The nice (and very powerful) thing about +Git is the fact that branches are very cheap compared to other version control +systems. By cheap, I mean they don't take up much disk space, it's +computationally easy to move between branches, and it's (relatively) easy to +merge branches together. This is because of how Git represents branches, since +they are simply *pointers* or an individual commit. *That's it.* Just a +pointer... Git commit history is a +[directed acyclic graph](https://en.wikipedia.org/wiki/Directed_acyclic_graph), +which means that every single commit always has a 'parent' commit (the +previous commit in the history, or multiple parents when a merge happens), and +any individual commit can have multiple 'children'. This history can be traced +back through the 'lineage' or 'ancestry'. The branch just gives a name to each +'lineage' when a commit has multiple children. + +When you merge two branches together, the commit histories get merged together +as well. Which means that all the changes you made in each branch gets combined +back into a single lineage, rather than two. This makes it easier to work +collaboratively on a project, since each individual could work on their own +branches, without dealing with the messiness that could come from working all on +one branch. + +## Commands used with branches + +Branches are best understood visually. So let's first start with using +[this website](https://onlywei.github.io/explain-git-with-d3/) to see what the +`branch`, `checkout`, and `merge` commands are doing. + +After we've tried that, let's do it locally (on your own computer). Here is a +sequence of commands to try out: + + cd ~/Desktop + mkdir git-branches + cd git-branches + git init # start a repo + git add . + git commit -m "First commit" # make the first commit + git branch testBranch # create branch + git checkout testBranch # move to branch + ## can also do git checkout -b testBranch + echo "Some text" > file.txt + git add file.txt + git commit -m "Added a file with text" + git checkout master + echo "Text in another file" > new-file.txt + git add new-file.txt + git commit -m "Added another file" + git log --graph --oneline --decorate --all + # This command is long, so shorten it using aliases + git config --global alias.lg 'log --graph --oneline --decorate --all' + git merge testBranch + git lg + git branch -d testBranch # delete the branch + +## Using branches for pull requests + +I mentioned this already, but branches are best used when doing a +[pull request](https://help.github.com/articles/using-pull-requests/) +(unless the pull request is very small or few people work on the repository). + +The steps to take would be: + +1. Fork a repository on GitHub +2. Clone it onto your computer +3. Make a branch and move to it: `git checkout -b fixingBranch` +4. Make changes to the files +5. Commit the changes to the history +6. Push the branch up to your forked version: `git push origin fixingBranch` +7. On GitHub, submit a Pull Request of your `fixingBranch` +8. Once the pull request is merged, +[delete](https://github.com/blog/1377-create-and-delete-branches) +the `fixingBranch` on your forked repo on GitHub and on your computer +(`git checkout master && git pull upstream master && git branch -d fixingBranch`) + +# Resources: # + +If you have any questions, often one of the best places to start is either +[StackOverflow](https://stackoverflow.com/questions/tagged/git) or Google (which +more likely links to StackOverflow). + +## Glossary: ## + +* `cd` - change directory +* directory - the same thing as a folder +* `mkdir` - make a directory +* `echo` - print a message to the screen or to a file if `>` (redirect) is +present. +* `git init` - start or initialize a git repository +* `git add` - put a file into the staging area, so that git starts + tracking it +* `git commit` - send files in the staging/index area into the history + (the git repository) +* `git log --graph --oneline --decorate --all` - view the commit history in the +git repository and the branches, with each commit as one line. +* `git branch` - An individual line of commit history that contains files that may +differ from other branches. +* `git checkout` - A way to move across the git commits and branches. +* `git merge` - Combine a branch into the current checked out branch (i.e. the +branch you are on). + +## Links: ## + +* [Interactive, visual tutorial on branching](https://pcottle.github.io/learnGitBranching/) +* [Brief explanation of branching](https://www.atlassian.com/git/tutorials/using-branches/git-branch) + diff --git a/lessons/git/ci-github-python/lesson.md b/lessons/git/ci-github-python/lesson.md new file mode 100644 index 000000000..9195789b3 --- /dev/null +++ b/lessons/git/ci-github-python/lesson.md @@ -0,0 +1,16 @@ +--- +layout: page +title: Continuous integration in Git with examples in Python +visible: true +tags: + - python + - git + - intermediate +--- + + - **Authors**: Jesse Knight + - **Lesson topic**: Git: continuous integration with worked examples in Python + - **Lesson content URL**: https://github.com/jessexknight/mwe-pytest-travis-cov + + See [lesson repo](https://github.com/jessexknight/mwe-pytest-travis-cov) for material. + diff --git a/lessons/git/ci-github/lesson.md b/lessons/git/ci-github/lesson.md new file mode 100644 index 000000000..f274584e8 --- /dev/null +++ b/lessons/git/ci-github/lesson.md @@ -0,0 +1,220 @@ +--- +layout: page +title: Continuous integration on GitHub +visible: true +tags: + # languages + - git + # levels + - intermediate +--- + + - **Authors**: Luke Johnston ([@lwjohnst86](https://github.com/lwjohnst86)) + - **Research field**: Diabetes epidemiology + - **Lesson topic**: Using continuous integration within GitHub + - **Lesson content URL**: + +## What is Continuous Integration (CI)? + +[CI](https://en.wikipedia.org/wiki/Continuous_integration) historically is a +system/workflow/practice of merging a codebase that developers work on +individually into a main stream, usually several times a day. This ensures that +there are few to no conflicts within the code base. However, CI presently is +often used in the context of automated builds of a git repository to ensure that +everything runs/tests/builds as expected in a clean, new environment (aka on a +server). For this reason, I will only refer to CI in the context of git repos. + +Automated CI services are available on GitHub through [Travis CI](https://travis-ci.org/). +Travis is a service independent (as a company) of GitHub, however they currently +only work with GitHub. There is the `.org` version of Travis for public GitHub +repos and a `.com` version for private repos. There are other CI's available on +GitLab or BitBucket (services similar to GitHub). Through Travis, you can get +your git repo and associated code/files/documents (really, any thing that is +command based, including things such as pandoc, rmarkdown, or website build tools) +to be built, tested, or whatever else you want it to do! + +The main use of CI is for automated testing of your code in a separate environment, +to ensure that any new additions to the code don't cause any breaks or conflicts. +Other common uses are to build websites that first require code or documents to +be generated before pushing to the live website. + +## Why should you use it? + +There are [many reasons](https://about.gitlab.com/2015/02/03/7-reasons-why-you-should-be-using-ci/) +to use CI, especially if your codebase is large and complex, when multiple people +work on the code, when it is relied on by others, or if it is for production +(industry or commercial) purposes. If your code is small or simple or a one-time +thing, it is often not necessary to use CI. BUT! Using CI will make sure that your +code is robust and more likely to be accurate and correct... which is especially +important in most if not all scientific fields. + +## Travis and the `.travis.yml` file + +As I mentioned, you use Travis for GitHub. In order to use Travis, you need to +sign up and follow the [getting started](https://docs.travis-ci.com/user/getting-started/) +steps. Travis has many supported [languages](https://docs.travis-ci.com/), +including [R](https://docs.travis-ci.com/user/languages/r/) and +[Python](https://docs.travis-ci.com/user/languages/python/). + +The two main things you need for Travis are to include a `.travis.yml` file in +your GitHub repo and link Travis to it via the [Travis website](https://travis-ci.org/). + +### Example using R and `.travis.yml` file + +``` +language: r +cache: packages # to reduce the build time for dependent packages +r: + - release + - devel +script: + # If building packages + - R CMD build . + - R CMD check *.tar.gz + # If running from an R or shell file + - Rscript test.R + # or: + - sh ./deploy.sh +``` + +Package dependencies are by default searched for in the +[`DESCRIPTION`](http://r-pkgs.had.co.nz/description.html) file. Otherwise, +specific packages can be installed by including this in the `.travis.yml` file: + +``` +r_packages: + - "packagename" +``` + +If you are creating packages and want to use Travis to test your packages, use +the R command `devtools::use_travis()` to get you started. + +Building websites via R Markdown is relatively straight forward. You first need +to create a `deploy.sh` file of some sort (see +[this file](https://github.com/codeasmanuscript/rworkshops/blob/master/deploy.sh) as +an example) and include Travis commands to push to a `gh-pages` branch (see +[this file](https://github.com/codeasmanuscript/rworkshops/blob/master/.travis.yml) as +an example). For a more detailed example and walkthrough, see +[this Gist](https://gist.github.com/willprice/e07efd73fb7f13f917ea.html). + +Let's work through a (very simple and silly) example. Create three files: `.travis.yml`, +`function.R`, `test.R`, and `DESCRIPTION` (this file is needed for +R with travis). (As a side note, as with above, I will not be covering formal +unit testing in this lesson). + +**`.travis.yml`** + +``` +language: r +cache: packages +# build in two different OS +r: + - release +os: + - linux + - osx +script: + - Rscript test.R +``` + +**`function.R`** + +```r +add_nums <- function(num1, num2) { + num1 + num2 +} + +random_half_split <- function(data) { + size <- nrow(data) / 2 + dplyr::sample_n(data, size) +} +``` + +**`test.R`** + +```r +library(testthat) +source("function.R") +expect_equal(add_nums(2, 2), 4) +actual_size <- nrow(random_half_split(iris)) +expect_equal(actual_size, 75) +``` + +**`DESCRIPTION`** + +``` +Package: testing_ci_r +Type: Package +Title: Testing out +Version: 0.0.0.9000 +Authors@R: person("Luke", "Johnston", email = "lwjohnst@gmail.com", + role = c("aut", "cre")) +Description: Testing around +LazyData: TRUE +# packages to install +Imports: + dplyr, + testthat +RoxygenNote: 6.0.1 +``` + +### Example Python `.travis.yml` file + +``` +language: python +python: + - "3.6" +# install dependencies +install: + - pip install -r requirements.txt # if you put your dependencies in a file +script: pytest +``` + +I am not nearly as familiar with Python, however, the same things that apply to R +also apply to Python. You (optionally) need to install dependencies and use the `script` option +to specify what commands or file to run the tests with. + +As with R, let's do a simple and silly example. Create the three files: `.travis.yml`, +`function.py`, and `test_function.py`. (As a side note, as with above, I will not be covering +formal unit testing in this lesson). + +**`.travis.yml`** + +``` +language: python +python: + - 3.6 +script: pytest +``` + +**`function.py`** + +```python +def add_nums(num1, num2): + added = num1 + num2 + return added +``` + +**`test_function.py`** + +```python +import function + +def test_add_nums(): + added = function.add_nums(2, 2) + assert added == 4 +``` + +## Lesson flow and other remarks + +In the live version of the lesson, I'll cover simple examples of using Travis +for R and Python. Since I am more familiar with R, I'll be covering R examples +in more detail. In general, the lesson will go over setting up Travis, creating +the `.travis.yml` file, getting Travis to run, and seeing the results for the +CI build. + +There are so many things you can do with Travis (or any CI for that matter)! +Simple reasons are pretty straight forward, though there is a learning curve. +More complex uses are, well, more complex to set up. In the end, setting up Travis/CI +can save you time and reduce your workload as it automates many of the repetitive +tasks you many do when creating code or code-dependent documents. diff --git a/lessons/git/collaboration/lesson-AH.md b/lessons/git/collaboration/lesson-AH.md new file mode 100644 index 000000000..839b8a846 --- /dev/null +++ b/lessons/git/collaboration/lesson-AH.md @@ -0,0 +1,229 @@ +--- +layout: page +title: Collaborating on GitHub +visible: true +tags: + # languages + - git + # levels + - intermediate +--- + + + + - **Authors**: Ahmed Hasan; Frances Wong + - **Research field**: Genomics; Physiology + - **Lesson topic**: Collaborating on GitHub + - **Lesson content URL**: + - **Lesson video stream**: n/a + +# What are Git and GitHub? + +## Git + +Git is a version control system that allows users to track changes in files. +Git is used via the command line on your local computer. Once a given folder +has been designated as a Git _repository_ (or 'repo' for short), Git will start +looking for changes in files in that folder. Git is quite flexible: we can pick +and choose which files we would like to track in a repository. + +## GitHub + +GitHub is a website that hosts Git repositories. Repositories are quite +flexible: a Git repo could be any of: + +- Fully self contained software +- Research projects, containing scripts and logs +- Websites +- Educational content (e.g. material for one or more workshops) +- Just a place for you to keep a random collection of scripts! + +Although repos can be created on GitHub and maintained there, it is much more +common for users to also have local copies of their repos as well and sync the +two as changes happen on either end. GitHub accounts are free to use. + +GitHub also comes equipped with several additional features. Each repo has an +Issues page, for instance, where owners, collaborators, and other users can +submit feature requests, point out bugs, or simply have discussions pertaining +to the repo in some form. Moreover, GitHub also allows for _forking_ repos, +which is when users create a copy of a given repo that's associated with their +own GitHub accounts. Finally, GitHub features a full Pull Requests tab +associated with every repo that centralizes any proposed changes to the +contents of the repo. We will explore both forks and pull requests below; +these are very important features for collaboration! + + +# Solo GitHub workflow - the minimal case + +Many researchers use GitHub repos simply as a place to keep all their scripts. +New scripts and changes to existing to scripts are both _committed_ to the repo +(saved changes are referred to as 'commits') and there tends to be a single +linear commit history. + +To accomplish this, it's common to have a local repo that one works on and +commits changes in, after which those changes are pushed to GitHub using +command line Git commands. + +Let's quickly review a few core commands: + +```bash +# getting started with a repo +git init # initializing a repo at the command line +git clone [url] # creating a copy of an existing repo + +# linking a repo to GitHub +git remote # listing any remotes - eg the repo on GitHub +git remote add origin [url] # add link to repo at specific url + +# committing (saving) changes to files +git add [file] # telling git to track changes in a file +git commit # saving those changes +``` + +# Collaborative work flows + +## Branches and pull requests + +However, collaborative workflows (and even solo software development) is often +not done this way. Both make use of what are known as _branches_: a snapshot of +the repo at a given time that has an independent commit history. Branches can +be thought of as copies of a repo that can then be worked on without actually +affecting the 'main' repo itself. This 'main' repo is itself a branch, and one +that is typically called `master` or `main` by default. + +A branch can be created and switched to using `git checkout`: + +```bash +git checkout -b patch-1 +# Switched to new branch 'patch-1' +``` + +after which branches can be switched between using `git checkout`: + +```bash +git checkout main # switches back to main branch +``` + +Branches can be listed using `git branch`: + +```bash +git branch +git branch -v # for more details on branches +``` + +Why not work in `master`/`main` directly? By working in branches instead, users +are free to make whatever changes they would like without fear of breaking the +existing codebase, or causing some kind of similar problem. Instead, once one +is done making changes in and ideally testing the changes in a given branch, a +_pull request_ (PR) can be submitted, essentially requesting for the changes in the +branch to be merged with `master`/`main`. + +A pull request functions as a means of merging the new commit history of a +given branch to the `master`/`main` branch. This is the core concept behind +collaborating in Git: collaborators working in branches and then submitting +pull requests to have their changes incorporated into the codebase. + +There are two separate workflows by which this is done, each with a specific +set of circumstances in which they are the appropriate choice: the 'shared +repository' model as well as the 'fork and pull' model. We will touch on both +before demonstrating the latter. + +## Shared repository + +The shared repository model is usually (but not always) put into practice on +smaller projects with smaller amounts of collaborators. The key requirement for +a shared repo model is that _all contributors have write access to the repo_, +which is not always the case (e.g. when contributing to a large open source +project). + +The shared repository model involves working _directly in the main repository_. +Branches are still used to keep proposed changes separate, and then pull +requests are submitted once a collaborator wishes for their changes to be +merged into `master`/`main`. The `master`/`main` branch is still never written +to directly -- any changes must go through the PR workflow (detailed further below) + +We won't be demoing this today, especially since much of this workflow is covered +in the more extensive fork and pull workflow regardless. + +Here's the full workflow, for reference: + +1. Collaborator creates a branch on the main repo +2. Collaborator makes changes in the branch +3. Collaborator submits a PR, requesting changes from the branch to be merged into `master`/`main` +4. Repo owner reviews PR and requests further changes if needed. +5. If further changes are requested, collaborator makes them *in the branch*. +6. When PR is good to go, owner merges PR into `master`/`main` +7. The branch is deleted. + +This model is good for beginners to Git collaboration, since there is no need +to sync anything after changes have been merged. + +## Fork and pull model + +In this model, collaborators _fork_ the repo: creating entirely separate copies of +the repo altogether. It is common practice to also _clone_ (make a local copy of) +the fork, especially for one of the two methods of syncing forks we'll learn below. + +Upon cloning the repo, the main repository is also added as a _remote_ to the fork. +This will be used to sync the fork later: + +```bash +git remote add upstream [main repo url] +``` + +Within their fork, a collaborator creates a new branch and adds in their proposed changes. +Once the branch is ready, a pull request is submitted _from the branch of the fork_ to +`master`/`main` _on the main repo_. This sort of 'cross-repo' pull request is only possible +between forks, and since anyone can make a fork without necessarily having write access to a repo, +this is the much more commonly used model of collaboration on GitHub. + +Once a PR is submitted, repo owners can use the pull request dialog on GitHub to +request further changes if needed. If this is the case, the collaborator can continue making +changes in their branch; GitHub will automatically update the PR with any new changes. + +Once the PR is ready, the owner will merge the PR into `master`/`main`. The changes have been +merged! All that remains is for the collaborator to sync their fork: since the collaborator +worked on a branch, the fork's `master`/`main` branch has not been updated at all. + +Forks can be updated in two different ways - first, on the command line: + +```bash +# run in the repo dir +git checkout master # or main - this will switch back out of the experimental branch +git fetch upstream/master # fetches the updated codebase from the main repo +git merge upstream/master # merges the updates from the main repo +git push origin master # sends the updates to the *fork* +``` + +However, it can also be done via GitHub: + +1. Head to your fork of the repo. +2. Click on 'Pull request' in the bar above the file list. +3. Set the Base Repository to the fork, and the base to `master`/`main`. +4. Set the Head Repository to the main repo, and the base to `master`/`main`. +5. Create the pull request and merge it! + +This can be quite confusing at first glance! But it's important to sync the +fork like so, since it updates it for any further changes if needed. It's good +practice to do this both after changes are merged and before starting on a +fresh branch. It is also entirely possible to simply delete and remake the fork +instead, but that can be tiresome if you find yourself collaborating on the +same repo for a long period of time. + +We'll now be demoing the fork and pull model for the remainder of the lesson! + +## Merge conflicts + +Merge conflicts can unfortunately arise during this process. A _merge conflict_ +happens `master`/`main` on the main repo is updated *after* being forked, and +the changes a collaborator submits a PR for conflict with the current state of +the main repo (e.g. if the same line is modified differently on the main repo +than on the PR). Git won't know which of the changes to stick with, and will +ask for the conflict to be manually resolved. + +We won't be demoing merge conflicts today given time constraints, but a guide +on how to resolve them can be found [here][merge-conf]. The best way to avoid +merge conflicts, however, is to make sure that your fork remains synced! + +[merge-conf]: https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github + diff --git a/lessons/git/collaboration/lesson.md b/lessons/git/collaboration/lesson.md new file mode 100644 index 000000000..4297db4ae --- /dev/null +++ b/lessons/git/collaboration/lesson.md @@ -0,0 +1,488 @@ +--- +layout: page +title: Collaborating on GitHub +visible: true +tags: + # languages + - git + # levels + - beginner +--- + + + + - **Authors**: Serena Jeblee; Kathy Chung + - **Research field**: Computational Linguistics; Post-Doc in Digital Humanities + - **Lesson topic**: Collaborating on GitHub + - **Lesson content URL**: + - **Lesson video stream**: + +## Collaborating with Git +Kathy Chung, 2017-08-02 + +#### QUESTIONS TO ASK PARTICIPANTS TO GAUGE KNOWLEDGE LEVEL +1. How familiar are you with the unix command line? How often do you work with it? +2. Have you used git before? +2. On a scale of 1-5 (1=novice/beginner, 5=expert) what kind of git user are you? (how often do you use git in your work? once a week, once a day, once a month) +3. Have you used GitHub before? +4. Have you collaborated on a project on GitHub before? + +### Git vs GitHub +#### Git +- Git is the command line version control system (VCS) software which works on your local computer. +- Git was created by Linus Torvalds in 2005 for development of the Linux kernel, with other kernel developers contributing to its initial development. +- You need Git to use GitHub. You can use Git locally without GitHub. + +#### GitHub +- GitHub is an internet hosting service for git repositories. Public repos are free; private repos are paid. +- As a shared space for repos, it allows you to do collaborative work. + + +### Two Common Collaborative Work Flows +#### Shared Repository Model +- For small projects where you are basically in the same physical space (e.g. lab with offices near each other). +- Be careful! You are cloning the main repository. +- Everyone has push and pull access to the central repo, so be careful and: + - Never commit to the master directly. + - Always do your work on a different branch from master. + +#### Basic Shared Repository Workflow +- update your local repo with `git pull origin master`, +- create a working branch with `git checkout -b MyNewBranch` +- make your changes on your branch and stage them with `git add`, +- commit your changes locally with `git commit -m "description of your commit"`, and +- upload the changes (including your new branch) to GitHub with `git push origin MyNewBranch` +- Go to the main repo on GitHub where you should now see your new branch +- click on your branch name +- click on "Pull Request" button (URC) +- click on "Send Pull Request" + + +#### Fork and Pull Model +- This is the model used by U of T Coders on its own website and repos. +- The "owner"/"Project Leader" of the upstream repo assigns rights to "Collaborators" +- Collaborators do not have push access to main (upstream) repo +- Project Lead accepts Pull Requests (PRs) from collaborators, reviews them, then merges them into main repo. + + +#### Fork and Pull Workflow +- to be demonstrated during lesson + + +### Some Git Terminology/Jargon +#### Repos and Branches + +Term | Description +----- | ------------ +Origin (repo) | Your remote repo (on Github); it is the "origin" for your local copy. Either it is a repo you created yourself or it is a fork of someone else's GitHub repo. +Upstream (repo)| The main repo (on GitHub) from which you forked your GiHub repo. +Local (repo) | The repo on your local computer. +Master | The main branch (version) of your repo. + + +#### Basic Commands/Actions + +Term | Explanation +---| --- +Fork | Make a copy of someone else's GitHub repo in your own GitHub account. +Clone | Make a copy of the your GitHub repo on your local computer. In CLI: 'git clone' copies a remote repo to create a local repo with a remote called `origin` automatically set up. +Pull | You incorporate changes into your repo. +Add | Adding snapshots of your changes to the "Staging" area. +Commit | Takes the files as they are in your staging area and stores a snap shot of your files (changes) permanently in your Git directory. +Push | You "push" your files (changes) to the remote repo. +Merge | Incorporate changes into the branch you are on. +Pull Request | Term used in collaboration. You "issue a pull request" to the owner of the upstream repo asking them to pull your changes into their repo (accept your work). + + + +### Configuring git global settings on your local computer +You only have to do this once; global settings apply to all your git repos. +Note: Any Local settings you initiate within individual git repositories will over ride global settings. +- username +- email +- display colours +- preferred text editor + + +Command line git syntax is: ```git verb``` + +>```$ git config --global user.name "Albert Einstein"``` +>```$ git config --global user.email "bertie@worlduniversity.edu"``` +>```$ git config --global color.ui "auto"``` + +Use your own name and email address instead of Einstein's. This user name and email will be associated with your subsequent Git activity, which means that any changes pushed to a Git host server will include this information. + +For this lesson, we will be interacting with GitHub and so the email address used should be the same as the one used when setting up your GitHub account. If you are concerned about privacy, please review GitHub’s instructions for keeping your email address private. If you elect to use a private email address with GitHub, then use that same email address for the ```user.email``` value, e.g. ```username@users.noreply.github.com``` replacing ```username``` with your GitHub one. You can change the email address later on by using the ```git config``` command again. + +Set up your favorite text editor (default editor): + +>```$ git config --global core.editor "nano -w"``` +>```$ git config --global core.editor "atom --wait"``` + +See https://swcarpentry.github.io/git-novice/02-setup/ for settings for other text editors + +------------------------------------------------------ +## Exercise 1 +### Two Person Collaboration via the CLI - Shared Repo Workflow (without branches) +This exercise is based on the SWC Git Novice lesson https://swcarpentry.github.io/git-novice/08-collab/ + +One of you will be the "Owner" and one of you will be the "Collaborator." + +#### A. Owner gives collaborator access to their repo. +1. Go to your GitHub repo +2. Add a file called "tenlines.txt" and put the text from the etherpad into the file. Commit your changes. +2. Click on **Settings** tab. +3. Click **Collaborators** +4. Enter collaborataors username + +#### B. Collaborator clones Owner's Repo +1. Go to https://github.com/notifications and accept access to Owner's repo. +2. On the CLI, clone the owner's repo but issuing the commmand: +```$ git clone URL-of-Origin-Repo Directory-Address-of-Local-Repo``` + +#### C. Collaborator works on clone of Owner's Repo +Go to your cloned repo: +```$ cd ~/.../yourClone``` + +Open editor and revise working file: +```atom tenlines.txt``` + +Commit your changes to your local repo: +```$ git add tenlines.txt``` +```$ git commit -m "your commit message"``` + +Push your changes to the Owner's repo on GitHub: +```$ git push origin master``` + +#### D. Owner review and accepts changes from Collaborator +Look at Owner's GitHub repo and see new commit(s) from Collaborator. + +Download (pull) Collaborators changes to Owner's local repo: +```$ git pull origin master``` + +--------------------------------- +## Exercise 2 +### Dealing with Merge Conflicts +This section is based on the SWC Git Novice lesson https://swcarpentry.github.io/git-novice/09-conflict/ + +When two or more people work on the same files, conflicts are bound to occur. Version control will help notify us when there are conflicts. It will be up to the humans to sort out which changes to retain. + +The file "tenlines.txt" currently looks like this: +```$ cat tenlinestxt``` + +Let's say **Person A** adds a line to the file and review: +```$ atom tenlines.txt``` +```$ cat tenlines.txt``` + +and pushes changes to GitHub: +```$ git add tenlines.txt``` +```$ git commit -m "added a line in local copy and pushed to remote"``` +```$ git push origin master``` + +Now, **Person B** modifies her local file without first updating it (pulling the repo) from GitHub: +Add a line to the file and review: +```$ atom tenlines.txt``` +```$ cat tenlines.txt``` + +Commit the changes locally: +```$ git add tenlines.txt``` +```$ git commit -m "added a line in local copy"``` + +But when we push, Git will not allow this because there were changes to the same line in the two files: +```$ git push origin master``` + +To resolve the conflict, you need to **pull** the changes from GitHub, **merge** them into your local copy, and then **push** it back to GitHub +```$ git pull origin master``` + +Git tells us there is a conflict and tells you the file it's in. +Let's look at the file: +```cat tenlines.txt``` + +Git has put some new info in our file: + +```<<<<<<<<<<<<< HEAD``` +```our text``` +```========``` +```Other persons's text``` +```>>>>>>>>``` + +You need to open your text editor and make the changes which is the accepted version by you and your collaborator: +```atom tenfiles.txt``` + +Then, to finish mergining, you need to **add**, **commit**, and **push** your changes back to GitHub: +```$ git add tenlines.txt``` + +You can verify the status of your repo first, then commit and push: +```$ git status``` +```$ git commit -m "Merged changes from GitHub"``` +```$ git push origin master``` + +Git keeps track that a conflict has been resolved and what was merged into what so when Person A who made the first changes pulls from GitHub, she doesn't have to fix things and merge again. + +Person A pull and sees new version of the file: +```$ git pull origina master``` +```$ cat tenlines.txt``` + +--------------------------------- + +## Exercise 3 +### Solo Practise via the GitHub GUI +This exercise is based on the 10 mins GitHub "Hello World" tutorial +https://guides.github.com/activities/hello-world/ + +#### A. Create a Remote Repo in your GitHub Account + + 1. In URC, click **+**, then select **New repository** + 2. Name your repository ```Kathy's Project```. + 3. Write a short description. + 4. Select **Initialize this repository with a README**. + +#### B. Create a Branch + +1. Click drop down at top of file list that says **branch: master**. +2. Type a branch name, `readme-edits`, into the new branch text box. +3. Select the blue **Create branch** box or hit "Enter" on your keyboard. Notice you are now on the code view of your `readme-edits` branch, which is a copy of `master`. + +#### C. Make and commit changes +You are now on your `readme-edits` branch. + + 1. Select the `README.md` file. + 2. Click on the pencil icon (URC) of the file view. + 3. Edit the file. Write something about yourself and your project. + 4. Write a commit message at bottom of screen. + 5. Click the **Commit changes** button. + +#### D. Open a Pull Request (PR) + +1. Click on the **Pull Request** TAB, which takes you to the PR page +2. Click on the green **New Pull Request** button. +3. Select the branch you made, `readme-edits`, to compare with the original, `master`. +4. Review your work. +5. Name your pull request and give it a brief description. You can use @mention in your description to ask for feedback by specific persons. +6. Click on the green **Create Pull Request** button. + +#### E. Merge your Pull Request +You will merge your `readme-edits` branch into your `master` branch. + +1. Click on the green **Merge pull request** button. +2. Click **Confirm merge**. +3. You can now delete the branch + +-------------------------------- + +## Exercise 4 +### Two Person Practise via GitHub GUI +This exercise is based on the Mozilla Science WOW lesson on GitHub for Collaborating on Open Projects +http://mozillascience.github.io/working-open-workshop/github_for_collaboration/ + +One of you is the Project Lead. The other will be the Contributor. + +#### A. Project Lead: Create a Remote Repo in your GitHub Account + + 1. In URC, click **+**, then select **New repository** + 2. Name your repository ```Kathy's Project```. + 3. Write a short description. + 4. Select **Initialize this repository with a README**.\ + 5. Give your partner the URL to your repo. + +#### B. Project Lead: Add a File +1. Click **New file** +2. Give the file a name. +3. Put some content in the file. +4. Write a commit message at bottom of screen. +5. Click the **Commit changes** button. + +#### C. Project Lead: Make a Label +1. Click on **Issues** tab. +2. Click on the **Labels** box. +3. Add a label called ".............." + +#### D. Project Lead: Make an Issue +1. Click on **New Issue** button. +2. Give it a title and brief description. You can use @mention in your description to ask for specific feedback. +3. Give it a label. + +#### E. Contributor: Comment on an Issue +1. Go to the PL's repo. +2. Click on the **issues** button to see all the issues. +3. Select the one you wish to respond to. +4. Make a comment, introduce yourself and volunteer to work on the issue. + +#### F. Project Lead: Reply to a comment +1. From your own repo, select the commented issue. +2. Write a reply. +3. Assign the issue to yourself so you can monitor it and answer questions, etc. + +#### H. Contributor: Fork and Branch +1. Go to your own GitHub account. +2. Find the Lead's repo and fork it. +3. Create a branch in your forked repo (see previous Solo practise for instructions) +4. Give the branch a name which indicates the feature or change you're working on. + +#### I. Contributor: Do Work and Commit +1. Make changes in this branch. +2. When you are done, write a commit message, and click on the **Commit changes** button. + +#### J. Contributor: Make a Pull Request to the Upstream Repo +1. Select **Pull Request** tab. +2. Click on **New Pull Request** +3. Make sure you've selected the correct branch where you've made your edits. +4. Name your pull request and provide a brief description (you might wish to include a reference to the related issue #). +5. Click on the green **Create Pull Request** button. + +#### K. Project Lead: Review the Pull Request +1. Review changes made by contributor. +2. You can send comments back and forth to discuss the work. Thank your contributor. + +#### L. Project Lead: Merge the changes +1. Click on the **Merge pull request** button. +2. Close the issue; additional remarks and thanks. + +---------------------------------- + +## Miscellaneous Tasks +#### Create a Local Git Repo (via CLI) +1. Go to the directory which you wish to make into a Git repo: `$ cd ~/GitRepos/MyProject` +2. Initialize the directory as a Git repo: `git init`. +3. Confirm that it worked by looking for the hidden `.git` file in your directory: `ls -a` + + +#### Forking Someone Else's Repo (via GitHub website) +1. Go to someone else's repo and click on the **fork** button on the URC. +2. Wait while GitHub does its work. +3. Check that you now have a new repo in your GitHub account. + + +#### Cloning a Repo onto Your Local computer (via CLI) +```git clone URL-of-Origin-Repo Directory-Address-of-Local-Repo``` +e.g. +```git clone https://github.com/chungkky/2017-08-02_Collaborating-with-Git.git ~/GitHubRepros_KC/2017-08-02_Collaborating-with-Git``` + +-------------- +## Userful Resources +* Git Cheat Sheet (CLI) https://services.github.com/resources/cheatsheets/ +* Visualizing Git Concepts with D3 https://onlywei.github.io/explain-git-with-d3/ +* Collaborative Development Models/Workflows https://help.github.com/articles/about-collaborative-development-models/ +* SWC's Version Control with Git Lesson (CLI) https://swcarpentry.github.io/git-novice/ +* Mozilla Science Working Open Workshop (WOW) lesson GitHub for Collaborating on Open Projects https://mozillascience.github.io/working-open-workshop/github_for_collaboration/ +* The Pro Git Book https://git-scm.com/book/en/v2 +* Atlassian has several good tutorials on Git: + * Index of All Tutuorials https://www.atlassian.com/git/tutorials + * Getting Started https://www.atlassian.com/git/tutorials/setting-up-a-repository + * Collaborating https://www.atlassian.com/git/tutorials/syncing + * Git Workflows https://www.atlassian.com/git/tutorials/comparing-workflows + + +--------------- + +## Collaborating with Git +**Serena Jeblee, 2017-02-22** + +## Overview + +- A brief review of basic git usage +- Some helpful git commands +- Help! I've made a mistake! (aka how to unstage changes and undo commits) +- Merge conflicts +- Branches +- Forking and Pull Requests + +If we have time: +- Stashing changes +- Rebasing + +## Whirlwind Overview of GitHub +- What is GitHub? +- What is version control? + - version control helps you collaborate on code especially when your changes might overlap + - master repo vs local repos + - master - shared version stored on GitHub or a server + - local - your local copy that you can play with and make changes to, only seen by you until you push your changes +- How to contribute code +~~~ +git clone [repo-url] +git pull # syncs latest version from the master repo to your local repo +[edit the code] +git add [file] # stages code for commit (git remove does not unstage, it stages a deletion, we'll get to unstaging in a bit) +git commit # create a record of the changes you've made +git push # sync your local changes to the master repo +~~~ +- Fork and pull request if you can't push directly +- Some rules for good commits + - commit should represent one change or a small set of related changes (like a bug fix or new feature) + - all committed code should be functional and tested + - make sure the commit message is descriptive + +## Get Started +- Create helloworld.sh +~~~ +echo "Fancy code will go here" +echo "More fancy code" +~~~ +- Run it and commit it + +## Help! I messed up and now nothing works! +- Add junk code to hello.sh and run it +- Undo the changes to a file +~~~ +git checkout -- [file] +~~~ +- Unstage the changes, but keep them +~~~ +git reset --soft HEAD +~~~ +- Undo the changes and go back x commits +~~~ +git reset --hard HEAD~x +~~~ + +## Oops, I didn't mean to commit that +- Add the junk code back and commit it +- Undo a local commit +~~~ +git reset --soft HEAD~1 # keeps changes, but undoes the commit +~~~ +- Pushed commits - do a revert commit +~~~ +git revert [commit-hash] +~~~ + +## The Dreaded Merge Conflict +- Clone a new copy of your repo +- Change a line and commit it +- Go back to your original repo +- Change same line to "My version is better!" +- Commit it +~~~ +git commit +git pull +~~~ +- Resolve the merge conflict, delete >>> <<< lines, add and commit + +## Branches +- Branches allow you to have different commit histories in the same repo +- Useful for feature work +- For more info see: + +## Forking and Pull Requests +- Used when you don't have direct push access to a repo +- Fork: creates your own version of the repo that you can commit to +- When you're finished committing all of your changes, create a pull request +- Pull Request: tells the main repo that you have some commits you would like to merge, and allows others to review them first + +## Reviewing Code +- Look for: + - errors (typos, potential infinite loops, concurrency issues, etc) + - overly complicated code + - unclear variable names + - missing comments or documentation +- Provide constructive suggestions for how to fix it + +## Updating the Pull Request +- Try to address all comments, if you're not going to change something, say why not +- Make a new commit and push it to the branch your pull request is on + +## Merging the Pull Request +- Requires push access to the repo +- If there are conflicts, you'll have to check out the pull request and resolve them, otherwise you can merge online +- For more info on how to merge a pull request, see diff --git a/lessons/git/intro/2024_Git_Reproducibility.ipynb b/lessons/git/intro/2024_Git_Reproducibility.ipynb new file mode 100644 index 000000000..b08f8f099 --- /dev/null +++ b/lessons/git/intro/2024_Git_Reproducibility.ipynb @@ -0,0 +1,895 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Reproducibility, the BASH console and GIT\n", + "\n", + "---\n", + "\n", + "## Reproducibility: What is it, What does it mean, Why it's important\n", + "\n", + "The concept of reproducibility is just that \\- **is your work reproducible**? Reproduction of methods, analyses and results is important not only in scientific research but also in day\\-to\\-day activities. It is a major factor that determines if **research results are consistent and valid** If your work is reproducible, then **valid experiments and results build authentic discoveries that are more reliable** in your field and help develop robust literature for future research studies. While reproducibility ensures that your work is accurate and reliable, it can also **encourage community involvement and participation**. _**Remember, if your foundation is shaky then so is all the work built upon it**_\n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n", + "There are different fields of reproducibility :\n", + "\n", + "1. **Scientific** Reproducibility \\- **Can your results be reproduced from your methods?**\n", + "2. **Computational** Reproducibility \\- **Can your results be reproduced from your code?**\n", + "3. **Statistical** Reproducibility \\- **Are your methods robust enough to reproduce your results?**\n", + "\n", + "While talk of reproducibility is all good and dandy, it may not be available to everyone. There are significant barriers to reproducibility including:\n", + "\n", + "- **Costs**\n", + "- The structure of dissemination does not currently fully support reproducibility\n", + "- **Lack of training and incentives**\n", + "- **Takes time, held to a higher standard**\n", + "- Privacy and security\n", + "- Differences between fields\n", + "\n", + "Your job as a scientist and a researcher is to try your best to ensure that your work is reproducible. **If the ability is beyond your means, do not hesitate to say so.** Science is about being open and transparent\n", + "\n", + "There are many tools and conventions to help with your reproducibility journey. These include having a proper workflow and file organization system, as well as GIT for version control\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Workflows\n", + "\n", + "One way to ensure reproducibility is to have a well\\-organized project workflow and management. A common way to organize your files is by **project i.e. a project\\-oriented workflow**. Here, each project that you are working on is **self\\-contained in its own folder**, with its **different data types in different folders**. I.e. your raw data should be in a different folder than your processed data, documents and files should be in another folder etc. \n", + "\n", + "

    \n", + " \n", + "
    \n", + " Note the differences between the first pane and the other two. The first pane, different file types are in the same folder which makes it difficult to find and filter through projects. In the second pane, all the projects are sorted into their own respective folders and with their own subdirectories based on their analysis or function. \n", + "

    \n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## File Paths\n", + "\n", + "Having a default file structure can also help with your own mental organization of your file paths. There are two types of file paths: **absolute and relative**. \n", + "\n", + "### Absolute File Paths\n", + "\n", + "Absolute file paths **start at your root file and mention every directory before arriving at your file**. For example, if I wanted to get the absolute file path of the CSV in the above figure, it would look something like this: `/Users/yeshoda/Desktop/Projects/Salt Tolerance/Chlamy sample - Sheet1.csv`, Where `Chlamy sample - Sheet1.csv` is the name of my file, which is located in the `Salt Tolerance/` folder. This folder is in the `Projects/` folder which is on my `Desktop/` \\(also a folder\\), within my user folder \\(`yeshoda/`\\), within the`Users/` folder in the **root** \\(`/`\\). The / **denotes a directory \\(also known as a folder\\)**. Absolute file paths are useful when trying to find files you're looking for, however, **they are sensitive to breaking**. For example, if I moved `Projects/` to `Documents/` rather than `Desktop/` my path will **no longer work and will cause an error**. \n", + "\n", + "### Relative File Paths\n", + "\n", + "Relative file paths are **relative to the current directory that you are working in**. Your current directory will be noted with a ./ and the parent directory will be denoted with ../ For example if I am in the `Figures/` directory and wish to go to the `References/` directory I can type: `cd ../References/.` Here I'm using the `cd` command which stands for **change directory**, and then specify I want to move into my parent folder Salt Tolerance \\(`../`\\) and then into `References/.` The benefit of using absolute paths is that now if I moved `Projects/` to `Documents/` rather than `Desktop/` **my path still works**. \n", + "\n", + "**There is no right or wrong file path format**! **Choose the one that works for you and for the type of project that you have.** If you know the hierarchy of your folders, relative paths might serve better. However, if you do not know the hierarchy but know where your file is in general then an absolute path might serve better. \n", + "\n", + "

    \n", + " \n", + "
    \n", + " devopsschool \n", + "

    \n", + "\n", + "Just like variable names, **it helps to name your folders something meaningful.** Folders called `1/` and `2/` do not do much to help you when you need to find your files.\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## BASH - Quick Recap\n", + "\n", + "Before we dive into GIT, let's refresh ourselves with some commonly used BASH commands. BASH is the typical Unix shell and command language for your computers. You can use BASH on your terminals. For your note\\-keeping, we can use BASH within a Python notebook! We just need to tell Python, hey! this cell is just going to run BASH \\- don't run me with Python! **We can do this by using a magic command denoted with** **`%%`**`. By running %%bash`, we're telling Python to run this entire cell in BASH. **It must be the first line in the cell or it will not work**. Let's try it out:\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "UsageError: %%bash is a cell magic, but the cell body is empty.\n" + ] + } + ], + "source": [ + "%%bash # denotes the start of a magic cell" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Amazing! Now let's go ahead and play with some commonly used commands:\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/princess/Downloads/10_reproducibility\n", + "BINF5503_Week10_Class\n", + "Figures\n", + "Master_week10_module5_Reproducibility.html.html\n", + "Master_week10_module5_Reproducibility.html.ipynb\n", + "Master_week10_module5_Reproducibility.html.pdf\n", + "STUDENT_week10_module5_Reproducibility.html.ipynb\n", + "STUDENT_week10_module5_Reproducibility.html_Master.ipynb\n", + "UofTCoders_git_lesson_old\n", + "UofT_Coders_Master_Reproducibility.ipynb\n", + "week10_git_lesson\n", + "total 3208\n", + "drwxr-xr-x@ 14 princess staff 448 14 Nov 16:01 BINF5503_Week10_Class\n", + "drwxr-xr-x@ 15 princess staff 480 14 Nov 16:42 Figures\n", + "-rw-rw-r--@ 1 princess staff 83583 13 Mar 2024 Master_week10_module5_Reproducibility.html.html\n", + "-rw-rw-r--@ 1 princess staff 35238 2 Apr 2024 Master_week10_module5_Reproducibility.html.ipynb\n", + "-rw-rw-r--@ 1 princess staff 1397902 13 Mar 2024 Master_week10_module5_Reproducibility.html.pdf\n", + "-rw-rw-r--@ 1 princess staff 29500 2 Apr 2024 STUDENT_week10_module5_Reproducibility.html.ipynb\n", + "-rw-rw-r--@ 1 princess staff 24648 20 Mar 2024 STUDENT_week10_module5_Reproducibility.html_Master.ipynb\n", + "drwxr-xr-x 7 princess staff 224 14 Nov 16:58 UofTCoders_git_lesson_old\n", + "-rw-r--r-- 1 princess staff 54711 14 Nov 16:59 UofT_Coders_Master_Reproducibility.ipynb\n", + "drwxr-xr-x@ 6 princess staff 192 14 Nov 16:01 week10_git_lesson\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "hello.txt: No such file or directory\n", + "cat: hello.txt: No such file or directory\n", + "mv: rename hello.txt to ../hello.txt: No such file or directory\n", + "mv: rename ../hello.txt to ./hello_there.txt: No such file or directory\n", + "cp: hello_there.txt: No such file or directory\n", + "rm: hello_there.txt: No such file or directory\n" + ] + } + ], + "source": [ + "%%bash\n", + "pwd # path to working directory. Gives you the absolute file path of where you are\n", + "ls # list. Will list all of the files in your directory\n", + "ls -l # long list. Gives the long list of all the files in the directory\n", + "mkdir temp/ # make directory. This makes a new folder\n", + "cd temp/ # change directory. Will move \"you\" into the folder/directory you specify\n", + "# vim hello.txt # open the vim text editor and make a note\n", + "# hit i to go into insert mode, and start typing. Once done, hit esc, :wq to save and quit\n", + "less hello.txt # view the file contents\n", + "cat hello.txt # prints the contents of the file to standard out\n", + "mv hello.txt ../ # move hello.txt into the parent directory\n", + "mv ../hello.txt ./hello_there.txt # move hello.txt back to the current directory and rename it to hello_there.txt\n", + "cp hello_there.txt hello_there_copy.txt # copy. Make a copy of the file\n", + "rm hello_there.txt # remove. Delete the file\n", + "\n", + "cd ../ # go to parent directory\n", + "rm -r temp/ #delete the temp folder and all it's contents" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Git\n", + "\n", + "Now for the program of the hour! Git is a version control system that can be used to track file changes. While most commonly thought to be used for coding files only, **it can also be used for any file** including documents, figures, presentations etc. It's a great way to edit your files but also be able to **revert to a previous version if the need arises**. Used in tandem with **GitHub**, it can be a great way **to easily collaborate on projects with others**. It is important to note that you can use Git without having a GitHub account, however you cannot use GitHub without Git. \n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n", + "### Configure git global settings on your local computer\n", + "\n", + "Before we start we need to tell git who we are so that we know who is making the files. We can do this using the `git config` commands\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "%%bash\n", + "\n", + "# first tell git your email. Use the email you have when you set up your github account\n", + "git config --global user.email \"y.harrypaul@yahoo.com\"\n", + "\n", + "# Next your name\n", + "git config --global user.name \"Yeshoda Harry-Paul\"\n", + "\n", + "# Change the name of the branch from master to main\n", + "git config --global init.defaultBranch main" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Local git repo\n", + "\n", + "Let's make a local git repository. A repository **\\(or repo for short\\)** is a storage area for a project containing all the files for the project and the history of the changes made to it. **This repo will be on your local computer.** \n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/princess/Downloads/10_reproducibility/UofTCoders_git_lesson\n" + ] + } + ], + "source": [ + "%%bash \n", + "# Make a new folder that we want to use:\n", + "mkdir UofTCoders_git_lesson\n", + "cd UofTCoders_git_lesson\n", + "pwd\n", + "ls" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Initialized empty Git repository in /Users/princess/Downloads/10_reproducibility/UofTCoders_git_lesson/.git/\n", + "total 0\n", + "drwxr-xr-x 3 princess staff 96 14 Nov 17:00 .\n", + "drwxr-xr-x@ 23 princess staff 736 14 Nov 17:00 ..\n", + "drwxr-xr-x 9 princess staff 288 14 Nov 17:00 .git\n", + "total 24\n", + "drwxr-xr-x 9 princess staff 288 14 Nov 17:00 .\n", + "drwxr-xr-x 3 princess staff 96 14 Nov 17:00 ..\n", + "-rw-r--r-- 1 princess staff 23 14 Nov 17:00 HEAD\n", + "-rw-r--r-- 1 princess staff 137 14 Nov 17:00 config\n", + "-rw-r--r-- 1 princess staff 73 14 Nov 17:00 description\n", + "drwxr-xr-x 14 princess staff 448 14 Nov 17:00 hooks\n", + "drwxr-xr-x 3 princess staff 96 14 Nov 17:00 info\n", + "drwxr-xr-x 4 princess staff 128 14 Nov 17:00 objects\n", + "drwxr-xr-x 4 princess staff 128 14 Nov 17:00 refs\n" + ] + } + ], + "source": [ + "%%bash \n", + "# Initialize the git repository\n", + "cd UofTCoders_git_lesson\n", + "git init\n", + "ls -la # we see the new hidden .git folder\n", + "ls -la .git" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "first_file.txt\n", + "On branch master\n", + "\n", + "No commits yet\n", + "\n", + "Untracked files:\n", + " (use \"git add ...\" to include in what will be committed)\n", + "\tfirst_file.txt\n", + "\n", + "nothing added to commit but untracked files present (use \"git add\" to track)\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "# Now that we have our git repo, lets add a file to it\n", + "touch first_file.txt\n", + "ls\n", + "\n", + "# Let's see how git is doing by checking it's status\n", + "git status\n", + "\n", + "# git has noticed some untracked changes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Hold your horses! The staging environment, the commit and you\n", + "\n", + "Before we get going on our git train, it's important to differentiate between your working directory, the staging environment and a commit. Commits are r**ecords of the changes you've last made since a commit**. These are what allow you to jump between the different stages of your project. However, git does not commit on its own, **you need to tell git what you want to commit**. To do this we first need to **add the file to the staging area** via the command `git add`. Once you've made a nice package of files in the staging area, you can then **commit your changes to your repo** in the `.git` repository. Let's see what this looks like\n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\n", + "\n", + "No commits yet\n", + "\n", + "Changes to be committed:\n", + " (use \"git rm --cached ...\" to unstage)\n", + "\tnew file: first_file.txt\n", + "\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "# Now let's add our file to the staging environment\n", + "git add first_file.txt\n", + "git status # We see now that our file isn't committed but it is about to be" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[master (root-commit) 5061b3f] Created empty file first_file.txt\n", + " 1 file changed, 0 insertions(+), 0 deletions(-)\n", + " create mode 100644 first_file.txt\n", + "On branch master\n", + "nothing to commit, working tree clean\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "# Now let's commit our file. We have the option to also add a message using the -m flag. It is always beneficial to write something useful so that when you are looking back between your versions it is easy to find what you're looking for \n", + "git commit -m \"Created empty file first_file.txt\" first_file.txt\n", + "git status # We see now that our file isn't committed but it is about to be" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "# Great! You just created your first commit! Let's see what happens when we edit our file to add some information to it!\n", + "\n", + "#edit file in vim\n", + "\n", + "# git status #see that the file has been modified\n", + "\n", + "# git diff first_file.txt # what was different from the last commit?\n", + "\n", + "# git add first_file.txt #stage our changes\n", + "# git status \n", + "\n", + "# git commit -m \"Added some filler text to file\" \n", + "# git status" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "commit 5061b3f9de53b181a14f495c6f7ee45c07e2d763\n", + "Author: Yeshoda Harry-Paul \n", + "Date: Thu Nov 14 17:01:02 2024 -0500\n", + "\n", + " Created empty file first_file.txt\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "#let's see what we've done so far\n", + "git log" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Branching in Git\n", + "\n", + "Branching is a great way to work on a new idea, bug fixes or developing features **without affecting your** **`main`** **branch**. They are designed to be **temporary** and to facilitate edits and trials without breaking your original codebase. They allow you to keep your original `main` branch as is. For example, say I had a website and I wanted to make a new webpage. I can branch off of my main branch, create my webpage and then merge once it is completed. This way my website still stays functional as I work on my new webpage. \n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n", + "There are two phases of branch creation: 1**\\) Making a branch and 2\\) Moving to that branch**. Both of these steps can be combined into one but let us take it one at a time. First, let's make a new branch called new\\_files. Just like commits and variable names, it helps to have meaningful branch names so that you know what that branch is meant to be working on \n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "commit 5061b3f9de53b181a14f495c6f7ee45c07e2d763\n", + "Author: Yeshoda Harry-Paul \n", + "Date: Thu Nov 14 17:01:02 2024 -0500\n", + "\n", + " Created empty file first_file.txt\n", + "On branch master\n", + "nothing to commit, working tree clean\n", + "* master\n", + " new_branch\n", + " master\n", + "* new_branch\n", + "commit 5061b3f9de53b181a14f495c6f7ee45c07e2d763\n", + "Author: Yeshoda Harry-Paul \n", + "Date: Thu Nov 14 17:01:02 2024 -0500\n", + "\n", + " Created empty file first_file.txt\n", + "On branch new_branch\n", + "nothing to commit, working tree clean\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Switched to branch 'new_branch'\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "git branch new_branch\n", + "git log\n", + "git status # notice that while we made a branch our status has not changed\n", + "git branch --list\n", + "\n", + "# move to that branch\n", + "git checkout new_branch\n", + "git branch --list\n", + "\n", + "git log\n", + "git status # now our branch has changed" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch new_branch\n", + "Untracked files:\n", + " (use \"git add ...\" to include in what will be committed)\n", + "\tsecond_file.txt\n", + "\n", + "nothing added to commit but untracked files present (use \"git add\" to track)\n", + "On branch new_branch\n", + "Untracked files:\n", + "\tsecond_file.txt\n", + "\n", + "nothing added to commit but untracked files present\n", + "[new_branch 9a7d541] adding second file\n", + " 1 file changed, 0 insertions(+), 0 deletions(-)\n", + " create mode 100644 second_file.txt\n", + "first_file.txt\n", + "* master\n", + " new_branch\n", + "Updating 5061b3f..9a7d541\n", + "Fast-forward\n", + " second_file.txt | 0\n", + " 1 file changed, 0 insertions(+), 0 deletions(-)\n", + " create mode 100644 second_file.txt\n", + "Deleted branch new_branch (was 9a7d541).\n", + "On branch master\n", + "nothing to commit, working tree clean\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Switched to branch 'master'\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "# Let's make some changes to our files\n", + "\n", + "# edit first_file.txt\n", + "\n", + "cp first_file.txt second_file.txt # make a copy called second_file.txt\n", + "git status\n", + "\n", + "# edit the second_file.txt\n", + "\n", + "git commit -a -m \"Added another line of text about the weather to file\" #Notice how it only added changes and committed for the first_file.txt as git was watching it\n", + "\n", + "# Let's add and commit the other files\n", + "git add * # the * will add all the files in the current folder at once, rather than having to type them all individually\n", + "git commit -m \"adding second file\"\n", + "\n", + "# now let's merge our branch back to the main one\n", + "# First head back to the main branch\n", + "git checkout master\n", + "ls\n", + "\n", + "git branch --list\n", + "\n", + "# Merge your branch\n", + "git merge new_branch\n", + "\n", + "# Delete the old branch since there's no use for it anymore \n", + "git branch -d new_branch\n", + "\n", + "git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Going back to a previous commit\n", + "\n", + "Sometimes we had versions of our code that worked better or documents that were worded more eloquently, but we no longer have them as we've modified the same file. With Git, **as long as the file was committed** we can revert to that version. Let's play around with it:\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[master 3168bd8] adding temporary file to delete\n", + " 1 file changed, 0 insertions(+), 0 deletions(-)\n", + " create mode 100644 temp.txt\n", + "first_file.txt\n", + "second_file.txt\n", + "On branch master\n", + "Changes not staged for commit:\n", + " (use \"git add/rm ...\" to update what will be committed)\n", + " (use \"git restore ...\" to discard changes in working directory)\n", + "\tdeleted: temp.txt\n", + "\n", + "no changes added to commit (use \"git add\" and/or \"git commit -a\")\n", + "On branch master\n", + "nothing to commit, working tree clean\n", + "[master b3f5db5] added temp2.txt\n", + " 1 file changed, 0 insertions(+), 0 deletions(-)\n", + " create mode 100644 temp2.txt\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "# Make a temporary file and commit it\n", + "touch temp.txt\n", + "git add temp.txt\n", + "git commit -m \"adding temporary file to delete\"\n", + "\n", + "# Remove the file and update git\n", + "rm temp.txt\n", + "ls # Check that our file is deleted\n", + "git status # while we deleted the file locally, it is still in our repo\n", + "# git rm temp.txt # delete from git repo\n", + "# git restore --staged temp.txt # can pull our file back if didn't commit\n", + "git restore temp.txt\n", + "git commit -m \"deleted temporary file\"\n", + "\n", + "# Make some minor changes\n", + "touch temp2.txt\n", + "git add temp2.txt \n", + "git commit -m \"added temp2.txt\"\n", + "\n", + "## Revert back to the previous commit\n", + "# Get the commit ID\n", + "# git log --oneline\n", + "# git revert --no-commit 79c4a61..HEAD #use the --no-commit flag to avoid an automatic commit \n", + "# ls\n", + "# git commit -m \"reverting back to other commit with temp.txt\"\n", + "\n", + "## Revert but keep changes, can also do with the one above ^ however this one will delete the commits following the one you want to go to\n", + "# git reset --soft 8e4a7e0\n", + "# git restore --staged \n", + "# git restore \n", + "# git commit -m \"message\"\n", + "# git log" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Integrating GitHub\n", + "\n", + "Now that we have some of the basics under our belt let's push something to GitHub. First we need to create an access token to be able to push our work to a repository on GitHub. \n", + "\n", + "Click on your profile picture on Github and Navigate to `Settings`. Once there scroll all the way down to `Developer settings`. Next navigate to `Personal Access Tokens` > `Tokens Classic` > `Generate New Token`. Select all the permissions you would like this key to be able to access. Once you generate your key **KEEP IT SOMEWHERE SAFE**. You will not be able to view it again. \n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n", + "\n", + "Now that we have our key we can create a new repo on GitHub. We can do this by logging in, pressing the plus button (create new) and selecting \"New Repository\"\n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n", + "Next we can go ahead and name our repository and add a brief description. Once that is done go ahead and press \"Create repository\". \n", + "\n", + "

    \n", + " \n", + "

    \n", + "\n", + "GitHub gives us the option of pushing an existing repo from the commandline. Let's go ahead and push our week10_git_lesson folder to our GitHub:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "%%bash\n", + "cd UofTCoders_git_lesson\n", + "\n", + "git remote add origin https://github.com/YeshodaHP/UofTCoders_Git_Lesson_2024.git\n", + "git branch -M main\n", + "git push -u origin main\n", + "\n", + "#This will prompt you to input your username and password (Now using token)\n", + "# To generate a token go to settings > developer settings > Personal access tokens > Generate new token" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Great! Now we can see our files and commits on our GitHub! Note that now when we want to place our files onto GitHub (the remote directory), we now have to `push` it there. Let's try creating a file and pushing it to our GitHub\n", + "\n", + "

    \n", + " \n", + "

    " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should now be able to see your new file in your repo!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "%%bash\n", + "cd week10_git_lesson\n", + "\n", + "#Make a new file, add and commit\n", + "vim github.txt\n", + "git add github.txt \n", + "git commit -m \"Adding new github.txt file\"\n", + "\n", + "# now push it to GitHub\n", + "git push " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Collaborative Repos\n", + "Great! Now that we've pushed files to GitHub let's try to use it in a collaborative way. There are two common collaborative workflows:\n", + "1. The Shared Repository Workflow\n", + "\t- Everyone works on their own branch and then merges to the main\n", + "2. The Fork and Pull Workflow\n", + "\t- The project owner can assign rights to \"collaborators\" which do not have push access to the main branch. The project lead will accept pull requests (PRs), review and accept changes made\n", + " \n", + "Let's see how the shared repo workflow looks!\n", + "\n", + "### Shared Repo\n", + "Let's try creating a file with your name as the file name, containing something fun about you. Let's push it to Yeshoda's GitHub. First we will need to clone her repo located at: https://github.com/YeshodaHP/UofTCoders_Git_Lesson_2024.git. Next create a branch with your name, create your file, commit and push!\n", + "\n", + "Remember to always pull before you start to do your work so that you're on the most recent branch!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "%%bash\n", + "git clone https://github.com/YeshodaHP/UofTCoders_Git_Lesson_2024.git #clone the repo\n", + "\n", + "git fetch #fetch new work done by others - it does not merge with your branch\n", + "\n", + "git merge #merge the work you've done with others\n", + "\n", + "git pull # will pull all the online work and merge it with your local work. Make sure you commit your own work before pulling \n", + "\n", + "#Create a branch with your name as the branch and add a new file with your name and something fun about you!\n", + "git branch Yeshoda_HP\n", + "git checkout Yeshoda_HP\n", + "#vim Yeshoda_HP.txt\n", + "git add Yeshoda_HP.txt\n", + "git commit -m \"Yeshoda is adding her file\"\n", + "git push --set-upstream origin Yeshoda\n", + "\n", + "#go back to the main branch and delete your branch\n", + "git checkout main\n", + "git branch -d Yeshoda" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Recap\n", + "Amazing Job! So far today we learned about :\n", + "- Reproducibility and why it is important\n", + "- File hierarchies\n", + "- The BASH console and some common commands\n", + "- An intro to Git\n", + "\t- Where we learned to make a local repository \n", + " - How to commit changes\n", + " - Create branches \n", + " - How to revert to previous commits\n", + " - GitHub:\n", + " \t- How to connect and clone\n", + " - How to collaborate with other users. \n", + " \n", + "We did a lot of Git today, and we know there is a lot of jargon surrounding git so here is a breif recap:\n", + "\n", + "| Term | Description |\n", + "| ----------- | ----------- |\n", + "| Add | Adding your changes to the “Staging” area|\n", + "| Branch | A parallel version of a repository where changes can be made that do not affect the main repository. New branches are often used to test changes or new ideas, which can later be merged with the base branch|\n", + "| Checkout | Moving from one branch to another|\n", + "| Clone | Make a copy of the your GitHub repo on your local computer|\n", + "| Commit | Takes the files in your staging area and store their changes permanently in your Git directory|\n", + "| Head | Head is a reference or pointer of the latest commit on your branch, there can only be one head at a time. You can move the head to a different commit by using checkout - this is known as a detatched head |\n", + "| Merge | Incorporate changes into the branch you are on|\n", + "| Pull | A combination of fetch and merge. This fetches the files from the remote repo and merges them with your local files|\n", + "| Pull Request | Term used in collaboration. You “issue a pull request” to the owner of the upstream repo asking them to pull your changes into their repo (accept your work)|\n", + "| Push | Sync your file changes to the remote repo on GitHub|\n", + "\n", + "As always if you have any questions feel free to email both Yeshoda and Vicki! Happy coding, see you next week!\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.0" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/lessons/git/intro/Figures/File Organization.png b/lessons/git/intro/Figures/File Organization.png new file mode 100644 index 000000000..b8fe045fe Binary files /dev/null and b/lessons/git/intro/Figures/File Organization.png differ diff --git a/lessons/git/intro/Figures/File_Paths.jpeg b/lessons/git/intro/Figures/File_Paths.jpeg new file mode 100644 index 000000000..745e97f31 Binary files /dev/null and b/lessons/git/intro/Figures/File_Paths.jpeg differ diff --git a/lessons/git/intro/Figures/GitHub Repo.png b/lessons/git/intro/Figures/GitHub Repo.png new file mode 100644 index 000000000..d5fffbfc7 Binary files /dev/null and b/lessons/git/intro/Figures/GitHub Repo.png differ diff --git a/lessons/git/intro/Figures/Naming_repo.png b/lessons/git/intro/Figures/Naming_repo.png new file mode 100644 index 000000000..a88c7320f Binary files /dev/null and b/lessons/git/intro/Figures/Naming_repo.png differ diff --git a/lessons/git/intro/Figures/Personal Access Tokens.png b/lessons/git/intro/Figures/Personal Access Tokens.png new file mode 100644 index 000000000..4078e18f8 Binary files /dev/null and b/lessons/git/intro/Figures/Personal Access Tokens.png differ diff --git a/lessons/git/intro/Figures/Reproducibility.jpeg b/lessons/git/intro/Figures/Reproducibility.jpeg new file mode 100644 index 000000000..2a506893c Binary files /dev/null and b/lessons/git/intro/Figures/Reproducibility.jpeg differ diff --git a/lessons/git/intro/Figures/Version_control.jpeg b/lessons/git/intro/Figures/Version_control.jpeg new file mode 100644 index 000000000..a8943991e Binary files /dev/null and b/lessons/git/intro/Figures/Version_control.jpeg differ diff --git a/lessons/git/intro/Figures/branches.png b/lessons/git/intro/Figures/branches.png new file mode 100644 index 000000000..5e5da71d5 Binary files /dev/null and b/lessons/git/intro/Figures/branches.png differ diff --git a/lessons/git/intro/Figures/git_staging_area.png b/lessons/git/intro/Figures/git_staging_area.png new file mode 100644 index 000000000..065595a21 Binary files /dev/null and b/lessons/git/intro/Figures/git_staging_area.png differ diff --git a/lessons/git/intro/Figures/git_workflow.png b/lessons/git/intro/Figures/git_workflow.png new file mode 100644 index 000000000..90fd79030 Binary files /dev/null and b/lessons/git/intro/Figures/git_workflow.png differ diff --git a/lessons/git/intro/lesson.md b/lessons/git/intro/lesson.md new file mode 100644 index 000000000..002064561 --- /dev/null +++ b/lessons/git/intro/lesson.md @@ -0,0 +1,163 @@ +--- +layout: page +title: '(Brief) Introduction to Git + GitHub' +visible: true +tags: + - git + - beginner +--- + + - **Authors**: Luke Johnston + - **Research field**: Nutritional and diabetes epidemiology + - **Lesson topic**: Version control (Git) + - **Lesson content URL**: + - **Intro to Git slides (2015)**: + - **Philosophy of Git slides (2016)**: + - **Lesson video stream (2016)**: + - **Intro to Git slides (2017)**: + +## Preface: ## + +Version control is a system that manages changes to a file or files. +These changes are kept as logs in a history, with detailed information +on what file(s) was changed, what was changed within the file, who +changed it, and a message on why the change was made. This is +extremely useful, especially when working in teams or for yourself 6 +months in the future (because you *will* forget things)! + +To understand how incredibly powerful version control is, think about +these questions: How many files of different versions of a manuscript +or thesis do you have laying around after getting feedback from your +supervisor or co-authors? Have you ever wanted to experiment with your +code or your manuscript and need to make a new file so that the +original is not touched? Have you ever deleted something and wish you +hadn't? Have you ever forgotten what you were doing on a project? All +these problems are fixed by using version control (git)! + +We are going to go over a typical workflow. This could be either a +solo workflow or a collaborative workflow. + +## Checklist: ## + +* Configure your git +* Create a folder and create a git repository (`git init`; the saved + history of the folder and files) in that folder +* Create a file and track it with git (`git add`), saving it to the + history (`git commit`) +* Write a short bio in the file +* Check what's going on in the folder (`git status`) +* Compare the file with the one in the history (`git diff`) +* Add the tracked file to the 'staging' area (`git add`; this is an + area *before* going into the history) +* Save the file in the history (`git commit`) +* Look into your history (`git log`) + +(If we have time): + +* Create a GitHub account and create a repository +* Set the URL of the new GitHub repository to your repository on your + computer (`git remote`; the command is usually provided from GitHub) +* Upload your repository on your computer (called local repository) + up to your GitHub repository (called the remote repository; use `git + push`) +* Download from the remote to the local repository (`git pull`) + +**Tips**: + +* Make use of TAB-completion in the terminal! +* Up arrow on the terminal goes to the previous command you entered. + +## Lesson topics and commands ## + +For configuring your git, follow the "Initial setup" I've put +together: + +* http://codeasmanuscript.org/lessons/git/cheatsheet/ + +Create a folder and create a git repository (which is the stored +history) in that folder. (Note: `##` is a comment, not a command). + + cd ~/Desktop ## Move to your desktop + mkdir playing ## Create a folder (aka directory) + cd playing + git init ## Create the repository (init = initialize) + +Now, create a file, get git to track it, and save it to the history. + + touch bio.txt ## Command to create a file called bio.txt + ls ## Check that you created the file, ls = list files + git add bio.txt ## Track the file + ## Save the file to the history with a message (-m) + git commit -m "Initial commit" + +Now, open the `bio.txt` file and add: + +* Your name +* Your program and year +* Your progamming language/statistical language of choice + +Then: + + git status ## Check the activity + git diff bio.txt ## Compare to the one in the history + git add bio.txt ## This sends it to the staging area + git commit -m "Added my bio" ## This sends it to the history + +For a description on what the different stages are (working directory, +staging area, and committed history) see the below links: + +* Description: https://git-scm.com/book/en/v2/Getting-Started-Git-Basics +* Image: https://git-scm.com/book/en/v2/book/01-introduction/images/areas.png + +Then, to see what has happened in your history: + + git log ## View the log of your history + +*If we have time*, we'll create a GitHub account, create a GitHub +repository (a remote repository), and upload the repository on your +computer (called the local repository) onto the remote repository +(GitHub): + + git remote add origin https://github.com/yourusername/playing.git + git push origin master + git pull + +Now you know about a typical workflow! There are **lots** of commands +and options in git, you really can do almost anything. *However*, +these are the basic tools that are used most frequently. If you have +any questions, please check out +[StackOverflow](https://stackoverflow.com/questions/tagged/git) for +*literally* any question on or about Git!! Or just google it! Google +usually shows answers from StackOverflow. + +# Resources: # + +## Glossary: ## + +* `cd` - change directory +* directory - the same thing as a folder +* `ls` - list the files and folders in a folder +* `touch` - create an empty file +* repository - the saved history of a folder and files, used by git. +* `init` - start or initialize a git repository +* `add` - put a file into the staging area, so that git starts + tracking it +* staging/index area - where files are stored before going into the + history +* `commit` - send files in the staging/index area into the history + (the git repository) +* `status` - check the status of the folder and the git repository +* `diff` - compare a file to the a file in the history +* `log` - view the commit history in the git repository + +## Links: ## + +Here are a few great resources (excluding StackOverflow) to use if you +ever need help: + +* [Hands-on tutorial, with web-based terminal](https://try.github.io/levels/1/challenges/1) +* [Official git documentation](https://git-scm.com/doc) +* [Simpler first-steps guide](https://rogerdudler.github.io/git-guide/) +* [Reference pages for all git commands](http://gitref.org/) +* [Interactive, visual tutorial on branching](https://pcottle.github.io/learnGitBranching/) + diff --git a/lessons/git/intro/philosophy_of_git.pdf b/lessons/git/intro/philosophy_of_git.pdf new file mode 100644 index 000000000..a762d7d16 Binary files /dev/null and b/lessons/git/intro/philosophy_of_git.pdf differ diff --git a/lessons/git/intro/practice-code-2015-06-18.sh b/lessons/git/intro/practice-code-2015-06-18.sh new file mode 100644 index 000000000..e25f4ac0b --- /dev/null +++ b/lessons/git/intro/practice-code-2015-06-18.sh @@ -0,0 +1,112 @@ +## <- this is a comment + +## Configure your local git setup. This only needs to be done once. +git config --global user.name "Your Name" +git config --global user.email "you@some.domain" +git config --global color.ui "auto" +git config --global core.editor "your_editor" +git config --global push.default current + +## List all the configurations completed +git config --list + +## cd = change directory (move to another folder) +cd ~/Desktop + +## mkdir = make directory (create a folder) +mkdir practice2/ + +## First, fork the 'sandbox' repo from the UofTCoders group. Forking +## just means copy over into your own account. + +## clone = copy the repo from GitHub to your computer +git clone https://github.com/your-account-name/sandbox +cd sandbox + +## Those with internet problems can do this: create a folder called +## sandbox, move into that folder, and create an empty git repo (init) +## init = initialize a git repo (start an empty git repo in that folder) +mkdir sandbox && cd sandbox && git init + +## ls = list files and folders in the current location +ls + +## pwd = print working directory (see what your current location is) +pwd + +## touch = create a new text file +touch your-name-bios.txt + +## Edit the file and add stuff to it + +## See the content of the file +cat your-name-bios.txt + +## add = track and put the file into the git staging area (staging +## just means ready to be saved into the history, but not actually +## saved) +git add your-name-bios.txt + +## commit = save everything in the staging area into the history (the +## git repo). -m = the commit message to be included in the history. +## Try to be descriptive with this message. +git commit -m "Added my bio" + +## log = check the saved history +git log + +## Make some edits to the bio file + +## status = check what is happening in non-saved files. This shows +## things that have been modified or are untracked. +git status + +## diff = compare the contents of the current file with the +## (essentially) previous commit. +git diff your-name-bios.txt + +## When you add a filename to the commit command, git will save that +## file directly into the history. This bypasses the staging area. +git commit your-name-bios.txt -m "Added a line to my bio" + +## push = upload your git repo to GitHub, basically syncing it. +git push + +## remote add = set another GitHub to download from. This remote is +## called 'upstream'. Having this remote allows you to keep +## up-to-date with the original repo. +git remote add upstream https://github.com/UofTCoders/sandbox + +## -v = verbose (show a detailed description of your remote +## -locations/urls) +git remote -v + +## pull = download. This syncs your local repo with the original +## repo. +git pull upstream master + +## Sync your local repo with your own forked repo on your GitHub +## account (not the original). +git push + +## Make edits and commit to the history. +git commit your-name-bios.txt -m "Added line on type of analysis" + +## Upload and sync with your forked repo. +git push + +## Check your history of the saved commits. +git log + +## checkout = go back, forward, or around to different commits (or +## branches) in your commit history. c1361 is the (completely!!) +## unique commit hashtag (you can see the hash when you do git log; no +## one will have the same hash!). -- = anything after this is a file. +## So basically, this command will take the file from c1361 and bring +## it into your current location... basically reviving a file from the +## dead! +git checkout c1361 -- your-name-bios.txt + +## You can confirm that the file is different from before! +cat your-name-bios.txt + diff --git a/lessons/git/intro/practice-code-2016-05-19.sh b/lessons/git/intro/practice-code-2016-05-19.sh new file mode 100644 index 000000000..fae39b9dd --- /dev/null +++ b/lessons/git/intro/practice-code-2016-05-19.sh @@ -0,0 +1,148 @@ +## <- this is a comment + +## general command line tips +## use tab completion: when you start typing something, hitting 'tab' will finish it for you. +## use the 'up' arrow to cycle through past commands (to avoid re-typing) +## for Git commands, typing git --help will show a help page + +## Configure your local git setup. This only needs to be done once. Only the first two are essential. +git config --global user.name "Your Name" +git config --global user.email "you@some.domain" +git config --global color.ui "auto" +git config --global core.editor "your_editor" + +## List all the configurations completed +git config --list + +## cd = change directory (move to another folder) +## note: "cd .." moves you back one folder +cd ~/Documents + +## mkdir = make directory (create a folder) +mkdir GitHub + +## move to the GitHub folder +cd GitHub + +## First, fork the 'studyGroup' repo from the UofTCoders group. Forking +## just means copy over into your own account. Click "fork" in the top right corner. +## url: https://github.com/UofTCoders/studyGroup + +## clone = copy the repo from GitHub to your computer +## In the terminal (still in the GitHub folder), type: +git clone https://github.com/your-account-name/studyGroup +cd studyGroup + +## Those with internet problems can do this: create a folder called +## sandbox, move into that folder, and create an empty git repo (init) +## git init = initialize a git repo (start an empty git repo in that folder) +mkdir sandbox && cd sandbox && git init + +## ls = list files and folders in the current location +ls + +## pwd = print working directory (see what your current location is) +pwd + +## git status = check the status of your folder - see if there are any changes. +git status + +## move into the _data folder, see what's there +cd _data +ls + +## cat = prints to the screen the contents of a file (also used to join files together) +cat members.yml + +## Add yourself to the members list! +## typing "nano filename" opens the file in the editor nano. +## you can use any editor you like, such as atom, notepad, vim, etc. +nano members.yml + +## git status = check the status of your repository +## you'll see a changed file +git status + +## add = track and put the file into the git staging area (staging +## just means ready to be saved into the history, but not actually +## saved) +git add members.yml +git status ## just to see what happened + +## commit = save everything in the staging area into the history (the +## git repo). -m = the commit message to be included in the history. +## Try to be descriptive with this message. +git commit -m "Added myself to the members list" + +## log = check the saved history +git log +git status ## should be all clean again + +## Make some more edits to the members file +nano members.yml +git status + +## diff = compare the contents of the current file with the +## (essentially) previous commit. +git diff members.yml + +## When you add a filename to the commit command, git will save that +## file directly into the history. This bypasses the staging area. +git commit members.yml -m "Added a line to my bio" + +## Check your history of the saved commits. +git log + +## Viewing history: git checkout + +## checkout = go back, forward, or around to different commits (or +## branches) in your commit history. c1361 is the (completely!!) +## unique commit hashtag (you can see the hash when you do git log; no +## one will have the same hash!). + +## open a file browser and look at the _members.yml file. +## run the command below (with the right commit id) and then look at the file again. +git checkout c1361 ## this takes you back in time to the state at this commit id. + +## you are now in the legendary DETACHED HEAD state. +## If you make any changes and commit them here, you'll need to +## create a branch so that you can find them back later. +## Otherwise they'll eventually disappear forever. +## git checkout --help has details about this. + +## -- = anything after this is a file. +## So basically, this command will take the file from c1361 and bring +## it into your current location... reviving a file from the +## dead! This takes ONLY the file members.yml, and no other changes. +git checkout c1361 -- members.yml + +git status ## will show the members.yml file as modified, +## since now you have a different version than the last commit. + +## If you want to go back to the state after the latest commit: +git checkout -- members.yml +## since we didn't specify a commit, this assumes the latest commit, and give you that version + +## If you like the old version better: +git commit -m "I'm keeping the old version" + +## push = upload your git repo to GitHub, basically syncing it. +git push + +## remote add = set another GitHub to download from. This remote is +## called 'upstream'. Having this remote allows you to keep +## up-to-date with the original repo. +git remote add upstream https://github.com/UofTCoders/studyGroup + +## -v = verbose (show a detailed description of your remote +## -locations/urls) +git remote -v + +## pull = download. This syncs your local repo with the original +## repo. +git pull upstream master + +## Sync your local repo with your own forked repo on your GitHub +## account (not the original). +git push + diff --git a/lessons/git/intro/practice-code-2017-10-05.sh b/lessons/git/intro/practice-code-2017-10-05.sh new file mode 100644 index 000000000..51965ea40 --- /dev/null +++ b/lessons/git/intro/practice-code-2017-10-05.sh @@ -0,0 +1,103 @@ +## <- this is a comment + +## general command line tips +## use tab completion: when you start typing something, hitting 'tab' will finish it for you. +## use the 'up' arrow to cycle through past commands (to avoid re-typing) +## for Git commands, typing git --help will show a help page + +## Configure your local git setup. This only needs to be done once. Only the first two are essential. +git config --global user.name "Your Name" +git config --global user.email "you@some.domain" + +## other optional configurations +git config --global color.ui "auto" + +## setup an editor for text files (if you need one) +## you can use any editor you like, such as atom, notepad, vim, etc. +## more help on setting up editors +## https://help.github.com/articles/associating-text-editors-with-git/ +git config --global core.editor "your_editor" + +## List all the configurations completed +git config --list + +## cd = change directory (move to another folder) +## note: "cd .." moves you back one folder +cd ~/Documents +## for windows users with full path +cd C:/Users/user_name/Documents + +## mkdir = make directory (create a folder) +mkdir git-training + +## move to the new folder +cd git-training + +## convert folder to git repo +git init + +## check remote configuration of new git repo +git remote -v + +## setup new remote for empty remote +git remote add origin https://github.com/UofTCoders/git-training.git + +## check remote configuration again +git remote -v + +## once the text file is created and saved as my_cred.txt in new repo +## check file status +git status + +## let us add this new file to the git index +git add my_cred.txt + +## check changed file status again +git status + +## commit new file to be tracked by git +git commit -m "initial commit with my info" + +## if remote is set and you have an internet connection +## push changes to remote repo +git push -u origin master + +## create another repo on github to test cloning/copying function of git +## let us call this repo sandbox-2017 +cd ~/Documents + +## clone using +git clone https://github.com/UofTCoders/sandbox-2017.git +cd sandbox-2017 + +## see all files in directory +ls + +## open file example_file.md in notepad or any other text editor of your choice +## you can do so from the command line using +notepad example_file.md + +## after saving and closing file add file to git index and commit +git add example_file.md +git commit -m "add one new line to file" + +## using diff to visualize differences between commits +git diff example_file.md + +## check all the commits made to this repo +git log + +## get ore info a cleaner format +git log --online + +## chaneck remote version +git remote -v + +## push changes to remote repo +git push origin + + + + + + diff --git a/lessons/git/intro/slides-2017.Rmd b/lessons/git/intro/slides-2017.Rmd new file mode 100644 index 000000000..094bcb2f5 --- /dev/null +++ b/lessons/git/intro/slides-2017.Rmd @@ -0,0 +1,307 @@ +--- +title: "Intro to Git" +author: "Shyam Srinivasan" +date: "October 5, 2017" +output: beamer_presentation +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE) +``` + +# Learning expectations + +This won't even touch the surface of git... But! Hopefully, you: + +- Recognize the power of using version control +- Know the basic tools to get started using git +- Where to go for help + +But! No expectation to actually start using it :) + +# What is Git? +![](https://imgs.xkcd.com/comics/git.png) + +# Getting started with Git and GitHub + +Create an account on GitHub + +* You set your username, email and password here + +## Windows/MacOS +https://desktop.github.com/ + +* Make sure you install posh-git along with GitHub + +## Linux + +* Download and install Git for Ubuntu/Debian/Mint Linux +`sudo apt-get install git` + +* Download and install Git for Fedora Linux +`sudo dnf install git` + +# Configuring your setup: + +```bash +git config --global user.name "Your Name" +git config --global user.email "you@some.domain" +``` + +Optional Configurations +```bash +git config --global color.ui "auto" +``` + +Setup Editor for Text Files + +```bash +git config --global core.editor "your_editor" +git config --list # To confirm +``` + +# Creating a Repo on Github +The cloud (GitHub) serves as an online repo where files are accessible 24x7 + +* Go to [GitHub](https://github.com/) + +* Create a new repo by pressing the `New Repository` button + +* Let us keep the name short and self explanatory and call it 'git-training' + +* We will call this the `remote` repo from here on + +# Creating a Git Repo +* change directory (move to another folder) using +```bash +cd +``` +* to move back one folder use +```bash +cd .. +``` +* to make a new directory +```bash +mkdir +``` + +# Let us create a `local` Repo +```bash +cd ~/Documents +# for windows users with full path +cd C:/Users/user_name/Documents +# create a new folder +# use the same name as your remote repo on GitHub +mkdir git-training +# move to the new folder +cd git-training +``` +## Convert folder to **git** repo +```bash +git init +``` +## check your folder to find git configuration files/folders +This folder is now a git repo (short for repository) + +# Using GitHub with Git +If you have GitHub (on Windows/MacOS), you can add the repository you cloned/created to it and visualize the changes + +Remember, you installed this earlier? + +# Configuring your repo for use with GitHub on the cloud +In order to use this local repo with the one you created earlier we need to set the remote configuration +```bash +git remote -v +``` +will tell you what is the remote corresponding to your local repo + +If it is empty, you can setup a remote using +```bash +git remote add remote_name remote_url +``` + +Before you do this, you need to have an account on GitHub and a repo on it + +# Configuring your repo for use with GitHub on the cloud +* Copy the repo url from the repo creation page and use it in +```bash +git remote add origin +https://github.com/UofTCoders/git-training.git +``` + +* Check your remote configuration again +```bash +git remote -v +``` + +# Adding new files to a repo +* create a text file with + + your name + + program + + research area +* save the file as `my_cred` in the git repo you just created + +# Visualize changes to files +You can see the changes you made to this file in GitHub +\begin{block} +{New files} on GitHub can be seen with a \textcolor{green}{green '+'} to their right +\end{block} + +This indicates the file is new and is `untracked` by git + +\begin{block} +{Old modified files} can be seen with a \textcolor{gray}{gray circle} to their right +\end{block} + +This indicates the file is already `tracked` and there are `uncommitted` changes +```bash +git status +``` +can give information on `tracked`, `untracked` and `indexed` files + +# Adding Files to git index +* add the file to the git index +```bash +git add my_cred.txt +``` +* check file status again +```bash +git status +``` +Notice the file has changed from \textcolor{red}{red} to \textcolor{green}{green} + +* let us `commit` this change to repo history +```bash +git commit -m "initial commit with my info" +``` +* Now your file is `tracked` by git + +# `push` to your new repo on GitHub +You can move all your **committed** changes to the remote repo +```bash +git push origin +``` +Since this is the first time we are doing this, we need to +establish a link between your local repo and remote repo. + +you can do this using +```bash +git push -u origin master +``` +Make sure your `remote` is set before you do this + +# Cloning an Existing `git` repo +We can copy or clone existing repositories from GitHub using +```bash +git clone remote_repo_url +``` +Let us do this for the [sandbox repo](https://github.com/UofTCoders/sandbox-2017.git) I have created + +Select the green `Clone or Download` button and select ` copy to clipboard` + +In your shell/bash move to a directory of your choice and clone the repo +```bash +cd ~/Documents +# if you are using git posh (in powershell) +# use the right click to paste the copied url +git clone +https://github.com/UofTCoders/sandbox-2017.git +``` + +# Modify a existing file and commit changes +Go to the directory containing the example file +```bash +cd sandbox-2017 +# see all files in the directory +ls +``` +Open file `example_file.md` in any text editor + +To open files in bash/shell +```bash +editor_name file_name +notepad example_file.md +``` +add a new line to this file starting with an asterisk(*) + +save file and close + +# Add changes to index and commit changes to repo +We will use the previously used commands to `add` and `commit` files +```bash +git add example_file.md +git commit -m "add one new line to file" +``` + +# Visualize changes to file +You can use +```bash +git diff example_file.md +``` +in the command line + +Note the file has to be `tracked` and +the changes have to be `committed` to use `git diff` + +You can also visualize all commits to the repo using +```bash +git log +``` + +commit information can be obtained in a cleaner format using +```bash +git log --online +``` + +# `push` commits to the remote repo +Let us first check the `remote` configuration +```bash +git remote -v +``` +Notice that the remote is already set + +```bash +git push origin +``` +will push your `local` changes to the `remote` repo + +# Discarding changes in your repo +Discard \textcolor{red}{unstaged} \textcolor{gray}{Tracked} files using +```bash +git checkout . +``` +Discard \textcolor{red}{unstaged} unTracked files using +```bash +git clean -f +``` +Use this command with caution: + +Discard \textcolor{green}{staged} and \textcolor{red}{unstaged} Tracked changes using +```bash +git reset --hard +``` + +# Summary of Commands covered today +```bash +git init +git clone +git config +git remote +git status +git diff +git add +git commit +git push +git pull +git checkout +git clean +``` + + + + + + + + + diff --git a/lessons/git/intro/slides-2017.pdf b/lessons/git/intro/slides-2017.pdf new file mode 100644 index 000000000..bf5fd32cd Binary files /dev/null and b/lessons/git/intro/slides-2017.pdf differ diff --git a/lessons/git/intro/slides.Rmd b/lessons/git/intro/slides.Rmd new file mode 100644 index 000000000..0749aa6b7 --- /dev/null +++ b/lessons/git/intro/slides.Rmd @@ -0,0 +1,46 @@ +--- +title: "Let's git started :)" +author: "Luke Johnston" +date: "`r format(Sys.Date(), '%B %d, %Y')`" +output: slidy_presentation +--- + +## Learning expectations + +This won't even touch the surface of git... But! Hopefully, you: + +- Recognize the power of using version control +- Know the basic tools to get started using git +- Where to go for help + +But! No expectation to actually start using it :) + +## Configuring your setup: + +```bash +git config --global user.name "Your Name" +git config --global user.email "you@some.domain" +git config --global color.ui "auto" +git config --global core.editor "your_editor" +git config --list # To confirm +``` + +## 4 main concepts (and ~7 commands) + +- **Start repository**: `git init`, `git clone` (GitHub) +- **Check activity**: `git status`, `git log`, `git diff` +- **Save to history**: `git add`, `git commit` +- **Move through the history**: `git checkout`, `git branch` (may be covered) + +## Different areas in Git + +![](https://git-scm.com/book/en/v2/book/01-introduction/images/areas.png) + +## 4 areas to remember + +Using `git status` shows much of this information already. + +- Untracked files: Use `git add` +- Tracked but modified: Use `git add` or `git commit filename` +- Staged but not committed: Use `git commit` +- Committed (in the repository): Use `git checkout` to access diff --git a/lessons/git/intro/slides.html b/lessons/git/intro/slides.html new file mode 100644 index 000000000..810f0084e --- /dev/null +++ b/lessons/git/intro/slides.html @@ -0,0 +1,116 @@ + + + + + + + + + + Let’s git started :) + + + + + + +
    +

    Let’s git started :)

    +

    +Luke Johnston +

    +

    January 17, 2018

    +
    +
    +

    Learning expectations

    +

    This won’t even touch the surface of git… But! Hopefully, you:

    +
      +
    • Recognize the power of using version control
    • +
    • Know the basic tools to get started using git
    • +
    • Where to go for help
    • +
    +

    But! No expectation to actually start using it :)

    +
    +
    +

    Configuring your setup:

    +
    git config --global user.name "Your Name"
    +git config --global user.email "you@some.domain"
    +git config --global color.ui "auto" 
    +git config --global core.editor "your_editor"
    +git config --list # To confirm
    +
    +
    +

    4 main concepts (and ~7 commands)

    +
      +
    • Start repository: git init, git clone (GitHub)
    • +
    • Check activity: git status, git log, git diff
    • +
    • Save to history: git add, git commit
    • +
    • Move through the history: git checkout, git branch (may be covered)
    • +
    +
    +
    +

    Different areas in Git

    +
    + + +
    +
    +
    +

    4 areas to remember

    +

    Using git status shows much of this information already.

    +
      +
    • Untracked files: Use git add
    • +
    • Tracked but modified: Use git add or git commit filename
    • +
    • Staged but not committed: Use git commit
    • +
    • Committed (in the repository): Use git checkout to access
    • +
    +
    + + + + + + diff --git a/lessons/index.html b/lessons/index.html new file mode 100644 index 000000000..ea89a720c --- /dev/null +++ b/lessons/index.html @@ -0,0 +1,51 @@ +--- +layout: page +title: 'Lesson Material' +--- + + +

    Visit our Youtube channel to view recordings of previous sessions.

    +

    Installation instructions for Python and R can be found on GitHub repository.

    +
    +
    +
    +

    By Topic

    +{% for lang in site.languages %} +

    {{ lang | capitalize }}

    + +
      + {% assign pages_list = site.pages | sort: 'title' %} + {% for node in pages_list %} + {% if node.title != null %} + {% if node.visible == true %} + {% if node.tags contains lang %} +
    • {{ node.title }}
    • + {% endif %} + {% endif %} + {% endif %} + {% endfor %} +
    +{% endfor %} +
    + +
    +

    By Level

    +{% for level in site.levels %} +

    {{ level | capitalize }}

    + +
      + {% assign pages_list = site.pages | sort: 'title' %} + {% for node in pages_list %} + {% if node.title != null %} + {% if node.visible == true %} + {% if node.tags contains level %} +
    • {{ node.title }}
    • + {% endif %} + {% endif %} + {% endif %} + {% endfor %} +
    +{% endfor %} +
    +
    +
    diff --git a/lessons/install-git-python-r.md b/lessons/install-git-python-r.md new file mode 100644 index 000000000..575687992 --- /dev/null +++ b/lessons/install-git-python-r.md @@ -0,0 +1,114 @@ +# Installing Git + +Installation instructions for Git can be found on the +[Git download site](http://git-scm.com/book/en/Getting-Started-Installing-Git) +- On Windows: Download the `.exe` file from this + [Github link](http://msysgit.github.io) and run it. +- On Mac: To use the graphical Git installer, download from this + [SourceForge link](http://sourceforge.net/projects/git-osx-installer/) +- On Linux: Use your respective package manager (for example, if you + use Ubuntu or Debian, run this code: `sudo apt-get install git`) + + +# Installing Python + +Python can be managed through the Anaconda platform, which is [available for +Linux, macOS and Windows](https://www.anaconda.com/distribution/#download-section). +The Python3 installer is a suitable download choice for most people. + +## Using Python + +1. When the Anaconda installation has finished, Python is accessible by running + `python` in a terminal (on Windows, use the `Anaconda Prompt`). +2. Anaconda also includes graphical interfaces for interacting with Python, + which can be invoked by running `spyder` or `jupyter-lab` from the command + line. +3. To get an introduction on how to use Python, please read the tutorial over + at [Software + Carpentry](https://swcarpentry.github.io/python-novice-inflammation/). + +### Installing packages + +After Anaconda has been installed on your system, you can use the command line +`conda` package manager or the GUI-driven `anaconda-navigator` to install +Python packages. For comprehensive instructions on both of these, refer to the +[official +documentation](https://docs.continuum.io/anaconda/#navigator-or-conda). Brief +step-by-step instructions to get up and running with `conda` follow. + +1. To install a new Python package from the Anaconda repositories, simply run + `conda install ` in a terminal. You can also use the `pip` + package manager, but it will be easier to keep track of packages by sticking + to one installation method. +2. Some packages are not available in the default Anaconda repositories. User + contributed packaged are available in Anaconda "channels", use `anaconda + search -t conda `, to find a channel with the desired package. + To install this package, use `conda install -c `. The [conda forge channel](https://conda-forge.github.io/) channel + has many of the packages not in the default repositories. + +## Trying Python without installing + +There are a few online services that provide solutions to run Python and Jupyter +Notebooks without installing anything. These often come with some limitations +but is a simple way to just try things out: + +- https://notebooks.ai/ Optional to create account (but necessary for saving + progress). Most up to date version of some commonly used packages at the + time of testing. +- https://codeocean.com/ Account required. Sign up with institutional email + for extra storage and run time. Flexible but requires slight setup of + specifying which packages to install. +- https://colab.research.google.com/notebooks/welcome.ipynb Account required. + Google branded design. +- https://jupyter.org/try No account required. Not possible to save progress. + The Notebook runs fine in the classic Jupyter version, but when run from + JupyterLab our experience is that it outputs lots of font-related warnings + when plotting (non-critical, but annoying). + +# Installing R + +## Official way + +If you are only or mainly using R, this method is the official and most common +way of installing R: + +1. Download R from the [Comprehensive R Archive Network + (CRAN)](https://cran.r-project.org/), which is the official source for R and + R packages. From this page you can find R for Windows, Mac, and Linux. + Follow the instructions and get R installed on your computer. +2. Download and install + [RStudio](https://www.rstudio.com/products/rstudio/download/#download), + which is the most commonly used and most powerful interface for using R. + Since R, like most other programming languages, is just a way of + communicating with the computer, RStudio is a way for humans to communicate + to R. RStudio is the recommended program for using R and all our R tutorials + use RStudio. +3. Installing R packages is done within RStudio, or through the R console via + the `install.packages` command. + +To get an introduction on how to use R, please read the tutorial over at +[Software Carpentry](https://swcarpentry.github.io/r-novice-inflammation/). + +## Anaconda way + +It is also possible to [install R via +Anaconda](https://docs.anaconda.com/anaconda/user-guide/tasks/use-r-language), +just as with Python. This is convenient if you already have Anaconda installed +or want an easy way to manage multiple R environments on the same machine. + +1. R can be installed via `conda install -c r r-essentials r-base`, which + bundles R with some of its most frequently used libraries. `-c r` specifies + that this package will be fetched from the R-channel in the Anaconda + repositories. After the installation completes, R can be invoked from the + command line by typing `R`. +2. Like with Python, `jupyter-lab` can be used with R, simply launch + the notebook and click `New >> R` (technically made possible via the + `r-irkernel` and `r-irdisplay` packages in the `r-essentials` bundle). + Another GUI-driven editor for R can be installed via `conda install -c + r rstudio`, and launched by typing `rstudio` at the command prompt. +3. To install a new R package, simply type `conda install -c r `. + All R package names are prefixed with `r-`. You can also use the standard + `install.packages()` within R, but it will be easier to keep track of + packages by sticking to one installation method. + diff --git a/lessons/misc/REST/AIV.eps b/lessons/misc/REST/AIV.eps new file mode 100644 index 000000000..785b99f99 --- /dev/null +++ b/lessons/misc/REST/AIV.eps @@ -0,0 +1,6730 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner +%%Title: AIV.eps +%%CreationDate: Fri Apr 17 18:12:46 2015 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 14 14 913 782 +%%EndComments +%%BeginProlog +% Use own dictionary to avoid conflicts +10 dict begin +%%EndProlog +%%Page: 1 1 +% Translate for offset +14.173228346456694 14.173228346456694 translate +% Translate to begin of first scanline +0 767.24798285857025 translate +898.49763779527575 -767.24798285857025 scale +% Image geometry +1198 1023 8 +% Transformation matrix +[ 1198 0 0 1023 0 0 ] +% Strings to hold RGB-samples per scanline +/rstr 1198 string def +/gstr 1198 string def +/bstr 1198 string def +{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} +true 3 +%%BeginData: 399485 ASCII Bytes +colorimage +JOeln!(cWMs%*,Z!(cfRr^[&]8G,LP8H23R8,u0Z8FK%K8H)*Z8F8nI8FK%K8GbpA8GksX8:aA+ +8V-pArrP_]8,5^Q8,c$\7n?2L8,l-Z8H;<[7g)@S84Z8L8H26]8Gu$Y8:a@f8H; +JP +JOdUJr^c]Pr^cTMs%'1\s%*/[s%*#WJOoH)JcGcMr($]Vq+(HUpdb9Rr($`Wr^ZlWr'u +JOf0!!(crV!(c`P"@u$Q84`>BrCHTOr(-iXpIP9Rs%)WLs%*/[s%)cP!(cuW!(ciS#Y7HU84Z6@ +84`YKkt(_B!(_Z4ogs`7s8N*j8,5^R8,GjS7fZ*Z8H;<[7g;LU8Ou?A8Gu*[8Gu$Y8:a@e8H; +JP>6#!)<)Z"AMQ`9hk+N!)<,[rCufUs%VrU!);6B!))?GrD!/_JPGc2JcGcMrCm,`q+U`]qb6o^ +rCm2brCm/arCd5b9S#pm:&.K_9`ds]9`.W`9`Iid9_M3X9_hBb9MJ5Sr(MZ9Le[e@r_<8`rD!8b +b"[B~> +JOeln!(c`P"@u$Q84_`1r^cNK!(a(Zr^coVJOoE(JcGcMrC?cVq+(ETqFCHSrC?iXrC?fWr'u +!Co]W7fZ*S7fZ*W7fZ*Z7fZ*@8,l-M8,l-X8,l-Z7fZ*67fZ*O7fZ*Z7fZ*W7fZ*S7fZ*M8,l-O +8,PpW8,PpU7fZ*F7g)@Q7n?2J7fZ*W7fZ*W7fu:P7nEVLs%!8_84Z6@qagZUkt(_B!(_Z4oLXW6 +s8Vjbr^R#\7n +!DH5a9E7f]9E7fa9E7fF9E7fW9E@d\c:e44o1T-Ylq@CRi(X/Fg.VZE9MA/S9D(sY:&@Ta:&7N` +:&.H_:$54L:&@V8:%M)1s8W,u9`.W\9`.W_9`.W_9`@cc9`.W_9S#pl:&7Q_:&dob:&Rcc:&[i\ +:&7QZ:&.J69nuI@9`@c_9`@cc9Z^"Z~> +m7..Ifgc$5n4*IL^IJ8plph%H[mpNk7n6,A7fZ*W7fZ*18,l-W7tF5&8:gg@s8GOd8GPdR8Gl!U +8Gl!W8Gu'W8Gku/8D6W28,c'Z8,PpV8,l-Y8,,XO8,,XO7tF3d8Gl!W8GYjU8H)-$8:U~> +!Co]W7fu:P7nEJH#>%EU84Q0@8H)*Z8F/hH8H)*Z8H)*Z8FT+L8GbpW8H23Z8Er_F8G#CP8Fo=O +8H)*Z8GbmW8ENDB8G#FL8H)-W8GbmW8Ff:N8Gbm[84Q0@8GbmW8GbmW8H)*`84Q0@7n6,L8,Z!Y +8,l*[8,c'W8*WYC7fZ)28b5N)s8W*!8,>dU8,c'Z8,Z!V7fZ*Y8H;<\7g2FT8Ou?Ar^d#[r'p`X +JP"Tf!(cuW"\;3U7n6,K8H;<\7fc.PrC?ZT!(d#Xs%*/]qagQR!(_Z4Le7V;r'pf[84`\LrC@)` +84Q0@8BOMS~> +!DH5^9E7f`9F"9c92&#P9MPFY!))TN!)a!)<>a"&2H_:&[id:$,+L:&Rcc:&[fd:&I\9:%D#0s8W-!9`%Q_ +9E7fd9`7]`9`.W`9`7]b9`.W_9S#pk:&7Q`:&[ib:&Rcc:&Rc]:&IZc92,.Upe665LJ@Y>s%W>` +rD!8ba\@9~> +!Co]T7fZ*V7fZ*W7fZ*@7fZ*Z7fZ*L7fZ*W8,l-Z7fZ*D7fZ*P7fZ*D7fZ*27fZ*V7fZ*D7fZ*K +7fZ*W7fZ*W7fu:P7nD#tJOo?&JcGcMs$urWrC6iYr^ZoXr($WTr^ZrYrC?cVr'u +!Co]T7ghmY7n?0@7n?0@7nEVL!(cuWs%*/[s%)cP!(d)Z!(c`P!(cHH!(d&Y!(cuW!(d)Z!(cuW +s%!/\8GYgV8E<8@8D?Z08H)-W8F&eG8FT+R84Q0@7n6,L8,l-[7hS?_7n?0@7n?-@84Q0@84Q0@ +8Gl!E8GbmW8:aA'8V-pArr>Rc8H)-Y8-DFR84cAM7fZ*Y8H;<\7gMXW8OuBB7n?2M8H;<[7fZ)2 +8_Q`98GbmY84cAO7fu:R8P&hN!D#f\7fZ*W8H;mRr($`W +!D,i]7fZ*%8Up~> +!DH5^9E7fa9`Iff9M>(Q!);cQ!):m8!)<2]"&2H_:&@Ta9=dgq:&7Q`:$G@O:%1gV:&%B^:&[fd +:#8SD:&doc:&.J6:%D#0s8W-!9`.W`9`Iid9`@ca9`%Q_9`@cc9`.W_9S#pj:&7N`:&Rcb:&IZb +:&Rc]:&@WY:&.J69nlC?9`@c`9`7]b9ZTqY~> +!Co]T7fZ*W8,l-97fZ*.7fZ*S7fu:P7nBpUr^clU!(c +!Co]T7gMXU7n?0@7n?2D7fl4Q8F/hH8CC!184Q0@qF:WZ7n6,H7fZ*J7fZ*<7fZ*P8+B.78,l-M +8,l-[7fu:P7nEVL#Y7HU84Z6@84`YK"\;-R84Z8L8Gu'F8GbmW8:aA'8V-pAs8#:c8,5^R7fZ*Y +8H;<[8,l0[8-2:P8H)0\8Gu$Y8:a@c8H; +oh5?[r(I,a:%_0_92&&R9=dds:&7N`9s[Oj:!$'/:&@Ta:&@Ta:%M$Y:&@Ta:&%E]9`Rla:&@V8 +:%:r/s8W*!9`.W_9`@`d9`@ca9`%Q_9`7]b9`7]_9S#pk:&7Q`:&Rcc:&IZb:&Rc^:&7QZ:%q>4 +9nlC>9E7fc9EIp^9`7]a9ZTqY~> +og]!QqaUWWo1/gOYt"dbZUb$ds$m&[a@?5$dmjC/r^ZlWqaZ3.nOS62s8W*hrCHiVs%*/[r^crW +qagZUrCHoXrCHfUJOnEaqF:NVrC?lYr'p`XrC?ZSqa^KRp.'[)L.M#.!_>gOrCHlWa@Lg~> +nOE[P7n6,B8,l,a7fZ-T7fZ*J8,l-X7fZ*G8,l*]7n?2E8+B.J8,l-C7fZ*S7fZ*Z7fu:P7nEVL +"%YpP8H)-Z8GksZ84Q2/8GksX8:aA&8V-pAs85Fc8,PmY8P&bL!(d&[!(d&Y"@u*T84WYMr^d)\ +rC6iYJP"Nds%*#Ws%*,Z!_>mRrC6iYrC6iYr(-lZqa^ZWs%3/[!D,iX8,l,28V]k;8Gu$[84cAO +8,PpX8H;<\7fZ*$8Up~> +mnal:&%E\:&I]^:&Rcb:&[ia:&R`d92'n2fM239s%NPf9MGF[rCd2crCm&^rCd8c9MG4Uq+Q?6 +KMDD=r_<>bqG$r_a%_'~> +mRI7Jo1&dOYX\[aj$s)?j@92@nji[M[RUXQ8Gl!T +8Gu'X8H)-W8Gku/8CpE/8,l-Y8,l-T8,>dQ8,PmX8,c'T7tF3a8Gl!X8Gu'T8H)-"8:U~> +nOERMfgc$5pdY +ND'=Hge7]BlV%:Qo1]*WhFmoDg.VK@pItHYpItQ\r_3,^r(MZ9mnJB5s8W'mpItQ\r(Qu^rCm/a +r_38bqb2Q8f1l-9s%WGcs%W8^qb?r]qG$r_s%W>`JPCelr(R)ar(R#_rCk:,!).n~> +NCNt>`CBo!o1/dNh+%H9g.)-6pIG*Op.#*Rr($TSr'ud/s%*)Ys%)oTqagTSqFLTUs%)uVJOkGbr($`Wqa^TUrC=n!J,~> +a@?5$pdb?TpIG6Sr($cXrC6iYl:1hFnj`[Nq*tEUq+(HUs$m&[pI>3SpI>3SoLJdLhFIT:n4*IL +pdY"@l!R8P&bL!(_Z4mn&*1s8W'hrC?`U!D,i[8,PpY8Gu$Z84ieOs%!)[ +s%*2]r'p`XJP"Kc!(d#X!_>mRr^R#\8P&eM!(d)Z!(d&[!(cuW!(d&[rCH]Rs%%]4Kh288rC6lZ +8c2-Z8,l*\8P&eM!(b7(!_>gOJ,~> +a@lS.lq@CRqb7#a^J"W%h+[fBge@`Bk"GbLpIkQ]qb6f[oM#9Zr_*;dr_3;cr(MZ9mS/94s8W'm +r(I)br_3;cr(Qu^r(R)arCm/ar(MZ9ekQ'9r_<>b!)<5^qb?r]peCKVJPCbkrCm2bqFpl_rCk:, +s%Iq~> +Z:=mcqa^ZWJOf9$s%(m7!(crVr^[)\84`>Bs%)uVr^crWJOo3"JcGcMs$m&[pdb +r'p`XnOERMqF:NVmRR:Jr'p`Xqa^ZW!_5dPpdYBV8P&bLs%*,Zr^cQL"@u$Q84`5?!(c`P!(d)Z +!(d)Z!(c`P!(cNJqFK[;!(cuWrCHrYs%)lS!(ciS!(d)Z#Y7HU84Z6@84`_MpIG9Smn!IKs%!/^ +8Gku/8a]0$s8W-!8,l-[8,l-[8,Z!V7fZ*X8H;<[7fu=R84WVLs%*2]r'p`XJP"Kcs%*&X!D#f\ +7fc1PrC?lYs$m&[rCHu[r($cXs%3#WqF:NVJOtMd!(d&Y"@u*T7n +r(I)bmS!^U9MA+*9`Iib9E7fb9E7f*9E7fE9`Ii?9`IiA9E7fb9E@j]r_3Gf9hk4Q!) +r'p`X\4?Qip.#*R`('eu[7C6fdRX=.!_5dPl::kFqaZ3.mRVp/s8Vd_r^crWqagWTs%*,ZqagWT +JOn?_qa^ZWrC?lYrC?lYr^ZlWqa^TU"%PmQ8,c'U7tF3_8Gu'Y8Gu'Y8H)-Z8Gu'#8Gu&/~> +r^ZuZ"%c$R8,GgW8,GgZ8Ou?AoLSsOr(-iXr^crW!(cuWr^d&Zs%)rUs%)lSr^cuXs%)oT!(d)Z +!(cKIs%)cPs%*,Z!(c`P!(cQKpIOI;s%*#Ws%!;`84Q0@8G>US8H)*Z8G>US8H)*[84WYMr^Z]R +s$uQLs$m,]8P&bL!(_Z4mR`!0s8W'grCHoX!_>mRr'p`Xr(-lZrC7&_8OuBB84`\Nr'p`XJP"Hb +!(d#X!_>mRr^Qu[8c2'Y8H)-Y8cM?Z8,l-[8cM<]8,c$\7n?2K8,l,28V9S78H)*\84cAN8,PmY +8P&hN!(b=*r^cuXJ,~> +rCm5crCm5c!DH5d9`%Qa9`%Q_9`Ii[9E7fa9E7f`9E7fZ9`Ii]9`Ii>9E7ed9`Iia9E7fc9E7`: +9`Ifg9MJ7X9E7fY9`@ca9S#q*9nE?Es8G^l:&I]a:&I]]:&Rcb:&[ia:&I\9:";u89`Iid9`Iib +9E7fd9`7]^9`7]c9`Ii^9S#oh:&I]b:&Rc^:&Rc.:&I\8~> +rC?iXr^R&]7n6,K8,GjW8,GjU8,l-Q7fZ*A8,l-S8,l-47fZ)Z7fZ*%8,l-[7fZ*G8,c'W7tF4u +8:gg@s7]%_8Gl!S8Gu'X8H)-W8Gku/8C^9.8,l-Z8,l-X7fZ*Z8,PpT8,Z!Y8,l-T7tF3^8Gl!X +8Gl!T8Gu'$8Gku.~> +r^ZfUs%*2]r^m,\m7HtA!_GpRr^ZZQr^ZuZmmmCKqa^ZWk!oDBqa^ZWoLAmPqaUWWpIG3RoLJaK +!(ZfTl:1hFqF:NVn4*ILr^R)^7n6*@qa^ZWs$urWs$u'>!D,i[7fZ)28aT*#s8W,u8,c'Y7fl4Q +8GksX8Gl$Z8Gu'Y8H23X8-):Qr'p`XJP"Ea!(d&Y!_>mRrC6l[8GPdR8Gu'Y8-qjY84c?C7n?3B +qa^ZWJOtGb!(d&Ys%)uVs%*/]!(d)Z!(b@+s%*#WJ,~> +r_2-Bs%N,\rCm5cr(I)bqb-ua_G'u(!))uY!)88Cs%WAap.YN\oM,?Zr_<;aJPGK*JcGcMr_3>d +rCm2br(Qr]rCm5cs%EGf9`.W`9E7_::"2o89`Iic9`Ii^9`@ca9_qK`9`Ii`9S#oh:&drc9E7f` +9`.Wa9Zp0,9Rm~> +rC>^8s$ucRrC?lYog]!Q_FOVsJOf6##"V6S84Z6@r^d&Zogo'Ps%*&XJOo,uJcGcMpdb_s%*&X!(coUr^cuXb=MJ"J,~> +ogesOqa^QTs$uiT!(m)Zs%3/[s%*\k7n6*@8OuBB84Z +oh>?Zo1]'Vr_2iVr_38bs%NGer(I,a9u9R*9h\4J9E7f\9E7fZ9`@cP9`IiA9E7`U9E7fb9`@ca +9]AeF9S#q(9nE?Es8G[l:&Rcb:&I]]:&Rcc:&Rc`:&@V8:"2o99`@cc9`IiV9`.Td9MJ7U9S#oh +:&dog9M>@Ys%W;_r_%e+J,~> +oLAmPnONOKr^ZrYr^Z]Rr^ZoXs%!)[qaUWWP"5OCl::kF`(0huqFBR:rC;E0lUZU,s8Vmbr^crW +qFLQTs%*)Yr(-]TJOn9]rC?iXr^ZuZn43CI!_5dPpIBd*JOof3r($cXq+(HUrC>%%q+#r~> +cU[t*r^R,_8P)HC8,GjW8,l,^7fZ*W8,l-O8,5^S8,Z!?7fZ*H8,l-[7fZ*Y8,Z!V8,PpX8,,XT +8a/eF8c2)08aAs!s8W,t8H23[8-):Qr'p`Xr(-lZrC6o[8P&eM"%Z!T8GksX8:a@_8H; +a\;Y-s%NGes%EDeOA,UI\P3#tr(I)bqb6TUr(QcX!)38ar(MZ9lV2s1s8W'mrCm2br(Qr]r(R,b +rCm/ar(MZ9dnTa6s%NPg92,=ZnkAmSp.U$3JPH);rCm5c##%Z`9MJ5Tr_<;abY@k+J,~> +a[c>$rC6r\7n6+38,YuZ8,l*]7n?/G8GbpU8H)-X8H)-W8Gku/8F&fts8W*#7n?2L8,c'W8,>dS +8,l-X8,c'W7tF4[8Gl!W8H23[8F]4H8G5Q)8:a>18Gu'Y8GYjU8Gl!%8GG]*~> +^dn)hY"/L_!([#ZogedJr^ZiVj[T;Alpq(H!_5dPrC?cVs$uoVs%!&ZrCQrYi^Wu>JP#0!JcGcM +r^d&Zs%!/^8GksX8Gl$Z8Gu'Y8Gu'X8-):Qr'p`XJP"?_!(d&Y#=qEW84Q3B8Fo=O8Gu-X8GPdU +8:a?`8cD9]8H)*\84cAO8,YsZ8P&bLc:S%,r($cXr^VJ~> +^J+Z%U.kS]oh>9XpIkQ]j%KGIi_9AHqb7#ar(QiZiCnesl:lj0s8W'mr_3;cr(Qr]rCm5cqb6u` +r(MZ9dnT^5s%WMes%W&XpJ(HWJPC\ir([)_s%WDbrD!2`bt[n*J,~> +^IS;pU.52So1/dN[RUhl:?L+s8W*irC?iXr($TSrC?lYqa^WVr'u_r(-`Us%*&XrCHiVbt.OuJ,~> +\OZ0\rC6iYd7=4-qF:NVqa^ZWs%35]oLJ=?j[T;Ar^QrZm771Ir($`W!(Z]Qs%32\hF@Q:JP#,u +JcGcMr^d&Z!_>mRrC?lYr(-lZrC6o[8P&hNr^[&]8GksX8:a@]8H;<[8,PmY8P&JDs%*/]qa^`Z +8GbpW8:a?`8c;3\8Gu'Y8GbmZ84cBDrC6iYcUn.-rC?iXrC;A~> +Z:t'g]1i,snk9$Xr_3>dqb6o^_b:&)rCm/as%EGf9`%Q?9S#q&9nE?Es8Pgm9`@ca9_qK]9`Iid +9`.W_9S#pd:&[fe92,=Zs%NGeo1]*W"&)E`9`@c_9S#oh:&I``9`Iia9`@ca9[- +Yt+X]\ju]ij[]8?]gr)nr^R#\7n/8Gu'Y8GbpV8Gl!&8GbpW8Gu&/~> +Zq(!arCQfU!(ZoWq+(HUlph%Hqa^TUr($`Wr'pi[8P)JE7fZ*Y8+T:!8,c'X8,l*\7nEVL!_>gO +oLR_,!(_Z4kt-I+s8W*is$m,]8P/kN!(crX!(d)ZrCHoX"%Z!T8GksX8:a@]8H;<[7g;LU84Q0@ +8G,LQ8Gu*a84Q0@84Q5K8,c&18V'J38H;<[7fl4Q8GbmY84cAM8'jj-8Gl!W8Gku.~> +YtXa`rCm2bfhDE?qFgl`qb6r_m7dLRr(R&`]hJ/pg.[&lkY6X.s8W*nr_3>drCm#]r(R)ar_38b +r(MZ9d7sR5r_ +Y=J7VrC?lYcURt+qa^TUlph%Hqa^TU]gqffg.-]bkX^:)s8W*ir^ZuZrC?ZSr($`Wr^ZoXr'u.8GksX8GPdU8Gl!'8G#E&~> +lq##ar(-ZUr^d&\njr[Ks%)rUs%)oTr^[/^84Z6@rCHlWs%)cPr^crWr(-iXqagWTs%)ZMs%)?D +s%*&XrCHrY!_>gOr(-fYs%(g5!(_Z4kXg@*s8N6n7n?0B8Gu$Y8GYmX8Gu$Z8P&hNs%*/]!(d#X +!(_Z4dRaF0rC6o[8P&DBs%*&Z"%YpP8GYjV8:a?`8c)'Z8Gu'X8GbmY84cAN7fZ*-8cM?Z8,l-W +7fZ)1~> +oM#B\9hjhF!)(j9mnN^Rs%WMe!)<>a!);NJs%WAa!)<)Z!)<8_s%WDbs%W8^!):a4s%W>`peBF8 +JPG<%JcGcM"AMQ`9hkOZq+^c\s%WGcrD!2`JPFKcrCm5cr(I)`p.Y?Xs%EGd:&7P79n?%7:&I]b +:&7Q_9`Ric9[?H09E7f`9Rm~> +n4:/]nOWOI!(bd5s%)NI!(coUs%*#W!(a[kq+01/JOnrpJcGcMr^ZrYrC?ZSr($cXrC?fWr'u_q+1ERs%)uVr^cuXcUdUsJ,~> +n4De6p.#=KN(6C9Y,C8Lq+1NWr^d&\s%!,]r^[/`84Z6@rCHcTs%)lS!(d)Zr^[#ZrCHBIr^[#Z +q+(KUqagNQ!(cTLs%)]N!(d&Y!(d&Ys%*&XrCHrYp.4O?lpu\!k=L7)s8W*h!_>mRrC6iYqFLZX +rC7&_8Ou?A84`_Or'p`XJP"6\!(d&Y!D,iZ7fZ*V8,l-Z8cD6]8P&YIs%%]4JP#]0!(d&Yr(-cV +!_>mRrC6iYdRjF/oLJpPJ,~> +i_A]3#*Y*A9W>:ri_9>Gr_2fUo1]0Ynk9$Xr_3>dh+RfCb=hn1qFpo`qb6i\k"PYH!)38a!).r< +j\:=+s8W*mr_<>bq+^`[!) +i^ii7!(c`P#*=d68#NMfiCEo=r^ZHKi^Wu>r^ZuZh+%H9_FFSsqFCHSk!stnejtAls8W*hr^cuX +q+1BQ!(d&YrCHiVJOn*XrC?lYo1/OGpd]m+JOoQ,r'p`Xq+(HUr(#+)o1/gOJ,~> +i^ro9s%2rU"\lZ+qPd$bqYWn>8,,UT8bYdQ8,l-S7fZ*Z8,c$Z8,c'L8,GgW8,>dV8,PpC8,l-Z +8,l-N7fZ*Z8,l-Z8,l-X8+]@D8+fCR8P"D(eOb>ls8N0k84cAN7fZ*V8H;<[8,c$Z8,c'Y8c2'Y +8:a@Z8H;<\8,l-V7fZ*W7fZ*Y8c)'T8,l,28V'J08H; +btS@>^A@],:&b"g:"W/2:$,.L:&doe:$G@O:&dle:&R`c:!H?3:&R`c:&.H_:&[i`:%(c,:!-1] +s8W-!9`Iib9_qK\9EIp^9`%Q]9S#pb:&Rcc:%_0\92,.U!_c<_q+Q?6JPGo6r_*De9MJ7X9`@cb +9[ZZ*9`@b:~> +bt&"4]__K(8H/Ja8D-N-8E*,>8F/kH8GYgV8GYgV8@qCh8FT-#8BFDRs8W-!8,l-Y8,5^M8,PpT +7tF4X8Gu'Y8Fo@I8H20[8GPc,8:a>,8Gl!X8GYjU8Gu'+8GbmW8GPdT8:U~> +c:J4DeG?YaqRHP$rCQoXkstOF!D!"W7f`D]8H20hqK>A!84Q0fqF=*Q7n>M.b^)hZ8,l-I7fZ*Z7fZ*W8,GjV8cM?]8,i>eq!#M"r^ZiVW_!A#]Bo.>JC$jf +qUeC0rs&%U>=heMmJ-\]8)!tEZq%CDs8GRf7fZ*V8H;<\q?llMThe0K84c?D8c2'Y8Ff=PqW^WP +qV"O?q?-BFU/:#E!;bPD!29Af!;YnO!(d&Y!D,iT8,l-[8c)'R8,l,28YAWUqKMj/!H@nq8H;<[ +7fl4Q8GbmY84cAN7fZ*08cM?Z7fl4Q8GbpW8H)22~> +c:nLLebZheqRQV%q+^'Hq"b"bqXR;^qFjUXqFgqdHMgG>Er&I'qYj1g:%CsX9E%W`:&@Ta:$#%Q +RCrrTPtZ-*(J +9MJ7Z9_hE^q??NIUf0r\r([&^nkB,\l:h9Tg.hSC"8(EF<9HsUqVFpHU](#hq<:WP9EIp^9D)!R +:&%D59qG&[qKi'6!H\+t:&I]b:&7Q_:&Rc6:&7Q`:&7Q^9n3~> +c:A.BeG?YaqRHP$q+0^>q"b"]qXR,YqF=%HqF:S_G5Oi5DYcjnqYj"b8FB"H8DZi@:nle=lca\- +8,GjV8,i>eq!#M"rC<\T"^S_+o@8?;8-&M=8Fc]anrR'IRCrrTPtZ-*(J7n?2L8,5[U +8,i>eo\?-8r^ZoXqa^3J!;btO!;bD?rqZ`hgn@O,8-&MC8-#@^q>g?U8Gu'Y8G,LI8GG]+8=i?Q +qKMj.!H7hp8Gl!X8GYjU8Gu',8GYgV8GYjS8:U~> +cUe@Wk4tR7Q_+$PqY<_X8F8nIqYWh`qXR,XqF='O8-8Io8,YsZZ1e/fs%!#Yoge^Hr($cX!(ZrX +m7.FXd$%d/?)@:Kr^ZuZq+(HUoLJpPqFCNUs%32\rC6kar^R#kU"0*4VF_"piLF"MO7e(L8H?of +8b)fbH^3jml]lPROq!;bD@!I_BA8H;<[7fl4Q8G5OR8H)3W8GYjV8:a@(8HJLpr(-ppp>edF8Gu$[84cAL +7fl4Q8Gu$Y8GPgWb2#Vh8GbmY84cAL7fZ*X8Up~> +cV4X^kP:a1r_3De9DqQS9`Y%T9`Y%D9aCMh9iu5#bZ +cU\:Uk4tO5QC[jNqXd>C7f`D`7f`DV7f`Db8,PpX7fi:mr'pdmpA7A[8G#FO8,u0X8DZiB:XG;3 +93n@fKA/on8GksXqYitd=/"0=8-`5TRo`RMomtCZ!6X%enc&f?Q0J23Q#k=P!d0!6b5_K4r($QR +$:jq_7oO)fb"tSur^coVnONZVl::pOg.2JF84Z]nQci7i8-&M?8-++Gl:CkDs%)fQqFLTU!(coU +JOl>&!VNu#8--$ij%0) +cq+UuoCI^DqYIOPoD8=T8b>RJ7f`D`7f`DV7f`Da7fc.NrC@"a]4(\0!aE84r^d&Z!_>mRog]'S +8P/\J"%PmQ8,5^B7gPlF84Q0@8=I0h8,l-Z8,l*[8,c'P8,l-W8,>dQ7f`Da8-)TZU.GBcQi0JV +S[$I3!9Dm+nc&V`o`"jkrTqr3"RStM:@67)!(d&Y!(crX"\;-RqF='T8-X727n?3C8GksX8F]7O +qW^WPqV"L@qYWncGG=:m!;bGA!`7HKlU_(Ir^R#\8P&PF!(d)\r(-WRs%%]4S4NeV]41b2!aN>5 +j@T8>!D,iY8,l-\8Gu'R8H@i/8cM?Z8,Z!V8,l-W8Up~> +cqOn&oCRmIqYIRTo_SFK:%V*ZqYX"eqXR;[qYEnb9aLL,A5#]l?b?16:&[id:%_3W:&dle:%V-Z +:$bOSV2G7Gs%NNb^#_of:&7Q]:&.H`qFpl_!ESfd9`_>arCmM0:&I]\:&dleqYX"gH)+.5:&@WR9`Y%T9`Y%D9`Y%f9`]R9kY2'RgJ%`JelqB6rCd8e +:/1FUr(R/br_r_3H$]DCS_r_*De9MJ7X9`Iib9__<^jk``.9`Iia9_hD5~> +cq"OsoCI[BqYILOoD8=I8G,IQqYWh`qXR,VqYE_]8.,+'?q3aY>.OK"8Gu'Y8G,LM8FT+L8F/hI +UPAbjP*5qrrGgcrr3#tm*Yh9m7utBmE>M0 +8Gl!R8H20[qYWhbFeM>)8GbpH8-&MO8-&M?8-&Ma8-*n.kXY^MgIMBAeQ(p+rC?iXp.,$Os%!)[ +pd]m+Rn*VT]4(\0!aE84j@K2=s%)uVs%*&XpdbDGh+7--q+-#~> +d7FJ6q<<4LrV?Z@HKb4!kXkP?s$m(cr'qe%FPQTIG"5&9bjP#JCe%"l7n6C\lgV/P84`T,XSta, +Ujr538GYkLlZ_+Uh02@Z:pK?UYtIVZr($fXo1/pQ84`);"Pd*M7nH5G09^-o_ogr)jlKc&^>52ApPMBTi:YlJ8P)gclgV2S8PJAqiUocqi:YlJdn'StB),">;mtuW]2_EqmYC)oLPtH`LIk/,L[+5] +MsBV`8P/dW8J:kk9C$fVo\Fda8bu$8qYIkj_H84Q0Dgdk"8[d*1j;crg#8QPLb8R(splZ_+Uh0DR`qFO7W[d*1jAlW4!V!`S>`rCJ)GbjP#KD+R<#`q.l#8P)t%o@[qN +8Q*"^lap(c8GYmV7h,;c9C$fVo\FdahYR)Yi^s/@r($cXqF:NVq+6)~> +d7jbC6j9PhuBn^2;L9_qFV"rB!?&%>2 +h0;Xg6kgm"nG2 +qYa,$qFscOHJJ/LHqd?3:#GgD^$Al$9`eD\=QN9IrrQo)pA=k:n9drDf`1tAs8VbS<`"qTs85pC +AkZ^Zs8VS99k`2Zs7MLT:m(VNruA:ss+ITUs85[2>YBD3s85[2>YBD3s8TrE9P2]4s85Rd:&[gQ +qFjUX9M87=9heZulKl2c>PMW$>4l&n?he!oHJJ/LHqd?39heZulKl2d9hfKLn+"hG9heg0n`,Z=mT8i9ds01=]Voqn[).f:&7RY5h4t=6Wic9cn5sn+"hG9heg3o\+:Z9j5U/g2Kb\\]iRm$qG$r_%Jiao +l[%@YhL&&TqYIb]:&7N`:&7QY9n3~> +d7=D4q<<4LrV?Z?H0G*ti(3i;!;cU`3VRXNp>:$`7qg-7n^))B8,>_G:pK?UYtISWqL>S:7nBG) +qFF0R7nN#ig[sG2)ZFG=P/#[d*1j;b'FH +L?e,[MX'M^84ZU_lgV/PqaWUA84ZqRl,or^[)gku?b8nc&Z)SG)j[-LcCWB\<@b8,rV^O]G;@qZ$Ioc=Ta[c2[h5 +Hqe;,s8VbS<`"qTqYqP?K`?_/s8W!m`*>r]n,N;]`*>r]n,NF)@8(:\j8]$Iq+1KT6Ma2C84Q0D +gdjt6[d*1j;crg"86,=_86YdmlZ_+Uh0;I]qFF.T[d*1j<(KPobjP#JD+I2u_sl];qFF/0i:YlI +iCEtFr(%5jgdjt5ZKq"c9N:=Vr^\J9lVp`elgV2R84`SJ85cn]lap+e9(@JnouL3*85Z\Yn?P_Y +9Bgc]p%_,ZVi1OF),dp.lap+e9'^]Uo\Fa_85Z\Yn?GVV7n?2F8,>dV8,l-U7tF4"8-8X;XSt`o +Ujr5?lW*pT!`J8^rCA#EbjP#JD+I2u`q.l#84Ze#o@[qN85Zh\lap(c8,>dU7h,;b9'^]Uo\Fa_ +hYR)YiCNN0pdfo~> +dn'^=^A?Q.hu!6RhfmcM^/3f\r^[%cr(&a>]3nEthag;iLeU^:h+(!37n9eV<)90\7nXrrdA^s2K'XrtJ"\m.7*3 +s8PWHm.7*3s8Q*Oqn?kBrrBV,7f\J4Z(Y2qTqY+MqFO8]W`;upYt7O^\m&.*\OfAtTiP$aU.IrJ\6hr+8HEMKrCIj/W`;up +Yt7O[]jX^"i(6MFTiP!_TgqUDrC6jFqt^B(8P/kOpdb?TJOu8$$i3NP;FsX:9DV5`T)M:^Q`U*V ++4l?F;P)]98[tWpJ_*Ib\>;uOf18H7WDl`kYt%@]8H)*eqFF3N]jX^"i(6N:q+1REqt^<&nO`aO +rC?iXqa^ZWpdou~> +dnL!E^\Z]3i;8$.)-ND5S_:$cjrM:bNs +ZD1T'USLUYo=8=,:$cjrM:hZ!!06sQ!4h)`!VKLh9cgO>=]_Q.9hk>\u!&qYa,$qFs]X^1:0-iD!&C9hkIY9sC>j9`^]bqb7'Nqt^<'nkJZS"lErdFfF^+s!EYpp;CbH +s%!+hP,%R@US7_f98;U(Z=3e5Mk0R[C]FEtU[e&QU&+clElS.!EW5tP8;Z^)VMbER8;Z^)VMbER +.)-ND5S_:%l;3;jH<9:&7RY +YcCo.W3]2mfSia0U#&L<[\Hr2]D5/qlu>jYf\oO)qYNtpoM&&cUKUZmUeS7br_4i/[8!s%>#h>n +9hkIY9sC[$=/`H":&)>-=J<<#9sUNtj9`^]br(SfrN)NcNhG$_TW)\N'9hi0r +<.igt9WtL! +dmsX;^&$H,hu!6RhfmcM^/*WW!;cUa3;0sl:6FF)8(WPk:n?E48,>_GYb4rkTV4kGqFTL>7nhT. +qFF0R84W?c?VQ[@7n9eV<)90\84`YK!/g[M!4_#Y!VK+\7jtU7<)90\7n<6b?VQ[@7n9\\<)KKs +7n<9N:kJ#4:kRe!8?ead:S=E[8,l-XqD.5=84`?^?;!hkWDlcmYt30%8;ltp8<;(flYT:Kf18H: +TiFp_U.@iH\6_g!lYT:KfD8#N\Dg$[ohkNU*j)D@;Pp]i8G8rYKBoL6KB#Knp8:c?l`!a6 +j%)`;rC@Rt84`Ee?qumC84`SJ8GYkJY+GV`!LKka8-"SFq>e%r8Fc]`he,W*WU'Q`-B"Gg`,#DQ +8,rUPU[e&QU&Y-cL?A9:@K6@cSbC!;s8S7Wnb/`OqYp\=`rF%urr3['M1+q++'BD+fT7iCEtFqa_+e84]tY&nTqY(Ko=/+"qFCX"bPasKXf58tVQiZ_ot=a.P2Jl%Yb>&n +TV4kG8Gu$YMYm5M\GJhl7tF3t8.58dh,-^;fh2*3Y+GV`!LKkb80?H>:/RV=84^7f:k@4h8@PEk +JCd=^Xf58sV6NN]qFLTU$i3Cbot=a.P2Jl%qYN\F<&e8,l-U8,#Q)~> +dn'[fqSe$Rq>(6^JAh;1hamhEr(.(g>Y.L^q#3ka81I@084`SI8*O2I7oS878,>`NPXg\+8GYkJ +qFF-Q>=V1Wpd[j=>=_:ahYB\BMuEJP\Gf&!7fZ*G7fZ*Z7fi6Ur^Zq`s$o*6>";(]hFC*4>=V1W +pd[j8?UmUij[_r=<_,p\iePA`(@hM +_F_\28_g1MrCI=[>Y.LehFU<8@fAq#gnnHQ8H=\Iq>e%a8HJK_q+2Xg?V*goj[i&?=%Q-_<_6$\ +8P/b[8PT%^8PStO8c&BW(]$]pqHZZa:A@CPqFO9T8P*@Q9h@t6?M[4nMuEJP\FE/Zrs7A[G"f^O +s&SUdrtJ!'s&\Ods70\"s$uASs8#:ds&SUdrrlKis8VY"qu7W$<;QXlH>3/>?`(@hM_F_\28bu^a8P]%P +8bu"MjBkJM>ikiS%Slgk8`j,H8R_He8_g1MhamhEr(.;ioLVX=>Y.LehFVA;r^eKnB1_>m8P)q= +8P/bM8`X5M8R1@K8buje8Qt@M8a0JO8QFV=8buok8HI+KrCIab?V*goj[i&?>tIU_pdn'A>Y%Ca +hYBYAMZ*AO\GAbm8,l,28XE![qFRKJ8WBH9qFP,X9h@t6?MI(q:AIIQl<+!V&4l(e7n6-A8*!uH +7p>"F8c&BU$i3FdqHZZa:A@CPqY3V^MuEJP\FN5k8GksZ84cAL8,l-S8Up~> +dnKsmqSn3Wq>(6^K>m\8hb=+Ir(R@k?VO6lq"mc9;Ya![qFjTJ?;+$ohFpW>9Vn(LO/#DF9hkIX +9_r-j9MkLX9^5tZ9j$:Ir(R,b!07$S!4h&^!VB7g9`=hf9If=69MAOE9MG:j9MA:X9MFPW9MAdS +9MG:d9MkRh9i:[Z9^5qX9NU(E9`7ZmqFs[[@A:S4:&8H#9bZVu9hf!W9p`gn`3R9T`KsOHj;>]LV9`U4Pq>e(r:%/)fgT,Kk_#OF8n,32"8,rTj +li7"UA,lR!lMpn\8H8]jn,31h=6ondnmhRs)s^K"s8,g^s8PUOs8VIgs8PUOs8VIgs8Q]%kkG)W +\c#"uMt-iH9_hE\9EFu`rCnS6oM&'A@SBI%j\;)\9uO?T9uWGnqI*)m;> +dmsUdqSe$Rq>(6^J&D,/hadbDr(%"f>=_:Zq"mT4:&.=MqF='?>";(]hFC*48#);=N1ic<84`SI +8,?F[7ni\J8*O2J86"G:r'pfZ7uI9A!4UoW!VB(b8,`;a7k3b,7n6M77nbAc%8GZco8/(&k84ZtH8e%q8FQQagT,Kk_#OF8n,32"8,rTj +li7"UA,lR!lMpn\8H8]jn,31h=6ondnmhRs)s^K"s8,g^s8PUOs8VIgs8PUOs8VIgs8Q]%kkG)W +\c#"uMt-iH8,5^R7fiHVrCA5,oLMO6?:RLhj[bWR8A_UI8Ag]`qHQQ^:&%7MqFF0L86"G:8GYkJjBkGK>NJCH +qHuib=m8IJl!$\L<8L/:qI0.i!R>9T8/:2m84ZtH84`S^84ZJM84_uL84QV8q*tFBrV?N(rCHWP +JOl(t&GeqmPt6n.8GYkbk"J<;hHfnI"\ne`8Es:S8.Xud7n6*?8*!uH7p>"F8G`9T$i3CbqHQQ^ +:&%7MqY3S]MuEJP\F<&d8,l-V8+oK(~> +dRaL`9DA2W!r#<2hFR_Dr(-nbrCILq8P*O3l1OiJ8P/bL8G2rX&bAL_qF=lK8Cq'9qF=*Q7ntOla8\^6VI_5JK$"h*>p%\AT8bPgV8cM +dS0dg:\XV[!r#H9hG""Hr(R1frCmdu9hf??lLjrK9hkIY9_SG]&bA[iqFkAU:"WiIqFjTZ9MG<] +9EY,b9_SG]!;-1_rCmBRqYIb\9EEjUqb.+g9MG0Yq?-=_9`"]]$i3OjohS7T:A%=UqYj1oqFs[X +qFjTVrV?Qd9`.TbqYa+l=n,3\qG.#a)"g^"9i(FV?h%7e?LCqc?VP(>lIgAU:%nP^"S>D_qG.#a +"D"t+fm!3c"-36S\_p0_ghcd\#k_"g9i(FV:&=i`!;c[h"8Y_dqYj1hqYj1kqFs]\rCmCj9hkK_ +9a:Gg:&7RYqYj1l_2hEanR##erCnL49hkIY:%_=W9i(FV9khQ2p%\AX:%h@W9i:a]9k:]tfluCL +!;cUf"B4;S:%nP^$M7%eb^<-2btUq+rV@<%9hkIY:%_=W9i(FV:&7[\9i1OX:%nP^"S>D_qG-i\ +!KsDZ9aLDg9heFV9hkK_9`t5d:%nP^!;#tZ#`ecX\P5dl9MP:UJPDA'&,K"1hbMj5:&7RY_2h +dRXF^9)&)V!r#90hFIYCr($harC@Fp84[=0l1OiJ84`SJ8+liW&bAL_qF=lK8Cq'9qF='P7nl."nqF='KrV?Wf7n_H8GYkJ +8,>_Gp&4^fo1/^L!;cXb"]Xt^8GYpW8/V"m84ZAG86YO_mTJsWnQSOk[-H:b84`FPq?6C\8GYpW +8-E;,lI^1Q8-=eHqRGHS!ShAa8-nl]84ZAG84`UV8-&Mc8-A]Z8G`dqb-th8,N>dqb-thkDrYXdeNhE\OT/JnGiMYq+1BQ!;c[bs%!l" +iCHK38k2BCogi9V<:3oW<:O0`qY`r/qFF0R84`DH84ZAG84[=0l1OiJ84`DG84ZJO84[*plI^1: +8-&Ma8-D]H84`FPq?lgb8BZ9LGKWNJp&4_&o12FK84`DH84ZAG84`SM84ZDH84`FPq?6C\8GYpR +8-+dKr(%+d91VTGoghXMrC@%e84`FPq>g-^7gP%LqRB'e7n6,E7tF3r8.YPf?f"B,>Y+]^8AC*S +ICoAI$"_$=p%\AS8G5[S8.\;b8Ol +cq403s6T[[gdqMBr(-nbrCIUt8P/!0>>8&m8P/bM8E!N=8Gu$gqF=&rPJp$^qF='P7niSCIqYj%dqYj%gqFO9Tr^d+dr^dLo8P/\P8P*4a8P/dW8I##_ +8bu"MqYj%hE:@5sC\LC$Mn&4Im/I7[;ZHc"lhpbc8,rTro)&Fe8,`Gj8,rTllhpb`?h3sk!H6cm +rt4.-s8PUPs8VFgs8PUPs8VFgrVlru]Nb.1!P+-Wrr>Uc8H;iSCI +dB:S_afWu_8c&BW)u<,tqFO9=>"M:jj%2i'QWm0_qFO9BiSCIqY`tg +qFO9;<;/o_8H26dMmu;L84Q0@qFCQVJOu(t&,JjhaHXY88bu"ME:@5sC\p[0jHj(F;u0'Wk["0Z +)+[9]>=_=V7n;TB7n6eD8P&VM7n6k]8P/dW8H\f\8c&-P!K4JZ8cD9Z7fl4Q8GbpW8G#K(~> +cqXH7s6]a\ge@eFr(R1frCmh!9hj]:?Vsl#9hkIY:#]7O9Fgnm9Z`U?9MG:V9_qFVqYa(mqFs]D +=A;I`qb7#ar_*?P\b\u":$t[T:&IZd9qRjO9Ee2f9MFGIqb."drCdUq9MFJP9MAdQ9hkK`9`Y%h +9Eb2c9]B.P9`%NaqYa+k>k(N_qYa+uj'GGS?fOjTd]gnhbHKCm9a-I;9hjVLqb7(eqFq!Kk4_RN +Nk+%A!NDjm9alTh9hjYS9hf!T9hkK`9`Y%h9`t5d:&=i`!;c[h$i3Rlpeaa[@JW\mqYa+mqFs]\ +9hkK`9a#P-A*7b(9`^9bmnN0K"nGRks&n[crrbjls'P?orr>Rfrrbjls&n[crrHKtp\t84h#@$0` +dnNR5rCn7-9hkIY:#fPS9jcpT:#q^L;-*Nf:$>_S9kX>#9`^17iCs=Kr(R?E[S9KU=SkeuJ^.0: +K2#)"=Skf,qFs]E?;4.$j%W8EA5,d*kY4e2=SkemqYhE!Q9aKcc9hf!T9hkK_9a(;e:#]:K +9`@`eNk,-`p.U$3P>)Sa9hi`r`_B2(9hf^!A*7b,9aTmK?Vsl#9hjhZr_>P +?fOjSpeXXX@JW\mqYa+jqFs]\p.YRJ\a`Dk9`Iia9_(o.~> +cq+*2s6T[[gdhGAr($harC@Lr84_g->"hij84`SJ8E!N=r'q7n7n:U``CEGp7n2r.DqF=(IqYitfqF='7;uT;` +8-&Mb8-E#`84`UU8.OZ_84ZtF84_+0a[jOUdelW>Luh/uiDf\F!;cO_!Jok38-+XYhaddFT`%Ci +IDABEj&noD>N87FqYj"cqYj"fqFF0Rr^[%cr^[Fn84`MM84["^84`UU8-\o]8GYkJqYj"gDt%,r +CA17"Mn&4Hm/I7[;ZHc"lhpbc8,rTro)&Fe8,`Gj8,rTllhpb`?h3sk!H6cmrt4.-s8PUPs8VFg +s8PUPs8VFgrVlru]Nb.1!P+-Ws7](]7iV:q7n6*@HaH:5j&nlB>N87Fd&kD\afWu^8G`9U)u<)r +qFF0;=\)(fj%)`%QN87FqY`qfqFF09<;&i]8-+XYr^c`Q +JOktq&,JgfaHXY78GYkJDt%,rCAUO.jH`tC;YipTkZn*Xs$m+R>Q.1n7hF]`7n6bC84WGK7n6h\ +84`UU8-A]Z8G`$N!K4JX8GbpW8GbpJ8:U~> +cq403s%3.bgdqMBr(-nbrCJa?8P/8g:1pZm@S-Df8Z/(Y;45Kq8,>_GJa@eT8,>_GqF='P7n6*@ +qFF/SRoE4PaSSO*7fZ*Z7fu:P7nE)=r^d&Zr^\D3d@k)E;LHZX84TPG<)B"(84WMH7n?/H7n9VG +:/\$k84`SJ84WOU7gSr]8#D_S:moH&8HAVd8Hi7fZq3jcrCJ-5QV^VZX@Z!Lop&+6oU&3AdtCD7 +k=J7CS5iFSa[o)#rCI.@KM6CKdn(0PiMB^UL@:!k8Z\7T;lHch8c&EX!;c[d"8YS\qYj%dqYj%o +qFO9;O\T;togqaOrCIIp8P/bM8b?Ie8P.@bb2Q"_ru6BdmelIHMZ<^:Q1Mh(s8PUhs.$(Zp8`K= +s%!%f%nH["Ng94PB)hn$WUfb`H2R[Ck]Qh'(O53E7ucp-VN1]V7ucp-VN1]VDSc5#=l]PX8H;rU8P+O#In<6.r^d1>gWK@a-L>_IB<:?,8[Y^#K\T'f[&m;[gdal8Q;1>VX%5b=OA'#pogqaO +rCI1h8P/P`:?b@M8Gks[84c?CrC?lYnk"?~> +cqXH7s%WFfge@eFr(R1frCnR69hk"s;/35tAPN"q9rX^el)QX*OXC!U+\(rtfqEs$r(9o;7QJs$r(9o;7QJs),[MeQLr4peCZ[*D9*&9heDq +S(V%?9Wa^]=/rAs9pkU?9pbL@9hkK_9d9F.:&7RYXdW3jWi\uim;u3?Xm'Ck]:N,2]_P8re;$kB +ki#5uqFs[[At.IZ9hhUY=]M!79heCA\`6FZ9rX^eGc'p.\9XrCmIl9hk7l; +cq+*2s%*(agdhGAr($harCA4184`)d9kLHj@7^5c8>_kU:moBp8,>_GJa@eT8,>_GqF='Pr^R8c +qFF/SRT*(MaP05b8Gbmj:!oVD92^,ZS4?)HRT*(Ma@AbsrC77l7n9VG:/Rpi84`UV7f`Db7gSr] +8#D_S:moE%8-&Mc8-N+cZq*aarCA'3QVUMXX%5dHop&(5oTr*>dt:;4k=A.@RoE4Pa@JkurC@(? +K1g1Hdmt*NiM9URL$smi8?8(Q;Q-We8G`8n+1? +=\))\RoE4Pa@JiniO@f<84]VI<)B"(84`SJ8?8(Q;Q-We8GT\s;kCBf8>_kU:moBq8G`-Q!P3[U +8-l8_:K"-l84`UU8-o&_8>_hT:RK6%8,>dV8,l-S7tF3o8-o&_8:g,V84`UV8-75ob5+XUlu5[2 +X6F%`[B3A[gdalAX]'l-7n9VG:/Rsj7n;L!9O>F*84`UU8-Si\8G$=bk=GM@r^coVnOS0~> +cq403s%3.bgdqMBr(-nbrCJ:28P+Zuo[.9Eo1AdM8PlSQn]kf>8btqI8^p=%8,>_GqF='PrC@4j +84ZOYkOHi2qagTS!(d)Z!(cKIpIGKaU#,J1c[u-d*) +8c&BW"FAqthgNpE"^S_+o$`0h8I/5'm-D&W8P/dX8HAVd8H\f\8c&EX!;c[d$i3FdHJ\>MGO%po +qY`tpqFO9T8P+X#lUa["qKh-mnc'QiJlYHDQhCCYnTml@f)Pb?s8VkZ=\j.rs8PUfrsqX"s7(D/ +B%I"^pm"uXFPcrq!NO-:rtibWs$t"69RZL3s$t"69RZL3s3+tG@`d[1qFLZXqF:NVrqZ`ljJYuU +7hJS+m-D&W8P*4`@7ao(?:d`brCJ408P/bM8Q*%ala9V^8VZ@!d:T*D8Qs1)jFd%r8UB7dhgOHT +rqZ`ljJc,X8HhqnkOHi2r^d0WqO.=S,>bQ+n]kf>8bu"M;Rc#Y[8KRfqL[c#`DoK$:p0!Oc=fd@ +qY<_[q?hdF;Rc#Y[8KRfqY`tkqFO4RXlo6"B`:L%8H)3\8-):Qr^QrZqFCQVJOttq#l7+a9@Z[, +8c&EX!eU8pqFN#gjn-r4U%:iVaS";*7n6P"p"O@S7o6Y\la9S[7sWtagir'X8c&BW"o:e^L$@ph +8cM?Y8,l-\8Gl!X8F]9%~> +cqXH7s%WFfge@eFr(R1frCnU79hgK,o[7HKo1f'U9iJ:[n]u#G:&7OW:=`069_qFVqFjTZ9`@`l +qFs[_YNYN&C]7&b9`Iie9E7fc9EnFkhtHNcL&OaO;m5ETcYQ9KqYa(qqFjR_\ErOj<_Z2`*Q,co)J_[`*Q,co)Ja6@nU:Qj8\pLq+Uea"8LrX=8kl*-AGT_/:&=f_,5P#.qFs[b\aA^l<_Z;Fk4I)9U[q2daRSAHoM/,.htGrXiD'=J"8LrX +=T2"u;m>KUcYWST!grhRr_4V9YitW'Ce[Y#9he[!mH_5^9hkJ99hkK`9`g%FI/6PaM<=HYBqt8o +>06HmE_K/0an=G09MAHrmH_5]9MBijp"ar[:egfb9a1Af9o/*#ktV%Ks%W>`n4eE~> +cq+*2s%*(agdhGAr($harCA[>84\Hro[%0Bo18^K85HANn]kf=8GYhH8^p=%8,>_GqF='P7n6*@ +qFF.PXlo6!BDtHP7g;_^hY$<_K)S7G:9E^Lc"KU;qY`nlqF=%P[d<=e;+O7Sr^Qtbr^R7j7n6=V +kOHi2qag__#5RGa:In%QrCA&.\*WFg;+O5_q-Za$qHZW_H/A5NHq6e(Xlo6"BLk\jrC@':hY#`Q +dRXOH]'T":JGr(F;7GoX[8BIcqYj"cqYj"fqFF0Rr^[%cr^[Fn84\'`p"XcW91\pX8.GDd8GYkJ +L$@no8:gV_i^iV>)s)ZP8QM2Ns8VV89P2lUs%!+hpm"uXFPd&t8,`Gu8,rVZH;%r%s8VkZ=\j.r +r;Qet`Vf`PaK,>2`*Q,co)J_[`*Q,co)Ja6@nU:Qj8\pGq+(G\"8LrU;Z9/u:q#`V[8BIc>kqbu +@/=/"8G`9U,5Oi$qFF.S\*WFg;+O63jn-o2T^t]W`pr,Ao1;JuhY#`QiCNtE"8LrU;uT;k:T`gM +c=m2J!gWVLr^\80Xlo6"BLk\j84ZUem-D&V84`T.j7UAj84ZOYkOHi284`UQ8Gi5jJ4NPHm-D&V +84`UU8-o&_85?;Mn]khI8,5^K7tF3m8-o&_84qE)84`UV8-4A=H2:&YL#qsRAYAWc +cq403s%3.b]1DunoLJ[Ir^ZlW!_5dPqaUWWlUUbAnjiOIr^ZoXrC?`UpIG6SJP"6\!K>[i8[A?r +8,E5c8([e<8H; +cqXH7s%WFf]1qljr_49nH(?NnNhpr_*Ad9MP@Wr_3De9DqQ= +:&7Q`:&@WP9n3~> +cq+*2s%*(a]1DK_s%*/[!(crVr^b("r^cTMr^c]PJOn-Y!K5Uh8@&6q8,E5c8([e;8GbpV8,u0Y +8Gbo.8Gu'ZqU%k58,c'Z8,GjL7tF3_8-+Y$mR[7G!(coUs%*#WgIV02s%*#WmRVj~> +cq+5qrVHOcrV?NO]h&2po1/aMs$u`Qi^`i9q+(3SJP"6\"&*n)Hf7Q% +rr>Rcrr>R@s85Fg8GbpS8H26]8GksX8:aA28HAV88H;<\7g2FT84ZXS8:a?b8HVY0 +m!J1m!(d&Ys%)uV!_>mRrC6o[8P%]0s%*&Xr^crWs%)QLJ,~> +cqON!rVHOgrV?NP]M7rjs%W5]rCu0Cs%VlSqb?u^s%WAarD!#[JPFKc"&O:1Ic4#,rr>Rcrr>R@ +s8,Oe9_qHa9M>=XJPH&:!;b,DH0p(K:&Rcc:&7Q_:&I]>:&@Wa:&7QN9n3~> +cq"/prVHObrV?NO]L_T`s%)lSrCGg9!(cHHr(-BKs%)iRJOn-Y"&!e'HJqE#rr>Rcrr>R@s8,@` +8,>dR7tF5/8-&M78Gu'P8G5Q)8:jA796KTImn!@Hs%)rUs%*&XgIV33s%)uVm7;a~> +Jk>u5p.+pLs$ucRj%&r:r($TSr^lNKs$uuXq+(ETJP"3[!qk]:i(:6S!(Znc!(YZ@rCHu[qFCNU +rCHu[r'u<0qageae4K[2r^Qu[8cD6\8c)'R7fZ)28V'G7p#_>(8H;<[7fl4Q8Gl!W8-):QrC6iY +h+7T;qaUZX8c)$X8F9!!~> +JPGf2rCuoXr_; +JOoH(r^cTMs%)$;!(ccQnjr@Br^cfSJOn'W!qk]9i(10R!(Znc!(YZ@r(-TQqagWTJOoZ/!;b/8 +r($TS!_5dPpIBd*JOfl6p#_;&8Gl!X8GbpV8Gl!48GbpW8GYjC8:U~> +Kh;87p.,-Rs%2]Ni^_Tks$uuXqF:NVJOuh4JcGcMs%35]qFCHSs%*2]r'p`XJP"-Y!(d&Y!_>mS +pIP-Ns%%]4JP#0!!(d&Y!_>mRr($cX!D,i\7fZ*:8cM?Z7fl4Q8Gl!W8F/ou~> +Jkbo3r([#]rCu*Ar([)_oh>E[qb@&`qG$l]r_<2^JPE(;JcGcMrD!,^!_l?^r([)_JPF?_rCm#] +!_c<_pIp-4JPGE(r(R)aqb6u`r(Pm?r(R)aqb69LJ,~> +Jk5Q)r(,7+rCHfUogf'QqagZUr^cfSs%)rUJOl_1JcGcMrCHZQr(-`UJOn!UrC?]Tr^QrZpIBd* +JOo&sr($`Wqa^WVr(#O5r($`Wqa]pBJ,~> +LIqM:ogeaI!(ZcSq*tEUnji^Nqa^$Enji:BqF:NVJOue3JcGcM!D,iX8,PpW8H;<[7fZ)28^9m- +8Gu$Y8H)3Z8H20[8GG[T8:a?`8a8kI8Gu$[84cAL7fu:R8P&eMhFR] +Kh_25qG$o^r_;*?o1f$S!))rXs%NJer_=M9`@c`9`@`e9M>@Yh+[oD9DqNc9hnF[9^,9%~> +Kh1f*qagWT!(bd5o18(8!(d#Xs%)oTJOl_1JcGcMs%)rUr^[#ZrCHfUJOn$VrC?]ToLFI'JOnuq +r($cXqFCQVr(#R6qa^WVr(#sAJ,~> +MFmb;pIG6Ss%3#Ws%!#YoLJpPo1/[Ks%!#Y!(lrVj[]/mRrC6iYi( +Le[M8r(R/brD!5as%W&X!)<#Xs%WAape:c_:#\kE:&.J69r:X9s8W*!:&.KY9`[p\rChc:bt\+0 +q+^QVJPC\ikY:tKs%W>`r_<;ahG*l@r_<;ak=pI~> +LIh).rCHoXs%*&Xs%)]N!(cBFp.4.4rCH`SJOlY/JcGcM!(coUq+1BQJOn$Vr($TSogaR(JOnuq +r($cXqFCNUrC>[7qa^WVr(#p@J,~> +NCj+?ogf$Qr^loVr^ZrYj@92@rC?lY!(ZfTh+.K9!D,iZ7fZ)28Yo"0s8W,p8,PpX8H;8Gks[84cBDrC6iY +k"1(~> +MbWe:qb@)ar_<;a!);-?rCts=r_<8`JPDq7JcGcMq+UTYqb2Q8c;"10peCNWJPC\ik"YeJr_<8` +r_<;ahbEr@r_<>bj\:7~> +Mb*G0qag`Wr^crW!(bd5r(,O3r^coVJOlS-JcGcMpdb0OqaZ3.c:Ih&pdk0MJOk>_k",G@r^coV +r^crWhamT6r^cuXj[an~> +O%K@BoLJpP!(liSs%!#YkXYSBr($QRf1,g3qaUWWJOuY/JcGcMqFCHSr^d)\r'p`XJP"3[!(d#X +!_>mSq+1?P!(_Z4JP##r!(d&Y!_>mSqaU]Y8P/hM!(c'?!(cuWrCHlWs%)9DJ,~> +N_T( +N_&_2qFLTUr^cuXs%)_j[f;>s%)uVs%*&XhamT6r^cuXj@Fe~> +P"GXDog]!Qr(6fW!(ZoWr^ZuZkskeG8P/nPrC?]TcURt+JOuV.JcGcMr'pcY8c2-Z8H; +OA5=?peC`]rCu +O@\t5pdk?Rr^c'>rCHcTr(,+'JOlM+JcGcMqa^WV!(ZuYqaZ3.c:Ik'rCHlW!(clTJOk>_j[f;> +s%)uVs%*&XhamW7s%)uVj@Fe~> +PY(mGoLJpP"%c$T8c)'X8,PpO7fZ*M8,l*[8bbjV8cD9N8+&q=7fZ)28YSe-s8W,s7fc.PrCHr[ +!(d#X!(_Z4d7O@/rC72c8P)HD8Ou?A84`VJ!(_Z4JP"lnrC?iXqFCQVrC6iYj@KGE8P)JM7fl4Q +8Gu'X8E +P"kRBp.bHYr_;EHnkJFDohFpLJPDh4JcGcMr(Qo\!DH/a9S#pb:&@W^:%_229n?%!:&IZb:&.K_ +:&RcC:&@Wa:&@WD9n3~> +P">17pIP3Pr^c'>r^[#Zr^d&Zqag0G!D#`Q8FK'"8>/S*s8W,s8,5^Q7tF4W8GbpT8G,K(8:a=l +8GksX8GPdU8Gu'98GbpW8Gbp:8:U~> +Qq@6IoLAmPrCQZQs%!)[pIG3Rmmm=I!(m#Xnji[MmRd:Hr($]VJOuM+JcGcMrC?cVr^d)\r'p`X +JP"6\!(d#X!(d)\rCH]R!(_Z4JP"ln!(d&Ys%*#Ws%!/^8H)*Z8E!,?8Gks[84cBDrC?lYi^nY~> +Q;-pDq+^NU!) +Q:UR:qFK"(q+1!Fkt(S>JOl>&JcGcMrC?ZSqaZ3.cUdt(qFL?NJOk>_iCNo;!(coUs%*&XiCNf8 +s%*#WiCJJ~> +RS!NMo1/gOrCQrYqFCNUr^QrZrC6iYn43IKpIG*OoLJgMj[oGBJOu>&JcGcMs$urWr^d)\r'p`X +JP"6\!(d#X!(d)\qagTS!(_Z4JP"im!(d&Ys%*#Ws%!/^8Gu$Y8E38A8GYjV8Gu'X8E!-j~> +R8*6Gq+^WXs%V0?s%NPg9hk+NJPC\iqFuP@s8W'lpeCZ[JPFHbr(Qr]!_c<_qFlH7JPG)trCm5c +qFpl_rCl0EqFpo`qb5pBJ,~> +R7Qj_q+-):s8W'gr^[#ZrCHfUJOn*Xr($TS!_5dPqF?*-JOn`j +rC?lYqFCNUrC>g;qFCQVqa]R8J,~> +SOrfOo1&dOr^lrWq+(HUpdb?ToLJpPr(-lZkst\CJOtDapdp&:s8W*h!D#f\8H26]8GksX8:a@[ +8H;mRr($cXhar=~> +Rn`HIpJ(EVs%W8^s%W)YqG$0IJPC\iohC#;s8W*mpeCZ[JPFKcqb6r_s%NGepe665JPG)trCm2b +qb6u`r(Q-Fqb6u`qb5j@J,~> +Rn3'>qagBMs%)oTs%)`OqFKg?JOk>_ogjZ6s8W*hrC?oYrCHiVJOn*Xr($]Vs%!)[pd]m+JOn`j +rC?iXqFCQVr(#d +U.P8Ro1/gOr^m&Zs%!&ZrC?lYs%!)[r'pfZ7nmRrC?iX!D,i\7fZ*A8cM?Z7fl4Q +8c;0Y8DZpg~> +Sk\cLq+^'Hs%W2\ohFjJJPC\inP+T7s8N'mpeCZ[JPFKcr(Qu^"&)?]:&7P79n?$s:&I]b:&@W` +:&I]F:&@W`:&@W?9n3~> +Sk/EBq+0^>s%)iRp.4O?JOk>_njn?3s8N'hpdk9PJOn-YrC?`Us%!)[qF?*-JOn]ir($cXqFCQV +r(#d +UIkGUo1&dOrCQlWrC?iXs%!#Y!_5dPrC?lYp.,'Po1AsQogf$QJOtDamn&*1s8N'jr(-iZ!(d#X +!(_Z4dRjI0r^QrZrCR#[!(loT!(_Z4JP"fl!(d&Yr^d#YrC?r\8Gu$Y8ENMD8GYjV8GksX8DHde~> +ThY)Oq+^ZY!);QKmnNFJJPC\im7i03s8Vjgr(MZ9cqXI4q+^TWJPC\ihbF#B!)<>arD!5ajA#DC +!) +Th+`EqFK@2mn!(@JOk>_m7;g.s8VjbqaZ3.cq+.+q+16MJOk>_hamZ8!(crVr^cuXj@K&9!(d#X +gIQh~> +V+LYWoLJgM!(m/\pdb*M!([#Znji^Nm7@:Kq+(HUJOtDam7Dm/s8N'jr($i[8GksX8:a@\8H;<[ +7fl4Q8c2*[8P&\J!(_Z4JP"`jr($cXrC?iXs%*2]r^QrZj[fGCqa^ZWqaUWWgIZn~> +UJ:;QqG$ZW!)a +rD!2`j\>SFs%WAag.d(~> +UIaoFqag'Ds%)]Nl:C\?JOk>_lpu^-s8VmcqaZ3.d7F4+qa^cY84`PHJOk>_hFRQ7!(crVr^cuX +j@K,;s%*#Wg.6_~> +W(HtZoLJmOs%3)Yqa^ZWs$uiT!([#Zogf!PkXkYBJOtDalUc[-s8W$gs%*2]r'p`XJP"<^s%*,Z +!(d)\qFLKRs%%]4JP"`j!(d&Ys%*)YrC?r\8H)*Z8EEDC8GbpW8Gl!X8D6Xc~> +VG6VTr([2bs%W/[s%WJds%WJds%W)YJPC\ib>!Qfs8Vsjqb2Q8d7sR5q+^TWJPC\ih+diAs%WAa +r_<;ajA#JE!)<>afhHt~> +VF^5IrCHrYs%)fQ!(clTs%)cPJOk>_b".*`s8VseqaZ3.cq+.+qFL_h+7K7s%*#Wr^crW +j@Jl4fgpV~> +X\&I^o1/gO!D,i]8cM?[7fZ*W8,l-[8,5^G8,l,28V'IU8V-pAs8>Ih8P&bL!(_Z4e4KX1r^Qu[ +8bkpR8,l,28V'Ij8H;<[7fc.Pr($`W!D,i]7fZ*@8c2*Y8GYgV8D-Rb~> +WD2qWqG$WVs%WJdr_`r_<>b +jA#PGs%W>`fM-k~> +W^uYMqFL6K!(d)Zs%)KHJOk>_a@Lm^s8W!fqaZ3.d7F4+pdk3NJOk>_gdqB6s%)uVr^cuXj@K2= +s%)uVfLUM~> +YY"gbnji[Ms%3#Wr^ZuZ!_5dPr^ZfUn43LLJOtDaa%:j^s8W$h!(d#X!(_Z4ek,j3rC6o[8P/bL +qFCQVJOtDah+7T;rC6l[8Gu'X8-):Qr^ZuZk",PDr($cXr($cXf1CJ~> +X\J@[pJ(BU!) +X[r"QpdjsGs%!,[r^cHIJOk>_`^k[\s8W$gqaZ3.dn'C,pdk0MJOk>_gdq?5s%*#Wr^d#Yj%/f4 +ejt;~> +Yt=pco1/IEs$m&[r^ZlWr^Qu[8c;3N8,l,28V'IO8V-pAs8GRi8GksX8:a@a8H;mRrC?iX!(m/[s%)9D!(d&Y!_>mRqaUWWek(A~> +Y>+R]q+^l_!)<8_##.cb9h\5Rr(ZZSJPC\i_bG^^s8W'mqb2Q8eP5m6q+^TWJPC\igJ.W?s%WAa +r_`eP1P~> +Y=S1RqFL__ao@Ys8W'hqaZ3.eO]O,q+16MJOk>_gIV95s%*#Wr^d#Y +j%0,=s%)uVeOY2~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +[f?=RJcCN*r[*3rJcC<$JcC<$JcD>AJ,~> +[f?=RJcCN*r[*3rJcC<$JcC<$JcD>AJ,~> +[f?=RJcCN*r[*3rJcC<$JcC<$JcD>AJ,~> +h#@cRYAm8o.P!ANENf#ts8F@;rr@]N-3/+nrrY\:-?Jn\"'[*!>k\1"F!`5&hZ*R%JcC<$JcC<$ +JcC<$T)X<~> +h#@cRYAm8o.P!ANENf#ts8F@;rr@]N-3/+nrrY\:-?Jn\"'[*!>k\1"F!`5&hZ*R%JcC<$JcC<$ +JcC<$T)X<~> +h#@cRYAm8o.P!ANENf#ts8F@;rr@]N-3/+nrrY\:-?Jn\"'[*!>k\1"F!`5&hZ*R%JcC<$JcC<$ +JcC<$T)X<~> +h>[MP2>8Eu3OS)Nr[+<Mt0-@u2Js+13$ +s+13$s.97@~> +h>[MP2>8Eu3OS)Nr[+<Mt0-@u2Js+13$ +s+13$s.97@~> +h>[MP2>8Eu3OS)Nr[+<Mt0-@u2Js+13$ +s+13$s.97@~> +hZ!t@-719p`pEQrj0W(j-31$!rs#kX-8QtqVR6@'`r7:bdeNhB]_s/W^%hU-df(Qn`npap-@u2J +s+13$s+13$s.97@~> +hZ!t@-719p`pEQrj0W(j-31$!rs#kX-8QtqVR6@'`r7:bdeNhB]_s/W^%hU-df(Qn`npap-@u2J +s+13$s+13$s.97@~> +hZ!t@-719p`pEQrj0W(j-31$!rs#kX-8QtqVR6@'`r7:bdeNhB]_s/W^%hU-df(Qn`npap-@u2J +s+13$s+13$s.97@~> +huUSd-718(LAqHd-75Q9-<%;O"Ssi"-Bn6)!.b"p!.jqF"I1;\1A]l-r[*3rJcC<$ +JcC<$JcD>AJ,~> +huUSd-718(LAqHd-75Q9-<%;O"Ssi"-Bn6)!.b"p!.jqF"I1;\1A]l-r[*3rJcC<$ +JcC<$JcD>AJ,~> +huUSd-718(LAqHd-75Q9-<%;O"Ssi"-Bn6)!.b"p!.jqF"I1;\1A]l-r[*3rJcC<$ +JcC<$JcD>AJ,~> +hu +hu +hu +hu +hu +hu +hu-91kurseHE-:\%7Y\--O0h6fJqu7,p-724^ +rig$!/MTbHg%bRSn=sP]0ISVED6E^*rrDEb-31FLrs,>H-EO-m-DgS="Lf^)-gpj2$2guC5V=WO +AYf(trsA!<-=6`ELHm=Lrr;sEq>UWZ6RF-nq>L=#n=sP]0ISVED6E^5rseHE-:\%7Y\--O0h6fJ +p\tQhTOU)9.QCb+oCr7jrO6T40/#hEfD#:N^N2aq/jX-QqLSZts+13$s+13*s*t~> +hu-91kurseHE-:\%7Y\--O0h6fJqu7,p-724^ +rig$!/MTbHg%bRSn=sP]0ISVED6E^*rrDEb-31FLrs,>H-EO-m-DgS="Lf^)-gpj2$2guC5V=WO +AYf(trsA!<-=6`ELHm=Lrr;sEq>UWZ6RF-nq>L=#n=sP]0ISVED6E^5rseHE-:\%7Y\--O0h6fJ +p\tQhTOU)9.QCb+oCr7jrO6T40/#hEfD#:N^N2aq/jX-QqLSZts+13$s+13*s*t~> +hu-91kurseHE-:\%7Y\--O0h6fJqu7,p-724^ +rig$!/MTbHg%bRSn=sP]0ISVED6E^*rrDEb-31FLrs,>H-EO-m-DgS="Lf^)-gpj2$2guC5V=WO +AYf(trsA!<-=6`ELHm=Lrr;sEq>UWZ6RF-nq>L=#n=sP]0ISVED6E^5rseHE-:\%7Y\--O0h6fJ +p\tQhTOU)9.QCb+oCr7jrO6T40/#hEfD#:N^N2aq/jX-QqLSZts+13$s+13*s*t~> +huUKU;Y_X?MuNVR!U<8U"*u:@g!BeU(rrqp>-<0nGr?hODr[.LA"lVZm-?B"^rrKYe +pa-#+ci3qJpa.=JoO7SC!@j]:rrKnnq'H,*e+s"Ej&5\"!K6sSrrMCfq'H,8fn'0Ss+13$s+13+ +s*t~> +huUKU;Y_X?MuNVR!U<8U"*u:@g!BeU(rrqp>-<0nGr?hODr[.LA"lVZm-?B"^rrKYe +pa-#+ci3qJpa.=JoO7SC!@j]:rrKnnq'H,*e+s"Ej&5\"!K6sSrrMCfq'H,8fn'0Ss+13$s+13+ +s*t~> +huUKU;Y_X?MuNVR!U<8U"*u:@g!BeU(rrqp>-<0nGr?hODr[.LA"lVZm-?B"^rrKYe +pa-#+ci3qJpa.=JoO7SC!@j]:rrKnnq'H,*e+s"Ej&5\"!K6sSrrMCfq'H,8fn'0Ss+13$s+13+ +s*t~> +huh"^HS8L>d>rVujDr;R5r6RF-jaS#5RFs\Osj8JufqBdOZFt8d:qWO@r +-76b0rs\3X-7Y#1q!u-j-74NGrseKc-739Ep%?^U-71e6mf*B/-74oTrr\W8->32T&,R\#05W%M +a78u`OX_\)Z2O\5q^*XCD'iu;nbM+*.OHLIr;R8N-RLF1g%P:)Yu2nq1?.p*"I(5[3WAsV$2Q>& +4TGF?-8GAorrYD2-C=W0%HB>n-@+#2pt1BN-8*gHrri'C-;CN<-N=&E-N!fHh)m#2IJs-E+Nu2[ +/X>#_qW>%\-71M-s8VsC-803_Bufc>i/oK9-F*IJ%G<6Y.>lgNq:0=/-9:Mkrs\3X-7Y#1q!u-j +-74NGrseKc-739Ep%?^U-71e6JcC<$JcC<$JcCT,J,~> +huh"^HS8L>d>rVujDr;R5r6RF-jaS#5RFs\Osj8JufqBdOZFt8d:qWO@r +-76b0rs\3X-7Y#1q!u-j-74NGrseKc-739Ep%?^U-71e6mf*B/-74oTrr\W8->32T&,R\#05W%M +a78u`OX_\)Z2O\5q^*XCD'iu;nbM+*.OHLIr;R8N-RLF1g%P:)Yu2nq1?.p*"I(5[3WAsV$2Q>& +4TGF?-8GAorrYD2-C=W0%HB>n-@+#2pt1BN-8*gHrri'C-;CN<-N=&E-N!fHh)m#2IJs-E+Nu2[ +/X>#_qW>%\-71M-s8VsC-803_Bufc>i/oK9-F*IJ%G<6Y.>lgNq:0=/-9:Mkrs\3X-7Y#1q!u-j +-74NGrseKc-739Ep%?^U-71e6JcC<$JcC<$JcCT,J,~> +huh"^HS8L>d>rVujDr;R5r6RF-jaS#5RFs\Osj8JufqBdOZFt8d:qWO@r +-76b0rs\3X-7Y#1q!u-j-74NGrseKc-739Ep%?^U-71e6mf*B/-74oTrr\W8->32T&,R\#05W%M +a78u`OX_\)Z2O\5q^*XCD'iu;nbM+*.OHLIr;R8N-RLF1g%P:)Yu2nq1?.p*"I(5[3WAsV$2Q>& +4TGF?-8GAorrYD2-C=W0%HB>n-@+#2pt1BN-8*gHrri'C-;CN<-N=&E-N!fHh)m#2IJs-E+Nu2[ +/X>#_qW>%\-71M-s8VsC-803_Bufc>i/oK9-F*IJ%G<6Y.>lgNq:0=/-9:Mkrs\3X-7Y#1q!u-j +-74NGrseKc-739Ep%?^U-71e6JcC<$JcC<$JcCT,J,~> +hudJj1F-N*lGF!`5aqu6ba-73=&rrr?J-7L:Tr;QkS-73j3 +rr[-c-Fj!R"R\2q-IMel"*5e9JG]?KQ6mqin,EO[/1)_&rr3,`-RL;-qu6Zqr?_Mqqu6f1-71eI +rr2utr?_Mqqu6f1-71eIrVlt/-76(rrri./-73s.rrCUK-32Qnrs?an-?T:fE$cpRr;QcMr[%Ws +qu6b+-75&Urr];K-;jaA$2c+s7o(k9m/-)Is8FACrrgt6-74QGrrZ^W-F +hudJj1F-N*lGF!`5aqu6ba-73=&rrr?J-7L:Tr;QkS-73j3 +rr[-c-Fj!R"R\2q-IMel"*5e9JG]?KQ6mqin,EO[/1)_&rr3,`-RL;-qu6Zqr?_Mqqu6f1-71eI +rr2utr?_Mqqu6f1-71eIrVlt/-76(rrri./-73s.rrCUK-32Qnrs?an-?T:fE$cpRr;QcMr[%Ws +qu6b+-75&Urr];K-;jaA$2c+s7o(k9m/-)Is8FACrrgt6-74QGrrZ^W-F +hudJj1F-N*lGF!`5aqu6ba-73=&rrr?J-7L:Tr;QkS-73j3 +rr[-c-Fj!R"R\2q-IMel"*5e9JG]?KQ6mqin,EO[/1)_&rr3,`-RL;-qu6Zqr?_Mqqu6f1-71eI +rr2utr?_Mqqu6f1-71eIrVlt/-76(rrri./-73s.rrCUK-32Qnrs?an-?T:fE$cpRr;QcMr[%Ws +qu6b+-75&Urr];K-;jaA$2c+s7o(k9m/-)Is8FACrrgt6-74QGrrZ^W-F +hZ!VS./bIp5]s'^p&>-M-73*rrr]#C-?B+cr[.UD"Q1XS6MgTZ"T:q>-J/4rr[%V]qu6cE-72:] +rr_((-=?WL"/@1iErQ(Ai$TjG4S\dQ"(!<$[Jg.) +-367(qYpY(-76/!rrY#'-MRB:"5P\(EUs,34=2DAr;R(^-75qrs/RInNVreYS0fRIqu6fN-72:] +qYpXr-77"9s8ODI.k&Xqs+13$s+13$s,-i,~> +hZ!VS./bIp5]s'^p&>-M-73*rrr]#C-?B+cr[.UD"Q1XS6MgTZ"T:q>-J/4rr[%V]qu6cE-72:] +rr_((-=?WL"/@1iErQ(Ai$TjG4S\dQ"(!<$[Jg.) +-367(qYpY(-76/!rrY#'-MRB:"5P\(EUs,34=2DAr;R(^-75qrs/RInNVreYS0fRIqu6fN-72:] +qYpXr-77"9s8ODI.k&Xqs+13$s+13$s,-i,~> +hZ!VS./bIp5]s'^p&>-M-73*rrr]#C-?B+cr[.UD"Q1XS6MgTZ"T:q>-J/4rr[%V]qu6cE-72:] +rr_((-=?WL"/@1iErQ(Ai$TjG4S\dQ"(!<$[Jg.) +-367(qYpY(-76/!rrY#'-MRB:"5P\(EUs,34=2DAr;R(^-75qrs/RInNVreYS0fRIqu6fN-72:] +qYpXr-77"9s8ODI.k&Xqs+13$s+13$s,-i,~> +h>[Mq9DTt;2fZ1rq>UP[-75\frr_755[s`mr[.UD"-k2[S,*'dS0fSFrVujD!5/4/"7IQ`1&V%R +OsVNSqYpZW/jNnFrr\N5-Cai2".U\bOmrAQ:F7Edr;Ql&-72:[s8F>FMu!ATV^rr\6--CFW/".pneL].8P-3/#\ +s8FAErrgY'-75D]rrXl#-KF^tr[%W'q>UPp-74'0rr_U7-8GGu"-OuXW;?Mri\!K*rr3(c-755X +rr\c<-BWlZJcC<$JcC<$MZ82~> +h>[Mq9DTt;2fZ1rq>UP[-75\frr_755[s`mr[.UD"-k2[S,*'dS0fSFrVujD!5/4/"7IQ`1&V%R +OsVNSqYpZW/jNnFrr\N5-Cai2".U\bOmrAQ:F7Edr;Ql&-72:[s8F>FMu!ATV^rr\6--CFW/".pneL].8P-3/#\ +s8FAErrgY'-75D]rrXl#-KF^tr[%W'q>UPp-74'0rr_U7-8GGu"-OuXW;?Mri\!K*rr3(c-755X +rr\c<-BWlZJcC<$JcC<$MZ82~> +h>[Mq9DTt;2fZ1rq>UP[-75\frr_755[s`mr[.UD"-k2[S,*'dS0fSFrVujD!5/4/"7IQ`1&V%R +OsVNSqYpZW/jNnFrr\N5-Cai2".U\bOmrAQ:F7Edr;Ql&-72:[s8F>FMu!ATV^rr\6--CFW/".pneL].8P-3/#\ +s8FAErrgY'-75D]rrXl#-KF^tr[%W'q>UPp-74'0rr_U7-8GGu"-OuXW;?Mri\!K*rr3(c-755X +rr\c<-BWlZJcC<$JcC<$MZ82~> +h#@KU]PoV%-3>rXmed"d?7%#LoDee:rVlt.-774;rr^Xq-=d#Sr[%X/qu6cq-71,^F@s8N5F +0d\9Jq#:It-72jTo`+n;!5SF1"4JSD +h#@KU]PoV%-3>rXmed"d?7%#LoDee:rVlt.-774;rr^Xq-=d#Sr[%X/qu6cq-71,^F@s8N5F +0d\9Jq#:It-72jTo`+n;!5SF1"4JSD +h#@KU]PoV%-3>rXmed"d?7%#LoDee:rVlt.-774;rr^Xq-=d#Sr[%X/qu6cq-71,^F@s8N5F +0d\9Jq#:It-72jTo`+n;!5SF1"4JSD +g&D3Pd@P,7r$DG1fDPXN4shWEoDee:rVlsb-78-Urr_d<-:.V1r[%XAqZ$OAr;Qj_-780PrrYM5 +-LLX/"7[]b61OsWJL2^[qYpY?-74*:s8F>FjSAfXlm=&>rVujD!9EtU"7.?]3W8s`_'^QV.:f.( +rTsOeod_@9\,QC0YU1]QrVltP-76"srrg(`-8,)jrrYG3-L(@+"6q3[4oPE[-32cqs8F>Ks2HZ< +.^f$N#f.l8-7NK!fDYLEr[%X+q>UQ`-71bCs8FACrrYG3-LUL*"$e1[mJ6banKoSKJcC<$JcC<$ +JcCW-J,~> +g&D3Pd@P,7r$DG1fDPXN4shWEoDee:rVlsb-78-Urr_d<-:.V1r[%XAqZ$OAr;Qj_-780PrrYM5 +-LLX/"7[]b61OsWJL2^[qYpY?-74*:s8F>FjSAfXlm=&>rVujD!9EtU"7.?]3W8s`_'^QV.:f.( +rTsOeod_@9\,QC0YU1]QrVltP-76"srrg(`-8,)jrrYG3-L(@+"6q3[4oPE[-32cqs8F>Ks2HZ< +.^f$N#f.l8-7NK!fDYLEr[%X+q>UQ`-71bCs8FACrrYG3-LUL*"$e1[mJ6banKoSKJcC<$JcC<$ +JcCW-J,~> +g&D3Pd@P,7r$DG1fDPXN4shWEoDee:rVlsb-78-Urr_d<-:.V1r[%XAqZ$OAr;Qj_-780PrrYM5 +-LLX/"7[]b61OsWJL2^[qYpY?-74*:s8F>FjSAfXlm=&>rVujD!9EtU"7.?]3W8s`_'^QV.:f.( +rTsOeod_@9\,QC0YU1]QrVltP-76"srrg(`-8,)jrrYG3-L(@+"6q3[4oPE[-32cqs8F>Ks2HZ< +.^f$N#f.l8-7NK!fDYLEr[%X+q>UQ`-71bCs8FACrrYG3-LUL*"$e1[mJ6banKoSKJcC<$JcC<$ +JcCW-J,~> +eGfU-U/Lt;!B9Iq)'KG +]__X2`[3#epAFsi-33Z5rr`$C-8,8sr[%X:q>UQl-71ACrrKM`r$DM'Cp*k: +_u9T;^*Y1Lrr3(O-73C%rrXu&-MI98"8*uf1&_.O-33K0s8F>K^apfZ7J6BS!OX`]-3H,AY4;Dh +r[%X:q>UQl-71AArs-c+APkQE/Lp]Gr;QjO-78Q[rr=eF-3,cOs+13$s+13$s,-i,~> +eGfU-U/Lt;!B9Iq)'KG +]__X2`[3#epAFsi-33Z5rr`$C-8,8sr[%X:q>UQl-71ACrrKM`r$DM'Cp*k: +_u9T;^*Y1Lrr3(O-73C%rrXu&-MI98"8*uf1&_.O-33K0s8F>K^apfZ7J6BS!OX`]-3H,AY4;Dh +r[%X:q>UQl-71AArs-c+APkQE/Lp]Gr;QjO-78Q[rr=eF-3,cOs+13$s+13$s,-i,~> +eGfU-U/Lt;!B9Iq)'KG +]__X2`[3#epAFsi-33Z5rr`$C-8,8sr[%X:q>UQl-71ACrrKM`r$DM'Cp*k: +_u9T;^*Y1Lrr3(O-73C%rrXu&-MI98"8*uf1&_.O-33K0s8F>K^apfZ7J6BS!OX`]-3H,AY4;Dh +r[%X:q>UQl-71AArs-c+APkQE/Lp]Gr;QjO-78Q[rr=eF-3,cOs+13$s+13$s,-i,~> +dJj?W/1)^"rVlsJ-78]_s8FADrr=J=-3,Fls8FA@s8FACrrXYr-N3Q9!%@Fc!%7@;!4;;D!3Z8" +r[%XCq>UQq-71/>s8F>Fr;$?pr?`j>qu6`iSkJr-!\o`3nG`ik-71kTs8Fu)/GT2D"8")j3WB$\ +74'@[qYpXG-78]err`0G-7Jimr[%XEq>^F@!%\!p!,hK0!q`'Wq^)A!Nr&_Sr[%XCq>UQq-71/= +rrM1`od9V:""5KCrU^$h..\bc-\;;Ks+13$s+13-s*t~> +dJj?W/1)^"rVlsJ-78]_s8FADrr=J=-3,Fls8FA@s8FACrrXYr-N3Q9!%@Fc!%7@;!4;;D!3Z8" +r[%XCq>UQq-71/>s8F>Fr;$?pr?`j>qu6`iSkJr-!\o`3nG`ik-71kTs8Fu)/GT2D"8")j3WB$\ +74'@[qYpXG-78]err`0G-7Jimr[%XEq>^F@!%\!p!,hK0!q`'Wq^)A!Nr&_Sr[%XCq>UQq-71/= +rrM1`od9V:""5KCrU^$h..\bc-\;;Ks+13$s+13-s*t~> +dJj?W/1)^"rVlsJ-78]_s8FADrr=J=-3,Fls8FA@s8FACrrXYr-N3Q9!%@Fc!%7@;!4;;D!3Z8" +r[%XCq>UQq-71/>s8F>Fr;$?pr?`j>qu6`iSkJr-!\o`3nG`ik-71kTs8Fu)/GT2D"8")j3WB$\ +74'@[qYpXG-78]err`0G-7Jimr[%XEq>^F@!%\!p!,hK0!q`'Wq^)A!Nr&_Sr[%XCq>UQq-71/= +rrM1`od9V:""5KCrU^$h..\bc-\;;Ks+13$s+13-s*t~> +d/O3D-72:^rrXu&-MR-3r[.UD"#;2MqXOUb-Md]@-N*lG0d\7AoD\nJ-78TOrr?Ht-3.9Js8F>F +p\FgkpEh4@rVujD!;H-3Z#T-RL1.oD\pUX)^9"-379Grr;sE!;HRr[.RC"#2,Lp[eCe1+"@EJcC<$JcC<$JcC<$rr7K~> +d/O3D-72:^rrXu&-MR-3r[.UD"#;2MqXOUb-Md]@-N*lG0d\7AoD\nJ-78TOrr?Ht-3.9Js8F>F +p\FgkpEh4@rVujD!;H-3Z#T-RL1.oD\pUX)^9"-379Grr;sE!;HRr[.RC"#2,Lp[eCe1+"@EJcC<$JcC<$JcC<$rr7K~> +d/O3D-72:^rrXu&-MR-3r[.UD"#;2MqXOUb-Md]@-N*lG0d\7AoD\nJ-78TOrr?Ht-3.9Js8F>F +p\FgkpEh4@rVujD!;H-3Z#T-RL1.oD\pUX)^9"-379Grr;sE!;HRr[.RC"#2,Lp[eCe1+"@EJcC<$JcC<$JcC<$rr7K~> +d/O49-71>CrrYP6-Kaq"r[.UD"$n7\md^>V-Md]@-N*lG5pdr@oD\nY-780DrrhC1-8>2hrri0S +-77^Ms8F>FlM:G^l6[iArVujD!:'C["6q3[55"pWrmGuh-30A$rs24D-DLO2-758[rs4o;-D:C: +-72OarrYM5-Kt:*"6_'Y5lL`^-M[W?-3m2us-=uY.)YTT!rgVkr[%W2rr;sE!:'C["6q3[55kKa +MC'ZKo_\Xgr;J&@rrYP6-Kaq""$n7\mXbChs+13$s+13$s8N%K~> +d/O49-71>CrrYP6-Kaq"r[.UD"$n7\md^>V-Md]@-N*lG5pdr@oD\nY-780DrrhC1-8>2hrri0S +-77^Ms8F>FlM:G^l6[iArVujD!:'C["6q3[55"pWrmGuh-30A$rs24D-DLO2-758[rs4o;-D:C: +-72OarrYM5-Kt:*"6_'Y5lL`^-M[W?-3m2us-=uY.)YTT!rgVkr[%W2rr;sE!:'C["6q3[55kKa +MC'ZKo_\Xgr;J&@rrYP6-Kaq""$n7\mXbChs+13$s+13$s8N%K~> +d/O49-71>CrrYP6-Kaq"r[.UD"$n7\md^>V-Md]@-N*lG5pdr@oD\nY-780DrrhC1-8>2hrri0S +-77^Ms8F>FlM:G^l6[iArVujD!:'C["6q3[55"pWrmGuh-30A$rs24D-DLO2-758[rs4o;-D:C: +-72OarrYM5-Kt:*"6_'Y5lL`^-M[W?-3m2us-=uY.)YTT!rgVkr[%W2rr;sE!:'C["6q3[55kKa +MC'ZKo_\Xgr;J&@rrYP6-Kaq""$n7\mXbChs+13$s+13$s8N%K~> +i;WnYG":Qbrr_sA-8GK!"(W`*aRfH2-N3rHAL8bNnc/S8q>^F@r;Qk0-76h*rrZgZ-ICrU"-OuX +E;';6GU=btrVujD!6Y-;"4/AA>lF^%-323arr^Up-=$-A".ghd6Lb!\M^Bccs(Wl-fDGRRdO$;U +s)9;3OSSnY@jWPBq>UQ:-73:%s8FA?s8F>Np](9mCF1AcipZmLSgGdNrr;sE!6Y-;"4/AA>lF[) +74'A(qYpQTr[.RC"(W`*aRfE6AL8bNJcC<$JcC<$JcC<$rr7K~> +i;WnYG":Qbrr_sA-8GK!"(W`*aRfH2-N3rHAL8bNnc/S8q>^F@r;Qk0-76h*rrZgZ-ICrU"-OuX +E;';6GU=btrVujD!6Y-;"4/AA>lF^%-323arr^Up-=$-A".ghd6Lb!\M^Bccs(Wl-fDGRRdO$;U +s)9;3OSSnY@jWPBq>UQ:-73:%s8FA?s8F>Np](9mCF1AcipZmLSgGdNrr;sE!6Y-;"4/AA>lF[) +74'A(qYpQTr[.RC"(W`*aRfE6AL8bNJcC<$JcC<$JcC<$rr7K~> +i;WnYG":Qbrr_sA-8GK!"(W`*aRfH2-N3rHAL8bNnc/S8q>^F@r;Qk0-76h*rrZgZ-ICrU"-OuX +E;';6GU=btrVujD!6Y-;"4/AA>lF^%-323arr^Up-=$-A".ghd6Lb!\M^Bccs(Wl-fDGRRdO$;U +s)9;3OSSnY@jWPBq>UQ:-73:%s8FA?s8F>Np](9mCF1AcipZmLSgGdNrr;sE!6Y-;"4/AA>lF[) +74'A(qYpQTr[.RC"(W`*aRfE6AL8bNJcC<$JcC<$JcC<$rr7K~> +i;Wm_-74rLrr^[r-;XU?"-b,ZQ2:L_kq"r"rr;sErVlt`-758Qs8FA@s8FACrr\K4-C+H-"6h@! +=oSF'P9qWHkl1eb5UIhhpAY93-71nSrr;sE!13N]"/@1iK`1rM-30D.rr]#C-A:si"8!oe.e*HC +b9ePorAQ&aqYpj"2't9^4XMN'q>UP[-74rPrr\Q6-B\9,r[.F?r[.UD"nYG7-;F4'rr_m?-7]#p +r[%W3q>UPl-74EErrXi"-M@68!1s0:r;Qk`-75#Srr_L:4B_[`"-Y&YS:U]ks+13$s+13$s8N%K~> +i;Wm_-74rLrr^[r-;XU?"-b,ZQ2:L_kq"r"rr;sErVlt`-758Qs8FA@s8FACrr\K4-C+H-"6h@! +=oSF'P9qWHkl1eb5UIhhpAY93-71nSrr;sE!13N]"/@1iK`1rM-30D.rr]#C-A:si"8!oe.e*HC +b9ePorAQ&aqYpj"2't9^4XMN'q>UP[-74rPrr\Q6-B\9,r[.F?r[.UD"nYG7-;F4'rr_m?-7]#p +r[%W3q>UPl-74EErrXi"-M@68!1s0:r;Qk`-75#Srr_L:4B_[`"-Y&YS:U]ks+13$s+13$s8N%K~> +i;Wm_-74rLrr^[r-;XU?"-b,ZQ2:L_kq"r"rr;sErVlt`-758Qs8FA@s8FACrr\K4-C+H-"6h@! +=oSF'P9qWHkl1eb5UIhhpAY93-71nSrr;sE!13N]"/@1iK`1rM-30D.rr]#C-A:si"8!oe.e*HC +b9ePorAQ&aqYpj"2't9^4XMN'q>UP[-74rPrr\Q6-B\9,r[.F?r[.UD"nYG7-;F4'rr_m?-7]#p +r[%W3q>UPl-74EErrXi"-M@68!1s0:r;Qk`-75#Srr_L:4B_[`"-Y&YS:U]ks+13$s+13$s8N%K~> +i;Wqb-71M0pAY5<-74uUrrh.)-:Rn1rr]5I->`\]r[.UD"Q(OQ9E+hg"3WrQZ2FY$-Md]@-N*lH +h'OI;rVQTsW?rs.rr3,Y-72Cbqu6cA5^'F(rrg7e-8G;hrri3W-76V/s8F>G8,N/_"'6fr_>XE5 +-36X6qYpY!-76S.rr\3c2pD*t"7.?]4Ri@Ur&#fJ\gAbHq>U\;-76YX-9;)$rrh1*-:Ib.rri9k +-77RIs8FA?s8FACrrh:;-73^0rr\3c2pD*t"7.?]4T>B[-36X6qYpY!-76S-rrXu&-LCX0!UVrI +-33o@rrh.)-:Rn1rr]5I->`\]"Q(OQ9E+hg"3WrQZ%;q+s+13$s+13,s*t~> +i;Wqb-71M0pAY5<-74uUrrh.)-:Rn1rr]5I->`\]r[.UD"Q(OQ9E+hg"3WrQZ2FY$-Md]@-N*lH +h'OI;rVQTsW?rs.rr3,Y-72Cbqu6cA5^'F(rrg7e-8G;hrri3W-76V/s8F>G8,N/_"'6fr_>XE5 +-36X6qYpY!-76S.rr\3c2pD*t"7.?]4Ri@Ur&#fJ\gAbHq>U\;-76YX-9;)$rrh1*-:Ib.rri9k +-77RIs8FA?s8FACrrh:;-73^0rr\3c2pD*t"7.?]4T>B[-36X6qYpY!-76S-rrXu&-LCX0!UVrI +-33o@rrh.)-:Rn1rr]5I->`\]"Q(OQ9E+hg"3WrQZ%;q+s+13$s+13,s*t~> +i;Wqb-71M0pAY5<-74uUrrh.)-:Rn1rr]5I->`\]r[.UD"Q(OQ9E+hg"3WrQZ2FY$-Md]@-N*lH +h'OI;rVQTsW?rs.rr3,Y-72Cbqu6cA5^'F(rrg7e-8G;hrri3W-76V/s8F>G8,N/_"'6fr_>XE5 +-36X6qYpY!-76S.rr\3c2pD*t"7.?]4Ri@Ur&#fJ\gAbHq>U\;-76YX-9;)$rrh1*-:Ib.rri9k +-77RIs8FA?s8FACrrh:;-73^0rr\3c2pD*t"7.?]4T>B[-36X6qYpY!-76S-rrXu&-LCX0!UVrI +-33o@rrh.)-:Rn1rr]5I->`\]"Q(OQ9E+hg"3WrQZ%;q+s+13$s+13,s*t~> +i;WuZ=XGIah"gsRrg>)[3qE4K")]G4Pl1Oam6;pEao;>>-N*lGC*k9ur;Qok:F7E6r;ZaCq>^F@ +qu6b9-74uTrrh^R-76k5rr[!_-Ct)7"S5D9-@,4_")oS6EqKA6HR:(Xrr;pD!0@$W"L9@$7K!,a +r?_N*qu6f)-721Zrr3+F-72^_qYpY^-74*.rs!Kj- +i;WuZ=XGIah"gsRrg>)[3qE4K")]G4Pl1Oam6;pEao;>>-N*lGC*k9ur;Qok:F7E6r;ZaCq>^F@ +qu6b9-74uTrrh^R-76k5rr[!_-Ct)7"S5D9-@,4_")oS6EqKA6HR:(Xrr;pD!0@$W"L9@$7K!,a +r?_N*qu6f)-721Zrr3+F-72^_qYpY^-74*.rs!Kj- +i;WuZ=XGIah"gsRrg>)[3qE4K")]G4Pl1Oam6;pEao;>>-N*lGC*k9ur;Qok:F7E6r;ZaCq>^F@ +qu6b9-74uTrrh^R-76k5rr[!_-Ct)7"S5D9-@,4_")oS6EqKA6HR:(Xrr;pD!0@$W"L9@$7K!,a +r?_N*qu6f)-721Zrr3+F-72^_qYpY^-74*.rs!Kj- +hu=;U9dV2:G.Zi/r:/7/:*q;Edej%Qks$LAHe8#TY<=3ZI/X*E-N*lQkrU4=J_U"`[7M\l2sC2> +r[.I@r[.OB%-]u'-@=A=kH@#q-@Gak%I#r$-@sqIkI!l.-9(/\rrhgA-76@srtWL"-7eQbs!B'G +F!beHo(h.%.4-FXr;ZdD$nlZKDTVJFhMis2-c#]\&*Pr!-:XZ`nG;LrI3p:!kjSNOZMZ$LlhUP\ +jnpG*\bH+5l8g7=I+J)cdX*;f46c\Cr[.F?r[.LA"IUS`.)l2c&*Pr!-:XZ`nG;LrI3p:!kl1V^ +-4DPK->prrq;.)[-7?V,rt24W-8MUdpthN".a_cR-?ekMrr3Dk5:._(fD"I34XMM'r;R5j4!l;* +g\L$?8L>cCk^ibbs+13$s+13,s*t~> +hu=;U9dV2:G.Zi/r:/7/:*q;Edej%Qks$LAHe8#TY<=3ZI/X*E-N*lQkrU4=J_U"`[7M\l2sC2> +r[.I@r[.OB%-]u'-@=A=kH@#q-@Gak%I#r$-@sqIkI!l.-9(/\rrhgA-76@srtWL"-7eQbs!B'G +F!beHo(h.%.4-FXr;ZdD$nlZKDTVJFhMis2-c#]\&*Pr!-:XZ`nG;LrI3p:!kjSNOZMZ$LlhUP\ +jnpG*\bH+5l8g7=I+J)cdX*;f46c\Cr[.F?r[.LA"IUS`.)l2c&*Pr!-:XZ`nG;LrI3p:!kl1V^ +-4DPK->prrq;.)[-7?V,rt24W-8MUdpthN".a_cR-?ekMrr3Dk5:._(fD"I34XMM'r;R5j4!l;* +g\L$?8L>cCk^ibbs+13$s+13,s*t~> +hu=;U9dV2:G.Zi/r:/7/:*q;Edej%Qks$LAHe8#TY<=3ZI/X*E-N*lQkrU4=J_U"`[7M\l2sC2> +r[.I@r[.OB%-]u'-@=A=kH@#q-@Gak%I#r$-@sqIkI!l.-9(/\rrhgA-76@srtWL"-7eQbs!B'G +F!beHo(h.%.4-FXr;ZdD$nlZKDTVJFhMis2-c#]\&*Pr!-:XZ`nG;LrI3p:!kjSNOZMZ$LlhUP\ +jnpG*\bH+5l8g7=I+J)cdX*;f46c\Cr[.F?r[.LA"IUS`.)l2c&*Pr!-:XZ`nG;LrI3p:!kl1V^ +-4DPK->prrq;.)[-7?V,rt24W-8MUdpthN".a_cR-?ekMrr3Dk5:._(fD"I34XMM'r;R5j4!l;* +g\L$?8L>cCk^ibbs+13$s+13,s*t~> +hZ!ZNL+N$F!G^]krrM(Vq'H,pr;HZp-N!fDiCs%o!D(rAs8FA@s8FAArrM(Vq'H,pr;6KpiCs%o +!D(r9rrf)D-8G>grsS``-75Jes!B'BoO7SC!A(;Ks8ODI.eI0G-35Zuqu6]M9(sY5:>P@Of-35XhpAY0Q9_g"9:?26Or[.F?r[.I@"E5\72WOf:!SL*>-36ltrVumE!\3hNqBc4o +X8Dntrb_KY"#\4#[/;9LrrM(Vq'H,pr;6KpiCs%o!D(pqs+13$s+13$s+p]*~> +hZ!ZNL+N$F!G^]krrM(Vq'H,pr;HZp-N!fDiCs%o!D(rAs8FA@s8FAArrM(Vq'H,pr;6KpiCs%o +!D(r9rrf)D-8G>grsS``-75Jes!B'BoO7SC!A(;Ks8ODI.eI0G-35Zuqu6]M9(sY5:>P@Of-35XhpAY0Q9_g"9:?26Or[.F?r[.I@"E5\72WOf:!SL*>-36ltrVumE!\3hNqBc4o +X8Dntrb_KY"#\4#[/;9LrrM(Vq'H,pr;6KpiCs%o!D(pqs+13$s+13$s+p]*~> +hZ!ZNL+N$F!G^]krrM(Vq'H,pr;HZp-N!fDiCs%o!D(rAs8FA@s8FAArrM(Vq'H,pr;6KpiCs%o +!D(r9rrf)D-8G>grsS``-75Jes!B'BoO7SC!A(;Ks8ODI.eI0G-35Zuqu6]M9(sY5:>P@Of-35XhpAY0Q9_g"9:?26Or[.F?r[.I@"E5\72WOf:!SL*>-36ltrVumE!\3hNqBc4o +X8Dntrb_KY"#\4#[/;9LrrM(Vq'H,pr;6KpiCs%o!D(pqs+13$s+13$s+p]*~> +h#@cKWGkNh.k3DFC7+&Trs8P.C-aF(7XWeas8FAArsAV-C-F1"4__+rqZ$OAq>^F@q>U`uZ>)ZW +/k16>q#:ZuY\H?Q/3R^NqXXXg:*q<0o)AlB-72Lfs8FAFrs,uM5qXl_K\lS*r[.[F#I\M9/honM +hYI0ZqmpuH2(C%3:3s_Tm/I&gr[%W%p\t5Er[%VQo`#6qZ"lQT/jXE`rVHQn-M[W?-MdZFp.cq] +:A=bf$i@MZ:,OLM1erA4rqufq-NF)N[VeA`0h?uSq>V$*Y$En50i=G.s8W(k4t&*Yr;R'#Z>)ZW +/k16>q#:ZuY\H?Q/3R^NqLSZts+13$s+13*s*t~> +h#@cKWGkNh.k3DFC7+&Trs8P.C-aF(7XWeas8FAArsAV-C-F1"4__+rqZ$OAq>^F@q>U`uZ>)ZW +/k16>q#:ZuY\H?Q/3R^NqXXXg:*q<0o)AlB-72Lfs8FAFrs,uM5qXl_K\lS*r[.[F#I\M9/honM +hYI0ZqmpuH2(C%3:3s_Tm/I&gr[%W%p\t5Er[%VQo`#6qZ"lQT/jXE`rVHQn-M[W?-MdZFp.cq] +:A=bf$i@MZ:,OLM1erA4rqufq-NF)N[VeA`0h?uSq>V$*Y$En50i=G.s8W(k4t&*Yr;R'#Z>)ZW +/k16>q#:ZuY\H?Q/3R^NqLSZts+13$s+13*s*t~> +h#@cKWGkNh.k3DFC7+&Trs8P.C-aF(7XWeas8FAArsAV-C-F1"4__+rqZ$OAq>^F@q>U`uZ>)ZW +/k16>q#:ZuY\H?Q/3R^NqXXXg:*q<0o)AlB-72Lfs8FAFrs,uM5qXl_K\lS*r[.[F#I\M9/honM +hYI0ZqmpuH2(C%3:3s_Tm/I&gr[%W%p\t5Er[%VQo`#6qZ"lQT/jXE`rVHQn-M[W?-MdZFp.cq] +:A=bf$i@MZ:,OLM1erA4rqufq-NF)N[VeA`0h?uSq>V$*Y$En50i=G.s8W(k4t&*Yr;R'#Z>)ZW +/k16>q#:ZuY\H?Q/3R^NqLSZts+13$s+13*s*t~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcERdr[..7r[*3rli6r2JcC<$JcC<$JcC<$_uG5~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +ir=T+JbjroJbjroJbjroJbkB&k5Tr~> +ir=T+JbjroJbjroJbjroJbkB&k5Tr~> +ir=T+JbjroJbjroJbjroJbkB&k5Tr~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +ir=SmJ`hUIJ`hUIJ`hUIJ`i$Uk5Tr~> +ir=SmJ`hUIJ`hUIJ`hUIJ`i$Uk5Tr~> +ir=SmJ`hUIJ`hUIJ`hUIJ`i$Uk5Tr~> +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AM>2YGp<8*_JbXfkJbXfkJb\d1gW]WkgW]6`!9`MEJ,~> +ir9#AM>2YGp<8*_JbXfkJbXfkJb\d1gW]WkgW]6`!9`MEJ,~> +ir9#AM>2YGp<8*_JbXfkJbXfkJb\d1gW]WkgW]6`!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#Ad.mWb]_DKNJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#Ad.mWb]_DKNJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#Ad.mWb]_DKNJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#Ao(W9EKD5?>!krllr:g;IM=C +ir9#Ao(W9EKD5?>!krllr:g;IM=C +ir9#Ao(W9EKD5?>!krllr:g;IM=C +ir9#Ao(W9pGM2ri!h4D!rV-HTGHUH1s*)-N!6k-9rA+HRrA+HRrA4BOqD8!J"#KuW1ZA?61Wo^t +b^oP?pjr3kpjr3kq!n+Zbk1oAk$>@#1GcGG?g74_!6kE:!6k-9!($?8!(-AY!6k$/!9`MEJ,~> +ir9#Ao(W9pGM2ri!h4D!rV-HTGHUH1s*)-N!6k-9rA+HRrA+HRrA4BOqD8!J"#KuW1ZA?61Wo^t +b^oP?pjr3kpjr3kq!n+Zbk1oAk$>@#1GcGG?g74_!6kE:!6k-9!($?8!(-AY!6k$/!9`MEJ,~> +ir9#Ao(W9pGM2ri!h4D!rV-HTGHUH1s*)-N!6k-9rA+HRrA+HRrA4BOqD8!J"#KuW1ZA?61Wo^t +b^oP?pjr3kpjr3kq!n+Zbk1oAk$>@#1GcGG?g74_!6kE:!6k-9!($?8!(-AY!6k$/!9`MEJ,~> +ir9#Ao(W:FGHh)A"SI/4GjGA('u>+Dq"WR0I!_.1q"XE(LZ"):pigr]p_2b@Qh9^IL3n]bpA"6' +JD603KY79Y#02jQI?28>rqHZLP^A4up\spki1#.BQIkX$!6k-9%9#&=;u]cP1K4=Y1B9`6rrC:6 +p]0L>s*t~> +ir9#Ao(W:FGHh)A"SI/4GjGA('u>+Dq"WR0I!_.1q"XE(LZ"):pigr]p_2b@Qh9^IL3n]bpA"6' +JD603KY79Y#02jQI?28>rqHZLP^A4up\spki1#.BQIkX$!6k-9%9#&=;u]cP1K4=Y1B9`6rrC:6 +p]0L>s*t~> +ir9#Ao(W:FGHh)A"SI/4GjGA('u>+Dq"WR0I!_.1q"XE(LZ"):pigr]p_2b@Qh9^IL3n]bpA"6' +JD603KY79Y#02jQI?28>rqHZLP^A4up\spki1#.BQIkX$!6k-9%9#&=;u]cP1K4=Y1B9`6rrC:6 +p]0L>s*t~> +ir9#Anb<-BL]7&Of6>hj`;]O(Sp^2*iHp^Ll'6PMq"8i_VWROGGB`iWl\C\ppn2iPnuHuBq"AoV +R-!_%GKfjW]m$CBm\Y3?q"WipU[b[7^A.KcI?3OROa>mSp]/Otrr=kIrr=kQrr>^Qrr=jtrrC8o +pjr3kpjr3kpjr51p]/P1rrBV*1B>&ZrrC:Ap]/OorrC:6p]0L>s*t~> +ir9#Anb<-BL]7&Of6>hj`;]O(Sp^2*iHp^Ll'6PMq"8i_VWROGGB`iWl\C\ppn2iPnuHuBq"AoV +R-!_%GKfjW]m$CBm\Y3?q"WipU[b[7^A.KcI?3OROa>mSp]/Otrr=kIrr=kQrr>^Qrr=jtrrC8o +pjr3kpjr3kpjr51p]/P1rrBV*1B>&ZrrC:Ap]/OorrC:6p]0L>s*t~> +ir9#Anb<-BL]7&Of6>hj`;]O(Sp^2*iHp^Ll'6PMq"8i_VWROGGB`iWl\C\ppn2iPnuHuBq"AoV +R-!_%GKfjW]m$CBm\Y3?q"WipU[b[7^A.KcI?3OROa>mSp]/Otrr=kIrr=kQrr>^Qrr=jtrrC8o +pjr3kpjr3kpjr51p]/P1rrBV*1B>&ZrrC:Ap]/OorrC:6p]0L>s*t~> +ir9#Anb=-4GMW&h[=n=:ReZ[OI@^0.VK^G_psXG_q"T&WcMmV=G;T*aO,rc)pjIAXq!*9oq"T&W +cM71`GFJ=%Q@.umpucjXq"Ub2h>$>_PPFpOGLlQads%PVp]/P2rs_m_1K4UomEBR"01]RJ2s&(X/J,]I7lSRf)ml9e9l8@o!J4)bOnc/JT`D8Gm1]RLKDk@!@:H2@us8+pm +9/gYRs8U_a5 +ir9#Anb=-4GMW&h[=n=:ReZ[OI@^0.VK^G_psXG_q"T&WcMmV=G;T*aO,rc)pjIAXq!*9oq"T&W +cM71`GFJ=%Q@.umpucjXq"Ub2h>$>_PPFpOGLlQads%PVp]/P2rs_m_1K4UomEBR"01]RJ2s&(X/J,]I7lSRf)ml9e9l8@o!J4)bOnc/JT`D8Gm1]RLKDk@!@:H2@us8+pm +9/gYRs8U_a5 +ir9#Anb=-4GMW&h[=n=:ReZ[OI@^0.VK^G_psXG_q"T&WcMmV=G;T*aO,rc)pjIAXq!*9oq"T&W +cM71`GFJ=%Q@.umpucjXq"Ub2h>$>_PPFpOGLlQads%PVp]/P2rs_m_1K4UomEBR"01]RJ2s&(X/J,]I7lSRf)ml9e9l8@o!J4)bOnc/JT`D8Gm1]RLKDk@!@:H2@us8+pm +9/gYRs8U_a5 +ir9#Anb=-^GI7/?PGS&aH11O]GJj4NLNi+[q!<3[q"T&WmJcn\G6@K(Ms^N=",D*.oDJC`G6R:, +q!<3[qY1g:4gY0jA,hFInFMius8P01k5507s6a6ls8PI9qmTf0s"o,gnsk1/s')l)oUJk[s*p7* +^0CX;LRIW(R@!RG!6g#hJbXfkJbXfkJb\d1!6k-9rA+Q=s8V9\1\LbJbl.;:bk:u962*/86M:?Y +bjtN/kN;ep~> +ir9#Anb=-^GI7/?PGS&aH11O]GJj4NLNi+[q!<3[q"T&WmJcn\G6@K(Ms^N=",D*.oDJC`G6R:, +q!<3[qY1g:4gY0jA,hFInFMius8P01k5507s6a6ls8PI9qmTf0s"o,gnsk1/s')l)oUJk[s*p7* +^0CX;LRIW(R@!RG!6g#hJbXfkJbXfkJb\d1!6k-9rA+Q=s8V9\1\LbJbl.;:bk:u962*/86M:?Y +bjtN/kN;ep~> +ir9#Anb=-^GI7/?PGS&aH11O]GJj4NLNi+[q!<3[q"T&WmJcn\G6@K(Ms^N=",D*.oDJC`G6R:, +q!<3[qY1g:4gY0jA,hFInFMius8P01k5507s6a6ls8PI9qmTf0s"o,gnsk1/s')l)oUJk[s*p7* +^0CX;LRIW(R@!RG!6g#hJbXfkJbXfkJb\d1!6k-9rA+Q=s8V9\1\LbJbl.;:bk:u962*/86M:?Y +bjtN/kN;ep~> +ir9#AnG*$?)YifHa8"S:anW;gkP4guGP:h,p31iXpigrUrqQM;!hsnYrV-QJJ9Q@4e,K.BG7=0> +q"8iYq"XR!PC\#YGQ7F>H[#5]p],X;G6!![p]/P2rs_m_1K4Ugnmf3=I +1]RJ2s8OnPrtD;Ls)Nm9s)=n99BH3Rkt;!U1ZSK7"#Jq6Z2Xb) +ir9#AnG*$?)YifHa8"S:anW;gkP4guGP:h,p31iXpigrUrqQM;!hsnYrV-QJJ9Q@4e,K.BG7=0> +q"8iYq"XR!PC\#YGQ7F>H[#5]p],X;G6!![p]/P2rs_m_1K4Ugnmf3=I +1]RJ2s8OnPrtD;Ls)Nm9s)=n99BH3Rkt;!U1ZSK7"#Jq6Z2Xb) +ir9#AnG*$?)YifHa8"S:anW;gkP4guGP:h,p31iXpigrUrqQM;!hsnYrV-QJJ9Q@4e,K.BG7=0> +q"8iYq"XR!PC\#YGQ7F>H[#5]p],X;G6!![p]/P2rs_m_1K4Ugnmf3=I +1]RJ2s8OnPrtD;Ls)Nm9s)=n99BH3Rkt;!U1ZSK7"#Jq6Z2Xb) +ir9#AnG!EuGN$klkP4h-U%jk2rqHkIGP:h,olk`Wpigr\q#>O?Ko^fMrV.H'`L(jn^%hAHGP:h, +oQP`Ypp#%2iUcbeGPLr\GP1k.!d](_m.^S)ir9!7q>Ug]qu?]l1]RJ2s8OnPrtFZ[nNZ>)nN?(9 +3;`aUr&F`V1]@=Q"#EJ1ao;;WjF]j'c2[f"qu?]n2uip7ECDiD1]RJ6qu$Ho2uPN43qWFPb^oP? +pjr3kpjr3kq!n+Zbk:uDh4lb^BBJ>h1GbNOp&>$9rV-B:h>[K!o(W4Jk5Tr~> +ir9#AnG!EuGN$klkP4h-U%jk2rqHkIGP:h,olk`Wpigr\q#>O?Ko^fMrV.H'`L(jn^%hAHGP:h, +oQP`Ypp#%2iUcbeGPLr\GP1k.!d](_m.^S)ir9!7q>Ug]qu?]l1]RJ2s8OnPrtFZ[nNZ>)nN?(9 +3;`aUr&F`V1]@=Q"#EJ1ao;;WjF]j'c2[f"qu?]n2uip7ECDiD1]RJ6qu$Ho2uPN43qWFPb^oP? +pjr3kpjr3kq!n+Zbk:uDh4lb^BBJ>h1GbNOp&>$9rV-B:h>[K!o(W4Jk5Tr~> +ir9#AnG!EuGN$klkP4h-U%jk2rqHkIGP:h,olk`Wpigr\q#>O?Ko^fMrV.H'`L(jn^%hAHGP:h, +oQP`Ypp#%2iUcbeGPLr\GP1k.!d](_m.^S)ir9!7q>Ug]qu?]l1]RJ2s8OnPrtFZ[nNZ>)nN?(9 +3;`aUr&F`V1]@=Q"#EJ1ao;;WjF]j'c2[f"qu?]n2uip7ECDiD1]RJ6qu$Ho2uPN43qWFPb^oP? +pjr3kpjr3kq!n+Zbk:uDh4lb^BBJ>h1GbNOp&>$9rV-B:h>[K!o(W4Jk5Tr~> +ir9#AnG!.CGJ15:rqHW"Id_QfrqHkVGO5,"m!"6[pigr\q#>O@l/mD]p\X_)cZb';pigrKq"X0! +L\UXqGO"tulZ[RJpka4^qtL5LGNeDg!6k-9%9#&=;u]cP1K4 +ir9#AnG!.CGJ15:rqHW"Id_QfrqHkVGO5,"m!"6[pigr\q#>O@l/mD]p\X_)cZb';pigrKq"X0! +L\UXqGO"tulZ[RJpka4^qtL5LGNeDg!6k-9%9#&=;u]cP1K4 +ir9#AnG!.CGJ15:rqHW"Id_QfrqHkVGO5,"m!"6[pigr\q#>O@l/mD]p\X_)cZb';pigrKq"X0! +L\UXqGO"tulZ[RJpka4^qtL5LGNeDg!6k-9%9#&=;u]cP1K4 +ir9#An+[!?R$4QLp]T5n[s-I'p^=!DdJ3LcGGk62GBa#\s*+M<1<4UOq"UJ4lM0poJGAn`GL?3\ +dW_;XpjIAXq"VXKGPCm3GLlQTHB@psX*;Y[pu@(/nb<+.p&FtH!<UnPTCV;p +1]RJ2s8P+=q>C7)VDtLRV`COPs,Ys8S7SnF`Mko`"p8JbXfkJbXfkJbXfknb<+.o`"o&q(i"Vo`"p8rV-B:p&>"XpG2e9 +p&>$9o(W4Jk5Tr~> +ir9#An+[!?R$4QLp]T5n[s-I'p^=!DdJ3LcGGk62GBa#\s*+M<1<4UOq"UJ4lM0poJGAn`GL?3\ +dW_;XpjIAXq"VXKGPCm3GLlQTHB@psX*;Y[pu@(/nb<+.p&FtH!<UnPTCV;p +1]RJ2s8P+=q>C7)VDtLRV`COPs,Ys8S7SnF`Mko`"p8JbXfkJbXfkJbXfknb<+.o`"o&q(i"Vo`"p8rV-B:p&>"XpG2e9 +p&>$9o(W4Jk5Tr~> +ir9#An+[!?R$4QLp]T5n[s-I'p^=!DdJ3LcGGk62GBa#\s*+M<1<4UOq"UJ4lM0poJGAn`GL?3\ +dW_;XpjIAXq"VXKGPCm3GLlQTHB@psX*;Y[pu@(/nb<+.p&FtH!<UnPTCV;p +1]RJ2s8P+=q>C7)VDtLRV`COPs,Ys8S7SnF`Mko`"p8JbXfkJbXfkJbXfknb<+.o`"o&q(i"Vo`"p8rV-B:p&>"XpG2e9 +p&>$9o(W4Jk5Tr~> +ir9#An+[!jH[baF*-jnRe\RddV,]D20bItm(NQZp78p]/P2rs_m_1K4 +ir9#An+[!jH[baF*-jnRe\RddV,]D20bItm(NQZp78p]/P2rs_m_1K4 +ir9#An+[!jH[baF*-jnRe\RddV,]D20bItm(NQZp78p]/P2rs_m_1K4 +ir9#An+["?GB`EPp]@@;T`"Qggm +ir9#An+["?GB`EPp]@@;T`"Qggm +ir9#An+["?GB`EPp]@@;T`"Qggm +ir9#A^A._PcM.C`UAk3Lf`(rqJbXfkJbXfkJbXfknb<+.h>[K!rV-B:h>[K!o(W4Jk5Tr~> +ir9#A^A._PcM.C`UAk3Lf`(rqJbXfkJbXfkJbXfknb<+.h>[K!rV-B:h>[K!o(W4Jk5Tr~> +ir9#A^A._PcM.C`UAk3Lf`(rqJbXfkJbXfkJbXfknb<+.h>[K!rV-B:h>[K!o(W4Jk5Tr~> +ir9#A^A._PcM.C`UAk3Lf`(rqJbXfkJbXfkJbXfknb<+.h>[K!rV-B:h>[K!o(W4Jk5Tr~> +ir9#A^A._PcM.C`UAk3Lf`(rqJbXfkJbXfkJbXfknb<+.h>[K!rV-B:h>[K!o(W4Jk5Tr~> +ir9#A^A._PcM.C`UAk3Lf`(rqJbXfkJbXfkJbXfknb<+.h>[K!rV-B:h>[K!o(W4Jk5Tr~> +ir9#A^A._PcM.C`JcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#A^A._PcM.C`JcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#A^A._PcM.C`JcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#A^A._PcM.C`JcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#A^A._PcM.C`JcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#A^A._PcM.C`JcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>.(pJcGNF!6g#hJbXfkJbXfkJb\d1!6j:!!6kE:!6j:!!6k$/!9`MEJ,~> +ir9#AM>2YGp<8*_JbXfkJbXfkJb\d1gW]WkgW]6`!9`MEJ,~> +ir9#AM>2YGp<8*_JbXfkJbXfkJb\d1gW]WkgW]6`!9`MEJ,~> +ir9#AM>2YGp<8*_JbXfkJbXfkJb\d1gW]WkgW]6`!9`MEJ,~> +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir9#AJbXfkJbXfkJbXfkJbXfkO8&_ +ir=SmJ`hUIJ`hUIJ`hUIJ`i$Uk5Tr~> +ir=SmJ`hUIJ`hUIJ`hUIJ`i$Uk5Tr~> +ir=SmJ`hUIJ`hUIJ`hUIJ`i$Uk5Tr~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +c2Rpd_lKAurLF(\T!$#ZJcC<$JcC<$JcC<$JcC<$Q2c@~> +c2S6sd)Ei>aNMcJ`50F>eq*jPs+13$s+13$s+13$s- +c2S6YRpIrt*#'),,W0;1_L_` +d/O0hX.AmN!h,UaJcC<$JcC<$JcC<$JcC<$QiDR~> +d/O?t`Q69Lcd'i7c2Z)hcN;>/`I\&?s+13$s+13$s+13$s-Nb9~> +d/O0R?6&S;!X0ioJcC<$JcC<$JcC<$JcC<$QiDR~> +df0?cSaDgGT#?3[JcC<$JcC<$JcC<$JcD2=J,~> +df0Kt_p-NPc1T9ac-FYZ_9@K1JcC<$JcC<$JcC<$JcD2=J,~> +df0?;/+*B=!]@$0s+13$s+13$s+13$s+13=s*t~> +eGfQeS*?=AU""YnJcC<$JcC<$JcC<$JcD8?J,~> +eGfWq`6cfsbl>rh_qBV@JcC<$JcC<$JcC<$JcD8?J,~> +eGfQF,j>:04N2mOJcC<$JcC<$JcC<$JcD8?J,~> +ec,WKjd?+SJcC<$JcC<$JcC<$JcC<$Sc=3~> +ec,]icHb[u!mf*0JcC<$JcC<$JcC<$JcC<$Sc=3~> +ec,VLjo>D`G_,mGs+13$s+13$s+13$s.01?~> +fDblnRcBe9SUpfls+13$s+13$s+13$s.97@~> +fDbp!a3Wnl!mT'/JcC<$JcC<$JcC<$JcC<$T)X<~> +fDblX'B9&m.tR_Os+13$s+13$s+13$s.97@~> +f`(rZi0aV7e:IXNs+13$s+13$s+13$s.KCB~> +f`)#lbg,7m!mep?JcC<$JcC<$JcC<$JcC<$T`9N~> +f`(u+!oX+['?,P&JcC<$JcC<$JcC<$JcDDCJ,~> +g&D&Xh3iioJcC<$JcC<$JcC<$JcDDCJ,~> +g&D,mcHY=l!RAf +g&D%sh>dN^JcC<$JcC<$JcC<$JcC<$T`9N~> +gA_/\gR/&kJcC<$JcC<$JcC<$JcC<$UAo`~> +gA_5ncHY7j!m\sAJcC<$JcC<$JcC<$JcC<$UAo`~> +gA_/,g].?Z`I\&?s+13$s+13$s+13$s.]OD~> +g]%8hfpREkJcC<$JcC<$JcC<$JcDJEJ,~> +g]%>tbg"tf!RAi=s+13$s+13$s+13$s+13Es*t~> +g]%;J!o!\T%tXb3s+13$s+13$s+13$s.]OD~> +g],oo!1SQ>JcC<$JcC<$JcC<$JcDMFJ,~> +g]%;rcJ-PDcGY;6JcC<$JcC<$JcC<$JcDMFJ,~> +g]%6[f`2!tJcC<$JcC<$JcC<$JcC<$U]5i~> +h#@ADf9lWAJcC<$JcC<$JcC<$JcC<$V#Pr~> +h#@DncIpDBcc(J8JcC<$JcC<$JcC<$JcDPGJ,~> +h#@@"f)PebJcC<$JcC<$JcC<$JcC<$V#Pr~> +h>[J_eX6EbJcC<$JcC<$JcC<$JcC<$V>l&~> +h>[Mpce-GCc-4ais+13$s+13$s+13$s+13Hs*t~> +h>[J/ec5^P_L_` +h>bum!1e]@JcC<$JcC<$JcC<$JcDSHJ,~> +h>[Muc.C/?cbk>6JcC<$JcC<$JcC<$JcDSHJ,~> +h>[HceGoS"JcC<$JcC<$JcC<$JcC<$V>l&~> +hZ!SYe!U3RJcC<$JcC<$JcC<$JcC<$VZ2/~> +hZ!Vqcdg5?ccq%@JcC<$JcC<$JcC<$JcDVIJ,~> +hZ!Ridf9BDJcC<$JcC<$JcC<$JcC<$VZ2/~> +hZ)#l!1ic^q^)Fp2d)O +hZ!SteB@s=_t=!+-3PbV=d\aSrrQj\?hs`u-3P\T@C#n*s8OFQs8OFnrrPtC^\Ig4^EubV-74 +hZ!T_!n72M/+il=-3PbV=d\aSrrQj\?hs`u-3P\T@C#n*s8OFQs8OFnrrPtC^\Ig4^EubV-74 +hu<\ad@'Y,pEfo)iqiZXlR=>2jSJoM-37o[pAb.>n,EE_-I2VlU*fj=s!H.n!i./]q#:M8-D^Yg +-@u2Js+13$s+13$s+14Ks*t~> +hu<_rcdU)-N3uE-IMhpUaC$Trrm9e +V#MbgJcC<$JcC<$JcC<$JcG]KJ,~> +hu<\1d/`h=pEfo)iqiZXlR=>2jSJoM-37o[pAb.>n,EE_-I2VlU*fj=s!H.n!i./]q#:M8-D^Yg +-@u2Js+13$s+13$s+14Ks*t~> +hu<\Grgap&G%=rVm&rjK(HjCARr5RjO4DPPY=Z-N*lIpYD#a-D:)4 +s!I47!Hog8rrI9ibPq\7/1g>frr_dA/Fe;kJcC<$JcC<$JcC<$qYu'~> +hu<_qd/M8abP9<[bPTNYbPTKacc,SWs!I^E"o./[4=4h>rref +n,EE3-I2VlFsbE4"7[onnbW7fnLH0\JcC<$JcC<$JcC<$JcGTHJ,~> +hu<[%d/X/Qp&G%=rVm&rjK(HjCARr5RjO4DPPY=Z-N*lIpYD#a-D:)4s!I47!Hog8rrI9ibPq\7 +/1g>frr_dA/Fe;kJcC<$JcC<$JcC<$qYu'~> +huEYC!1`nX!hPjHqO%>Prgs1\qjI8P!h>RCr0[PRp&G%=qYpWA-8GAs"\:]N2a[N@s8OGArrT,G +:A4_f-L^s89.%sa!D=c^rrR3fW;?MqV^?J9s+13$s+13$s+13$s7u\F~> +huEZ!!7(Dd!R/^^bl5ogcMPi]cN;D7bPfWccH#VXs!IUB!mN&HqYp^i3r1d%rql`q-MdZCW$Y:5 +s8OG7rrGb>cMmo<-Hc>iE[Ia]rrT)FF+O@Bs+13$s+13$s+14Gs*t~> +huUMp +-;O:7s!I47!D=cbrrGb>b5VN`-E-e@!iIAdJcC<$JcC<$JcC<$JcGQGJ,~> +i;WekrgqYpWh-8bW"#0nQJ +s+;Z>qu?[Cq>UNh-8"rks!IaF$1fK8s2eV)/Q&ePrrAGa-31FPrs$ed3\!+&aSl,MnKpj)JN,=_ +s6YS4/h0&,g\_!W`b.7]6^7BGs-W^2"18(T-N*lJ`F_%Y2e'DtrsA9D8cQn>1bDS0r;R#IDa#[, +9Te`:rrU1e=8Mq$<[Pofs!B)jrs[4j3\!+&aT);&-8PPurrQ@N=T/7.r\Z%bs8UD^3\!+&aSl,C +nKpj)JN,<6s+13$s+13$s+13Us*t~> +i;Wu*ccjVSjSJcVqt&I^r6,2`iVr`[p!1b)bfe?/qtpTopuorFr6,/fpAb.>qYpWh-8bW"#0nQJ +s+;Z>qu?[Cq>UNh-8"rks!IaF$1fK8s2eV)/Q&ePrrAGa-31FPrs$ed3\!+&aSl,MnKpj)JN,=_ +s6YS4/h0&,g\_!W`b.7]6^7BGs-W^2"18(T-N*lJ`F_%Y2e'DtrsA9D8cQn>1bDS0r;R#IDa#[, +9Te`:rrU1e=8Mq$<[Pofs!B)jrs[4j3\!+&aT);&-8PPurrQ@N=T/7.r\Z%bs8UD^3\!+&aSl,C +nKpj)JN,<6s+13$s+13$s+13Us*t~> +i;WeAr;ZhBqX=RO_E7So!,2B$!R1rL!!*VjqsX^Th2DO7!!'A!s8OGBrrVg>2#I:Wc6e2DK-n\: +s8OGArrVj?/b]5E-N=#Oo-R'/a^6kV;6g-#!1<[2!4;b*#1%-I.QD+_rVmH!-;")c3%t=3m>"4b +.R%t/qu6uBB/hD/Pkb:YR/A95[/VI"r;Qu?AiD1u@_;U=$1fK8s2eV)/Q&eNrs-hf4tAB^OmVoC +!lcQgqYpb#-HQ5e-78Zj%*rcO.QD+_s8V4.1B%1O!a6pQrVm<*2(%Jcs3GOC.QD+_rVm)l-;")c +3%oj_JcC<$JcC<$JcE%UJ,~> +i;WeKrg8 +s8OGArrVC22tm:O-N=#JqBePJ.f:Uq\,ZJqr$DQRs8T2Lq^)<"9(V6i;ET[h^1_i +s8ODmrVlo#./P=pU]:?b-Ir+q"SO>o.eWf@#1k1ms8T2Lq^)< +i;WtsccjVSk4nrXr7]<-Mm`D`?o0nrs!fsdf7fDFo24= +-MdZCkU&7^s8OGFrri0F6H(GP-3LaWs-W^2"LS4/XXO&n!2KPn"8O90R/SE6s5lH@-35^HrVlki +q^)DBq#?`Z-3LXT-78]k!1Wg3!0.!X"SsH3`@Cd4!4Vt-!OsQT-366lq#:Hq671Xgrs.F.6iR,c +-78]k!NddI-3^1Es%"Kerr3,p.jun?rr32S-:n1:XXO&n!2KPn"8O90R/SF`s+13$s+13$s+13U +s*t~> +i;Wd7r;ZhMq#:Bd7f*/c_YsK77f<;f&,,eu!N6>&!;6Bl-Mm`D`?o0nrs!fsdf7fDFo24=-MdZC +kU&7^s8OGFrri0F6H(GP-3LaWs-W^2"LS4/XXO&n!2KPn"8O90R/SE6s5lH@-35^HrVlkiq^)DB +q#?`Z-3LXT-78]k!1Wg3!0.!X"SsH3`@Cd4!4Vt-!OsQT-366lq#:Hq671Xgrs.F.6iR,c-78]k +!NddI-3^1Es%"Kerr3,p.jun?rr32S-:n1:XXO&n!2KPn"8O90R/SF`s+13$s+13$s+13Us*t~> +i;WeJrg=pmbl@_+aiqlXq>^K`R[9G1QE'i^r;Q`GPaRr+TDANbci2,gkPkJ^]9N8^!1roas!I^E +"oIG]3&K:crrVmK8cJ_k9J5u8s8OGArrSrB>PA*s-N=#Pr['NiJEHa^;^P`Is8OGEruU,L.#m0[ +j-M5Eh>dNR-9",fp%892-<&4^oZU/Z?iL'3g*eGHme4do-BA**s!I^Es!IaF(Y:&^MV\$dQR=-+ +s8W'F2F;rVqq4mp>Q4X/81'8TqXVFmDrr3e/-A2?W.k$D8pu@\j.Gb%(r?aHeWV,n7s+13$s+13$s+13Us*t~> +i;Y+Ec-4DQk5YJQjQ>Ogr;Zfkbfe5Sb16Ijrr<#_b08)Qci!hBkl0]EoD\ajh9,`@!RJLRs8OGE +rrr;^WAl`er;Qil0hMBE!_b6=r;ZdDq>UMk- +ci=%E-8n2@k53h1-[5UL[KrrSH4OSo+[O!^4ms8OGFrsn!<.#m0[j-M5Eh>`*S +T`4ro_^9+F_>aHNU*bNmi@?=9i:u?!.Oj3Rs8=9'5,n5IJcC<$JcC<$JcC<$ZN#F~> +i;Wcsr;ZqMs8Tt8J-DA1s8UXRr;[$PpAasfs-*B]":t#%q2#$#"N(0PA*s-N=#Pr['NiJEHa^;^P`Is8OGEruU,L.#m0[j-M5E +h>dNR-9",fp%892-<&4^oZU/Z?iL'3g*eGHme4do-BA**s!I^Es!IaF(Y:&^MV\$dQR=-+s8W'F +2F;rVqq4mp>Q4X/81'8TqXVFmDrr3e/-A2?W.k$D8pu@\j.Gb%(r?aHeWV,n7s+13$s+13$s+13Us*t~> +i;WeGrgqt16rrUe!0`M(RJL6KWrrUb(>Q4[&-N3uE-N=#HIjTO?rrR`uI/a0G-3/5frrUUq +1]ICU.jjldrrUP(@JBd(k9iRprr3*"5q)!ss8OGFrrRp%Qi-jfPpV:d^F!aqrre6,a!Q]Crs!9d +^]0$8Qi-jbPpV:cs8ODGJq +i;X,-c-4DQk5YJB`;[h$f_tjJccaPValEF$m/$bWcHFGTci!h@bf@fGb3o<0k/dPG!RAUVs7muC +.X0eIrrT>MRK!3fSL1?6s8OGDrrr>\N@Q?_pAb.>rVumE!-\>@!n&DOrVumErVlqR-C=Z1!gP*f +rrH!!eD\[rVlrM/mJ>Ts!I^Es!IaF!e2PDr;QhL-@Ggms!@_hrVlrI +-8YZ$!\5VhrVlrG1h$.Y"6V$trr2p"r]qssrr +i;Wc`r;ZqMs8R?B!!GCXs76d"!!dQErhJNRh$O&\!tXo$nGN=i"K;A#JG]BI/,'#=-3>Z@hu!ET +XsTS9rrS`[j!eD\Grr@!n&DOrr3$M +-M.39!mic4p\t?Y-UIb2rr`6d.-^a2s!IaF!er%gr;Qtd-AVW9->WV\"H+VI-Aqg&#&GX$s+Vke +r;Qh`-AVU#s!@_tJcC<$JcC<$JcC<$YQ'+~> +iVrntrL#-ubl@^eOI);sU\k)dT9kt5R-4MK[,:o`[$-oETDAN_S2u`g[;a14F;Z?\#2_4S$:+#0%rrV4-;?$Uq-32ACs+13$s+13$ +s+13Rs*t~> +iW&r%&^APDaQEO&k/YZgaO0tdqp3IbbS]sOs4ZrAs4YT=bKp+dr6EI.bK&iHs5qE%bQ5u3pAan7 +!],/cr;Qh&-g:R0!pV49r;ZI;!/C1Hs!I^Es!@`qrVlrn-78]ks!I^E!_t**r;QiY-;jdBs!@`l +pAY3k-78`l!_Xlmp](7?rVumErr3$n-ID\j!mr>erraj!IY'od`!#rrc7as#s?[rrtD4p&@c6kPY>]j!IY&s8ODGc[l+Is+13$ +s+13$s0)HQ~> +iVrn`qu?hLs8RWJ!!F56s6U?q!!gC@r^O-ls$ltf":t#%n-T$n"-!9[JG]BI'__S%-3>uLkPY>] +>:8Y6rrVI7=8`*l-3/ens8OGEs8ODGeG]CKpEh6cs8OGErrPqBkPY>]j!IY&s8ODGch@A?q^*Zh +rrPh?f_>FG-N3uE-N=#H9IA-arrURp9)ekj-32QorrVpA-N=#I9dXiDnG`Q#-HZ8e!lu^#rVumE +rr3$p-Kk=,#3.%-s7Im$rr3+"56!fErr30]/+rp;-Kk=,!okV)rr +i;`bD.[&$Us3I+*S>tKHs43L'R?jlMs7DYus8UT5R?sQAs7rO^T:`mns8Titr0d9Ys!I^E#6!i5 +Kd\tArr3&Y-=?]N!bE_8rVuX>!G]UGs8OGEs8ODGo_eah-N3uE-N3rE1AE0r1]IFS-33K3rs8%V +=[=\k-RL2>rrOi#p@nUe-N3uE-N=#H0dcMirrVd=1&h4Q-33]9s8OGFrs.%1-7;fQ`r#E.!k9S& +rr3%E-G06Vs!IaF!&FUJ5*ngJV[Fsuq]ga6;+s"a?r!&OWSs!@a6JcC<$JcC<$JcC<$ +YQ'+~> +i;`c".`gcPs6.VOcIMC`s6@eObf\K7s8'q!s8V?+bfe?1s8:errV.+?i9p*AL?:4s7doAC;oiFs!I^Es!@a +i;`]T"+^FOM#Ing/$T'RR0*?f#V5WKirF-"s-*E^":t#%n07iB"CLQrs'P[(!"&B!s!I^E#6!i5 +Kd\tArr3&Y-=?]N!bE_8rVuX>!G]UGs8OGEs8ODGo_eah-N3uE-N3rE1AE0r1]IFS-33K3rs8%V +=[=\k-RL2>rrOi#p@nUe-N3uE-N=#H0dcMirrVd=1&h4Q-33]9s8OGFrs.%1-7;fQ`r#E.!k9S& +rr3%E-G06Vs!IaF!&FUJ5*ngJV[Fsuq]ga6;+s"a?r!&OWSs!@a6JcC<$JcC<$JcC<$ +YQ'+~> +iVrnsrL!eObl@_@rqRE/s8Uf=Q^O8*a8c1nPH+N[nXPr4TDANerV?Hm!pcACr0[Q;p](7?q>UMk +-?/ta!06h$!0$mVs!I^E"9)INI.RC<-N3uE-N!iC-N3uE-N3rE./5+h./s8H-34&DrrM.Bq'Q+@ +![f>mp](7?rVumErr3$J-N*fA!rOAnrr +iVrr)c2PoiaQEO&rVl^3rr<#bb0/#QalEF$m)dfVs7jm_bKp+ds8DlprrVl=bPo]ec,nc8s8OGA +rrSrBE;ok;Nqaq$N;`eV-N3rHr`UXroDeh;rVumEqu?[CrVumErVljGpa,thrr +iVrnUqu?hLs8Vimn,rLds.fJl%s%^MUAuh +i;`bD!Kt\%rtFInQC4,-kPtRhMN[0&s0RuVTDA?`"8:HGQi!3Es8OGArs&*B2#mUS4np?)4T,3Y +s!I[D"5YRU_Y!m.-N3uE-N!iC-N3uE-N3rG1+)Pbs8OGDrs&-Lpg0s!E +i;Wf%rlbDak4nrXo$tn^bRO1Ds4YE4oDejEaii$.qYpZpm*a)UbQ5u2pAb.>q>UZk-8bc&rB9p& +!Bg;Zs8OGDrr_+/-GoETs!I^Es!IXCs!I^Es!I^E!\u+mpAb.>r;R(?-:"lto_SM5-N=#H0dc8] +s8OGEs8OGFrrOo%oDJUing6-ks8OGCs8OGBrrq;T=sbSlp&>5O-F3ZV-Aqa$s!IaF!\u+mp\toV +-?0!<-K>'c-A;D<-IVqo1+)Pbs8OEss+13$s+13$s+13Qs*t~> +i;`]T!.akE!PL#^!"HgFr^Hkf_Z0X*!!!Q!qYpW^UE]R8!!`/ss!IRA#4s6!s8W$\pa-#(r;Q`r +-N*lGhCL"jo`+q7#)=P2s03o.r;ZdDrr3$T-Lpj1'@\@Js+D`Y +s5PGZs)9=5s8Oi$nb3"_-@u2Js+13$s+13$s/uBP~> +iVrnsrL#'sbl@_+aiqlXnc/X]VO*UKqu?TAbfT&Js4!:"TDANbc.Mmms43F#qO.'Ws!IRA#Os,n +s8Tn^AbuE.BI:Oos8OGCrr\W84n84Fs!I^Es!IXCs!I^Es!I^E!`:;kpAb.>r;QgU-JeY#!ot[T +rr3$o-Hc)_s!I^Es!IaF!_k#er;QiD-;OR?s!IXCs!IL?!iRG5p&>6N->3?i-JeV"s!IaF!`:;k +p\tEr2a%+65Q:Zi5YV2?2Z<[U;'sZ`s8OEss+13$s+13$s+13Qs*t~> +iVrr)c2Pp8aQEO&oAo&plM1DZqU3R0ec#OIkiUsts8V?+bKp+droWSFs8VB,b5BHac,o\Zs!IRA +#Os,ns8Tn^AbuE.BI:Oos8OGCrr\W84n84Fs!I^Es!IXCs!I^Es!I^E!`:;kpAb.>r;QgU-JeY# +!ot[Trr3$o-Hc)_s!I^Es!IaF!_k#er;QiD-;OR?s!IXCs!IL?!iRG5p&>6N->3?i-JeV"s!IaF +!`:;kp\tEr2a%+65Q:Zi5YV2?2Z<[U;'sZ`s8OEss+13$s+13$s+13Qs*t~> +iVrnUqu?hLs8Tt8J0(-7rr;"&!!"PCs7qV(JAV?dP5kRnnGi<:T(E!^RJ?g_$24E!-MdZHnKomg +s1p$nqYpV1-G]W\s!IXC".1Dunb)q^-N3uE-N!iC-N3uE-N3rG;'sZ`s8OGDrrP&)h>R?TjIrr3 +iVrnrrL"4[bl@^bMNX-eSEKqPa-2_-q#:ioSi\\!l7d6-?fCg"El-<-?/ta!fJCBr;Qi77?7BIs!E +iW&i"&BO#6s5_,>aNDg"s8V-$alE0r%f">lci!h@bK&94s8V6'r6,2dbP(u9-MdZHV']%=s)'0j +qYpW+->ib^s!IXC"8bh?G4kn8-N3uE-N!iC-N3uE-33rBrrS**D>aD8_*sC`s8OGDrrOi#o_ndq +GU=d6s8RWsH2[aEf.9r$s8ODGqu6Wq-N=#HJL5X>rrRNoJc>]L-N!iC-N=#HE]_YHrrVd=/G/rF +<@mDc=o87!-N=#HM^E<=rrU#*NrK%]E@/sXG5hLEFsbN^E;ok=M^E<=rrU#*NrK(Y-@u2Js+13$ +s+13$s/uBP~> +iVrnYqu?hLs8R?B!!a%Os8R*>!-7l7%G_irs3ir +-MmcBJL5[@rrUe'aD8_*sC`rrdaD8_*sC`s8OEss+13$s+13$ +s+13Qs*t~> +i;`bD"d7+0s3-T(QO8i(s8U?,R-4MLr;HHjrslE!TDAN_T9kYVs8W##Pl-pLSbE*`-N*lNo%&aM +-E@+7.l$eprs/?U/+3H;-78Th"4JYF]_;C*-N3uE-N!iC-N3rU/gdq$li5ut-?A#?l(p*]Jc>]L +-N*lZ:aUb]psEhm6RK/8s4A\GQgOLg81',krs(/'Zhj"f-78`l$JR!VNT'WhN[?4/rr]L-@u2Js+13$s+13$s/uBP~> +i;X,-c-4DQk5YJDa8X6ha6EX(k/bdr;R,p +er2++WrMN<1&(PE#Pg/+mf3;6-Mm`EdjQQUpAb.>rVumEqu?[CrVmE]-Ft66qu?[Crr3>c/gbVrqWXh2-@u0r"Ka"c-E[:I"KWqe-EI.G +$KE`cEo6`XV(j +i;WcYr;ZqMs8RWI!""khs+::O_Z0Z3rUBgd%7U=.nGhtg!!$^4s7nYO!!"#4s8OGDrsJ>JN%66T +s6hHmp\Ompq(jPhs8ODmqYpZH-mlV#s8OGEs8OGCs8OGErt$e0Zhj"fj";[!htlT60d_JNs8OGD +rt\EXJaW<\C2?6aZhaXR-RP2Ip;oiPL]7;Y/gdq$li/:Yrr3>[.41&5pYUuX.GFe$s!IXCs!IaF +$#q:Y^[_3]IO8"crrf;JD^MXas8OGFrsId=-?A#?l(p*]Jc>ZPXX7d0XoA>'X +i;WeJrgGkh:CHmYTfs!B)grr\'(3UZYAs!I^Es!IXCs!I^E!*fCKs8N,-.f1On;"FVcs!I[D!3uGK +!^>dgr[.[F!1Wj4!D)\Yrr?:%-3F2o-N3rEU&$)9UAb,l-N!iC-N=#Gj#Ho_!A)@brrhsI-8G5k +s8OGErrKMWq^)>?o)AXlkp@f*j8T&]j!H0$kPbD][4;&#!Dr@ds8OEss+13$s+13$s+13Qs*t~> +i;X,,c-4DQk5YJFb5T^1hu!HRj2]^Ks8LZrcd0o's8V?*ci!h@ccaMUoDej`bfg"0!R8OUs7RcC +KE(tF-@#=c#(.bls8ODmq>UPQ-9:Mgs8OGEs8OGCs8OGErr?:%-NF)H[4;&#!Dr@ds8OGDrrB>% +-3?BoF8dNdrrAPc-36[+rr2t&r?_UG-78]k!2969!2BGls!IXCs!IaF!TQ0:-35[>o`#'d0.&FI +qu?[CrVlo+.f1On;"FVc"R.6]-KG+*"QLgW-Kk@-!OXES-36s6rr +i;Wckr;ZqMs8RoR%gl\/s8R*>/,'#=48f[%T)\hS!"\T!n.,L!"iC<>bm""F!%[dCp*Krqs8Sc> +Gkh:CHmYTfs!B)grr\'(3UZYAs!I^Es!IXCs!I^E!*fCKs8N,-.f1On;"FVcs!I[D!3uGK!^>dg +r[.[F!1Wj4!D)\Yrr?:%-3F2o-N3rEU&$)9UAb,l-N!iC-N=#Gj#Ho_!A)@brrhsI-8G5ks8OGE +rrKMWq^)>?o)AXlkp@f*j8T&]j!H0$kPbD][4;&#!Dr@ds8OEss+13$s+13$s+13Qs*t~> +i;WeHrg@-MdZDpHp9Gp](7?rVumEqu?[CrVm#V=Y;F-rr35VG!@K1;4RI\s8OGC +rsGJh.R&+>s56^(7/m2j_-o/M6AkC5rs.@_/hp<)-78Zj#0(45.6)(br;ZdDqu?[CrVm,eMb#QQ +5^(lPrrRElI/ +i;X)$c-4DQk5YJ[rVZZp*rFC,j8]/Rbf\,PaPHmrprq(^s8:3dbf\Q:s8V'"rlbDh`V0?.-3Gef +G0Ksc!_t)^q#:QB-;OU@-78Qg"8>/0Dtj;3-N3uE-N!iC-N3rIh,u?b;uZe%flfS102\88rVumE +qu7"t74LKGk5X@9.n'C:#/O_).RK$arVm,Y=Y;F-s!B)jrs$JS2^p_$b5D;>-N!iC-N3rLl&/(e +.mS:3o)Ac9-@G[is!I[D#MF8b.kabiq>C6o9-uq%rrPG48GiDlflfS102\88rVumEJcC<$JcC<$ +JcC<$Y5a"~> +i;Wd&r;ZqMs8VilnG`Flm32ONs8U[J!!u[*s4mhenGhtgrW!'\q>^J.qu?_'pAat9""Zlabl7VD +:+"!Urs$[o:B1>@-MdZDpHp9Gp](7?rVumEqu?[CrVm#V=Y;F-rr35VG!@K1;4RI\s8OGCrsGJh +.R&+>s56^(7/m2j_-o/M6AkC5rs.@_/hp<)-78Zj#0(45.6)(br;ZdDqu?[CrVm,eMb#QQ5^(lP +rrRElI/ +i;We[rgsJ~> +i;Wu"ccjVSkkP/`qV''8p](9Yb5TThbKp.es4toursmAubfn2os8W)Kb08)Tc[l+Is+13$s+13$ +s+13$s/>sJ~> +i;Wdkr;ZhRq#:TZ7Kq$rr2s/r;Ztgs8VmFr;ZhjJcC<$JcC<$JcC<$JcC<$ +W;hA~> +i;Werrg +i;Wu,cHOMTf_X_;jl+Y0bg,;3k1.WPbR!1ik1@i +i;WeTr;Zj[KDU0*HY=T'!"!n#J1LNt#m"^iJ2dORJ9VD!!!F3jJ:fr_!!!(Os+13$s+13$s+13$ +s+13Js*t~> +huEYC!1*JEs-!GLrgg3!13\J!13\Q!1e]@JcC<$JcC<$JcC<$JcDYJ +J,~> +hu5cbfnDNJcC<$JcC<$JcC<$JcC<$ +VuM8~> +hu +hu<\Ud?t!KJcC<$JcC<$JcC<$JcC<$VuM8~> +hu<_rcdU)=ccq%@JcC<$JcC<$JcC<$JcDYJJ,~> +hu<[Vd/X02JcC<$JcC<$JcC<$JcC<$VuM8~> +hZ(ukJcC<$JcC<$JcC<$JcC<$VZ2/~> +hZ!T#eB@s +hZ)"(!""5VJcC<$JcC<$JcC<$JcDVIJ,~> +hZ!SHe!U3=JcC<$JcC<$JcC<$JcC<$VZ2/~> +hZ!VocIL,>cc(J8JcC<$JcC<$JcC<$JcDVIJ,~> +hZ!R+df9A^JcC<$JcC<$JcC<$JcC<$VZ2/~> +hZ!Sne!YdeJcC<$JcC<$JcC<$JcDSHJ,~> +hZ!W$cIU2?c,tV;JcC<$JcC<$JcC<$JcDSHJ,~> +hZ!SOe,TIQJcC<$JcC<$JcC<$JcC<$V>l&~> +h>[JKeX6ECJcC<$JcC<$JcC<$JcC<$V>l&~> +h>[Mnce$AAcc(J8JcC<$JcC<$JcC<$JcDSHJ,~> +h>[I;eGoSoJcC<$JcC<$JcC<$JcC<$V>l&~> +h#Grn!1SQ>JcC<$JcC<$JcC<$JcDPGJ,~> +h#@Dtc.U;AcGY;6JcC<$JcC<$JcC<$JcDPGJ,~> +h#@?Yf)PdlJcC<$JcC<$JcC<$JcC<$V#Pr~> +h#@A^fU2`.JcC<$JcC<$JcC<$JcC<$U]5i~> +h#@DocJ$JCc-1b=JcC<$JcC<$JcC<$JcDMFJ,~> +h#@A.fDkmTJcC<$JcC<$JcC<$JcC<$U]5i~> +g]%8MfpMiGJcC<$JcC<$JcC<$JcC<$U]5i~> +g]%;md+cbFcGbA7JcC<$JcC<$JcC<$JcDMFJ,~> +g]%7Ff`2"sJcC<$JcC<$JcC<$JcC<$U]5i~> +gA_/BgR/&EJcC<$JcC<$JcC<$JcC<$UAo`~> +gA_2lcJ?\Fcc(J8JcC<$JcC<$JcC<$JcDJEJ,~> +gA_-ugAh4fJcC<$JcC<$JcC<$JcC<$UAo`~> +g&D&Ah3e8>JcC<$JcC<$JcC<$JcC<$U&TW~> +g&D)kcelqIcbtD7JcC<$JcC<$JcC<$JcDGDJ,~> +g&D$nhZ*]Y!(hbAJcC<$JcC<$JcC<$JcDGDJ,~> +g&D*-S)9V6X+C;%s+13$s+13$s+13$s.KCB~> +g&D-0`6[Ge!mT'1JcC<$JcC<$JcC<$JcC<$T`9N~> +g&D*&,i8S%?@i--s+13$s+13$s+13$s.KCB~> +fDbiIiL'\KJcC<$JcC<$JcC<$JcC<$TDsE~> +fDbojcctRqs3:V`JcC<$JcC<$JcC<$JcC<$TDsE~> +fDbhBi;`jlJcC<$JcC<$JcC<$JcC<$TDsE~> +f)G`UjI$%;^k)N:s+13$s+13$s+13$s.97@~> +f)Gfjbg5Ls"3o04b(9SDs+13$s+13$s+13$s.97@~> +f)Gbq!p'C_';:!WJcC<$JcC<$JcC<$JcD>AJ,~> +eGfN>kEu=NJcC<$JcC<$JcC<$JcC<$SH"*~> +eGfTfcd(k#!mf02JcC<$JcC<$JcC<$JcC<$SH"*~> +eGfM!k5YKgJcC<$JcC<$JcC<$JcC<$SH"*~> +e,KHaS*QIBSq6oms+13$s+13$s+13$s-it<~> +e,KQn`6ZcSn]V*[ccs:Ws+13$s+13$s+13$s+13=s*t~> +e,KHB,jPF121bdYs+13$s+13$s+13$s-it<~> +d/O*>n!O3UaasJCs+13$s+13$s+13$s-`n;~> +d/O9eb0SDYc2#Qfc-FY]ai2VXs+13$s+13$s+13$s+13 +d/O,/#4VZp$!"<_s+13$s+13$s+13$s+13 +ci4+"s.5\RR/reSJcC<$JcC<$JcC<$JcC<$Q2c@~> +ci4O2s1ZOrc-FY^d*L"]b/D,Is+13$s+13$s+13$s+138s*t~> +ci4-ns#q)#q#CI#*`[dkJcC<$JcC<$JcC<$JcD#8J,~> +bPqjos24lSs24lTJcC<$JcC<$JcC<$JcC<$P5g%~> +bPqjts3:Sjs3L_hJcC<$JcC<$JcC<$JcC<$P5g%~> +bPqjbs.o[as.KCmJcC<$JcC<$JcC<$JcC<$P5g%~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcFO*J_bn5J_bn5J_cOGk5Tr~> +JcC<$JcFO*J_bn5J_bn5J_cOGk5Tr~> +JcC<$JcFO*J_bn5J_bn5J_cOGk5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcG0 +JcG0 +JcG0 +iW&a$pAY/f-L:^3-Ir.r-NF,F-3G_cM"1$8"&:2ls8")0rri<`-91u's8+/Crr`+Q-78Zj#4RI< +.lLVCrr3B)L-.MPrr<#pLF+AHrsSd[4?A8ss8VqN-78]k$2oT@3f!_7dO%b@s4dPRh1>TWs+13$ +s+138rrCm;s*t~> +iW&a$pAY/f-L:^3-Ir.r-NF,F-3G_cM"1$8"&:2ls8")0rri<`-91u's8+/Crr`+Q-78Zj#4RI< +.lLVCrr3B)L-.MPrr<#pLF+AHrsSd[4?A8ss8VqN-78]k$2oT@3f!_7dO%b@s4dPRh1>TWs+13$ +s+138rrCm;s*t~> +iW&a$pAY/f-L:^3-Ir.r-NF,F-3G_cM"1$8"&:2ls8")0rri<`-91u's8+/Crr`+Q-78Zj#4RI< +.lLVCrr3B)L-.MPrr<#pLF+AHrsSd[4?A8ss8VqN-78]k$2oT@3f!_7dO%b@s4dPRh1>TWs+13$ +s+138rrCm;s*t~> +iW&a$pAY.u-L:^3-Ir.r-NF,C-36[-oD\s<-<'sEqBkV0"O/8H-HZ8eq^2@C"'[i6-N3rFnOEC& +"/PtsW;S%IXoJE*4!l +iW&a$pAY.u-L:^3-Ir.r-NF,C-36[-oD\s<-<'sEqBkV0"O/8H-HZ8eq^2@C"'[i6-N3rFnOEC& +"/PtsW;S%IXoJE*4!l +iW&a$pAY.u-L:^3-Ir.r-NF,C-36[-oD\s<-<'sEqBkV0"O/8H-HZ8eq^2@C"'[i6-N3rFnOEC& +"/PtsW;S%IXoJE*4!l +iW&p)qu6rq-9fdO03dK:r$MID%&?NJ6a-Oip*MuF68&39s!IUB"K"R:6)ae_$2olC2hCf)s!B)l +s8OGGrrq4i1b`:kqu?[Cs8W*G%KH+;4sl9hs4q6C0ONT3rs"0(ScA^:-Mm`IpiS2T]/1l2p\tAO +-BTX,r;ZdDrVltEmNs:Zrt^G<5f30YNC&R's'6tUYU3cXs*3rY-N3rP>pce[-=HlRGjZn*rVm@5 +-Es^$@/p7t-AMR#-74 +iW&p)qu6rq-9fdO03dK:r$MID%&?NJ6a-Oip*MuF68&39s!IUB"K"R:6)ae_$2olC2hCf)s!B)l +s8OGGrrq4i1b`:kqu?[Cs8W*G%KH+;4sl9hs4q6C0ONT3rs"0(ScA^:-Mm`IpiS2T]/1l2p\tAO +-BTX,r;ZdDrVltEmNs:Zrt^G<5f30YNC&R's'6tUYU3cXs*3rY-N3rP>pce[-=HlRGjZn*rVm@5 +-Es^$@/p7t-AMR#-74 +iW&p)qu6rq-9fdO03dK:r$MID%&?NJ6a-Oip*MuF68&39s!IUB"K"R:6)ae_$2olC2hCf)s!B)l +s8OGGrrq4i1b`:kqu?[Cs8W*G%KH+;4sl9hs4q6C0ONT3rs"0(ScA^:-Mm`IpiS2T]/1l2p\tAO +-BTX,r;ZdDrVltEmNs:Zrt^G<5f30YNC&R's'6tUYU3cXs*3rY-N3rP>pce[-=HlRGjZn*rVm@5 +-Es^$@/p7t-AMR#-74 +iW&p)qu6cs-8.L\-37`Yr$DIEY5BUOaT)2c0g@!3r;ZdDqu6Z-r$DNMs8T(s-3TA/s!B)ls8OGG +rr>mp-35],qu?[Cs8W*Grr3/7-:n1:;#VdB/RePV#$!"os8ODmqYpP\r[%_#-78`drrkYCp+ec0 +rVumEqu?[CrVlpg-GK.nF%\arVumErVm?d-LgIN3WK-'- +iW&p)qu6cs-8.L\-37`Yr$DIEY5BUOaT)2c0g@!3r;ZdDqu6Z-r$DNMs8T(s-3TA/s!B)ls8OGG +rr>mp-35],qu?[Cs8W*Grr3/7-:n1:;#VdB/RePV#$!"os8ODmqYpP\r[%_#-78`drrkYCp+ec0 +rVumEqu?[CrVlpg-GK.nF%\arVumErVm?d-LgIN3WK-'- +iW&p)qu6cs-8.L\-37`Yr$DIEY5BUOaT)2c0g@!3r;ZdDqu6Z-r$DNMs8T(s-3TA/s!B)ls8OGG +rr>mp-35],qu?[Cs8W*Grr3/7-:n1:;#VdB/RePV#$!"os8ODmqYpP\r[%_#-78`drrkYCp+ec0 +rVumEqu?[CrVlpg-GK.nF%\arVumErVm?d-LgIN3WK-'- +iW&d%rr`(-H>i\"?.[os8VsCrr30o-C4=b-78Ke#1=i;s)BC3 +rVumEqu?[CrVlpL-M.'5"Xtetr?a#ms8OGErrjhurr"/nrVumErVm3R-N +iW&d%rr`(-H>i\"?.[os8VsCrr30o-C4=b-78Ke#1=i;s)BC3 +rVumEqu?[CrVlpL-M.'5"Xtetr?a#ms8OGErrjhurr"/nrVumErVm3R-N +iW&d%rr`(-H>i\"?.[os8VsCrr30o-C4=b-78Ke#1=i;s)BC3 +rVumEqu?[CrVlpL-M.'5"Xtetr?a#ms8OGErrjhurr"/nrVumErVm3R-N +iW&d%rrY66AtC2s8OGGs8OGFrsJ-?0E;&i-72';nb`=h.jk)ls8+/Brrt,'oDe8+-MRNEM^Gb0[3g_. +s8OGCs8OGErrai!nGiOe-NF)L.45#l-7\uos!I^E"Xtesr?a#ms8OGErsC2%rV\&ms8VmA/:miV +rrCl+s+13$s+13$s- +iW&d%rrY66AtC2s8OGGs8OGFrsJ-?0E;&i-72';nb`=h.jk)ls8+/Brrt,'oDe8+-MRNEM^Gb0[3g_. +s8OGCs8OGErrai!nGiOe-NF)L.45#l-7\uos!I^E"Xtesr?a#ms8OGErsC2%rV\&ms8VmA/:miV +rrCl+s+13$s+13$s- +iW&d%rrY66AtC2s8OGGs8OGFrsJ-?0E;&i-72';nb`=h.jk)ls8+/Brrt,'oDe8+-MRNEM^Gb0[3g_. +s8OGCs8OGErrai!nGiOe-NF)L.45#l-7\uos!I^E"Xtesr?a#ms8OGErsC2%rV\&ms8VmA/:miV +rrCl+s+13$s+13$s- +iW&p)qZ$RBrrUh(2qu6jN-Md]A-78Th"tq=qs6_3\p\t4]r$DD1rVumE +qu?[CrVm!l-G0 +iW&p)qZ$RBrrUh(2qu6jN-Md]A-78Th"tq=qs6_3\p\t4]r$DD1rVumE +qu?[CrVm!l-G0 +iW&p)qZ$RBrrUh(2qu6jN-Md]A-78Th"tq=qs6_3\p\t4]r$DD1rVumE +qu?[CrVm!l-G0 +iW&p)qZ$RBrr^IAqu7I6-CFIj-<^BK:+!9j.SKgA0d`UcHmU3< +rrUh"/GoJI-NF,G-3aGG`]PT6r;QiN-7o&o"udmrs8ODmqYpaj-CFIc-78Nf!8%&o!7q/Ls!IXC +s!I^E&!/Us!I^E"^`U]XsR`Ys8OGErsE*[Z*#Ebs8VF43e@=drrCl+ +s+13$s+13$s- +iW&p)qZ$RBrr^IAqu7I6-CFIj-<^BK:+!9j.SKgA0d`UcHmU3< +rrUh"/GoJI-NF,G-3aGG`]PT6r;QiN-7o&o"udmrs8ODmqYpaj-CFIc-78Nf!8%&o!7q/Ls!IXC +s!I^E&!/Us!I^E"^`U]XsR`Ys8OGErsE*[Z*#Ebs8VF43e@=drrCl+ +s+13$s+13$s- +iW&p)qZ$RBrr^IAqu7I6-CFIj-<^BK:+!9j.SKgA0d`UcHmU3< +rrUh"/GoJI-NF,G-3aGG`]PT6r;QiN-7o&o"udmrs8ODmqYpaj-CFIc-78Nf!8%&o!7q/Ls!IXC +s!I^E&!/Us!I^E"^`U]XsR`Ys8OGErsE*[Z*#Ebs8VF43e@=drrCl+ +s+13$s+13$s- +iW&a$s8W*GrrO&Y5K[K[K$:(-NF)GY5K[K[K$:(-NF)GY5K[R[K$9N-<^BK-74 +iW&a$s8W*GrrO&Y5K[K[K$:(-NF)GY5K[K[K$:(-NF)GY5K[R[K$9N-<^BK-74 +iW&a$s8W*GrrO&Y5K[K[K$:(-NF)GY5K[K[K$:(-NF)GY5K[R[K$9N-<^BK-74 +iW&a$s8W*Grr +iW&a$s8W*Grr +iW&a$s8W*Grr +JcG3=!mN&joD\piV'\=*rrQ(Fc@Q#NrrCl+s+13$s+13$s- +JcG3=!mN&joD\piV'\=*rrQ(Fc@Q#NrrCl+s+13$s+13$s- +JcG3=!mN&joD\piV'\=*rrQ(Fc@Q#NrrCl+s+13$s+13$s- +JcG0TWs+13$s+138rrCm;s*t~> +JcG0TWs+13$s+138rrCm;s*t~> +JcG0TWs+13$s+138rrCm;s*t~> +JcG0 +JcG0 +JcG0 +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$df0CB.eN]>p]1?o!pa4oqYpc!6kT_H=Ng[C#MVlZ'4CG3s7u`qrr?!q +!!",?rrfDP"t6VPrrfDP"t6U)s-3N`h<+`f~> +JcC<$JcFO*!8W5+JcC<$df0CB.eN]>p]1?o!pa4oqYpc!6kT_H=Ng[C#MVlZ'4CG3s7u`qrr?!q +!!",?rrfDP"t6VPrrfDP"t6U)s-3N`h<+`f~> +JcC<$JcFO*!8W5+JcC<$df0CB.eN]>p]1?o!pa4oqYpc!6kT_H=Ng[C#MVlZ'4CG3s7u`qrr?!q +!!",?rrfDP"t6VPrrfDP"t6U)s-3N`h<+`f~> +ir=SRJ]sP+j8T,8JcC<$JcF0u!g4Xaq>UEpr;Qkh+dN-*rt/j)^@UsGQOpV*s6hYDoBLd-qYp_c +?N:$me,'(Tar8%c_&Uc#s2l7po"c +ir=SRJ]sP+j8T,8JcC<$JcF0u!g4Xaq>UEpr;Qkh+dN-*rt/j)^@UsGQOpV*s6hYDoBLd-qYp_c +?N:$me,'(Tar8%c_&Uc#s2l7po"c +ir=SRJ]sP+j8T,8JcC<$JcF0u!g4Xaq>UEpr;Qkh+dN-*rt/j)^@UsGQOpV*s6hYDoBLd-qYp_c +?N:$me,'(Tar8%c_&Uc#s2l7po"c +ir9,)nF?%"n:C)#n,U\mrrCl+s+13$s3puNqB*Nmq"k!j!;uj!;<@fXr;Qi"2#7(L"ajbYs+H1, +rrMejqu6lC*: +ir9,)nF?%"n:C)#n,U\mrrCl+s+13$s3puNqB*Nmq"k!j!;uj!;<@fXr;Qi"2#7(L"ajbYs+H1, +rrMejqu6lC*: +ir9,)nF?%"n:C)#n,U\mrrCl+s+13$s3puNqB*Nmq"k!j!;uj!;<@fXr;Qi"2#7(L"ajbYs+H1, +rrMejqu6lC*: +ir9,)q"sr>qLSL8q>pB8j8T,8JcC<$JcF4!"Ii!_8sfDS!!)ip!!)rs!Cj9errG1)p\t +ir9,)q"sr>qLSL8q>pB8j8T,8JcC<$JcF4!"Ii!_8sfDS!!)ip!!)rs!Cj9errG1)p\t +ir9,)q"sr>qLSL8q>pB8j8T,8JcC<$JcF4!"Ii!_8sfDS!!)ip!!)rs!Cj9errG1)p\t +ir9&'qgncus.0/jqon+#!8W5+JcC<$eGfaN,JX8q+oD0:!!)ip!!)rs!>=_mrrj%C1^Gtcqu6`( +1B.:Q"V\4(#:ZDHrrEN$rr3/p%0->8pAY'moaHEOQ2^j?k5Tr~> +ir9&'qgncus.0/jqon+#!8W5+JcC<$eGfaN,JX8q+oD0:!!)ip!!)rs!>=_mrrj%C1^Gtcqu6`( +1B.:Q"V\4(#:ZDHrrEN$rr3/p%0->8pAY'moaHEOQ2^j?k5Tr~> +ir9&'qgncus.0/jqon+#!8W5+JcC<$eGfaN,JX8q+oD0:!!)ip!!)rs!>=_mrrj%C1^Gtcqu6`( +1B.:Q"V\4(#:ZDHrrEN$rr3/p%0->8pAY'moaHEOQ2^j?k5Tr~> +ir9&'qgncus.0/jqon+#!8W5+JcC<$eGfQG2ZE^W3hlNO!!)ip!!)rs!s8N0!rr30#"98B&rVlftr<%WNQ2^j?k5Tr~> +ir9&'qgncus.0/jqon+#!8W5+JcC<$eGfQG2ZE^W3hlNO!!)ip!!)rs!s8N0!rr30#"98B&rVlftr<%WNQ2^j?k5Tr~> +ir9&'qgncus.0/jqon+#!8W5+JcC<$eGfQG2ZE^W3hlNO!!)ip!!)rs!s8N0!rr30#"98B&rVlftr<%WNQ2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,^M/?JjN!ja?Tr;Q`sq>UEpr;Qd4k5G>Y!<<'"#e'a4 +!R3\(rrV$urqQKs`uk?]$hjT""nW9(rsSQ"rrMa$JcD#8!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,^M/?JjN!ja?Tr;Q`sq>UEpr;Qd4k5G>Y!<<'"#e'a4 +!R3\(rrV$urqQKs`uk?]$hjT""nW9(rsSQ"rrMa$JcD#8!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,^M/?JjN!ja?Tr;Q`sq>UEpr;Qd4k5G>Y!<<'"#e'a4 +!R3\(rrV$urqQKs`uk?]$hjT""nW9(rsSQ"rrMa$JcD#8!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,WPq>^Mtr;Q`sq>UEpr;QdkUAFlm!<<'Ec2R_Doa:Zt +!KV3orrr!$s8OP$rr3/P/H>`!g&D!PeLZ:OQ2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,WPq>^Mtr;Q`sq>UEpr;QdkUAFlm!<<'Ec2R_Doa:Zt +!KV3orrr!$s8OP$rr3/P/H>`!g&D!PeLZ:OQ2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,WPq>^Mtr;Q`sq>UEpr;QdkUAFlm!<<'Ec2R_Doa:Zt +!KV3orrr!$s8OP$rr3/P/H>`!g&D!PeLZ:OQ2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,Y,Sc&KgV)/&L!!)ip!!)rs!k'?Br;Qru!<<(0N;ihX +aXd>i!D'j#rrM?_rr3/<0`V/aP5bIbNGJRoAWm&m!KClGs- +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,Y,Sc&KgV)/&L!!)ip!!)rs!k'?Br;Qru!<<(0N;ihX +aXd>i!D'j#rrM?_rr3/<0`V/aP5bIbNGJRoAWm&m!KClGs- +ir9&'qLSZts.0/jqTS""!8W5+JcC<$ec,Y,Sc&KgV)/&L!!)ip!!)rs!k'?Br;Qru!<<(0N;ihX +aXd>i!D'j#rrM?_rr3/<0`V/aP5bIbNGJRoAWm&m!KClGs- +ir9&'qLSZts.0/jqTS""!8W5+JcC<$f)Gf]+8Yp8!rO@SrVlitq>UEpqu77I-EHP1j.nG!s8UXd +X7FRlS,N?f)s7(u(d)j"pV\JSs8ULb^@JlRfDkm!)8>[R):sH>Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$f)Gf]+8Yp8!rO@SrVlitq>UEpqu77I-EHP1j.nG!s8UXd +X7FRlS,N?f)s7(u(d)j"pV\JSs8ULb^@JlRfDkm!)8>[R):sH>Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$f)Gf]+8Yp8!rO@SrVlitq>UEpqu77I-EHP1j.nG!s8UXd +X7FRlS,N?f)s7(u(d)j"pV\JSs8ULb^@JlRfDkm!)8>[R):sH>Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$f)Gb6Q2:L]SNZrO!!)rsq>gKo#HU3&"W:.>rr2p#]eTgH +^&7m2#5S2s"m9,."XTi?rrfYX"t[:_rrfYX"t[98s-3N`h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$f)Gb6Q2:L]SNZrO!!)rsq>gKo#HU3&"W:.>rr2p#]eTgH +^&7m2#5S2s"m9,."XTi?rrfYX"t[:_rrfYX"t[98s-3N`h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$f)Gb6Q2:L]SNZrO!!)rsq>gKo#HU3&"W:.>rr2p#]eTgH +^&7m2#5S2s"m9,."XTi?rrfYX"t[:_rrfYX"t[98s-3N`h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$JcC<$Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$JcC<$Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$JcC<$Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$JcC<$Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$JcC<$Q2^j?k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$JcC<$Q2^j?k5Tr~> +ir9&'qXa^gZq%CqrrKl)o`##u>?eK4rrKl)r;Ql(>?eK3rrKJsrVlu)>?eIcs+149rrMu?j8T,8 +JcC<$JcC<$JcD#8!8Zf;J,~> +ir9&'qXa^gZq%CqrrKl)o`##u>?eK4rrKl)r;Ql(>?eK3rrKJsrVlu)>?eIcs+149rrMu?j8T,8 +JcC<$JcC<$JcD#8!8Zf;J,~> +ir9&'qXa^gZq%CqrrKl)o`##u>?eK4rrKl)r;Ql(>?eK3rrKJsrVlu)>?eIcs+149rrMu?j8T,8 +JcC<$JcC<$JcD#8!8Zf;J,~> +ir9&'qXa^gFanK2rr@TWs+13SrrVGtT)FHHQaPOus+14>rrCm;s*t~> +ir9&'qXa^gFanK2rr@TWs+13SrrVGtT)FHHQaPOus+14>rrCm;s*t~> +ir9&'qXa^gFanK2rr@TWs+13SrrVGtT)FHHQaPOus+14>rrCm;s*t~> +ir9&'qXjdjm7utBmJd+c>lF[(V#EmWrrmVis8U8grr3%qr^Zqe"aA/is3#`errSgg8,iMlGK^$d +bBea>JcG*:!W(%#rrCl+s+13$s0DY*l)+32!LM8ds+14@rrCm;s*t~> +ir9&'qXjdjm7utBmJd+c>lF[(V#EmWrrmVis8U8grr3%qr^Zqe"aA/is3#`errSgg8,iMlGK^$d +bBea>JcG*:!W(%#rrCl+s+13$s0DY*l)+32!LM8ds+14@rrCm;s*t~> +ir9&'qXjdjm7utBmJd+c>lF[(V#EmWrrmVis8U8grr3%qr^Zqe"aA/is3#`errSgg8,iMlGK^$d +bBea>JcG*:!W(%#rrCl+s+13$s0DY*l)+32!LM8ds+14@rrCm;s*t~> +ir9&'qXjdpZ%W.1YQ+W47n8L9rr>RfrseLH9OZ1?rVopfs8VOhr;QaerVm%%nGiOW=8r4%lWa$P +rr3.&nGiOW=+UC&s6TadqTS""!8W5+JcC<$Zi:$Co8!FLpjrHrs7H +ir9&'qXjdpZ%W.1YQ+W47n8L9rr>RfrseLH9OZ1?rVopfs8VOhr;QaerVm%%nGiOW=8r4%lWa$P +rr3.&nGiOW=+UC&s6TadqTS""!8W5+JcC<$Zi:$Co8!FLpjrHrs7H +ir9&'qXjdpZ%W.1YQ+W47n8L9rr>RfrseLH9OZ1?rVopfs8VOhr;QaerVm%%nGiOW=8r4%lWa$P +rr3.&nGiOW=+UC&s6TadqTS""!8W5+JcC<$Zi:$Co8!FLpjrHrs7H +ir9&'qXjdjElS.!EW5t<8,N;d8,`GsNM?",I7O>;8cA\hr(?ne!(["f"\J[ms85Lgrr\.Ys%!(g +"\J[ms85K?s+14:rrMu?j8T,8JcC<$JcE+W!4;9P!M9(;s+14CrrCm;s*t~> +ir9&'qXjdjElS.!EW5t<8,N;d8,`GsNM?",I7O>;8cA\hr(?ne!(["f"\J[ms85Lgrr\.Ys%!(g +"\J[ms85K?s+14:rrMu?j8T,8JcC<$JcE+W!4;9P!M9(;s+14CrrCm;s*t~> +ir9&'qXjdjElS.!EW5t<8,N;d8,`GsNM?",I7O>;8cA\hr(?ne!(["f"\J[ms85Lgrr\.Ys%!(g +"\J[ms85K?s+14:rrMu?j8T,8JcC<$JcE+W!4;9P!M9(;s+14CrrCm;s*t~> +ir9&'qXsjplW!`\qc2t^s$utd!(["f%9`0"s4U!Cs%31hs85Lerr>RfrsVKts8W!hs8UhVq#TWs+13XrrB_#L]F#ts+14CrrCm;s*t~> +ir9&'qXsjplW!`\qc2t^s$utd!(["f%9`0"s4U!Cs%31hs85Lerr>RfrsVKts8W!hs8UhVq#TWs+13XrrB_#L]F#ts+14CrrCm;s*t~> +ir9&'qXsjplW!`\qc2t^s$utd!(["f%9`0"s4U!Cs%31hs85Lerr>RfrsVKts8W!hs8UhVq#TWs+13XrrB_#L]F#ts+14CrrCm;s*t~> +ir9&'qXsjgY5CclXoJDkqu6XdrVm=!qu?]k8,rTinGiOV=oA:"8,`Gr +ir9&'qXsjgY5CclXoJDkqu6XdrVm=!qu?]k8,rTinGiOV=oA:"8,`Gr +ir9&'qXsjgY5CclXoJDkqu6XdrVm=!qu?]k8,rTinGiOV=oA:"8,`Gr +ir9&'qXsjhDqt?l"Q+1us$utd!(["f%9Dfps4g-Es*Difs2KKbrr>Rfrs*kms8U)es8Vsd#@RRX +b5_L]I=_ELs6TadqTS""!8W5+JcC<$[f6>nm"bZ2JcC<$p\t6Lk5Tr~> +ir9&'qXsjhDqt?l"Q+1us$utd!(["f%9Dfps4g-Es*Difs2KKbrr>Rfrs*kms8U)es8Vsd#@RRX +b5_L]I=_ELs6TadqTS""!8W5+JcC<$[f6>nm"bZ2JcC<$p\t6Lk5Tr~> +ir9&'qXsjhDqt?l"Q+1us$utd!(["f%9Dfps4g-Es*Difs2KKbrr>Rfrs*kms8U)es8Vsd#@RRX +b5_L]I=_ELs6TadqTS""!8W5+JcC<$[f6>nm"bZ2JcC<$p\t6Lk5Tr~> +ir9&'qY'pik]Qh'"aK;39]c-Lrr>Rfrsa[Fo]C`qs8U8[kiZa,r;QaerVm&EDWp8!cMRVA8,iMl +bAQP,CX.M2JcG*:!W(%#rrCl+s+13$s0r".dd)\h["87.s7cNnh<+`f~> +ir9&'qY'pik]Qh'"aK;39]c-Lrr>Rfrsa[Fo]C`qs8U8[kiZa,r;QaerVm&EDWp8!cMRVA8,iMl +bAQP,CX.M2JcG*:!W(%#rrCl+s+13$s0r".dd)\h["87.s7cNnh<+`f~> +ir9&'qY'pik]Qh'"aK;39]c-Lrr>Rfrsa[Fo]C`qs8U8[kiZa,r;QaerVm&EDWp8!cMRVA8,iMl +bAQP,CX.M2JcG*:!W(%#rrCl+s+13$s0r".dd)\h["87.s7cNnh<+`f~> +ir9&'qY'piWl=o9#KWtG^K4J9s85Cerrq\2:1hpErr3)0<*$U/s85Cdrr]`0 +ir9&'qY'piWl=o9#KWtG^K4J9s85Cerrq\2:1hpErr3)0<*$U/s85Cdrr]`0 +ir9&'qY'piWl=o9#KWtG^K4J9s85Cerrq\2:1hpErr3)0<*$U/s85Cdrr]`0 +ir9&'qV;)Om8\`;JcE[g!W(%#rrCl+s-irhp+#_5s7cTlrrJVir;Qu#6kT_H=Ng^D"nd$`#VWL_ +rr?!q!!",?rrVLo!;uj#ol_Pc0=(QV"KX$V.'8(#mf2O-!8<#(JcGNF!8Zf;J,~> +ir9&'qV;)Om8\`;JcE[g!W(%#rrCl+s-irhp+#_5s7cTlrrJVir;Qu#6kT_H=Ng^D"nd$`#VWL_ +rr?!q!!",?rrVLo!;uj#ol_Pc0=(QV"KX$V.'8(#mf2O-!8<#(JcGNF!8Zf;J,~> +ir9&'qV;)Om8\`;JcE[g!W(%#rrCl+s-irhp+#_5s7cTlrrJVir;Qu#6kT_H=Ng^D"nd$`#VWL_ +rr?!q!!",?rrVLo!;uj#ol_Pc0=(QV"KX$V.'8(#mf2O-!8<#(JcGNF!8Zf;J,~> +ir9&'qV_AWE6nRVTsB7LJcE[g!W(%#rrCl+s-irhOroYYrr<&prrUji!<)p4Aim`uo@0*<[f?A, +MWFQ`7\0SZ6dto3".UO#!;uj-!9*0u!5jBfJcGNF!8Zf;J,~> +ir9&'qY'qW!2':`!2':`!2':`!2':`!2':`!2"4K!0j0T!2':`!2':`!2':`!2':`!2':`!2':` +!2':`!2':`!2':`!2':`!.k0$s6]geqTS""!8W5+Rf +ir9&'qY'qW!2':`!2':`!2':`!2':`!2':`!2"4K!0j0T!2':`!2':`!2':`!2':`!2':`!2':` +!2':`!2':`!2':`!2':`!.k0$s6]geqTS""!8W5+Rf +ir9&'qVV;UVbWNWoR[$ns2=pC6rHt!'T +Xn_nq"lU@!s"iX1rrZ-[rrDus!Nl.rrrq@!s8QJnrr3"bA:adMrrD$BL]G)=s+14FrrCm;s*t~> +ir9&'qXskTT)bM`T)bM`T)bM`T)bM`T)bM`T)_AV2#rm@T)bM`T)bM`T)bM`T)bM`T)bM`T)bM` +T)bM`T)bM`T)bM`T)bL7s+14:rrMu?j8T,8JcD5>"Ss4V)u0:0!!)lq"8Y?s!<3!"X>KbNrrmdY +s8T4rrr3/\)?9^miVNQV;<@fXr;Qf"q#:9si>M[q@$glm!L@8Is7$$giTZ-u]Rg*6s7lToh<+`f~> +ir9&'qXskTT)bM`T)bM`T)bM`T)bM`T)bM`T)_AV2#rm@T)bM`T)bM`T)bM`T)bM`T)bM`T)bM` +T)bM`T)bM`T)bM`T)bL7s+14:rrMu?j8T,8JcD5>"Ss4V)u0:0!!)lq"8Y?s!<3!"X>KbNrrmdY +s8T4rrr3/\)?9^miVNQV;<@fXr;Qf"q#:9si>M[q@$glm!L@8Is7$$giTZ-u]Rg*6s7lToh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+S,WV\8cMDLqYpNqqYpYBPlCa_rrGTmo)Am\)?9^]n+Zh^!;HKs +m2>s(-JJJ!!S8fPs7$$giTZ-uXb$M's7lToh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+S,WV\8cMDLqYpNqqYpYBPlCa_rrGTmo)Am\)?9^]n+Zh^!;HKs +m2>s(-JJJ!!S8fPs7$$giTZ-uXb$M's7lToh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+S,WV\8cMDLqYpNqqYpYBPlCa_rrGTmo)Am\)?9^]n+Zh^!;HKs +m2>s(-JJJ!!S8fPs7$$giTZ-uXb$M's7lToh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+SGrfk,JX8q+oD0:!!)or"M[,!rrE&u!>=_hrsGlRdOpAY'moaHEOnG`LIl%f>WJcC<$q#:?Mk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+SGrfk,JX8q+oD0:!!)or"M[,!rrE&u!>=_hrsGlRdOpAY'moaHEOnG`LIl%f>WJcC<$q#:?Mk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+SGrfk,JX8q+oD0:!!)or"M[,!rrE&u!>=_hrsGlRdOpAY'moaHEOnG`LIl%f>WJcC<$q#:?Mk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+SGrVd2ZE^W3hlNO!!)rs"n!Yfs8N)urrE9"oD]2_6MLN[4HAXt +]-X!Frr<&ors"]Sp](6prVlftr<%WNnG`LQl%f>WJcC<$q#:?Mk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+SGrVd2ZE^W3hlNO!!)rs"n!Yfs8N)urrE9"oD]2_6MLN[4HAXt +]-X!Frr<&ors"]Sp](6prVlftr<%WNnG`LQl%f>WJcC<$q#:?Mk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+SGrVd2ZE^W3hlNO!!)rs"n!Yfs8N)urrE9"oD]2_6MLN[4HAXt +]-X!Frr<&ors"]Sp](6prVlftr<%WNnG`LQl%f>WJcC<$q#:?Mk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8cj/?JjN!ja?Tr;Q`sr;QdtN;ihW!<3!!($>Jpr;ccq!fL7V +q>UK9+8l-=!;ZWrMd#lSrrEN$rr3#k%>"QJrrA,FL]HCbs+14FrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8cj/?JjN!ja?Tr;Q`sr;QdtN;ihW!<3!!($>Jpr;ccq!fL7V +q>UK9+8l-=!;ZWrMd#lSrrEN$rr3#k%>"QJrrA,FL]HCbs+14FrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8cj/?JjN!ja?Tr;Q`sr;QdtN;ihW!<3!!($>Jpr;ccq!fL7V +q>UK9+8l-=!;ZWrMd#lSrrEN$rr3#k%>"QJrrA,FL]HCbs+14FrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8\mq>^Mtr;Q`sr;ZTn"*=K9UAFli!<3!"mp(_DrrM]ur;Q`s +qu6`d>`&CY!@c_$rrLY$JcG3=!4;'J!0;^2JcGKE!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8\mq>^Mtr;Q`sr;ZTn"*=K9UAFli!<3!"mp(_DrrM]ur;Q`s +qu6`d>`&CY!@c_$rrLY$JcG3=!4;'J!0;^2JcGKE!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8\mq>^Mtr;Q`sr;ZTn"*=K9UAFli!<3!"mp(_DrrM]ur;Q`s +qu6`d>`&CY!@c_$rrLY$JcG3=!4;'J!0;^2JcGKE!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8^ISc&KgV)/&L!!)cn!!*#u!k'?Br;R!!!<<)j1p[#Y!U0O^ +rrKqir;Q`sr;Qii1p[#Y!G.GnrrJ*pJcG3=!9*7"!5jBfJcGKE!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8^ISc&KgV)/&L!!)cn!!*#u!k'?Br;R!!!<<)j1p[#Y!U0O^ +rrKqir;Q`sr;Qii1p[#Y!G.GnrrJ*pJcG3=!9*7"!5jBfJcGKE!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+Sc8^ISc&KgV)/&L!!)cn!!*#u!k'?Br;R!!!<<)j1p[#Y!U0O^ +rrKqir;Q`sr;Qii1p[#Y!G.GnrrJ*pJcG3=!9*7"!5jBfJcGKE!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+T)Sl%+8Yp8!rO@SrVlitp\t3nrVm:F-EHP1j.nG!s8Qr.qYpa^ +Eocu5.&-Y>!!)rs!H"J*rs$mh^@JlRf7EtirrAn_L]NS+JcC<$p\t6Lk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+T)Sl%+8Yp8!rO@SrVlitp\t3nrVm:F-EHP1j.nG!s8Qr.qYpa^ +Eocu5.&-Y>!!)rs!H"J*rs$mh^@JlRf7EtirrAn_L]NS+JcC<$p\t6Lk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+T)Sl%+8Yp8!rO@SrVlitp\t3nrVm:F-EHP1j.nG!s8Qr.qYpa^ +Eocu5.&-Y>!!)rs!H"J*rs$mh^@JlRf7EtirrAn_L]NS+JcC<$p\t6Lk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+T)SgSQ2:L]SNZrO!!)cn!!)rs$EQN)"W:.>rr +ir9&'qLSZts.0/jqTS""!8W5+T)SgSQ2:L]SNZrO!!)cn!!)rs$EQN)"W:.>rr +ir9&'qLSZts.0/jqTS""!8W5+T)SgSQ2:L]SNZrO!!)cn!!)rs$EQN)"W:.>rr +ir9&'qLSZts.0/jqTS""!8W5+JcC<$[Jp6Tmt^tNJcC<$p&>$Jk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$[Jp6Tmt^tNJcC<$p&>$Jk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$[Jp6Tmt^tNJcC<$p&>$Jk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$[/U-SnV@1PJcC<$o`"pIk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$[/U-SnV@1PJcC<$o`"pIk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$[/U-SnV@1PJcC<$o`"pIk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$Zi:'bO7\5._h%i=s7?6jh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$Zi:'bO7\5._h%i=s7?6jh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcC<$Zi:'bO7\5._h%i=s7?6jh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGNF!q=[HrMBV.g4B:BrrVu5O8+M3[.&YHJcG<@!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGNF!q=[HrMBV.g4B:BrrVu5O8+M3[.&YHJcG<@!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGNF!q=[HrMBV.g4B:BrrVu5O8+M3[.&YHJcG<@!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGTH!V!MlL]WXUpjrIarsAJS]VV3kV6.r1JcC<$nG`LEk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGTH!V!MlL]WXUpjrIarsAJS]VV3kV6.r1JcC<$nG`LEk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGTH!V!MlL]WXUpjrIarsAJS]VV3kV6.r1JcC<$nG`LEk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGWI!5nGb!LN&%s+13$s/Z/"h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGWI!5nGb!LN&%s+13$s/Z/"h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGWI!5nGb!LN&%s+13$s/Z/"h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGZJ!4;9P!7HGuJcC<$XT&:Vk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGZJ!4;9P!7HGuJcC<$XT&:Vk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGZJ!4;9P!7HGuJcC<$XT&:Vk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG]K!4;3N!8<#(JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG]K!4;3N!8<#(JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG]K!4;3N!8<#(JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!6aed!KZ`$s+13$s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!6aed!KZ`$s+13$s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!6aed!KZ`$s+13$s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!Uu0;L]FQ.s+13$s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!Uu0;L]FQ.s+13$s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!Uu0;L]FQ.s+13$s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!5.WR!9o(7JcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!5.WR!9o(7JcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!5.WR!9o(7JcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!0?H%!47=WJcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!0?H%!47=WJcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!0?H%!47=WJcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNiTc4!Q\#0fs+13RrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNiTc4!Q\#0fs+13RrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNiTc4!Q\#0fs+13RrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN_s)sWn:CUjs+13SrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN_s)sWn:CUjs+13SrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN_s)sWn:CUjs+13SrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN[- +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN[- +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN[- +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNV +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNV +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNV +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNXm(WAiIV$UrrW#]m=G:gs5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNXm(WAiIV$UrrV>QX+C;%s5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNXm(WAiIV$UrrV/:Rt:Tjs5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN_s)sWl%/l]rrVcVoR[$ns5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN_s)sWl%/l]rrU$,a+=8As5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cN_s)sWl%/l]rrTWd]n-37s5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNg?OIoO+I>WrrVNOqgncus5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNg?OIoO+I>WrrSpbm",1fs5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNg?OIoO+I>WrrS=?k^ibbs5a1[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNq!*Y8Xb$N!rrW&_mXbChs5X+Zh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNq!*Y8Xb$N!rrVAWY(?V(s5X+Zh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>cNq!*Y8Xb$N!rrV5BTRm,os5X+Zh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!3PRC!8<#(d/O1Fq"fRAJcFd1!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!3PRC!8<#(d/O1 +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!3PRC!8<#(d/O1:g#[ebJcFd1!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!9*:#!1&39cMmnDJcC<$ir9#7k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!9*:#!1&39cMmqBr.4m!s5X+Zh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM!9*:#!1&39cMmqAr.4m!s5X+Zh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!5.]T!9&M/JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!5.]T!9&M/JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!5.]T!9&M/JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!Vi8TL]G>Ds+13$s/l;$h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!Vi8TL]G>Ds+13$s/l;$h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG`L!Vi8TL]G>Ds+13$s/l;$h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG]K!Vi8VL]Ff5s+13$s/c5#h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG]K!Vi8VL]Ff5s+13$s/c5#h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG]K!Vi8VL]Ff5s+13$s/c5#h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGZJ!ViM_L]G>Ds+13$s/Z/"h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGZJ!ViM_L]G>Ds+13$s/Z/"h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGZJ!ViM_L]G>Ds+13$s/Z/"h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGTH!Rd&'L]O=5JcC<$JcDbM!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGTH!Rd&'L]O:$JcC<$JcDbM!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGTH!Rd&'L]O3hJcC<$JcDbM!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGNF!n+33rJ1TI\D?H:JcF!p!<.QLJcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcGNF!n+33rJ1TGUnWF%JcF$q!WMhEs+14-rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcGNF!n+33rJ1TDO_Z"!JcF$q!WMbCs+14-rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcGBB!r2f`r9=:ZJcF'r!rM]fJcC<$i;Wf5k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGBB!r2e_r.+k2JcF'r!pJ(rJcC<$i;Wf5k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcGBB!r2ddr#PjfJcF'r!oqGaJcC<$i;Wf5k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!:KdM!:tdAci4(:lhQ,3JcF[.!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!1<\8!4[U[ci4'YUZ-k)JcF[.!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!(Zr.!.TS"ci4'LP21]hJcF[.!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!;??U!:5::d/O4GlK\A"s+14.rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!6>"g!0Dd3d/O4=S=KA*s+14.rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!1`s.!'5]2d/O4;MMh.Zs+14.rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!<)f[!;h?IdJj:@lLBH*JcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!:Tf9!9\q5dJj9sS@a@PJcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG<@!93ks!7ZT"dJj9kMQVO1JcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!:KdM!:tdAdJj:9lM#l0JcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!1<\8!4[U[dJj9NSCrJnJcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!(Zr.!.TS"dJj9@MUI(UJcFX-!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!;??U!:5::dJj7BoR[$ns5*bUh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!6>"g!0Dd3df0CHhTLKMJcFU,!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!1`s.!'5]2df0CHfti7>JcFU,!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!<)f[!;h?Idf9@HJcC<$hZ!T3k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!:Tf9!9\q5df0@FpOW?qs5*bUh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG9?!93ks!7ZT"df0@Eon!-os5*bUh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!:KdM!:tdAJcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!1<\8!4[U[JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!(Zr.!.TS"JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!;??U!:5::JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!6>"g!0Dd3JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!1`s.!'5]2JcC<$XoACWk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!<)f[!;h?IJcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!:Tf9!9\q5JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG6>!93ks!7ZT"JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!:KdM!:tdAJcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!1<\8!4[U[JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!(Zr.!.TS"JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!;??U!:5::JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!6>"g!0Dd3JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!1`s.!'5]2JcC<$Y5\LXk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!<)f[!<%KKJcC<$YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!:Tf9!:PL=fDbjKJcC<$gA_0/k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG3=!93ks!9/S0fDbjKJcC<$gA_0/k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG0PsFJcFO*!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG0 +ir9&'qLSZts.0/jqTS""!8W5+JcG0 +ir9&'qLSZts.0/jqTS""!8W5+JcG0c-JcFL)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG0"g!18?;f`)$>VnIZ]JcFL)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG0 +ir9&'qLSZts.0/jqTS""!8W5+JcG0 +ir9&'qLSZts.0/jqTS""!8W5+JcG0 +ir9&'qLSZts.0/jqTS""!8W5+JcG0 +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!:KdM!;;!Dg&D->lMH/4JcFL)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!1<\8!69Zjg&D,JSEth,JcFL)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!(Zr.!1\W?g&D,9MWfWkJcFL)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!;-3S!:GF +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!5SM`!18?;gA_63S>_#=JcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!06su!(_\@gA_6.MO8tpJcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!;lZY!<%KKg]%?Oo(R_8JcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!9a61!:PL=g]%?=_V9YAJcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG-;!7^le!9/S0g]%?8\(-'0JcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!:9XK!;;!Dg]% +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!0I,0!69Zjg]%?NnGIk;JcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!'0ru!1\W?g]%?MmehY9JcFI(!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!;$-R!:GF +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!4_rX!18?;JcC<$Z2Xg[k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!.Xnf!(_\@JcC<$Z2Xg[k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!;lZY!<%KKJcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!9a61!:PL=JcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG*:!7^le!9/S0JcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!:9XK!;;!DJcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!0I,0!69ZjJcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!'0ru!1\W?JcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!;$-R!:GF +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!4_rX!18?;JcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!.Xnf!(_\@JcC<$ZMsp\k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!;lZY!<%KKJcC<$Zi:$]k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!9a61!:PL=JcC<$Zi:$]k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG'9!7^le!9/S0JcC<$Zi:$]k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!:9XK!;;!DJcC<$Zi:$]k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!0I,0!69ZjJcC<$Zi:$]k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!'0ru!1\W?JcC<$Zi:$]k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!;$-R!:GFl;rrfDP"t6U)s7uZph<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!4_rX!18?;i;WlIj7BJS!qn,9rVuWms8N/d?i^''#,t!' +#9R'krVlrb?i^*("KX$V.'l;rrfDP"t6U)s7uZph<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!.Xnf!(_\@i;WlFhXRfL!qn,9rVuWms8N/d?i^''#,t!' +#9R'krVlrb?i^*("KX$V.'l;rrfDP"t6U)s7uZph<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!;lZY!<%KKiVruMnG9?g!g4Xaq>UEpr;Qkh+dN-*rsiX& +^@UsGQOpV*s-t6u!;uj?ar8%c_&Uc#s3!RNnZ*DOs8PuXn+t[-R/d3/)SbjZ*6s-8qYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!9a61!:PL=iVrtr\*C0s!g4Xaq>UEpr;Qkh+dN-*rsiX& +^@UsGQOpV*s-t6u!;uj?ar8%c_&Uc#s3!RNnZ*DOs8PuXn+t[-R/d3/)SbjZ*6s-8qYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG$8!7^le!9/S0iVrtfWogMb!g4Xaq>UEpr;Qkh+dN-*rsiX& +^@UsGQOpV*s-t6u!;uj?ar8%c_&Uc#s3!RNnZ*DOs8PuXn+t[-R/d3/)SbjZ*6s-8qYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!:9XK!;;!Dir9,YlK\AQrri0?_&N1Grr<&srrZ-[rrDus +!j"6Sr;R"L@K6@)jo5>YrrHMorr3.fAH2Zic2R_HO'r"f\,61)"m$O"s'V2mrrJErJcGTH!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!0I,0!69Zjir9,OS=KAYrri0?_&N1Grr<&srrZ-[rrDus +!j"6Sr;R"L@K6@)jo5>YrrHMorr3.fAH2Zic2R_HO'r"f\,61)"m$O"s'V2mrrJErJcGTH!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!'0ru!1\W?ir9,MMMh/4rri0?_&N1Grr<&srrZ-[rrDus +!j"6Sr;R"L@K6@)jo5>YrrHMorr3.fAH2Zic2R_HO'r"f\,61)"m$O"s'V2mrrJErJcGTH!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!;$-R!:GF +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!4_rX!18?;ir9)/S@c!)"Ii!_8sfDS!!)ip!!)rs!Cj9b +rr<&srrFJ#rr3/R.f]MSpAY'mc6W8d"lh68s!HJ!rrL_$JcGTH!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!.Xnf!(_\@ir9)'MQX/_"Ii!_8sfDS!!)ip!!)rs!Cj9b +rr<&srrFJ#rr3/R.f]MSpAY'mc6W8d"lh68s!HJ!rrL_$JcGTH!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!;lZY!<%KKj8T2KlM%O_#5f^\s2#rVqu6Wrq>UEpr;Qd1 +lh(2W!;uit$hjT""n`<(s#\L)rrK>1qu6lZ;Q0Wq$hjT"!VHkPs8)`qh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!9a61!:PL=j8T1`SCt.H#5f^\s2#rVqu6Wrq>UEpr;Qd1 +lh(2W!;uit$hjT""n`<(s#\L)rrK>1qu6lZ;Q0Wq$hjT"!VHkPs8)`qh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcG!7!7^le!9/S0j8T1RMUJa/#5f^\s2#rVqu6Wrq>UEpr;Qd1 +lh(2W!;uit$hjT""n`<(s#\L)rrK>1qu6lZ;Q0Wq$hjT"!VHkPs8)`qh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!:9XK!;;!DjSo;\o'W^]!Mq^RrrG0Tqu6Wrq>UEpr;Qd# +qt0mg!;uit!r`,u$N1),s33aRot<'_r;Zcs"_7N2rrW/urrN'#JcGTH!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!0I,0!69ZjjSo;X_QU0C!Mq^RrrG0Tqu6Wrq>UEpr;Qd# +qt0mg!;uit!r`,u$N1),s33aRot<'_r;Zcs"_7N2rrW/urrN'#JcGTH!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!'0ru!1\W?jSo;W\"U#*!Mq^RrrG0Tqu6Wrq>UEpr;Qd# +qt0mg!;uit!r`,u$N1),s33aRot<'_r;Zcs"_7N2rrW/urrN'#JcGTH!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!;$-R!:GFJpr;ccq!!)rs!=SW#rrMa$rr3/I0aKkV')_b7rng\Gs8NK#rr3#k%>"QUrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!4_rX!18?;jSo;Zn*mR]!raaPrr3&+.K98F!!)ip!!)rs +!>Xbqs8;rqrr<&srrEN$rr3#k%K?A2c7oSd^_6SF#QEU[ScA]tpAY'moF6BOqYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!.Xnf!(_\@jSo;Zm-_+X!raaPrr3&+.K98F!!)ip!!)rs +!>Xbqs8;rqrr<&srrEN$rr3#k%K?A2c7oSd^_6SF#QEU[ScA]tpAY'moF6BOqYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!;lZY!<%KKOoGEaq>^Mtr;Q`sq>UEpr;QdkUAFli!;uis +!;uit.G=_#!S&atrrM"=qYp`f+TMHjg&D!PeLZ:OqYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!9a61!:PL=OoGEaq>^Mtr;Q`sq>UEpr;QdkUAFli!;uis +!;uit.G=_#!S&atrrM"=qYp`f+TMHjg&D!PeLZ:OqYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFs6!7^le!9/S0OoGEaq>^Mtr;Q`sq>UEpr;QdkUAFli!;uis +!;uit.G=_#!S&atrrM"=qYp`f+TMHjg&D!PeLZ:OqYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!:9XK!;;!DOoGG=Sc&KgV)/&L!!)ip!!)rs!k'?Br;Qfq +!;uis!;uitAWm&m"c[ +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!0I,0!69ZjOoGG=Sc&KgV)/&L!!)ip!!)rs!k'?Br;Qfq +!;uis!;uitAWm&m"c[ +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!'0ru!1\W?OoGG=Sc&KgV)/&L!!)ip!!)rs!k'?Br;Qfq +!;uis!;uitAWm&m"c[ +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!;$-R!:YR>P5bTn+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1 +j.nG!r;Q`sr;Rqg)8>[R);"og=Fg&7Ors,ls&=j7pt864s8ULb^@JlRf7EturrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!4_rX!2tJKP5bTn+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1 +j.nG!r;Q`sr;Rqg)8>[R);"og=Fg&7Ors,ls&=j7pt864s8ULb^@JlRf7EturrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!.Xnf!+UT[P5bTn+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1 +j.nG!r;Q`sr;Rqg)8>[R);"og=Fg&7Ors,ls&=j7pt864s8ULb^@JlRf7EturrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!;lZY!<1.@!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng[C +"KX$V.'gKo$*6E( +"W:.>rr<#p!<3!$ZRQ/1\GlL3n6-A19%s:E"n6CH"YR(YrrfYX"t[98s7uZph<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!9a61!;FY9!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng[C +"KX$V.'gKo$*6E( +"W:.>rr<#p!<3!$ZRQ/1\GlL3n6-A19%s:E"n6CH"YR(YrrfYX"t[98s7uZph<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFp5!7^le!:\/2!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng[C +"KX$V.'gKo$*6E( +"W:.>rr<#p!<3!$ZRQ/1\GlL3n6-A19%s:E"n6CH"YR(YrrfYX"t[98s7uZph<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!:9XK!;FY9!g4Xaq>UEpr;Qt#MWFQ`7\0PY*bILJoCLIu +&@VW=ar8%c_&Uc#s6hYDoBLd-s8PI8qYpYf+dN-+rs$Ua^[f2\c@Q"Hs1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!0I,0!7/gf!g4Xaq>UEpr;Qt#MWFQ`7\0PY*bILJoCLIu +&@VW=ar8%c_&Uc#s6hYDoBLd-s8PI8qYpYf+dN-+rs$Ua^[f2\c@Q"Hs1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!'0ru!343A!g4Xaq>UEpr;Qt#MWFQ`7\0PY*bILJoCLIu +&@VW=ar8%c_&Uc#s6hYDoBLd-s8PI8qYpYf+dN-+rs$Ua^[f2\c@Q"Hs1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!;$-R!:\23"Ss4V)u0:0!!)rs!Nl.rrs%F"s8T/Wq>C6r +Ht!'T@$glm"dW^!s+H1,rrr(ns8On6qYpXpjo5>YrrHMorr3"bA:ac3s1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!4_rX!3"*@"Ss4V)u0:0!!)rs!Nl.rrs%F"s8T/Wq>C6r +Ht!'T@$glm"dW^!s+H1,rrr(ns8On6qYpXpjo5>YrrHMorr3"bA:ac3s1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!.Xnf!+X4P"Ss4V)u0:0!!)rs!Nl.rrs%F"s8T/Wq>C6r +Ht!'T@$glm"dW^!s+H1,rrr(ns8On6qYpXpjo5>YrrHMorr3"bA:ac3s1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!;lZY!<14B"Ii!_8sfDS!!)cn"mm3-s$j3drrFJ#rr3/R +.f]N0bkh>?,ObC,!!)rs!@HP"rrL_$nG`OdrIP!"s3goIh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!9a61!;F_;"Ii!_8sfDS!!)cn"mm3-s$j3drrFJ#rr3/R +.f]N0bkh>?,ObC,!!)rs!@HP"rrL_$nG`OPnU^^ks3goIh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFm4!7^le!:\54"Ii!_8sfDS!!)cn"mm3-s$j3drrFJ#rr3/R +.f]N0bkh>?,ObC,!!)rs!@HP"rrL_$nG`OKmt(Lis3goIh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!:9XK!;Fb<#5f^\s2#rVqu6Wrp\tD>GlRdVlhCD[$hjT" +$2"`,rt;^r#W:!.rrj(B3sR4/qu6Wrr;Qd*pAY'moaLBj!rVT\L]7YE`29DmVP_;rJcF:#!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!0I,0!7/pi#5f^\s2#rVqu6Wrp\tD>GlRdVlhCD[$hjT" +$2"`,rt;^r#W:!.rrj(B3sR4/qu6Wrr;Qd*pAY'moaLBj!q3bIL]7YE`29DmVP_;rJcF:#!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!'0ru!34GlRdVlhCD[$hjT" +$2"`,rt;^r#W:!.rrj(B3sR4/qu6Wrr;Qd*pAY'moaLBj!pm)0L]7YE`29DmVP_;rJcF:#!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!:p'Q!:\85!Mq^RrrG0Tqu6Wrq#:P_6MLN["T.rn!5s8N0YaS*nFe,TG1Np-,I-(Oo5!!)rs!0L]O+$JcF@%!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!3lBP!3"0B!Mq^RrrG0Tqu6Wrq#:P_6MLN["T.rn!5s8N0YaS*nFe,TG1Np-,I-(Oo5!!)rs!0L]O+$JcF@%!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!-.oX!+X:R!Mq^RrrG0Tqu6Wrq#:P_6MLN["T.rn!5s8N0YaS*nFe,TG1Np-,I-(Oo5!!)rs!0L]O+$JcF@%!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!;ZNW!<1=E!raaPrr3&+.K98F!!)ip!fL7Vrr3!6k5G>Y +!<<'"$hjT""nW9(rs6(4rrLA*qYpT:+8l-=!;uit$hjT"!V?ikrrVNOqhtITpnm\>!Nl-Js4RDP +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!8%+!!;Fh>!raaPrr3&+.K98F!!)ip!fL7Vrr3!6k5G>Y +!<<'"$hjT""nW9(rs6(4rrLA*qYpT:+8l-=!;uit$hjT"!V?ikrrSpbm#1lEpnm\>!Nl-Js4RDP +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFj3!4_nI!:\>7!raaPrr3&+.K98F!!)ip!fL7Vrr3!6k5G>Y +!<<'"$hjT""nW9(rs6(4rrLA*qYpT:+8l-=!;uit$hjT"!V?ikrrS=?k_oHApnm\>!Nl-Js4RDP +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!:0RJ!;Fh>!3Z.u!3Q2!!!)or!q0BNr;QdkUAFlm!<<'J +g&D!TeL^b#,gH>g!VHfrrrM]ur;Q`sr;QdHg&D!PeL^:k!r2'JMuNhBO7J)-T(%=2gA_0/k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!/UQ(!70!k!3Z.u!3Q2!!!)or!q0BNr;QdkUAFlm!<<'J +g&D!TeL^b#,gH>g!VHfrrrM]ur;Q`sr;QdHg&D!PeL^:k!oKNHMuNhBO7J)-T(%=2gA_0/k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!%[sg!34BF!3Z.u!3Q2!!!)or!q0BNr;QdkUAFlm!<<'J +g&D!TeL^b#,gH>g!VHfrrrM]ur;Q`sr;QdHg&D!PeL^:k!nrO!MuNhBO7J)-T(%=2gA_0/k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!:p'Q!:\>7!ApAFrrJrPr;Q`sr;Qii1p[#Y!k'?Br;Qru +!<<(1P5bIbNGJRoA;pNf"j&:ps60I]rrKqir;Q`sr;Qe/P5bI^NGJ+b!r)'SN;iqJO77r+T(mm: +g]%90k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!3lBP!3"6D!ApAFrrJrPr;Q`sr;Qii1p[#Y!k'?Br;Qru +!<<(1P5bIbNGJRoA;pNf"j&:ps60I]rrKqir;Q`sr;Qe/P5bI^NGJ+b!nO6oN;iqJO77r+T(mm: +g]%90k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!-.oX!+X@T!ApAFrrJrPr;Q`sr;Qii1p[#Y!k'?Br;Qru +!<<(1P5bIbNGJRoA;pNf"j&:ps60I]rrKqir;Q`sr;Qe/P5bI^NGJ+b!m[+NN;iqJO77r+T(mm: +g]%90k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!;ZNW!<1CG!k9?Kr;Qir-+NpR!!)rs!H"J)s!)J0X6ocD +UbYC=s3_e!o",dks8UXdX7FRlS,`LNEocu5.&-Y>!!)rs#1=C'o",dko)AdhqYlHR!1rV7!2b>I +g]%90k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!8%+!!;Fn@!k9?Kr;Qir-+NpR!!)rs!H"J)s!)J0X6ocD +UbYC=s3_e!o",dks8UXdX7FRlS,`LNEocu5.&-Y>!!)rs#1=C'o",dko)Ad\kkU2;!1rV7!2b>I +g]%90k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFg2!4_nI!:\D9!k9?Kr;Qir-+NpR!!)rs!H"J)s!)J0X6ocD +UbYC=s3_e!o",dks8UXdX7FRlS,`LNEocu5.&-Y>!!)rs#1=C'o",dko)AdZjS4]6!1rV7!2b>I +g]%90k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!:0RJ!;Fn@!Bl_ErrJZRrVlitr;Q`uqZ$WFrr35)5nF2; +:p0fsrrfYX"t[:_rrg"j#;EjjrrqRj)$M=Zrr;fprr3,-.L%H6JcGTH!6a_b!8<#(h#@B1k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!/UQ(!70'm!Bl_ErrJZRrVlitr;Q`uqZ$WFrr35)5nF2; +:p0fsrrfYX"t[:_rrg"j#;EjjrrqRj)$M=Zrr;fprr3,-.L%H6nG`LfN;in$m"bYqJcFO*!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!%[sg!34HH!Bl_ErrJZRrVlitr;Q`uqZ$WFrr35)5nF2; +:p0fsrrfYX"t[:_rrg"j#;EjjrrqRj)$M=Zrr;fprr3,-.L%H6nG`LfN;in$m"bYqJcFO*!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!:p'Q!:YR>JcGHD!0?K&!1/9:h#@B1k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!3lBP!2tJKJcGHD!0?K&!1/9:h#@B1k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!-.oX!+UT[JcGHD!0?K&!1/9:h#@B1k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!;ZNW!<.QLJcGNF!7L.g!9o(7h>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!8%+!!;D'EJcGNF!7L.g!9o(7h>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFd1!4_nI!:YR>JcGNF!7L.g!9o(7h>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!:0RJ!;D'EJcGNF!4;$I!5*m_h>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!/UQ(!7-5rJcGNF!4;$I!5*m_h>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!%[sg!31VMJcGNF!4;$I!5*m_h>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!:p'Q!:[)i!n+KJreLZCXjd&rs4@8NQKj8+V1J[&rrCm; +s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!3lBP!3!"!!n+KJreLZCXjd&rs4@8NQKj8+V1J[&rrCm; +s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!-.oX!+W,1!n+KJreLZCXjd&rs4@8NQKj8+V1J[&rrCm; +s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!;ZNW!<02%!R$Q!L]WXUpjrIus65=>O+I>errCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!8%+!!;E\s!R$Q!L]WXUpjrIus65=>O+I>errCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFa0!4_nI!:[2l!R$Q!L]WXUpjrIus65=>O+I>errCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!:0RJ!;Ebu!Uu]QL]Nk,e,TIHMZ;mrJcFR+!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!/UQ(!7.qM!Uu]QL]Nk,e,KIAoSW\4Lk5T^rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!%[sg!33=(!Uu]QL]Nk,e,KI?nr!J2Lk5T^rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!:p'Q!:[;o!U5[9L]NRbeGoRA!;qcTk_Ofih>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!3lBP!3!4'!U5[9L]NRbeGfTsbjgVkk_Ofih>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!-.oX!+W>7!U5[9L]NRbeGfTj_XEE_k_Ofih>[K2k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!;ZNW!<0A*!Uu0>L]NS$f)GjOlK\A,rrA,FL]F9&s5!\T +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!8%+!!;El#!Uu0>L]NS$f)GjIS=KG6rrA,FL]F9&s5!\T +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF^/!4_nI!:[Aq!Uu0>L]NS$f)GjHMMh4frrA,FL]F9&s5!\T +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!:0RJ!;El#!2]+>!LNT5rrVlYnV[>HXm1]B["885rrCm; +s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!/UQ(!7/%P!2]+>!LNT5rrUZ>]8HUgXm1]B["885rrCm; +s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!%[sg!33F+!2]+>!LNT5rrUB$Y)<5ZXm1]B["885rrCm; +s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!:p'Q!:[Dr!7L4i!5-q`!q,@JMZ3\"lA,GoJcFR+!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!3lBP!3!=*!7L4i!5-q`!j8'HMZ3\"lA,GoJcFR+!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!-.oX!+WG:!7L4i!5-q`!hbG!MZ3\"lA,GoJcFR+!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!;ZNW!<0G,!1)u-!K[$/rr`5dli)eA!;Pl9!0;^2h#@B1 +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!8%+!!;Er%!1)u-!K[$/rr_tlUA0WG!;Pl9!0;^2h#@B1 +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF[.!4_nI!:[Gs!1)u-!K[$/rr_nZOnXb5!;Pl9!0;^2h#@B1 +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFX-!:0RJ!;X,(!9*4!!6a'q!ri#jM#RImm"bYZJcFO*!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFX-!/UQ(!8"^[!9*4!!6a'q!r(a4M#RImm"bYZJcFO*!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFX-!%[sg!4]N +ir9&'qLSZts.0/jqTS""!8W5+JcFX-!:p'Q!:mW!!5n)X!2Y8Hh>[NNO7%f(Sq6prrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFX-!3lBP!3is4!5n)X!2\?Js87]Q!Vh`DL]F#ts4dPRh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcFX-!-.oX!-,LJ!5n)X!2\?Js87]Q!Vh`DL]F#ts4dPRh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z$%!qn,9rVuWmr;Qef!;uj$WC.@(+'?_brrfDP"t6VQrrr(=,7#s. +rVm#%.0_3&rr;fprr3,&.0_3&JcF[.!;ZQX!:.,o!2\t:!0;^2h#@B=mt_"*l%/lhrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Z$%!qn,9rVuWmr;Qef!;uj$WC.@(+'?_brrfDP"t6VQrrr(=,7#s. +rVm#%.0_3&rr;fprr3,&.0_3&JcF[.!8%."!/S,a!2\t:!0;^2h#@B=mt_"*l%/lhrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Z$%!qn,9rVuWmr;Qef!;uj$WC.@(+'?_brrfDP"t6VQrrr(=,7#s. +rVm#%.0_3&rr;fprr3,&.0_3&JcF[.!4_qJ!%bVZ!2\t:!0;^2h#@B=mt_"*l%/lhrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Z$%!g4Xaq>UEpq>UNL(BFF6,A'$OoCLIu&@VW=ar8%c_&Uc#s&=m: +psqp*s8U4[^[f2\cMIPJQX9^lar8%c_&UaOs5 +ir9&'qLSZts.0/jqTS""!8Z$%!g4Xaq>UEpq>UNL(BFF6,A'$OoCLIu&@VW=ar8%c_&Uc#s&=m: +psqp*s8U4[^[f2\cMIPJQX9^lar8%c_&UaOs5 +ir9&'qLSZts.0/jqTS""!8Z$%!g4Xaq>UEpq>UNL(BFF6,A'$OoCLIu&@VW=ar8%c_&Uc#s&=m: +psqp*s8U4[^[f2\cMIPJQX9^lar8%c_&UaOs5 +ir9&'qLSZts.0/jqTS""!8Z'&"Ss4V)u0:0!!)lq"8Y?s!<3!"X>KbNrrmdYs8QJnrr3.fAH2\3 +q#:9si>M[q@$glm!L@9nrs$UcmJm2oQi@!cQ=PRHi;WfJr9=:Q\GtcKJcFI(!TB+3L]Nh+JcFF' +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z'&"Ss4V)u0:0!!)lq"8Y?s!<3!"X>KbNrrmdYs8QJnrr3.fAH2\3 +q#:9si>M[q@$glm!L@9nrs$UcmJm2oQi@!cQ=PRHi;We]r.+jP\GtcKJcFI(!TB+3L]Nh+JcFF' +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z'&"Ss4V)u0:0!!)lq"8Y?s!<3!"X>KbNrrmdYs8QJnrr3.fAH2\3 +q#:9si>M[q@$glm!L@9nrs$UcmJm2oQi@!cQ=PRHi;Wdsr#PiX\GtcKJcFI(!TB+3L]Nh+JcFF' +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z'&"Ii!_8sfDS!!)lq"*g(1!<3!!7^)Rd!@HP"rrL_$qYp`d)?9^` +gA_*Qf.-^u!rapPrr3!GgA_*Qf.)@Oi;WfQr9=:J\GlQ#l%jojg&D*J[.f@XO2LaDs4I>Oh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z'&"Ii!_8sfDS!!)lq"*g(1!<3!!7^)Rd!@HP"rrL_$qYp`d)?9^` +gA_*Qf.-^u!rapPrr3!GgA_*Qf.)@Oi;Wf/r.+j(\GlQ#l%jojg&D*J[.f@XO2LaDs4I>Oh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z'&"Ii!_8sfDS!!)lq"*g(1!<3!!7^)Rd!@HP"rrL_$qYp`d)?9^` +gA_*Qf.-^u!rapPrr3!GgA_*Qf.)@Oi;Weer#Phh\GlQ#l%jojg&D*J[.f@XO2LaDs4I>Oh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z*'#5f^\s2#rVqu6Wrqu6f64oYH]rr3!3lhCD[$hjT"!VHltrrmOi +s8NK#rr3#l%/g,,ZSMOZrrEN$rr3#l%"\H:rrE&ql2^XjrrAn\L]EKes4@8QprfLpreLZ;V9AXb +s472Mh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z*'#5f^\s2#rVqu6Wrqu6f64oYH]rr3!3lhCD[$hjT"!VHltrrmOi +s8NK#rr3#l%/g,,ZSMOZrrEN$rr3#l%"\H:rrDfjJH4<4rrAn\L]EKes4@8QprfLpreLZ;V9AXb +s472Mh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z*'#5f^\s2#rVqu6Wrqu6f64oYH]rr3!3lhCD[$hjT"!VHltrrmOi +s8NK#rr3#l%/g,,ZSMOZrrEN$rr3#l%"\H:rrDQc*WW^\rrAn\L]EKes4@8QprfLpreLZ;V9AXb +s472Mh<+`f~> +ir9&'qLSZts.0/jqTS""!8Z*'!Mq^RrrG0Tqu6Wrr;Qrg,hN(r!<3!!"T.rn! +ir9&'qLSZts.0/jqTS""!8Z*'!Mq^RrrG0Tqu6Wrr;Qrg,hN(r!<3!!"T.rn! +ir9&'qLSZts.0/jqTS""!8Z*'!Mq^RrrG0Tqu6Wrr;Qrg,hN(r!<3!!"T.rn! +ir9&'qLSZts.0/jqTS""!8Z-(!raaPrr3&+.K98F!!)rs!EG*Xrr<&urrEksrVufrs8N*-pAY'm +oF:`u!fL7Vrr3!,pAY'moF:d!!o>!trVlm+pAY'moF6BOhu<]Nr9=:J\c2ZolA,Ggh#@HSp%a1= +JcEjl!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z-(!raaPrr3&+.K98F!!)rs!EG*Xrr<&urrEksrVufrs8N*-pAY'm +oF:`u!fL7Vrr3!,pAY'moF:d!!o>!trVlm+pAY'moF6BOhu<]&r.+j(\c2ZolA,Ggh#@HIcea6Q +JcEjl!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z-(!raaPrr3&+.K98F!!)rs!EG*Xrr<&urrEksrVufrs8N*-pAY'm +oF:`u!fL7Vrr3!,pAY'moF:d!!o>!trVlm+pAY'moF6BOhu<\Vr#Phh\c2ZolA,Ggh#@HG`n>qC +JcEjl!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z-(!3Z.u!3Q2!!!)rsq>^V=s%K0`rr`?%s!cY#rrLY$rr3&g>`&CY +!@c_$rrLY$rVlnZE;]_:.G=_#!S&`Ps53hVrqks\q76M*QL'D.O8.N1!qbgPJcC<$ao;@sk5Tr~> +ir9&'qLSZts.0/jqTS""!8Z-(!3Z.u!3Q2!!!)rsq>^V=s%K0`rr`?%s!cY#rrLY$rr3&g>`&CY +!@c_$rrLY$rVlnZE;]_:.G=_#!S&`Ps53hVp\TLAf=Cn]QL'D.O8.N1!lpt_JcC<$ao;@sk5Tr~> +ir9&'qLSZts.0/jqTS""!8Z-(!3Z.u!3Q2!!!)rsq>^V=s%K0`rr`?%s!cY#rrLY$rr3&g>`&CY +!@c_$rrLY$rVlnZE;]_:.G=_#!S&`Ps53hVnG=7,\@MV>QL'D.O8.N1!kjW:JcC<$ao;@sk5Tr~> +ir9&'qLSZts.0/jqTS""!8Z-(!ApAFrrJrPr;Q`sp\t3nrr3&.,ObR1"oJB#s(.Amrs"Hus8V[I +ZMXY&AWm&m!KCmnrrG[&r;Qe/P5bI^NGF+FhZ!TFr9=:Q\c2ZXm"bYZg]%?@lMHM>!<.QL_#FDj +k5Tr~> +ir9&'qLSZts.0/jqTS""!8Z-(!ApAFrrJrPr;Q`sp\t3nrr3&.,ObR1"oJB#s(.Amrs"Hus8V[I +ZMXY&AWm&m!KCmnrrG[&r;Qe/P5bI^NGF+FhZ!SSr.+jP\c2ZXm"bYZg]%>LSEu16!<.QL_#FDj +k5Tr~> +ir9&'qLSZts.0/jqTS""!8Z-(!ApAFrrJrPr;Q`sp\t3nrr3&.,ObR1"oJB#s(.Amrs"Hus8V[I +ZMXY&AWm&m!KCmnrrG[&r;Qe/P5bI^NGF+FhZ!Rcr#PiX\c2ZXm"bYZg]%>;MWfWkJcEjl!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8Z0)!k9?Kr;Qir-+NpR!!)cn!!)ut'lYM#mJ>k=1.D6CdM]di],B6# +s)"D)rs$mh^@JlRfDY^M)s7(u#1=C'o",dkJcFU,!;HEV!:./p!2]+>!LEN9rrVu\m>LuGr9X*- +s2"^8h<+`f~> +ir9&'qLSZts.0/jqTS""!8Z0)!k9?Kr;Qir-+NpR!!)cn!!)ut'lYM#mJ>k=1.D6CdM]di],B6# +s)"D)rs$mh^@JlRfDY^M)s7(u#1=C'o",dkJcFU,!71Ro!/S/b!2]+>!LEN9rrV)JW/LZWr9X*- +s2"^8h<+`f~> +ir9&'qLSZts.0/jqTS""!8Z0)!k9?Kr;Qir-+NpR!!)cn!!)ut'lYM#mJ>k=1.D6CdM]di],B6# +s)"D)rs$mh^@JlRfDY^M)s7(u#1=C'o",dkJcFU,!35r!LEN9rrUo3R#CtGr9a3/ +s2"^8h<+`f~> +ir9&'qLSZts.0/jqTS""!8Z0)!Bl_ErrJZRrVlitp\t3nr;R#'5nF2;:p0fsrrfYX"t[:`rr<,t +!!h!Qs0F0Z/@bWX!=&AsrrfYX"t[98s5!\Trqks\q76M+pm1E*!KZL"rrVcVoSiePr7T]fJcERd +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z0)!Bl_ErrJZRrVlitp\t3nr;R#'5nF2;:p0fsrrfYX"t[:`rr<,t +!!h!Qs0F0Z/@bWX!=&AsrrfYX"t[98s5!\Tp\TLAf=Cn^pm1E*!KZL"rrU-/a,L$#r7T]fJcERd +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Z0)!Bl_ErrJZRrVlitp\t3nr;R#'5nF2;:p0fsrrfYX"t[:`rr<,t +!!h!Qs0F0Z/@bWX!=&AsrrfYX"t[98s5!\TnG=7,\@MV?pm1E*!KZL"rrT`g]o;snr8$,pJcERd +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!:]pO!:mZ"!U5[9L]NS$gA_6No_jdL"T6s#gAHO%_>aMk +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!3#gH!3j!5!U5[9L]NS$gA_69bk6tq"T6s#gAHO%_>aMk +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!+YpJ!-,OK!U5[9L]NS$gA_64_t/lf"T7*+h>Mp)_>aMk +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!;HEV!:.,o!ViM`L]O+3f`(sMN;j" +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!71Ro!/S,a!ViM`L]O+3g&D*Noo/nQi6g'MJcEOc!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!35r +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!<2l\!;X)'!Rd;/L]NRSJcF^/"8_-/p4<7YrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!;HAA!8"[Z!Rd;/L]NRSJcF^/"8_00p4<7YrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+JcFL)!:]k,!4]K;!Rd;/L]NRSJcF^/"8h<7pOW@ZrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8XgX!pR@prJ1NA[G$33\,QHtr9=:Q[/U3]]VYU`!i<9XJcFU,!VcGA +s1\L5h<+`f~> +ir9&'qLSZts.0/jqTS""!8XgX!pR@prJ1NA[G$33\,QH,r.+jP[/U3]]VYU`!i<9XJcFU,!VlPC +s1\L5h<+`f~> +ir9&'qLSZts.0/jqTS""!8XgX!pR@prJ1NA[G$33\,QG +ir9&'qLSZts.0/jqTS""!8XmZ!U6KUL]NjrJcE:\!;HEV!:,49JcC<$_uB_mk5Tr~> +ir9&'qLSZts.0/jqTS""!8XmZ!U6KUL]NjrJcE:\!71Ro!/Q4+JcC<$_uB_mk5Tr~> +ir9&'qLSZts.0/jqTS""!8XmZ!U6KUL]NjrJcE:\!35r +ir9&'qLSZts.0/jqTS""!8Xp[!6ati!Nl-Js1A:2rqks\q18Qss+13grrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xp[!6ati!Nl-Js1A:2p\TLAf7EsQs+13grrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xp[!6ati!Nl-Js1A:2nG=7,\:O[2s+13grrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xs\!4;9P!M9(;s1A:2nGMPOnq$gls+13grrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xs\!4;9P!M9(;s1A:2W;M2HY^uh*s+13grrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xs\!4;9P!M9(;s1A:2A,IAJEIn.@s+13grrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y!]!5n8]!1ncA]Dhm*r9=:JJcCf2!;h?I\,QHak5Tr~> +ir9&'qLSZts.0/jqTS""!8Y!]!5n8]!1ncA]DhlWr.+j(KDtrLNrK+VJcE4Z!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y!]!5n8]!1ncA]Dhl2r#PhhKDtrLNrK+WJcE4Z!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y$^!9*=$!5*m_]`/!2qs"1WK`;,Kq>HHU!qGLJJcE7[!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y$^!9*=$!5*m_]`/!+qgeb!K`;,0hY304!qGLJJcE7[!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y$^!9*=$!5*m_]`/!$q]5aIK`;,*f_1I-!qPXNJcE7[!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y$^!1)u-!:YR>]`/!$r9=:QL&V8SlgOh9rr_Z9fCjdq\GlQbk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y$^!1)u-!:YR>]`.u1r.+jPL&V8MUTs]Zrr_Z9fCjdq\GlQbk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y$^!1)u-!:YR>]`.tAr#PiXL&V8LP+qf9rr_`?g\6:!\GlQbk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y'_!7L1h!47=W]`/!+r9=:KL&V5KlLC&;"7X^ck^icCrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!7L1h!47=W]`.uXr.+j0L&V5-S@asa"7X^ck^icCrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!7L1h!47=W]`.u3r#Pi!L&V5&MQW-B"7apll@JuErrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!3PRC!0;^2]`/!2qs"1YLAq>ClM$MB"8^Koidq- +ir9&'qLSZts.0/jqTS""!8Y'_!3PRC!0;^2]`/!+qgeb1LAq=XSCs,+"8^Koidq- +ir9&'qLSZts.0/jqTS""!8Y'_!3PRC!0;^2]`/!$q]5aeLAq=JMUI^g"8^X"jamH?rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_l%f>uJcEC_!:]pO!:u!G"8qHLrfd?`p#=t^s0_k,h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y'_l%f>uJcEC_!3#gH!4[ga"7htPplk^Zp>b.`s0_k,h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y'_l%f>uJcEC_!+YpJ!.Te("7V2*pQPUYpZ:Lfs0_k,h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]`/!+r9=:KL]7GRoC\7G!;_9H[/U-^k5Tr~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]`.uXr.+j0L]7GFa3]tK!;_9H[/U-^k5Tr~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]`.u3r#Pi!L]7GD]uQ98!;h?I[/U-^k5Tr~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]`/!2qs"1Y\,ZI,ec,^Mr;M9IJcEXf!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]`/!+qgeb1\,ZL&!;tCI!rMQaJcC<$_uB_mk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]`/!$q]5ae\,QO'p&*A?!rDE]JcC<$_uB_mk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!3LhP]Dhm"r9=:R\,QO'p&0IAJcCu7!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!3LhP]Dhl(r.+jX\,QN\ch)egJcCu7!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!3LhP]Dhk2r#Pif\,QNT`q"]\JcCu7!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]Dhm)r9=:K\,QNulM?)3JcCu7!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]DhlOr.+j0\,QN;SEPP(JcCu7!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9*0u!5jBf]Dhl$r#Pi!\,QN-MWB?gJcCu7!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y*`!9ra(!5jBf]Dhm0qs"1Y\GlWtlMQ55l2Le`pjrIJrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y*`!9ra(!5jBf]Dhm"qgeb1\GlW/SFV72l2Le`pjrIJrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y*`!9ra(!5jBf]Dhljq]5ae\GlVtMXZ2sl2Le`q18RKrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!0?E$!9&M/])Mcur9=:R\GuToJcG!7"8q0DpjrIKrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!0?E$!9&M/])Mbtr.+jX\GuT!JcG!7"8q0DpjrIKrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!0?E$!9&M/])Mb#r#Pif\GuSdJcG!7"8q6Hq18RLrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y'_!4;'J!0;^2\c2['r9=:K\GuToJcG$8"T6s#h>Mp)YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y'_!4;'J!0;^2\c2ZMr.+j0\GuT!JcG$8"T6s#h>Mp)YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y'_!4;'J!0;^2\c2Z"r#Pi!\GuSdJcG$8"T7*+i;J6,YQ"UYk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y'_!9*7"!5jBf\c2[.qs"1Y])Mj1o_*k9lMgtGdF@l@s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y'_!9*7"!5jBf\c2Zuqgeb1])Mj(bgh:ElMgtGdF@l@s/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y'_!9*7"!5jBf\c2Zhq]5ae])Mj'_p*c4lMgtJe_'VIs/uA%h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y$^!2](=!KZ`$s1&(/mel>Mo==l%rVkFK!ri#nR/[9TdF@l@s/l;$ +h<+`f~> +ir9&'qLSZts.0/jqTS""!8Y$^!2](=!KZ`$s1&(/R/DL8\@V\Arq,s:rrVrQm[4"Vm*X>VJcDkP +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y$^!2](=!KZ`$s1&(/8,OD.J%GX]rpoa6rrVlIlBqSRma]taJcDkP +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Y$^!9rm,!6]rn\,QI%r9=:KNW0(Pn+iCO"9.rRp4<7FrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y$^!9rm,!6]rn\,QHKr.+j0NW0('[,7;O"9.uTp4<7FrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y$^!9rm,!6]rn\,QGur#Pi!NW0'sVV%=:"9/#VpOW@GrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Y!]!7L=l!47=W[f6@+qs"1YNrK1JlMHtKs8@NKX8`1Uk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y!]!7L=l!47=W[f6?rqgeb1NrK0ZSEuXCs8@NKX8`1Uk5Tr~> +ir9&'qLSZts.0/jqTS""!8Y!]!7L=l!47=W[f6?eq]5aeNrK0JMWgH-s8@NKX8`1Uk5Tr~> +ir9&'qLSZts.0/jqTS""!8Xs\!7LCn!47=W[/U-or9=:RO8f:VlKs0&JcELb!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Xs\!7LCn!47=W[/U,nr.+jXO8f:=S>_#=JcELb!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Xs\!7LCn!47=W[/U+rr#PifO8f:8MO8tpJcELb!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Xp[!SWV,L]G>Ds0M_*pAF1Um#V/Jo'5jus+13brrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xp[!SWV,L]G>Ds0M_*a8CJgOH9DC_48Pss+13brrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Xp[!SWV,L]G>Ds0M_*SGXE.3fj:B[YhbLs+13brrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8XmZ!r0ZopkSsQl%/l?rrE#pl2^^CrrVi\r.4m!s1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8XmZ!r0ZopkSsQl%/l?rrDNbJH4kprrUBInq$gls1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8XmZ!r0ZopkSsQl%/l?rrD'U*WX]OrrU$1n:CUjs1eR6h<+`f~> +ir9&'qLSZts.0/jqTS""!8XgX$2DrUV2pG(Xip5)rrE%Ls1eR6mel>Mo8s"Pr1*cfp\BC?V>gPO +k5Tr~> +ir9&'qLSZts.0/jqTS""!8XgX$2DrUV2pG(Xip5)rrDqIs1eR6R/DL8\<6dmr:'-ErrMliJcDSH +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8XgX$2DrUV2pG(Xip5)rrDnHs1eR68,OD.J!'a4r9im@rrMojJcDSH +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Wt@!rMW`JcEOc!;??U!:7Au!W)\Es7-*kmG$q(JcDVI!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Wt@!pRhVJcEOc!6>"g!0Fkn!TiQss7-*kmG$q(JcDVI!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Wt@!p./?JcEOc!1`s.!'7dm!TE-ks7-*kn)!F0JcDVI!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8Wt@"SqHMn,@n<_Z'W7qs"1Y^&S-&JcG<@"8:-il%/l2rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8Wt@"Q6;M[J5=Q_Z'W)qgeb1^&J,F^4H=Trr_uBdHQ5^V>gPOk5Tr~> +ir9&'qLSZts.0/jqTS""!8Wt@"PT<%VtYcB_Z'Vqq]5ae^&J,9Z@W&Hrr`#Gea%edV>gPOk5Tr~> +ir9&'qLSZts.0/jqTS""!8Wq?"Sh +ir9&'qLSZts.0/jqTS""!8Wq?"Q,rDU?$n*_Z'V'r.+jX^Ae9*S>_#=oD\pde'[0+s.oYph<+`f~> +ir9&'qLSZts.0/jqTS""!8Wq?"PSuqOl(`i_Z'U+r#Pif^Ae9(MO8tpoD\pef@Au6s.oYph<+`f~> +ir9&'qLSZts.0/jqTS""!8Wn>"TIrVp&9OB_uB`1r9=:K^Ae91lL0<(o`#$limHb:s.fSoh<+`f~> +ir9&'qLSZts.0/jqTS""!8Wn>"SfU!d.`+k_uB_Wr.+j0^Ae8sS@*qJo`#$limHb:s.fSoh<+`f~> +ir9&'qLSZts.0/jqTS""!8Wn>"S]'VaRt,a_uB_,r#Pi!^Ae8nMPl%*o`#$ljjiIDs.fSoh<+`f~> +ir9&'qLSZts.0/jqTS""!8Wh +ir9&'qLSZts.0/jqTS""!8Wh +ir9&'qLSZts.0/jqTS""!8Wh +ir9&'qLSZts.0/jqTS""!8W5+JcF*s!:KdM!;=2-!qtsPJcG?A!<.QLU&P,Kk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF*s!1<\8!6;kS!na3eJcG?A!<.QLU&P,Kk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF*s!(Zr.!1^h(!mm%BJcG?A!<.QLU&P,Kk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF*s!;??U!:IW%!r_rmgA_3Nr.4m!s1A:2h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF*s!6>"g!1:P$!qbOAgA_6>mf%e;JcEC_!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+JcF*s!1`s.!(am)!qP47gA_6:li)J8JcEC_!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8WP4!W2kIs2k9@rVPj[rKmNdrp]OYJcC<$]`.ufk5Tr~> +ir9&'qLSZts.0/jqTS""!8WP4!UBQ5s2k9@n,%Y9n%\l'rqtON"8TFFr.4m!s1J@3h<+`f~> +ir9&'qLSZts.0/jqTS""!8WP4!Ts60s2k9@iqjbsikPKorqtON"8Jn-r.4m!s1J@3h<+`f~> +ir9&'qLSZts.0/jqTS""!8WS5"8qcWq18RfrrDKbl2^OErrVr[nU^^ks1A:2h<+`f~> +ir9&'qLSZts.0/jqTS""!8WS5"7=1,k(3QSrrAGaJH3`WrrUlD]7L!5s1A:2h<+`f~> +ir9&'qLSZts.0/jqTS""!8WS5"6mObiIV$Nrr>Re*WV^srrUW+Y(?V(s1A:2h<+`f~> +ir9&'qLSZts.0/jqTS""!8WS5"oe&WlLY"+s3(EBpAF1Um[*qTn*9YBrrW,dq18R9rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8WS5"o?'*SB(DUs3(EBa8CJgR$[gS[@GpFrrW,dq18R9rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8WS5"o5TaMS8b8s3(EBSGXE.8=0>XVi&otrrW/gq18R9rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8WM3"SM*Gn,@n +ir9&'qLSZts.0/jqTS""!8WM3"Oj*8[J5=Qbl7\+qgeb9RK!B[S=KALrr_*4mJ_\:Sc8]Gk5Tr~> +ir9&'qLSZts.0/jqTS""!8WM3"NupbW:tlCbl7[mq]5asRK!BYMMh/'rr_3:mf%e;Sc8]Gk5Tr~> +ir9&'qLSZts.0/jqTS""!8WJ2"8hNZr.4mkrrDE`l2^OGrrW#`nY?*dimH9NJcD8?!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8WJ2"732;nq$harrA/YJH3`YrrV8]];,B.imH9NJcD8?!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8WJ2"6cE!n:CV_rr>(W*WV^urrV)IY+u"!jji#YJcD8?!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8WD0!<%KKb5VJ5r9=:MRK!?eqY[/h"6._Xp4<75rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8WD0!VQGCs3(EB\GUmXR$msUo]bqBrr_9.eFnInS,WKEk5Tr~> +ir9&'qLSZts.0/jqTS""!8WD0!V?;As3(EBJ,C>f8=BJZo&]A:rr_B5f_9ssS,WKEk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+JcF$q!;lZY!<%KK]Di!.hUM7Ms-irfh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF$q!9a61!:PL=]Di!.hUM7Ms-irfh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF$q!7^le!9/S0]Di!/iRmmUs-irfh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcF!p!:9XK!;=>1!r_okJcGZJ!r_ffJcD/ +ir9&'qLSZts.0/jqTS""!8W5+s8N)tJcF*s!0I,0!6<"W!qb.-JcGZJ!r_igJcD/ +ir9&'qLSZts.0/jqTS""!8W5+s8N)tJcF*s!'0ru!1^t,!qOauJcGZJ!r_lhJcD/ +ir9&'qLSZts.0/jqTS""!8W5+s8N,qpSRrlp+#_5s7cTorrVLo!;c^"WC.@(+'?__rrJVirVm#4 +1C,hKqYpSd!<)p!lX0_irrfDP"t6VOrrDZgl2^7irrW&ao7?pms,m<]h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+s8N,XgSXuPp+#_5s7cTorrVLo!;c^"WC.@(+'?__rrJVirVm#4 +1C,hKqYpSd!<)p!lX0_irrfDP"t6VOrrBS,JH2(TrrV5\`e"/@s,m<]h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+s8N,Re>E6Ip+#_5s7cTorrVLo!;c^"WC.@(+'?__rrJVirVm#4 +1C,hKqYpSd!<)p!lX0_irrfDP"t6VOrr@QH*WSaKrrV&G]Rg*6s,m<]h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+"onPmlgFYKrrS?*N; +ir9&'qLSZts.0/jqTS""!8W5+"on8:TW[X[rrS?*N; +ir9&'qLSZts.0/jqTS""!8W5+"on2.NhGU7rrS?*N; +ir9&'qLSZts.0/jqTS""!8W5+s8N6!mcs*1WrE4u+2JokqYpNqr;Qjrjo5>YrrT8Yq>C6nHt!!R +"8Y?s!<3!!(@1u"!U(?urr`*a]E%s2"&\1[!;uit@$glm!L@9orrDE`l2^OrrrVlYon!-os,m<] +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+s8N5jY+2$-WrE4u+2JokqYpNqr;Qjrjo5>YrrT8Yq>C6nHt!!R +"8Y?s!<3!!(@1u"!U(?urr`*a]E%s2"&\1[!;uit@$glm!L@9orrA/YJH3a/rrUK9c@Q"Hs,m<] +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+s8N5gTSeWGWrE4u+2JokqYpNqr;Qjrjo5>YrrT8Yq>C6nHt!!R +"8Y?s!<3!!(@1u"!U(?urr`*a]E%s2"&\1[!;uit@$glm!L@9orr>(W*WV_KrrU/s`I\&?s,m<] +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+rVlullKn>Irref_s%8XSrr<&prr<&srrGTmp&>,=PlCa_rrFe9 +rr3#b0E(nQGa/4.qu6Wrr;QdEgA_*Qf.-^u!;$-R!:If*!qGRMJc>`KJcCo5!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+rVm#@S>PBHXT&Em8cMDLqYpNqq>UEpr;QdeYP%ntGa/4.rr3!P +kPkJ^lS&5:"*g(1!;lcr!;uit-JJJ!!S8h!rrBS,JH2(UrrTg&fn'/'rIP!3rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+rVm#6MO*3"XT&Em8cMDLqYpNqq>UEpr;QdeYP%ntGa/4.rr3!P +kPkJ^lS&5:"*g(1!;lcr!;uit-JJJ!!S8h!rr@QH*WSaLrrT?\dXhDurIP!3rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+r;Qiop&(ok#5f^\s2#rVqu6Wrq>UEpr;Qd1lh:>]^HMSr!<3!& +Y"@FHi)6ZUrrg)"rr2uqrr<&srrEN$rr3#l%/g,*qtoXYrPed +ir9&'qLSZts.0/jqTS""!8W5+r;Qi\ddjL>#5f^\s2#rVqu6Wrq>UEpr;Qd1lh:>]^HMSr!<3!& +Y"@FHi)6ZUrrg)"rr2uqrr<&srrEN$rr3#l%/g,*kPKf1n&>;.c*ZfnrrW&erM]_to^2L+s-*H_ +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+r;QiWb4)M4#5f^\s2#rVqu6Wrq>UEpr;Qd1lh:>]^HMSr!<3!& +Y"@FHi)6ZUrrg)"rr2uqrr<&srrEN$rr3#l%/g,*eGC9eil1p!`2;bTrrW#brM]_tp$_a.s-*H_ +h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+V#LIl2ZE^W3hlNO!!)ip!!)rs! +ir9&'qLSZts.0/jqTS""!8W5+qu?]qXT&Sf#[*Trr_uDh=?-sPQ(X= +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+qu?]qXT&(W*WV_LrrV]UqVM5RcG&D>rr`#Ii:MU#PQ(X= +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+V>gVr/?JjN!ja?Tr;Q`sq>UEpr;Qd4k5G>Y!<<'" +ir9&'qLSZts.0/jqTS""!8W5+V>gVr/?JjN!ja?Tr;Q`sq>UEpr;Qd4k5G>Y!<<'" +ir9&'qLSZts.0/jqTS""!8W5+V>gVr/?JjN!ja?Tr;Q`sq>UEpr;Qd4k5G>Y!<<'" +ir9&'qLSZts.0/jqTS""!8W5+o`+sj[/U-/q>^Mtr;Q`sq>UEpr;QdkUAFlk!<<)q!!@ +ir9&'qLSZts.0/jqTS""!8W5+o`+sf[/U-/q>^Mtr;Q`sq>UEpr;QdkUAFlk!<<)q!!@QW2fk"ps[XMJcCl4!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+o`"sgq6^/%Y5/+uXo/2!!;ZWp!;uit9VVC`!W`9#q>^V=s!-h. +rr_R2s8Voq!-A,=!!)rs!@c_$rrLY$qu6ZGq]5asU&P2QMO:FD"8UR!jamGorrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+o`#!ho(KKk!ApAFrrJrPr;Q`sq>UEpr;Qi,,ObR1!W2rorr<&u +rrEu"rr3#])Z'I6!;lcr!;uitAWm&m!KCmkrrDE`l2^OOrrVcVoW%omo%`5Us,d6\h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+o`#!Q_UQ!n!ApAFrrJrPr;Q`sq>UEpr;Qi,,ObR1!W2rorr<&u +rrEu"rr3#])Z'I6!;lcr!;uitAWm&m!KCmkrrA/YJH3`arrU$,a/].@oA&>Vs,d6\h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+o`#!L\'28[!ApAFrrJrPr;Q`sq>UEpr;Qi,,ObR1!W2rorr<&u +rrEu"rr3#])Z'I6!;lcr!;uitAWm&m!KCmkrr>(W*WV_(rrTWd]rM)6p#"k^s,d6\h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+o`#'jlg!s:\GlW?+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1j.nG! +qYpNqrr31q:YGNu;53pe!!)or!!)rs#1=C'o",dkqYpQer9=:MU&P2^lMIU]!W2SAs,[0[h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+p&>3pihN$Oo!n]$\0(SFrrW*E\GcF-!;ZWp!;ld%E$hXQqW"A, +7Jd#a!<3!&TMO89gejgBrr<&rrr<&srs$mh^@JlRfD>LI\GUmXR%aN]YFOsZrrN&lJcCf2!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+p&>3ph3*Ynn@8K"\0(SFrrW*E\GcF-!;ZWp!;ld%E$hXQqW"A, +7Jd#a!<3!&TMO89gejgBrr<&rrr<&srs$mh^@JlRfD>LIJ,C>f8>6%bTo/'6rrN&mJcCf2!8Zf; +J,~> +ir9&'qLSZts.0/jqTS""!8W5+oD\shlg!g2\c2[nQ2:L]SNZrO!!)rsq>gKo#HU3&"W:.>rqcWp +!<)p#Z7cG9ZMFM#!<3#p!<3!$ZRQ/1\G?.)qtoXYrM0AorqcA?s+13XrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+oD\sUU7@t9\c2[nQ2:L]SNZrO!!)rsq>gKo#HU3&"W:.>rqcWp +!<)p#Z7cG9ZMFM#!<3#p!<3!$ZRQ/1\G?.)kPKf1n"]maqrlU^s+13XrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+oD\sPOc#:U\c2[nQ2:L]SNZrO!!)rsq>gKo#HU3&"W:.>rqcWp +!<)p#Z7cG9ZMFM#!<3#p!<3!$ZRQ/1\G?.)eGC9eihQMTqW,tRs+13XrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+o)Ajlna-&MJcFR+!:9XK!;;!DJcC<$eGfO)k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+o)Ajf];FH\JcFR+!0I,0!6:i6!WN"Js+13XrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+o)AjeY*Rc9JcFR+!'0ru!1]e`!WN"Js+13XrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+nGiOdJcFO*!;$-R!:Ir.!ri/tJcC<$OT,=:k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+nG`OXn:CVprrBS,JH2(YrrVufqgncus,d6\h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+nG`OUmXbDnrr@QH*WSaPrrVrcqLSZts,d6\h<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM#5I3$`6708df0=Eqs"1\ao;G +ir9&'qLSZts.0/jqTS""!8W5+JcGcM#5I3$`6708df0=1qgebAao;G"bial`!WDnHs,$aUh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+JcGcM#5I3$`6708df0 +ir9&'qLSZts.0/jqTS""!8W5+Jc>c!T)+6DT$u0g!:9XK!;FV8!q5FNMZ3bDmeVM7MZ3\4k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>c!T)+6DT$u0g!0I,0!7/de!k"Q]MZ3bDmeVM7MZ3\4k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+Jc>c!T)+6DT$u0g!'0ru!340@!iLq9MZ3bFn+qV8MZ3\4k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+l2LhaqYm)d!TBC=L]Njrec,X@r9=:Oao;G2lM6A<"6._cqgnd) +rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+l2Lh\k5(\L!TBC=L]Njrec,WZr.+jHao;FMSE>b0"6._cqgnd) +rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+l2Lh[iq]2G!TBC=L]Njrec,W!r#PiJao;F?MW'Kn"6J(mr.4m* +rrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+l2Lk_oBZ1ErrB_&L]G*=rrDrnl2^h+rrVTQr/CXXimH9LJcCT, +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+l2LkI_P5q\rrB_&L]G*=rrD6ZJH5GerrT-hnr3SNimH9LJcCT, +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+l2LkD[ZT::rrB_&L]G*=rrCRG*WY]PrrSRFn;RALjji#XJcCT, +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+l2Lqdn`oE/rhKJn[.&kO[FY?Xm/6,KpWEO9lJV[BriZ8'kL%fQ +JcCQ+!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+l2Lqa]UYM(pnRih[.&kO[FY?XOSjY0ccZ:fSDaDIp9+DtkL%fQ +JcCQ+!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+l2LqaY_n=@pS7`g[.&kO[FY?X3W'ouWlkAAMW"L7oWJ2rl.+G\ +JcCQ+!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+kPk\Xlg"!gP=mYCkdfDbjBr9=:Ob5VM8o\ofPrq6'cZ2Xq( +n_E_es+gUSh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+kPk\6U7AafV>gP=mYCkdfDbi\r.+jHb5VLhbi/R(qom^kZ2Xq( +o%`hfs+gUSh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+kPk\.Oc$45V>gP=mYCkdfDbi#r#PiJb5VL`_r:UtqSLYYZ2Xq) +o\]:ls+gUSh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+k5PP]nFumYrrDQTL]HqsrrDlll2^h,s8W&VrrVr[o<8/pqtYgC +LAq80k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+k5PPS\D$\SrrDQTL]HqsrrC[JJH5GgrrW2op#5oPfpp'crrN&o +JcCK)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+k5PPQX4-d>rrDQTL]HqsrrBS+*WY]RrrW2noAT]NdYb]@rrN&p +JcCK)!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+jSo5YV>gP&m"bYDfDbj:r9=:VWW*%glM#l0JcE%U!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+jSo5SV>gP&m"bYDfDbi,r.+joWW*%-SCrJnJcE%U!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+jSo5RV>gP&m"bYDfDbh$r#Pj +ir9&'qLSZts.0/jqTS""!8W5+M#RJElA,H0f`(sBr9=:OWrE2!lK\A"s+13UrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RJElA,H0f`(rUr.+jHWrE1lS=KA*s+13UrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RJElA,H0f`(qkr#PiJWrE1jMMh.Zs+13UrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+h>[KSXoACElA,G`f`(sIqs"1\X8`7plLBH*JcE"T!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+h>[KPXoACElA,G`f`(s'qgebAX8`7RS@a@PJcE"T!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+h>[KPXoACElA,G`f`(r]q]5b,X8`7JMQVO1JcE"T!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+h>[QOpAV8q!2\t:!2\ +ir9&'qLSZts.0/jqTS""!8W5+hZ!]Ug=5o$rrAn\L]F:'rr@lQJH4#srrVE2jL"ser.4m!rrN/U +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+hZ!]UeBIZjrrAn\L]F:'rr=SI*WW4@rrV9&hmEF`r.4m!rrN/U +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+hZ!`VoBP] +ir9&'qLSZts.0/jqTS""!8W5+hZ!`M_ORReYl=]hlA,G,fDbiTr.+jHX8`4uosF`$p>PH;JcC<$ +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+hZ!`K[YgI2Yl=]hlA,G,fDbhjr#PiJX8`4uo +ir9&'qLSZts.0/jqTS""!8W5+h>[ZVmcs*/rj)RfLtDY,q>9FWrdk++rr_uDdHcA`Jc>cNh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+h>[ZHY+2$&qm-7cLtDY,fDC+!pOWA$rr_uDdHcA`Jc>cNh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+h>[ZETSeW?qQg.bLtDY,\GIcNh<+`f~> +ir9&'qLSZts.0/jqTS""!8W5+g]%BKlL4VUs6,9irrDB_l2^S(rrW)org!Kcp=%FKJcC<$s8N)T +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+g]%B$S@%Xgs6,9irr@lQJH4$ArrVKIqN_'_p=%FKJcC<$s8N)T +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+g]%ApMPfXDs6,9irr=SI*WW4crrV?Aq3Cs^pXdsWJcC<$s8N)T +k5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+gA_6Pq#.Mu!0?E$!0>_2!:p'Q!:\;6!V#WErr`2SdGTTUJcG`L +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+gA_6AiUsMV!0?E$!0>_2!3lBP!3"3C!Oo\+rr`2SdGTTUJcG`L +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+gA_6>g[h`N!0?E$!0>_2!-.oX!+X=S!NN;frr`5We`)/[JcG`L +!8Zf;J,~> +ir9&'qLSZts.0/jqTS""!8W5+M#RIOlA,G:f)GaGqs"1\ci=%1Q2^s`n)=1qs+14LrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RIOlA,G:f)Ga%qgebAci=$8Q2^sanDX:rs+14LrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RIOlA,G:f)G`[q]5b,ci=$&Q2^sao&KY!s+14LrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RImlA,GXec,X8r9=:Vd/O1HlKa]7!W2kIs+14KrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RImlA,GXec,W*r.+jod/O1BS>)8J!W;qJs+14KrrCm;s*t~> +ir9&'qLSZts.0/jqTS""!8W5+M#RImlA,GXec,V"r#Pj +ir9&'qLSZts.95lB)9a3rrCl+s3goJrVjA-!:]90!:\P=!:p'Q!:\A8!r;-MJcC<$NrK+8k5Tr~> +ir9&'qLSZts.95lB)9a3rrCl+s3goJp@l,t!:]90!:\P=!3lBP!3"9E!p6#\jSo5YJcC<$XT&:V +k5Tr~> +ir9&'qLSZts.95lB)9a3rrCl+s3goJo_#cp!:]90!:\P=!-.oX!+XCU!o]$7jSo5YJcC<$XT&:V +k5Tr~> +ir9&'qLSZts.B;nB)h_Oj8T,8JcF0u!r;?Y\c2Z+m"bY,7#s.r;Qu#6kT_H=Ng[C"KX$V.'rr3,& +.0_3&q>UHNk5Tr~> +ir9&'qLSZts.B;nB)h_Oj8T,8JcF0u!oCE3\c2Z+m"bYLb!ohr*JcCK) +!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng[C"KX$V.'rr3,& +.0_3&q>UHNk5Tr~> +ir9&'qLSZts.B;nB)h_Oj8T,8JcF0u!naNl\c2Z+m"bY,7#s.r;Qu#6kT_H=Ng[C"KX$V.'rr3,& +.0_3&q>UHNk5Tr~> +ir9&'qLSZts.KApB)ho-biA^'h1>UTrrrDtlK[g7]Dhlqm"bZ+e,KF6r9=:VdJj:HqYT@R!q#IT +JcCK)!g4Xaq>UEpr;Qt#MWFQ`7\0PY)J2(FoCLIu&@VW=ar8%c_&Uc#s&=m:psqp*qYq4q?N:&o +0Wjs3ITc^Nar8%c_&UbsrrCm;s*t~> +ir9&'qLSZts.KApB)ho-biA^'h1>UTrrrAYS=HbK]Dhlqm"bZ+e,KE(r.+jodJj:@kj7C1!irTt +JcCK)!g4Xaq>UEpr;Qt#MWFQ`7\0PY)J2(FoCLIu&@VW=ar8%c_&Uc#s&=m:psqp*qYq4q?N:&o +0Wjs3ITc^Nar8%c_&UbsrrCm;s*t~> +ir9&'qLSZts.KApB)ho-biA^'h1>UTrrrARMMe(j]Dhlqm"bZ+e,KCur#PjjQYb*!h5qS +JcCK)!g4Xaq>UEpr;Qt#MWFQ`7\0PY)J2(FoCLIu&@VW=ar8%c_&Uc#s&=m:psqp*qYq4q?N:&o +0Wjs3ITc^Nar8%c_&UbsrrCm;s*t~> +ir9&'qLSZts.TGmB)_f2qTS""!8W5+dJj@FmHX!3]DhlKmYCk\df0=gNp"KX$V.'M[qX>KbNrrmdYs8QJnrr3.fAH2\3q#:9oi>MOm#0IqQs8Rb-rr3/pVuQd) +Qi@!cQ=Tjl!8Zf;J,~> +ir9&'qLSZts.TGmB)_f2qTS""!8W5+dJj@3W19C9]DhlKmYCk\df0gNp"KX$V.'M[qX>KbNrrmdYs8QJnrr3.fAH2\3q#:9oi>MOm#0IqQs8Rb-rr3/pVuQd) +Qi@!cQ=Tjl!8Zf;J,~> +ir9&'qLSZts.TGmB)_f2qTS""!8W5+dJj@.R#6dU]DhlKmYCk\df0;er#PiJZMt!`(6SRqp]1?o +!pa4oqYpc!6kT_H=Ng[C"KX$V.'gNp"KX$V.'M[qX>KbNrrmdYs8QJnrr3.fAH2\3q#:9oi>MOm#0IqQs8Rb-rr3/pVuQd) +Qi@!cQ=Tjl!8Zf;J,~> +ir9&'qLSZts.]MnB)_f3B)9a3rrCl+s3UcKrq,XTrk&11[.&kOZI/[Pq>9FWrj2V+MB.HIrr<&s +rr\c7Q2pg^)J2(FoCLIu&@VW=ar8%c_&Uc#s3!RNnZ*DOqYq4q?N:&J)SbjZ*7"TaZPU">_&UaO +s4%&ORns(7^)Rd!@HP"rrL_$qYpT`)>sL9r\:>MrrG1)qYpRCgA_*Qf.-Xs +!8Zf;J,~> +ir9&'qLSZts.]MnB)_f3B)9a3rrCl+s3UcKprBT%qn)k.[.&kOY0m7LfDC+!pTsl$DA-m_rr<&s +rr\c7Q2pg^)J2(FoCLIu&@VW=ar8%c_&Uc#s3!RNnZ*DOqYq4q?N:&J)SbjZ*7"TaZPU">_&UaO +s4%&ORns(7^)Rd!@HP"rrL_$qYpT`)>sL9r\:>MrrG1)qYpRCgA_*Qf.-Xs +!8Zf;J,~> +ir9&'qLSZts.]MnB)_f3B)9a3rrCl+s3UcKpV!9]qRcb-[.&kOY0m7L\GIs(7^)Rd!@HP"rrL_$qYpT`)>sL9r\:>MrrG1)qYpRCgA_*Qf.-Xs +!8Zf;J,~> +ir9&'qLSZts.fSoB)_f4B)h_Oj8T,8JcF$q!WE#.rrBFsL]XT_k0a2/lhp#JpU'r'qAlg[q"k!j +!;uj!;<@fXr;Qi"2#7(L"ajbYs'V2mrrn^!s8P+(rr3"[@/Ks.arKgKs'V2mrsG'&s5He&q>^J\ +A:ad2rs&BG^]2.oqtpBn!;HKsFa3rd''o;l!=SW#rrMd$qYpS=Gl7RCZSMOZrrj%C1^Gtcrr3!, +pAY'moaL]s!8Zf;J,~> +ir9&'qLSZts.fSoB)_f4B)h_Oj8T,8JcF$q!VH,srrBFsL]Wn\ZI/[PM#;f(ca<]Tq@n)jq"k!j +!;uj!;<@fXr;Qi"2#7(L"ajbYs'V2mrrn^!s8P+(rr3"[@/Ks.arKgKs'V2mrsG'&s5He&q>^J\ +A:ad2rs&BG^]2.oqtpBn!;HKsFa3rd''o;l!=SW#rrMd$qYpS=Gl7RCZSMOZrrj%C1^Gtcrr3!, +pAY'moaL]s!8Zf;J,~> +ir9&'qLSZts.fSoB)_f4B)h_Oj8T,8JcF$q!V>uprrBFsL]Wnb[*emR/,UFgWjMd/q@[HZq"k!j +!;uj!;<@fXr;Qi"2#7(L"ajbYs'V2mrrn^!s8P+(rr3"[@/Ks.arKgKs'V2mrsG'&s5d(-qZ$S] +A:ad2rs&BG^]2.oqtpBn!;HKsFa3rd''o;l!=SW#rrMd$qYpS=Gl7RCZSMOZrrj%C1^Gtcrr3!, +pAY'moaL]s!8Zf;J,~> +ir9&'qLSZts.oYpB)_f5B)ho-biA^'h1>TYrrL<(p4rm5Z*(79nC%=:o).bQo!JE"RRZg>Qhp^^ +!;ZWp!;uit7^)Rd!@HP"rrq"(s8NAurr3#E,lIZDr\:>MrrFJ#rr3/R.cShtdf07If.,2J!qn,9 +rVuWm#64=8+9s6]r;Qu#6kT_H=Ng[C"KX$V.'<@G!Ls/grrfqi#W0-hrrJVirVm#%.0_3&ec,ZH +2ZE^W3hlNO!!)fo#*_IKs8N6!p\t6qrVlftr<)rs!gH%Gr;QdZ\,H=6"#\0nc9]qZrrW/urrN'# +qYpQOk5Tr~> +ir9&'qLSZts.oYpB)_f5B)ho-biA^'h1>TYrrL<(p4rm5I0pMrrFJ#rr3/R.cShtdf07If.,2J!qn,9 +rVuWm#64=8+9s6]r;Qu#6kT_H=Ng[C"KX$V.'<@G!Ls/grrfqi#W0-hrrJVirVm#%.0_3&ec,ZH +2ZE^W3hlNO!!)fo#*_IKs8N6!p\t6qrVlftr<)rs!gH%Gr;QdZ\,H=6"#\0nc9]qZrrW/urrN'# +qYpQOk5Tr~> +ir9&'qLSZts.oYpB)_f5B)ho-biA^'h1>TYrrL<(p4rm5J.WA8daJ-qEVpjXEO>`KPrQ$@Qhp^^ +!;ZWp!;uit7^)Rd!@HP"rrq"(s8NAurr3#E,lIZDr\:>MrrFJ#rr3/R.co2'e,K@Jf.,2J!qn,9 +rVuWm#64=8+9s6]r;Qu#6kT_H=Ng[C"KX$V.'<@G!Ls/grrfqi#W0-hrrJVirVm#%.0_3&ec,ZH +2ZE^W3hlNO!!)fo#*_IKs8N6!p\t6qrVlftr<)rs!gH%Gr;QdZ\,H=6"#\0nc9]qZrrW/urrN'# +qYpQOk5Tr~> +ir9&'qLSZts.0/jqTS""!8W5+K)YoI_j:.T!g^agrN617qU>HEq>BLXla?`sr$/oS_BJgRrr<&p +rr<&srrEbup\t7%pAY'qoaLm#43dd)!O)n.rrTM^rr2ou$hjT""n`;Vd0fUHrrMd$dJj92+,p$q +!!)rs##^NNqUe?+rr3RB421=Xe<^`Ts8U4[^[f2\cM[\DfbXYfrs#?"g@s +ir9&'qLSZts.0/jqTS""!8W5+K)YoI_j:.T!g^aIr<`Qbn'h::fDL1"Lpd6er$/]F_BJgRrr<&p +rr<&srrEbup\t7%pAY'qoaLm#43dd)!O)n.rrTM^rr2ou$hjT""n`;Vd0fUHrrMd$dJj92+,p$q +!!)rs##^NNqUe?+rr3RB421=Xe<^`Ts8U4[^[f2\cM[\DfbXYfrs#?"g@s +ir9&'qLSZts.0/jqTS""!8W5+K)YoI_j:.T!g^aKr=K&nnC.C;\GRBJ/@GK^r$/ZC_BJgRrr<&p +rr<&srrEbup\t7%pAY'qoaLm#43dd)!O)n.rrTM^rr2ou$hjT""n`;YeI)$LrrMd$dJj92+,p$q +!!)rs##^NNqUe?+rr3RB421=Xe<^`Ts8U4[^[f2\cM[\DfbXYfrs#?"g@s +ir=SRJ]sP+j8T,8JcEdj!r_rm]`/#sdf.,bdcpc2!9!gY!6imk!:0RJ!;X)'!Mq^RrrG0Tqu6Wr +q>UEpr;Qd#qtL*k!r`,u$N1),s33aRot<'_r;QdZ\,H=-!r`,u"oSPjnH/[grrN'#df0IH+2Jok +qYpNqr;Qf,qu6U"jVImrX>KbNrrmdYs8QJnrr3"bAGuN1qEhgprr3!7li-nbkSO3t"8Y?s!<3!! +@$glm!L@9JrrB4u!!'/!rr<&rrrVXoM>[AS9VVC`"9AK%.G=_#!S&b#rrVXoM>I5QO)Y$s!@5qh +rrr'&s8OP$rr3#L/GfAHh<+`f~> +ir=SRJ]sP+j8T,8JcEdj!qb@A]`/#sdf.,bdcpc2!2BE!!+s[Z!/UQ(!8"[Z!Mq^RrrG0Tqu6Wr +q>UEpr;Qd#qtL*k!r`,u$N1),s33aRot<'_r;QdZ\,H=-!r`,u"oSPknH/[grrN'#df0IH+2Jok +qYpNqr;Qf,qu6U"jVImrX>KbNrrmdYs8QJnrr3"bAGuN1qEhgprr3!7li-nbkSO3t"8Y?s!<3!! +@$glm!L@9JrrB4u!!'/!rr<&rrrVXoM>[AS9VVC`"9AK%.G=_#!S&b#rrVXoM>I5QO)Y$s!@5qh +rrr'&s8OP$rr3#L/GfAHh<+`f~> +ir=SRJ]sP+j8T,8JcEdj!qP"7]`/#sdf.,bdcpc2!2]W+!,Bs^!%[sg!4]K;!Mq^RrrG0Tqu6Wr +q>UEpr;Qd#qtL*k!r`,u$N1),s33aRot<'_r;QdZ\,H=-!r`,u"oSPmncJdhrrN'#df0IH+2Jok +qYpNqr;Qf,qu6U"jVImrX>KbNrrmdYs8QJnrr3"bAGuN1qEhgprr3!7li-nbkSO3t"8Y?s!<3!! +@$glm!L@9JrrB4u!!'/!rr<&rrrVXoM>[AS9VVC`"9AK%.G=_#!S&b#rrVXoM>I5QO)Y$s!@5qh +rrr'&s8OP$rr3#L/GfAHh<+`f~> +JcC<$JcFO*!8W5+a8Z8;nE]eRrrC:AXoR5*rrDWfl2^CarrW0NXT&5$ZRPnOrr<&prr<&srrEks +rVufrs8N*-pAY'moF:g""jSh.42;L-rrV$urr)it$hjT""nW9'rsSQ"rrMa$df0H>8cMDLqYpNq +p\tEW0)tr@YP8%t-JJJ!!S8h"rr[M1rrE&u!AEX8rrMF=rVltEPlCa_rrFJ#rr3#N.bF\$1nFRE +!MqUMrr<&srrVdKZMXY'[Nk8=rrr<#s8QYnrr31^C]FG+1pZrW!D'j#rrHYhrr3/D/-#W\P5bI^ +NGJCj!8Zf;J,~> +JcC<$JcFO*!8W5+a8Z8"\"_BXrr?X/$36:=rrB;$JH2p`rrW0NXT&5$ZRPnOrr<&prr<&srrEks +rVufrs8N*-pAY'moF:g""jSh.42;L-rrV$urr)it$hjT""nW9'rsSQ"rrMa$df0H>8cMDLqYpNq +p\tEW0)tr@YP8%t-JJJ!!S8h"rr[M1rrE&u!AEX8rrMF=rVltEPlCa_rrFJ#rr3#N.bF\$1nFRE +!MqUMrr<&srrVdKZMXY'[Nk8=rrr<#s8QYnrr31^C]FG+1pZrW!D'j#rrHYhrr3/D/-#W\P5bI^ +NGJCj!8Zf;J,~> +JcC<$JcFO*!8W5+a8Z7qWfbN2rr?d3&HJ-Grr@':*WU2hrrW0NXT&5$ZRPnOrr<&prr<&srrEks +rVufrs8N*-pAY'moF:g""jSh.42;L-rrV$urr)it$hjT""nW9'rsSQ"rrMa$df0H>8cMDLqYpNq +p\tEW0)tr@YP8%t-JJJ!!S8h"rr[M1rrE&u!AEX8rrMF=rVltEPlCa_rrFJ#rr3#N.bF\$1nFRE +!MqUMrr<&srrVdKZMXY'[Nk8=rrr<#s8QYnrr31^C]FG+1pZrW!D'j#rrHYhrr3/D/-#W\P5bI^ +NGJCj!8Zf;J,~> +JcC<$JcFO*!8W5+`r?23lK[j9[/U1'^&>)6nC7IBLXldYq9rqH6OrrB4u!!'/!rr<&prr<&s +rrGffqYpZus8OP$rr3#L/GfAIh`Lf:!KV3trrFS%rr3/P/H>`!g&D!PeL]2L#5f^\s2#rVqu6Wr +q#:QW;Q0Wq''o;l!=SW#rrMd$rr3,94oYH]rr32*8_j7%;QTlt"M[,!rrE&u!=SW#rrMd$f`)#_ ++8Yp8!rO@SrVlitr;Qe7TDAL%E$hXQqW"A,7K[R);"ogD4gV'!?:2!rt!ZsX7FRlS,`N: +)8>[R);"`b!8Zf;J,~> +JcC<$JcFO*!8W5+a8Z>@]:>D!o!JDtml11P!796q!8%."!/T/)!r(7(kPkObq>^Mtr;Q`sq>UEp +r;QdkUAFlm!<<'Jg&D!PeL^Rs!T-!;rrJ1"r;QdHg&D!TeL^b#.G=_#!S&aMrs&BG^]2.oqtpBn +!;QQuiDQWSrt=YlrrEN$rr3#l%0$80^HMSr!<3!&Y"@FHi)6ZUrrg)"rr2utrrEN$rr3#l%+tR] +\0(SFrrW*E\GcF-!;uitD4gY('lYM#mJ>k=1.D6CdM]di],B6#s)"D'rrF)$r;R;Y(T[,Q17S=D +dM]di],B5srrCm;s*t~> +JcC<$JcFO*!8W5+a8Z>?Y)8+7n?i2rn3$X]!7KBs!4_qJ!%cY"!qjgnkPkObq>^Mtr;Q`sq>UEp +r;QdkUAFlm!<<'Jg&D!PeL^Rs!T-!;rrJ1"r;QdHg&D!TeL^b#.G=_#!S&aMrs&BG^]2.oqtpBn +!;QQuiDQWSrt=YlrrEN$rr3#l%0$80^HMSr!<3!&Y"@FHi)6ZUrrg)"rr2utrrEN$rr3#l%+tR] +\0(SFrrW*E\GcF-!;uitD4gY('lYM#mJ>k=1.D6CdM]di],B6#s)"D'rrF)$r;R;Y(T[,Q17S=D +dM]di],B5srrCm;s*t~> +JcC<$JcFO*!8W5+`W$)9lg"'>[/U0rZMq!-\GF_Tqs"1Wec,^ImIBB>!ApAFrrJrPr;Q`sq>UEp +r;Qi,,ObR1"oJB#s(.AmrrnBts8SV]rr3"XL&M#P8A"g"!G.GnrrnBts8QYnrr3"YCX`:aV)J>Q +!BQtPrr<&ps8N'&A,ZH-"T.rn!:0p +]eTgH^&@s6ZRQ/1\G?.)h<+`f~> +JcC<$JcFO*!8W5+`W$(uU7B'o[/U0R)#ajC..>[cqgeb!ec,^7Vn_Ep!ApAFrrJrPr;Q`sq>UEp +r;Qi,,ObR1"oJB#s(.AmrrnBts8SV]rr3"XL&M#P8A"g"!G.GnrrnBts8QYnrr3"YCX`:aV)J>Q +!BQtPrr<&ps8N'&A,ZH-"T.rn!:0p +]eTgH^&@s6ZRQ/1\G?.)h<+`f~> +JcC<$JcFO*!8W5+`W$(pOc$U@[/U0T+8uiQ0(@Bjq]5aIec,^3QF#cS!ApAFrrJrPr;Q`sq>UEp +r;Qi,,ObR1"oJB#s(.AmrrnBts8SV]rr3"XL&M#P8A"g"!G.GnrrnBts8QYnrr3"YCX`:aV)J>Q +!BQtPrr<&ps8N'&A,ZH-"T.rn!:0p +]eTgH^&@s6ZRQ/1\G?.)h<+`f~> +JcC<$JcFO*!8W5+`;]r=oD/BlrrD3[XoQ>grrDQdl2^D*rrVu\n*'cQ\0(SFrrW*E\GcF-!;ZWp +!;ld7E$hXQqW"A,7K[R);"og=Fg&7Ors,jrrF)$r;R;U)8>[R);"ogdM]di],B5MrrW0N +XT&5$ZRPnOrr<&prs/P\<1X'h($>Jpr;clt!=SW#rrr$(s8Q)Xrr2rurr3>.9%<[j:8\'k +JcC<$JcFO*!8W5+`;]r7aQ*0(rrBA'$33TGrrB"qJH2q)rrV)J[HRVl\0(SFrrW*E\GcF-!;ZWp +!;ld7E$hXQqW"A,7K[R);"og=Fg&7Ors,jrrF)$r;R;U)8>[R);"ogdM]di],B5MrrW0N +XT&5$ZRPnOrr<&prs/P\<1X'h($>Jpr;clt!=SW#rrr$(s8Q)Xrr2rurr3>.9%<[j:8\'k +JcC<$JcFO*!8W5+`;]r6^>A^mrrBG)&HGMSrr?R,*WU31rrUo3Vs+-^\0(SFrrW*E\GcF-!;ZWp +!;ld7E$hXQqW"A,7K[R);"og=Fg&7Ors,jrrF)$r;R;U)8>[R);"ogdM]di],B5MrrW0N +XT&5$ZRPnOrr<&prs/P\<1X'h($>Jpr;clt!=SW#rrr$(s8Q)Xrr2rurr3>.9%<[j:8\'k +JcC<$JcFO*!8W5+JcG9?!7CbJ!7o^#!;HEV!:/28!qkjOkl1ZHQ2:L]SNZrO!!)rsq>gKo#HU3& +"W:.>rr2p#ZRQ/1\GlL3n6-A19%s4C!=&Atrrr7u.L%H6rVm#,.L%H6e,KENq>^Mtr;Q`sp\tEc ++TMI8UAFlm!<<'Jg&D!ReL^b#q>^V=s!-h.rr_R2s8Voq"*=Jkg&D!PeLZ:Or;QcQk5Tr~> +JcC<$JcFO*!8W5+_Z'W6Z2XfGr<`OXec,Wqr.+j(ec,]rSBg?u!Bl_ErrJZRrVlitr;ZTnrVm,( +5nF2;:p0fsrrfYX"t[:`rrqmq&.2%`r;Qd%q>C6rqPbqK/@bZY"LBQ^/@a1/!3Z.u!3Q2!!!)cn +"n*T6s%K0`rr`?%s!cY#rr^e&s8Voq"*=JelMgeclQZB/q>^V=s!cY#rrLY$JcGZJ!8Zf;J,~> +JcC<$JcFO*!8W5+_Z'W6Z2XfKr=K$bec,WLr#Phhec,]iMT+fZ!Bl_ErrJZRrVlitr;ZTnrVm,( +5nF2;:p0fsrrfYX"t[:`rrqmq&.2%`r;Qd%q>C6rqPl"L/@bZY"LBQ^/@a1/!3Z.u!3Q2!!!)cn +"n*T6s%K0`rr`?%s!cY#rr^e&s8Voq"*=JelMgeclQZB/q>^V=s!cY#rrLY$JcGZJ!8Zf;J,~> +JcC<$JcFO*!8W5+JcG6>!5e];!9Vl4!<2l\!;Y4G!qkjOkl1_`q>7u-"8:=+p;d161nFRE!MqUM +rr<&srrJ>Wrr32^)uorH,ObR1"oJB#s(.AmrrJ*pqYpNqrr3!9kPkJ^jr4*r!!*#u!G.GnrrJ*p +JcGZJ!8Zf;J,~> +JcC<$JcFO*!8W5+JcG6>!(Qno!4(2U!;HAA!8#g%!m[=]kl1_]hW_iU"8:=+p;d161nFRE!MqUM +rr<&srrJ>Wrr32^)uorH,ObR1"oJB#s(.AmrrJ*pqYpNqrr3!9kPkJ^jr4*r!!*#u!G.GnrrJ*p +JcGZJ!8Zf;J,~> +JcC<$JcFO*!8W5+JcG6>!)*8&!4:>W!:]k,!4^V[!l^&9kl1_]f]BpK"8CL1pW*:71nFRE!MqUM +rr<&srrJ>Wrr32^)uorH,ObR1"oJB#s(.AmrrJ*pqYpNqrr3!9kPkJ^jr4*r!!*#u!G.GnrrJ*p +JcGZJ!8Zf;J,~> +JcC<$JcFO*!8W5+]Dhm1\,QL*ZMq!-Zh;oL!:]pO!:n_@!r)3[kl1_Yn+XZu"8:3kilD'#\0(SF +rrW*E\GcF-!;uj$ +JcC<$JcFO*!8W5+]Dhm,\,QKt)#ajC);s*G!3#gH!3k&S!nOm@kl1_=Z.6\j"8:3kilD'#\0(SF +rrW*E\GcF-!;uj$ +JcC<$JcFO*!8W5+]Dhm+\,QKu+8uiQ+5tfN!+YpJ!--Ti!m[n'kl1_6U +JcC<$JcFO*!8W5+]`/*5p[\UEprVm#+0*a/9q>UEprVm#,.L%H6 +Zi:'bVYGrKO2UhFrrCm;s*t~> +JcC<$JcFO*!8W5+]`/*.e].BorrBn6$33':rrCCCJH1MWrrVi\qrn%]]:@Qkrr`2MdFuV?!Bl_E +rrJZRrVlitr;QriDAWO0Z2FV,X?dC$),RL8rr3,-.L%H6q>UEprVm#+0*a/9q>UEprVm#,.L%H6 +Zi:'bVYGrKO2UhFrrCm;s*t~> +JcC<$JcFO*!8W5+]`/*,c+Ne\rrBt8&HFuFrrB(s*WRbBrrVcWqWRq\Y):ZErr`5Re_S7F!Bl_E +rrJZRrVlitr;QriDAWO0Z2FV,X?dC$),RL8rr3,-.L%H6q>UEprVm#+0*a/9q>UEprVm#,.L%H6 +Zi:'bVYGrKO2UhFrrCm;s*t~> +JcC<$JcFO*!8W5+]`/-4o'5Q9\GlQ`rN6.EfDbjMqs"1W]`/*3lK\B*rrVuL`;ZV8Xi0Jlrr_]? +gAHO%VZ-\l[If7UO5\ak!8Zf;J,~> +JcC<$JcFO*!8W5+]`/-)^RV%U\GlPmr<`O:fDbjFqgeb!]`/*)S=KB2rrVuL`;ZV8Xi0Jlrr_`@ +gAHO%VZ-\l[If7UO5\ak!8Zf;J,~> +JcC<$JcFO*!8W5+]`/-&Z\jn!\GlPpr=K$EfDbj?q]5aI]`/*'MMh/brrVuL`;ZV8Xi0Jlrr_fE +h>Dj(VZ-\l[If7UO5\ak!8Zf;J,~> +JcC<$JcFO*!8W5+]Di$4n*93-\GlQLrN6.YfDbj?r9=:Q]`/'+lLEd3!q +JcC<$JcFO*!8W5+]Di'+[@Ec!r42h- +JcC<$JcFO*!8W5+]Di')Vi$A7r42h->5]$5V:Y_IA,IAJEP2;QbDNI[rrV\tO84S4QdbI(!r;Hc +JcDVI!Vi8VL]GlVrrCm;s*t~> +JcC<$JcFO*!8W5+\c2d)lgak_rrMu0riQ:.nC[a@p\a:Vlb*6!p@%b6rrLQ/onWX?l%/l"rrMnd +mt^ttgA_0/k5Tr~> +JcC<$JcFO*!8W5+\c2c\U:op(rrMRIrX&ZDd+J?uchr=oLqN`he[4#frrLQ/onWX?l%/l"rrMnd +mt^ttgA_0/k5Tr~> +JcC<$JcFO*!8W5+\c2cTOg4/]rrMUOrXf/Qdb+R"Wr*n +JcC<$JcFO*!8W5+\GlX/qYn#)!V!DoXoZ'/g&D'Oqs"1W^&J-2qr%JS[.9"RO5Z-!$0fC*O,/UY +Xip3trrB_"L]NS+g]%90k5Tr~> +JcC<$JcFO*!8W5+\GlX&lM7si!RM\_$3;RDg&D'Hqgeb!^&J0)m/>oC!4; +JcC<$JcFO*!8W5+\GlX%k4lId!R`(h&HONRg&D'Aq]5aI^&J0'l2BT@!4; +JcC<$JcFO*!8W5+JcG'9!9!gY!6 +JcC<$JcFO*!8W5+JcG'9!2BE!!*7bP!3#gH!3hsm!4;6O!KZK-rrM)UpP8jXn +JcC<$JcFO*!8W5+JcG'9!2]W+!*e+U!+YpJ!-+M.!4;6O!KZK-rrM)UpP8jXn +JcC<$JcFO*!8W5+JcG$8!6kDE!8H3,!;HEV!:-0T!7L:k!K[#>rrB_(L]NRbQi@&fl\GQ1h#@B1 +k5Tr~> +JcC<$JcFO*!8W5+JcG$8!+l*9!0c+9!71Ro!/R0F!7L:k!K[#>rrB_(L]NRbQi@&fl\GQ1h#@B1 +k5Tr~> +JcC<$JcFO*!8W5+JcG$8!,;BD!1)=rrB_(L]NRbQi@&fl\GQ1h#@B1 +k5Tr~> +JcC<$JcFO*!8W5+YlFb$]`.uFrN6.dgA_0Pqs"1WgAh3O!<1(>!Vh`CL]FgZrrMQYSc8`cVX]HB +]UAd"q!*Y8]\NMeh<+`f~> +JcC<$JcFO*!8W5+Yl=aln\"l%2uO'`_:nnhp\TLAf@p6+p[S%"rrMnUm>(bLqu6]bnt#d]pnmS; +!5+a"!;Pi8!5.+e!8Zf;J,~> +JcC<$JcFO*!8W5+Yl=ahn%AZ#4T,il_qP+jnG=7,\D$rap@%asrrMnUm>(bLqu6]co:>m^pnmS; +!5+a"!;Pi8!5.+e!8Zf;J,~> +JcC<$JcFO*!8W5+Z2Xt+p[.SO^Ae6,ZMq!-ZhiDU!:]pO!:nkD!r;HaaSu7Xl\GQ1rVluZe)gM! +rrBFpL]GklrrCL4L]EdsrrCm;s*t~> +JcC<$JcFO*!8W5+Z2Xt%eZHme^Ae5l)#ajC)=Q;Z!3#gH!3k2W!oV/^aSu7Xl\GQ1rVluZe)gM! +rrBFpL]GklrrCL4L]EdsrrCm;s*t~> +JcC<$JcFO*!8W5+Z2Xt$c(;WC^Ae5m+8uiQ+7S"a!+YpJ!--`m!ntBIaSu7Xl\GQ1rVlu]fB3"& +rrBFpL]GklrrCL4L]EdsrrCm;s*t~> +JcC<$JcFO*!8Wh,7#s.r;Qu#6kT_H=Ng^D"nd$`#VWL_s7u`prrfqi#W0-k +rrfqi#W0-krrfDP"t6VBrri,^lKn>\rrDB`XoQ/hrrDfkl2^/(rrVlYouR.5O6_T%]`.p5kg@fM +T)Sf6m>(c,S,WK$l%n-p!8Zf;J,~> +JcC<$JcFO*!8Wh,7#s.r;Qu#6kT_H=Ng^D"nd$`#VWL_s7u`prrfqi#W0-k +rrfqi#W0-krrfDP"t6VBrrh/JS>bSarrBn6$33'>rrCCCJH1M[rrUK9cH-"cO6_T%]`.p5kg@fM +T)Sf6m>(c,S,WK$l%n-p!8Zf;J,~> +JcC<$JcFO*!8Wh,7#s.r;Qu#6kT_H=Ng^D"nd$`#VWL_s7u`prrfqi#W0-k +rrfqi#W0-krrfDP"t6VBrrgr2MO(c,S,WK$l%n-p!8Zf;J,~> +JcC<$JcFO*!8WhUEpr;Qt#MWFQ`7\0PY&S=,=oCLIu&@VW=(b6S,WJbl%f>uh>[K2k5Tr~> +JcC<$JcFO*!8WhUEpr;Qt#MWFQ`7\0PY&S=,=oCLIu&@VW=_SE@rn!9*4! +#+,Ain'TPMT)Si\O6q`'St#`[V +JcC<$JcFO*!8WhUEpr;Qt#MWFQ`7\0PY&S=,=oCLIu&@VW=QMW)\W!9*4! +#+,AinC?(XT)Si\O6q`'St#`[V +JcC<$JcFO*!8Wk="Ss4V)u0:0!!)rs!Nl.rrs%F"s8T/Wq>C6rHt!'TXn_nq!T=pnrs$UcmJm2% +li-nfkSO:!(@1u""m?d&s'V2mrrJErmJd7\nGBp!!5e];!9W&9!:]pO!:nnE!q5FMli7"_iVrnq +l%fK;r9;f"Sc8]&l\GPpSGrScl%f>uh>[K2k5Tr~> +JcC<$JcFO*!8Wk="Ss4V)u0:0!!)rs!Nl.rrs%F"s8T/Wq>C6rHt!'TXn_nq!T=pnrs$UcmJm2% +li-nfkSO:!(@1u""m?d&s'V2mrrJErmJd:6\Ej..rr>Oe$37BdrrB"qJH2q/rrTTuk3N$KmHjc1 +rrBt$L]mMNlIP?nrrB^tL]H/!rrAn[L]HDirrCm;s*t~> +JcC<$JcFO*!8Wk="Ss4V)u0:0!!)rs!Nl.rrs%F"s8T/Wq>C6rHt!'TXn_nq!T=pnrs$UcmJm2% +li-nfkSO:!(@1u""m?d&s'V2mrrJErmJd:-XQTSsrr>^j&HK2mrr?R,*WU37rrT*UiTpLFl0/') +rrBt$L]mMOm+LiurrB^tL]H/!rrAn[L]HDirrCm;s*t~> +aT)8eJcC<$Qi@'APQ(cT8cMDLqYpNqp\tEa)?9_+YO_\om2>j%!rapPrr3!PkPkJblS&;<0B`?7 +"m[iAs!HJ!rrL_$m/R+b^&J-0\,NN2ZgccM!;HEV!:/D>!q#:Mli.%VoD[bL!4;!H"6':TpRM6` +O6_T%XdoCkV +aT)8eJcC<$Qi@'APQ(cT8cMDLqYpNqp\tEa)?9_+YO_\om2>j%!rapPrr3!PkPkJblS&;<0B`?7 +"m[iAs!HJ!rrL_$m/I+^qn<"1mjJ)A!?'8>rrCCCJH1M\rrT-hm-FZQ]uBa*rrBFjL]cW9q"L +aT)8eJcC<$Qi@'APQ(cT8cMDLqYpNqp\tEa)?9_+YO_\om2>j%!rapPrr3!PkPkJblS&;<0B`?7 +"m[iAs!HJ!rrL_$m/I+]qRun0n1FVO!?]bFrrB(s*WRbGrrSRFkj/6MZ+BVfrrBFjL]cW9q=pK[ +!0?H%!3Mdk!2\q9!9)c6!8Zf;J,~> +i;X#KJ3>AGJaW42!MUq?s8OEss+13:rrCl>rs&BG^]2.oqtpBn!;HKsFa3rd''o,g!HiYbrrTM^ +rr2p2Y"@FHi)6ZVs/nrKr8:JSs8NK#rr3#l%&Nt(nGTKj^&$Rb!<2l\!;kRO!VZ3PrrW)_mG\'F +V +i;X#KJ3>AGJaW42!MUq?s8OEss+13:rrCl>rs&BG^]2.oqtpBn!;HKsFa3rd''o,g!HiYbrrTM^ +rr2p2Y"@FHi)6ZVs/nrKr8:JSs8NK#rr3#l%&Nt(d/=:P3:G]'!;HAA!9`/;!S,Q_rrVPWW8[aV +V +i;X#KJ3>AGJaW42!MUq?s8OEss+13:rrCl>rs&BG^]2.oqtpBn!;HKsFa3rd''o,g!HiYbrrTM^ +rr2p2Y"@FHi)6ZVs/nrKr8:JSs8NK#rr3#l%&Nt(desaY4n.;-!:]k,!7]g(!RAdPrrVDAR,S&F +V +iVrrK6i8838+ZHS!F-t&s+135rrCl>rrJrSrr3![UAOrj!;QQuPX>-Erri5jrrSEOp\b$l41G.f +!+l-0!FPj*rr?X0!!Qa/s8N0!rr3#t"/Pqsi;KeYbhW3unGMPOoA'?Hrr)0_!qPXKiVrnSl%f>u +RfuSc8] +iVrrK6i8838+ZHS!F-t&s+135rrCl>rrJrSrr3![UAOrj!;QQuPX>-Erri5jrrSEOp\b$l41G.f +!+l-0!FPj*rr?X0!!Qa/s8N0!rr3#t"/PqsUAYE!B&*CdW;M2H\D7)bq=X(R!l:DIiVrnSl%f>u +RfuSc8] +iVrrK6i8838+ZHS!F-t&s+135rrCl>rrJrSrr3![UAOrj!;QQuPX>-Erri5jrrSEOp\b$l41G.f +!+l-0!FPj*rr?X0!!Qa/s8N0!rr3#t"/PqsV>Uu+C>AghA,IAJJ)(&)q"*hO!k+!"iVrnSl%f>u +RfuSc8] +iVsOL-:5fGa?V)3s7Rcs\O%igqZ$I?!rjSorr3n66n1L$s8Vd>51!%X>N>b`h.8Ds?ebV\-74Y!;uiuMd#lQrrV$urr)j1Y"I4>g.nOF +s/nuDq:\T@s8NK#rr3#k%H[Tkr:g**rrC:AXoR54rrDfkl2^1hrrVNOqr.PT_s)sWl'hVP_s)sW +iLTuKnEPf0[+tZ]h<+`f~> +iVsOL-:5fGa?V)3s7Rcs\O%igqZ$I?!rjSorr3n66n1L$s8Vd>51!%X>N>b`h.8Ds?ebV\-74Y!;uiuMd#lQrrV$urr)j1Y"I4>g.nOF +s/nuDq:\T@s8NK#rr3#k%H[TkmagdBrr?X/$36:GrrCCCJH1eMrrSpbm,@sE_s)sWl'hVP_s)sW +iLTuKnEPf0[+tZ]h<+`f~> +iVsOL-:5fGa?V)3s7Rcs\O%igqZ$I?!rjSorr3n66n1L$s8Vd>51!%X>N>b`h.8Ds?ebV\-74Y!;uiuMd#lQrrV$urr)j1Y"I4>g.nOF +s/nuDq:\T@s8NK#rr3#k%H[Tkld"e4rr?d3&HJ-QrrB(s*WS7>rrS=?ki)OA_s)sWl'hVP_s)sW +iLTuKnEPf0[+tZ]h<+`f~> +iVrsM-G]W\#J;BTs8=8m0)d0uPQ1P-"ofnrs8T\.-3^XRr?a0[r[%_Zs8Ppp-3Yu0s8ODmJcC<$ +[Jp6_Q2^ieq>^Mtr;Q`squ6`d>`&CY!DK6arr<&urrVXoM>I5QO)Y$s!@-n/rrq^4s8O>/rr3/f +,6.Zlg&D!PeL]h^"8M?Mou$e1qRuj1!:\kF!<2l\!;je9!rMEQi;Wf*l%kc-!5n&W!8 +iVrsM-G]W\#J;BTs8=8m0)d0uPQ1P-"ofnrs8T\.-3^XRr?a0[r[%_Zs8Ppp-3Yu0s8ODmJcC<$ +[Jp6_Q2^ieq>^Mtr;Q`squ6`d>`&CY!DK6arr<&urrVXoM>I5QO)Y$s!@-n/rrq^4s8O>/rr3/f +,6.Zlg&D!PeL]k_"TI2]SBf%P!UhuG$38H0rrDfjJH4lQrrVSkW8R[UdclRUrrBt$L]H/!rrB1e +L]H\prrCm;s*t~> +iVrsM-G]W\#J;BTs8=8m0)d0uPQ1P-"ofnrs8T\.-3^XRr?a0[r[%_Zs8Ppp-3Yu0s8ODmJcC<$ +[Jp6_Q2^ieq>^Mtr;Q`squ6`d>`&CY!DK6arr<&urrVXoM>I5QO)Y$s!@-n/rrq^4s8O>/rr3/f +,6.Zlg&D!PeL]k_"THuHMT*L5!Ur5M&HL89rrDQc*WX^0rrVJZR,IuEdclRUrrBt$L]H/!rrB1e +L]H\prrCm;s*t~> +iVrs0-M%09&+Ltts8ODmPP(:i9)no<-N=&F-NF)[=XKF+RO2#6s!B(?nX_'_s8Oc"`e"/@s/uA% +h3J!@1nFRE!MqUMrr<&srrVdKZMXY'[Nk8=rs&B$s8V[IZMFM$8A"g"!>t#!rrqO's8Nr!rr3/a +)ZThKP5bI^NGIYU"oe/ZlL+SgrrMVpriQ:3qVM5PnGMPOo>^e3rVHELrrDQRL]FQFrrBt$L]HD5 +rrN&ppAY-Om"bY +iVrs0-M%09&+Ltts8ODmPP(:i9)no<-N=&F-NF)[=XKF+RO2#6s!B(?nX_'_s8Oc"`e"/@s/uA% +h3J!@1nFRE!MqUMrr<&srrVdKZMXY'[Nk8=rs&B$s8V[IZMFM$8A"g"!>t#!rrqO's8Nr!rr3/a +)ZThKP5bI^NGIYU"oH?1S?D:urrLI`rX&ZSn)"'EW;M2H\AnOMpZ_)'rrDQRL]FQFrrBt$L]HD5 +rrMTQpAY-Om"bY +iVrs0-M%09&+Ltts8ODmPP(:i9)no<-N=&F-NF)[=XKF+RO2#6s!B(?nX_'_s8Oc"`e"/@s/uA% +h3J!@1nFRE!MqUMrr<&srrVdKZMXY'[Nk8=rs&B$s8V[IZMFM$8A"g"!>t#!rrqO's8Nr!rr3/a +)ZThKP5bI^NGIYU"o>oiMP0:RrrLOirXf/`nD=0FA,IAJJ&_Kip>tPsrrDQRL]FQFrrBt$L]HD5 +rrMKJpAY-Om"bY +iVrs1-Lh$7&+:hts8ODmp&FY20`V/"-N=&F-NF)^1a_kpoHlBos!B)Zs7I]cs8Qs`-:3X\JcC<$ +Z2Xg[QN%#r+8Yp8!rO@SrVlitr;Qe7TDAKqE$hXQqW"A,7K[R);!pK"SqHMo_l`.!9X6_!5dUm!;??U!:6EZ!2]";!7I;8!5n&W!9('[#6+Gh +lg"0ApAY-*mYCn)nD!sCh<+`f~> +iVrs1-Lh$7&+:hts8ODmp&FY20`V/"-N=&F-NF)^1a_kpoHlBos!B)Zs7I]cs8Qs`-:3X\JcC<$ +Z2Xg[QN%#r+8Yp8!rO@SrVlitr;Qe7TDAKqE$hXQqW"A,7K[R);!pK"QlYQbkK'U!4)P1!(YoG!6>"g!0G/!!<1mU!2]";!7I;8!5n&W!9('[ +#5d>pU7BHtpAY-*mYCn)nD!sCh<+`f~> +iVrs1-Lh$7&+:hts8ODmp&FY20`V/"-N=&F-NF)^1a_kpoHlBos!B)Zs7I]cs8Qs`-:3X\JcC<$ +Z2Xg[QN%#r+8Yp8!rO@SrVlitr;Qe7TDAKqE$hXQqW"A,7K[R);!pK"Q>`*_tM%K!4;\:!)28L!1`s.!'8'u!<1mU!2]";!7I;8!5n&W!9('[ +#5[)_Oc%$EpAY-*mYCn)nD!sCh<+`f~> +iVrsP-G09W&%a/`s8ODmp]'b11&q8#-N=&F-NF)Q1FDbonKp*ms!B)ls8OGGrrr1l>Uh(2JcC<$ +Z2Xg[QN$tKQ2:L]SNZrO!!)rs!!<#t!7UrI$EQN)"W:.>rr:0pZ7cG9ZMje+ +Z7cG9ZMje+ZRQ/1\DdGhrqH9+rrCIFXoR&1rrE#pl2^^UrrD$EL]Ea.rrD$BLop[Xrq69U!q#a\ +pAY0gT'qI8db=^$h<+`f~> +iVrsP-G09W&%a/`s8ODmp]'b11&q8#-N=&F-NF)Q1FDbonKp*ms!B)ls8OGGrrr1l>Uh(2JcC<$ +Z2Xg[QN$tKQ2:L]SNZrO!!)rs!!<#t!7UrI$EQN)"W:.>rr:0pZ7cG9ZMje+ +Z7cG9ZMje+ZRQ/1\DdGipt+d0_uB^Yr<`OXhu<]Fqgeb1UAk5Pm"bY-R/[0Fl%lJA!Vt+AS-#YC +p@eLepn$r1!7KU$!8Zf;J,~> +iVrsP-G09W&%a/`s8ODmp]'b11&q8#-N=&F-NF)Q1FDbonKp*ms!B)ls8OGGrrr1l>Uh(2JcC<$ +Z2Xg[QN$tKQ2:L]SNZrO!!)rs!!<#t!7UrI$EQN)"W:.>rr:0pZ7cG9ZMje+ +Z7cG9ZMje+ZRQ/1\DdGipX&%$_uB^]r=K$bhu<]9q]5aeUAk5Pm"bY-R/[0Fl%lJA!Vjb8M?90o +p%JCdpn$r1!7KU$!8Zf;J,~> +iVt9f-9fKBb@-JJ7p-78cm=!j=-PU9Q5s!B)ls8OGDrrUh"/:mhPs0;S( +h1>TWs53hV_YpV;k261=mel>Mo:c0aXmLoEiKsQEO6_T%XfVO)q=""Ro)AacT(.U:db4X#h<+`f~> +iVt9f-9fKBb@-JJ7p-78cm=!j=-PU9Q5s!B)ls8OGDrrUh"/:mhPs0;S( +h1>U!rrE&7rr>Oe$37BhrrAGaJH33RrrB1gL]HD#rrA,GL]FQZrri8[[aXU6rrMndnV@1ng&D'. +k5Tr~> +iVt9f-9fKBb@-JJ7p-78cm=!j=-PU9Q5s!B)ls8OGDrrUh"/:mhPs0;S( +h1>U!rrE&7rr>^j&HK2qrr>Re*WU\`rrB1gL]HD#rrA,GL]FQZrri8VWQXMrrrMndnV@1ng&D'. +k5Tr~> +iVrrN8Gje=:A=eg-7CGE-3K_:s"XL""ofnrs8T_/-3V$^s!B)ls8OGGrrH^dr[%bKs8ODmJcC<$ +[Jp6_JcC<$hu<`RZMq!-Zh<8V!;??U!:8VCs7u`p`r?(iQLBV0]U&Qt]^(@Rd^B)UqYTFT!ViM` +L]NRjf`(s-k5Tr~> +iVrrN8Gje=:A=eg-7CGE-3K_:s"XL""ofnrs8T_/-3V$^s!B)ls8OGGrrH^dr[%bKs8ODmJcC<$ +[Jp6_JcC<$hu<`G)#ajC);sHQ!6>"g!0H+ +iVrrN8Gje=:A=eg-7CGE-3K_:s"XL""ofnrs8T_/-3V$^s!B)ls8OGGrrH^dr[%bKs8ODmJcC<$ +[Jp6_JcC<$hu<`H+8uiQ+5u/X!1`s.!'9$;!or/4`r?)(QLBV0]U&Qt]^(@Rd^B)Uj66@>!<2Ed +!ViM`L]NRjf`(s-k5Tr~> +i;X#LJ35;GL[tHE%jid64>)$Ys8ScN.o?6m-N=#JYX0g/\,QF--N=&F-NF)PdT8%U@c@@e-74 +i;X#LJ35;GL[tHE%jid64>)$Ys8ScN.o?6m-N=#JYX0g/\,QF--N=&F-NF)PdT8%U@c@@e-74 +i;X#LJ35;GL[tHE%jid64>)$Ys8ScN.o?6m-N=#JYX0g/\,QF--N=&F-NF)PdT8%U@c@@e-74 +f)PasJcC<$M>mS3JcG3=#l*,lVP^K6gA&)U"8qi_r5emMoAKWMlg"Jjrrr+? +DJk8to8!CZPQ(X#m>(c$\c2^/o)@nUmeZqCrrUo]T)ONJO/:%hec,X*k5Tr~> +f)PasJcC<$M>mS3JcG3=#l*,lVP^K6gA&)U"7FCHo#Uh2PPkggB&N[hR/DL8\D[AgU7D#"rrr1` +O,os&o8!CZPQ(X#m>(c$\c2^&_Z$&,Y3,WArrUo]T)ONJO/:%hec,X*k5Tr~> +f)PasJcC<$M>mS3JcG3=#l*,lVP^K6gA&)U"7*h/nAtV0QMhBqC>f*l8,OD.J)L>.Oc&nSrrr;: +^:qFQo8!CZPQ(X#m>(c$\c2^$\,M6dT],e.rrUo]T)ONJO/:%hec,X*k5Tr~> +f)PasJcC<$M>mS3JcG9?!V!MlL]OpQ\,QU0nET?5aSu7\rN6.YiVroOr9=:Ki;`iBmJd4brndYU +p5/`c!dC`,pP8j9iK=-?Xm_&G_mo^LrV,jVri5tuh<+`f~> +f)PasJcC<$M>mS3JcG9?!V!MlL]OpQ\,QU&[@Eu@aSu6?r<`P!iVrnur.+j0i;`hImf*@emeP`> +!ViJhNrkWPO8"G2QJmu+!3P^G!5l>H"S^Q\g%_TI!8Zf;J,~> +f)PasJcC<$M>mS3JcG9?!V!MlL]OpQ\,QU#Vi$V\aSu6Dr=K%+iVrnJr#Pi!i;`h7mf*@elhK?: +!W1%<^&l0^O8"G2QJmu+!3P^G!5l>H"SU6GdeBdA!8Zf;J,~> +f)PasJcC<$M>mS3JcG<@!5.r[!5,f@"oe&WlL=eqrrMu0riQ:.nDaHJrVPj[qr7VWrp&h;rrW#f +qVM5PV#,$3G43VNr.kE8[+_&Ms8DZk!Vi8VL]FftrrW,or1Euhh<+`f~> +f)PasJcC<$M>mS3JcG<@!5.r[!5,f@"o,^"S@JF +f)PasJcC<$M>mS3JcG<@!5.r[!5,f@"o#0WMQ?QqrrMUOrXf/Qdc19,iqjbseDgK0pPP+$rrV#f +h;8/3f)*/`_=YpIr.kE8[+_&M!SuZ,rrMndnV@1P_#FK*ipEB +JcC<$JcFO*!8W5+o`"seT(7[n?W%r!P&!crrDKbl2^G8rrW)anF$;Xn`oo, +rrBh1D?/)_rr_NAiV8rC"oeJrq#(-arrB_(L]NRb_Z'f;p$V,6pn.Qdh<+`f~> +JcC<$JcFO*!8W5+o`"seT(7[rrVM`\F0@u]:@a8 +rrC@@Nr[u6rr_NAiV8rC"o\&Qi:$R9rrB_(L]NRb_Z'f,cE<\Bg7SBFh<+`f~> +JcC<$JcFO*!8W5+o`"seT(7[Re*WU]LrrVDMX7#uhY):lh +rrD'T^&[Ktrr_NAiV8rC"o$K5Nl(8XrrB_(L]NRb_Z'f)`Lr*_e=Za@h<+`f~> +JcC<$JcFO*!8W5+p&>'fT(%O:T(oep!WN#;rrD!UXoQN%rrDcjl2^21rrW2rqX=Fdrp&eJi;Wf2 +qJH;Jr;ZfY!:u`\!<2um!Vu]crrM)TpP8jWnA>20qsWh8lgakErrCm;s*t~> +JcC<$JcFO*!8W5+p&>'fT(%O:T(oep!rDEcaSu77r<`O*ir9#!r.+j0ir9)Ukj%X:"8JCVpu)/P +j8+f:cM[_BjT+nBrrr,Thr!JgoD\jMV>#cH[.(s4#4JphS>*dbTDnoIk5Tr~> +JcC<$JcFO*!8W5+p&>'fT(%O:T(oep!r;9`aSu7:r=K$6ir9"Kr#Pi!ir9)TjQ>q2"8@\1pYc&O +n+s`uir&iVk5b.Frs&JZOc#$`ht-jKiMH:)!OV@5rs%heMMdP'l(@tUh<+`f~> +JcC<$JcFO*!8W5+p&>$!mYCkNJcGTH!6kDE!8HQ6!<)f[!;k(A!qkjKi;Wi=GPc7XV#:5pmEsMX +SGr]iq>1$XrrVGtV>c8QO/:%h_#FN7p%8$LrrCm;s*t~> +JcC<$JcFO*!8W5+p&>$!mYCkNJcGTH!+l*9!0cIC!:Tf9!9_Z-!n3[Oi;WiCQMZ^C\GZ@/mEsMX +Sc8ilp>Y9.n,EIR]VYU`"-9;%nA,&+o$YS9SGrTFk5Tr~> +JcC<$JcFO*!8W5+p&>$!mYCkNJcGTH!,;BD!1)[F!93ks!7] +JcC<$JcFO*!8W5+pAY-Om"bZ#JcGTH!58?6!:/\F!:KdM!;"M9!qGRMiVrrPM>M/kM"^fI"7=L` +m@+%Tri?&#qt^/QrrCm;s*t~> +JcC<$JcFO*!8W5+pAY-Om"bZ#JcGTH!&si`!5[^q!1<\8!4^>S!kk,WiVrrRV#-2RU\Off"7=L` +m@4+Vr;*Jo!pnt;P5bO +JcC<$JcFO*!8W5+pAY-Om"bZ#JcGTH!'L2l!5mjs!(Zr.!.W;o!j[^3iVrrUb58mRb5;/;"7Odj +n!j=Xo'NLX!pJM/P5bO +JcC<$JcFO*!8W5+pAY,am"bY5Yl=b#qp#-Aos4S"!OMX`rrDcjl2^1rrrW&kro*kWS,7((G4#8. +"8:-im@jO[rhf]!q"!e:nbSFK!8Zf;J,~> +JcC<$JcFO*!8W5+pAY,am"bY5Yl=adm*5P2i#)G#!?(@errC+;JH1eXrr`8bf_aY-!4)K_!L<3R +rr_uBdI!Y-!;r_o"lI.pS@dgErrCm;s*t~> +JcC<$JcFO*!8W5+pAY,am"bY5Yl=a`kfs,.i?/%2!?^glrrASe*WS7Irr`8^dJDi%!7LbY!Q"O/ +rr`#GeaK43!;35h"kpDPMQYg!rrCm;s*t~> +JcC<$JcFO*!8W5+p\t6XlA,H)ZMt(,p$M8JcMmn1rN6.6jSo5Yqs"1YcMmnDiVrndqJH;or;Qil +kO##D"8r#nri#i$qX*S5mI^@?rrCm;s*t~> +JcC<$JcFO*!8W5+p\t6XlA,H)ZMt(#c_nDMcMmm\r<`NajSo5Kqgeb1cMmnAiVrnuqMtXAr;Qim +kj>,E"7kXGrM]`#kc1/CW64^prrCm;s*t~> +JcC<$JcFO*!8W5+p\t6XlA,H)ZMt(!`g3e%cMmm^r=K#mjSo5>q]5aecMmn@iVro7qRut$r;Qin +lL1JI"4F*lpo+2sjI;$aR)&3SrrCm;s*t~> +JcC<$JcFO*!8W5+p\t6+lA,GQZ2Xt%lg!g2cMmmqrN6.JjSo5Jr9=:RY5\LCqJH;SqYpQmU]1>l +rqHNlri#i!qt0RYO8f49k5Tr~> +JcC<$JcFO*!8W5+p\t6+lA,GQZ2Xs`U7@t8cMmltr<`OHjSo4Ir.+jXY5\LPqMtX,qYpQnV#LYu +n)<0]mej$`"7O@Wm#V/Hh<+`f~> +JcC<$JcFO*!8W5+p\t6+lA,GQZ2XsZOc#:TcMmm"r=K$SjSo3Mr#PifY5\LaqRuslqYpQnV#LYq +`K?%8^[nE("73eAk`>`Dh<+`f~> +JcC<$JcFO*!8W5+p\t5ilA,G:Yl=k(n*968cMmm]rN6._jo5>Sr9=:KYQ"XaGPc7XUmqAerV60` +r3-,%q>1)ErrCm;s*t~> +JcC<$JcFO*!8W5+p\t5ilA,G:Yl=mt[@ErSrm1TE7f +JcC<$JcFO*!8W5+p\t5ilA,G:Yl=mrVi$Srrm1TE9DoG&[,q;fSGXE.3j8Pao>:C=!7m\?"o?W( +MP/D$rrV!4pP&VIh<+`f~> +JcC<$JcFO*!8W5+p]'K6!0=;_!ql3`cMmqA\,NN2Zgd,W!<)f[!;j&$!VV'@D?,K]rrW2srNZA, +rqGpJlLXq-rrCm;s*t~> +JcC<$JcFO*!8W5+p]'K6!0=;_!n5?\cMmq6-iOGR):7OG!:Tf9!9`JD!;t.B!Vi5_NrYrDrrW#` +pTa`&qqAZVSAOWHrrCm;s*t~> +JcC<$JcFO*!8W5+p]'K6!0=;_!mAFGcMmq7/cH=_+4B +JcC<$JcFO*!8W5+p]'H5JcGKE!:]ri!PS?lrrDKbl2^G;rrMigci4!.qecFap4<7brrN,orosRQ +p\omH!8Zf;J,~> +JcC<$JcFO*!8W5+p]'H5XoJG!c2Rdjr<`Qbn)jWMR/DL8\E3_kdb)nG!3?!X!M&q9s2b3@qqh=B +!j:5PL&V//k5Tr~> +JcC<$JcFO*!8W5+p]'H5XoJG!c2Rdlr=K&nnE0`N8,OD.J*$\2b0eQ8!7(JU!QFqes2b3@qUtk* +!he!:L&V//k5Tr~> +JcC<$JcFO*!8W5+p]'H5JcGHD!9!gY!6jU*!;??U!:K"L!rM +JcC<$JcFO*!8W5+p]'H5JcGHD!2BE!!+tBn!6>"g!1;pK!pubjd/O*Vqi:cClMgeaqXp`c!VZ/a +rr_N,g%'ap!8Zf;J,~> +JcC<$JcFO*!8W5+p]'H5JcGHD!2]W+!,CZr!1`s.!(c8P!pPlGd/O*sqn<*IoD\ajqt?oe!SlA, +rr_AsddVkg!8Zf;J,~> +JcC<$JcFO*!8W5+p\t5ZlA,G+JcGEC!6kDE!8H]:!<)f[!<)*\!r;-Mnc&Ugir9#"qJH;Srr3)u +gunF3rri?!q=slnrrW2pqLS\@rrCm;s*t~> +JcC<$JcFO*!8W5+p\t5ZlA,G+V>gPodf0;Yr<`OgkPkPNqgeb9kPkVGS@.ne!VZHOrrCUGNr[`0 +rr`2SkP)"V"o[uOhs^KLrrVuRjFR@*rrCm;s*t~> +JcC<$JcFO*!8W5+p\t5ZlA,G+V>gPodf0;]r=K$qkPkPAq]5askPkVBMPp"E!VH +JcC<$JcFO*!8W5+p\t5qlA,GBVZ-_pp%d):!W'M.XoRtSrrDKbl2^P@rrW#]n+$DZo_8@HrrD-V +D?.-Erri8QdG=c%rrE&tp]:3h[JpI/p?q52p&0IAq#:?Mk5Tr~> +JcC<$JcFO*!8W5+p\t5qlA,GBVZ-_^c0!LT!UhuG$38H9rrAGaJH3aRrrV>Q[IO7ucdhmRrrD?\ +Nr[6"rri8QdG=c&rs&JsiSWPQpU1#*o$jh4SBUVVs7lToh<+`f~> +JcC<$JcFO*!8W5+p\t5qlA,GBVZ-_Z_r9)E!Ur5M&HL8Brr>Re*WV_nrrV/:Vt'cg`m+>@rrDZe +^&[$hrri8Ue`$M/rs&D[Oc#$`hmNIgnB@P_MSeq8s7lToh<+`f~> +JcC<$JcFO*!8W5+p\t6:lA,G`VuHr"p[.8;rm^rKn?W%r!P&!irrDcjl2^88rrVlYp%&+aqs*Y3 +rrMM2qecD'rr3-!g!SOOWrE2#q>1&srrN)krosOSqLS\@rrCm;s*t~> +JcC<$JcFO*!8W5+p\t6:lA,G`VuHqufW(I^psf%puLW4[/U1"d/KO:]B9$Bs7lToh<+`f~> +JcC<$JcFO*!8W5+p\t6:lA,G`VuHqud@,s+pXK3DdNAH#!A#jI<(+[/U0uaSq%uY2]A1s7lToh<+`f~> +JcC<$JcFO*!8W5+p\t6glA,H8V>g\klK[g8eGfO2rN6.;kl1Y]qs"1[kl1_Znb;VS!qbdMk5PJU +M>M/kM"^iJ"7":fr2BVqriuJ)qXXE4s7H +JcC<$JcFO*!8W5+p\t6glA,H8V>g\DS=HbOeGfNSr<`Npkl1YOqgeb9kl1_B^"`,X!lphOk5PJW +V#-2RU\Oig"7+@gr2K\srVEi""8q?#hgth"rrCm;s*t~> +JcC<$JcFO*!8W5+p\t6glA,H8V>g\;MMe(oeGfNUr=K$'kl1YBq]5askl1_=Z.8FF!kjK)k5PJZ +b58mRb5;2<"7=Xpr2K\sp$T-c"8q/hg4B:rrrCm;s*t~> +JcC<$JcFO*!8W5+pAY-"m"bYKU]1JomcsNFeGfNrrN6.Okl1YLr9=:Ukl1_`qu60d!pf.Kk5PFW +qecFXjSf)[p?VX[rrE&)rrW)mqLS\3rrCm;s*t~> +JcC<$JcFO*!8W5+pAY-"m"bYKU]1J`Y+4&>eGfMjr<`OXkl1XEr.+jgkl1_[n+ZDQ!hu4Ok5PFl +qi:cClM^_ap[%g]rrDr&rrVQDk(3QtrrCm;s*t~> +JcC<$JcFO*!8W5+pAY-"m"bYKU]1J\TSh%keGfMnr=K$bkl1WCr#Pj.kl1_Zm.KrL!g/B(k5PG4 +qn<*IoDS[jq!J!_rrDVrrrVE:iIV$orrCm;s*t~> +JcC<$JcFO*!8W5+pAY0gO7%f)O8,FK!VlT@rrBq7XoRVKrrDZgl2^8(rrW#]mH4EK^\VgJgACmM +rNZA)rr)]k[f6O,oBbc0pOWA0rrCm;s*t~> +JcC<$JcFO*!8W5+pAY0gO7%f)O8,FK!TOe$37BrrrBS,JH2(hrrV8OW94*[cMES%j88iV +rNZA*rU]4BrO;e2ji= +JcC<$JcFO*!8W5+pAY0gO7%f)O8/GK!<'&"!Scqgrr>^j&HK3&rr@QH*WSa_rrV)8R-+DKiqg@h +n,*+brNZA*pX>q\osar*iOtV9QHf>Ys6K[bh<+`f~> +JcC<$JcFO*!8W5+p&>$GmYCkspAY6or;-ACs8N$!qQg+'!OMIarrDrnl2^e8rrW,lpZMPVdJ@_\ +^T.;6r;QHlqu4,*#Q4/XlKe$ +JcC<$JcFO*!8W5+p&>$GmYCkspAY6lnE]aus8N$!mhl$2!?'h\rrD6ZJH5/krrV]?g?8J9h"m'3 +cE$sLrpSh'hsL?Ors/&1S=H=imJ_\:li-t@k5Tr~> +JcC<$JcFO*!8W5+p&>$GmYCkspAY6c`jjcSs8N$!n/qWA!?^:crrCRG*WY3PrrVW6e*$`2lh\ +JcC<$JcFO*!8W5+o`"p>n;%(mp&>'kqYp6jqu20H!WVKaXoQ0"rrDE`l2^P0rrE&]rrM2)qecD0 +WrE5#q"X^`[f6I/p[n?6s6'C^h<+`f~> +JcC<$JcFO*!8W5+o`"p>n;%(mp&>6llJLLXmJMP8!WU"7$33'MrrA/YJH3aCrrW2or94.]lB_=. +!4]*0"oe,NhrjR=rr`#Na6\BWkPkP +JcC<$JcFO*!8W5+o`"p>n;%(mp&>6[ZAOO%^%6gT!WU(9&HFuYrr>(W*WV__rrW2mr94.]o>:C= +!7n4N"o?c,MPnn2rr_rG^$(%IkPkP +JcC<$JcFO*!8W5+oD\g=o8!F.de!JBrqlNdq>I>n!;tIK!8IIT!6ja.!;$-R!:IQ#!VVBID?5Re +WrE/"qu+5.!r2NfJcFR+!8Zf;J,~> +JcC<$JcFO*!8W5+oD\g=o8!F.de!JCr:&h*iV*8OrrDK=rrA8]$34]'rrBS,JH2(NrrMnjqi:cQ +po=>qq="'krrV*4m",2mrrCm;s*t~> +JcC<$JcFO*!8W5+oD\g=o8!F.de!JCo?3eaOP]o9rrDB:rrAA`&HHS2rr@QH*WSaErrN#>qn<*R +ql9YtkJcDnrrUp(k^icirrCm;s*t~> +JcC<$JcFO*!8W5+o)AaTV=o]GV +JcC<$JcFO*!8W5+o)AaTV=o]GV +JcC<$JcFO*!8W5+o)AaTV=o]GVrr?7$&HJZnrrCRG*WY36rrCLE^'2@M +s8VcdJcG$8#6!)\Oc#mcJcFR+!8Zf;J,~> +ir9)V`j>QH!jfoBJcC<$L]7A1JcG6>!o^MIr.kE8[,L'F!<0>)"T@fSlLrp2!W';)XoYluli-tO +r9=:U^]+;9qJHMus8VK +ir9)V`j>QH!jfoBJcC<$L]7A1JcG6>!o^MIr.kE8[,L'F!W)f&rrhu%S=J*^rrMR9rX&ZDd-L]3 +OSjY0a1qWS^\WuqlMpnOfB<%>rrMic\Gld![%*YhbP-Sfh>[K2k5Tr~> +ir9)V`j>QH!jfoBJcC<$L]7A1JcG6>!o^MIr.kE8[,L'F!UoikrrhnjMMfX2rrMU@rXf/Qdd-o5 +3W'ouSA5((gA8MfoDejZgZeXErrLp.\GlcrVM^8(_Y&K[h>[K2k5Tr~> +ir9&!`VJm%`Q%]Q$1E7).5c/2s8OFrrr=DM#RJ2JcG-;!:^!H!:\tI"TJ>oqu*r&"oe/ZlLOr.rrMVpriQ:3qX"4^oDIkRmd'lSrqucK +rrC.:D?e2^s6\4]n@8K%rquTequ4/+"8qlcr.4n%rrCm;s*t~> +ir9&!`VJm%`Q%]Q$1E7).5c/2s8OFrrr=DM#RJ2JcG-;!:^!H!:\tI"T.ZHlh.[c"o--.SAY6XrrLI`rX&ZSn*L&S\GUmXR-XbRqX4%0 +rrCUGNs=/7s6\4]n@8K%rU8e(mJFHo"7k*nnq$hprrCm;s*t~> +ir9&!`VJm%`Q%]Q$1E7).5c/2s8OFrrr=DM#RJ2JcG-;!:^!H!:\tI"Rj3i[bJ4i"o#]fMRiWf8F-9Wq +ir9Cllg3s(lg3s(lg1nOrs<1ejne.l=o\LKec,Url2L`jir9!ci;WjLb50Wf!%.RB!%.C=!%.+5 +!%.F>!%.I?!+4ph!+2o/!8W5+aSu;?qYp6jq>I`$"8V?XrRq2Ni;KeYa6`g+qtoXYrTsOcqXaI8 +rrM2)qecV6s8VK6dI"ID!<)ol!Vu]2rr`8pq#5jEd/O+%k5Tr~> +ir9Cllg3s(lg3s(lg1nOrs<1ejne.l=o\LKec,Url2L`jir9!ci;WjLb50Wf!%.RB!%.C=!%.+5 +!%.F>!%.I?!+4ph!+2o/!8W5+aSu; +ir9Cllg3s(lg3s(lg1nOrs<1ejne.l=o\LKec,Url2L`jir9!ci;WjLb50Wf!%.RB!%.C=!%.+5 +!%.F>!%.I?!+4ph!+2o/!8W5+aSu;3]`*ciR,ItPrr_5IcLTZg!2]W+!*egi!7^le!93AF!ogfB +gA_3F_Y_%Of)Pd=e^a-!rs&J\Oc#$`h890opX@a`JcF*s!8Zf;J,~> +ir9"YpZ2CTq#:@Fo)AXlr9=7]-Ir+r-L(O15N;\C5N)PA3n"$.-Mm`B-M@B=-LLg5-MIH>-MRN? +5Ni%H5Hb"dh1>UGrri?!q>(#srrN,sfDbiprN6.Tm/I(Pr9=:Um/I.[lLjiM!<23^!VV'@D?c7' +s81g'mC3)trqZEh_uBr?p@%;3nbRh:d/O+%k5Tr~> +ir9"YpZ2CTq#:@Fo)AXlr9=7]-Ir+r-L(O15N;\C5N)PA3n"$.-Mm`B-M@B=-LLg5-MIH>-MRN? +5Ni%H5Hb"dh1>UGrrr;gj5Tk5[Jp:)o%3mAAc2r9PO/;LOSjY0a6`g-cCE2QrrE&^rrMncqi:r] +s8W#WdI"FC"8Ls?pV["8qUDpCS@dm6s3UcGh<+`f~> +ir9"YpZ2CTq#:@Fo)AXlr9=7]-Ir+r-L(O15N;\C5N)PA3n"$.-Mm`B-M@B=-LLg5-MIH>-MRN? +5Ni%H5Hb"dh1>UGrrqo2R$Qh2[Jp:(nCR[?C&JVDQL+VO3W'ouSF$7W`JVY-rrE&^rrN#:qn<9[ +s8W#YeaL$J"TIMPVr>Pn#5QK@MMeRqJcF*s!8Zf;J,~> +ir9"TpYGnHq#:CjMtHoH(b*Kr.RhAWs7:Ip2feEQ-g(Hs/+3H%.-gd2'D$H.2feEfq_uMf/4d_Z +s!I4omf*4fniH:=s$e@8q_uMf/4d_Z7j]R+s7C^u0n&ouqDlAZ/-"1+1GDqZs8VLu/Paao7j]R+ +s!IdGo6<5REq',+2o\KA8AtQ.[mV`=ao25>q#)NTqDlAZ/-#3c3&bmIs8+XY3&\(E3&e/@rsAQV +\j%]Sm/R)4rVnGrs8OFV5qlj6s8OGGs!IdG[mV`=aoDAia%.[K`rH)2I5`m/qZ$T`BJDfa-N!g! +mV"=@\gIIWem1'c=OR4>-73p9em1'c=OR6L[mV`=aoDD5I5`m/qYs&4-?fEu6n:mO[f6?`JcEXf +!<.`Q!58?6!:0%P!;$-R!:K4R!qkjOp&>*iq"s@V!/^Sj!IshBrrMi_JcGBB"o@TNlLFV"s3L]F +h<+`f~> +ir9"TpYGnHq#:CjMtHoH(b*Kr.RhAWs7:Ip2feEQ-g(Hs/+3H%.-gd2'D$H.2feEfq_uMf/4d_Z +s!I4omf*4fniH:=s$e@8q_uMf/4d_Z7j]R+s7C^u0n&ouqDlAZ/-"1+1GDqZs8VLu/Paao7j]R+ +s!IdGo6<5REq',+2o\KA8AtQ.[mV`=ao25>q#)NTqDlAZ/-#3c3&bmIs8+XY3&\(E3&e/@rsAQV +\j%]Sm/R)4rVnGrs8OFV5qlj6s8OGGs!IdG[mV`=aoDAia%.[K`rH)2I5`m/qZ$T`BJDfa-N!g! +mV"=@\gIIWem1'c=OR4>-73p9em1'c=OR6L[mV`=aoDD5I5`m/qYs&4-?fEu6n:mO[f6?`JcEXf +!W2hNrr>"V$37p0rrBS,JH2)(rrUK9cLq2=lIbLhrrAklNrbdGrr3#nn[AGurVXP4#QEqaS=I4G +qgndorrCm;s*t~> +ir9"TpYGnHq#:CjMtHoH(b*Kr.RhAWs7:Ip2feEQ-g(Hs/+3H%.-gd2'D$H.2feEfq_uMf/4d_Z +s!I4omf*4fniH:=s$e@8q_uMf/4d_Z7j]R+s7C^u0n&ouqDlAZ/-"1+1GDqZs8VLu/Paao7j]R+ +s!IdGo6<5REq',+2o\KA8AtQ.[mV`=ao25>q#)NTqDlAZ/-#3c3&bmIs8+XY3&\(E3&e/@rsAQV +\j%]Sm/R)4rVnGrs8OFV5qlj6s8OGGs!IdG[mV`=aoDAia%.[K`rH)2I5`m/qZ$T`BJDfa-N!g! +mV"=@\gIIWem1'c=OR4>-73p9em1'c=OR6L[mV`=aoDD5I5`m/qYs&4-?fEu6n:mO[f6?`JcEXf +!V#c;rr>1[&HK`9rr@QH*WSatrrU/s`V'64k0`JZrrC4=^&c4Mrr3#oo!\Q!p%$!"#QEeMMMeRd +qLS[nrrCm;s*t~> +ir9"TpYGnHq#:NN9IsJ;kPkJt.WXPBUdb=`JqrgcN.1e1VuNkRY5bG'r;RF^L[XemIfKEuE8pVf +70!96s+-L8rrJ^Fr;R-Os8OTgiqK6:s8OGFru?NPmdu^)s8O]pjSJmQYP7[T8H8^5N:a\Xs8OGF +rtd$^s+6$pnr/%ts!r'JpS:4Ws#8C&ZV^Q!!%.^F'eX[jqYu/&n+)Eds8OR+oX6]6oX7'_rs0uo +l1('_s8OGEs",Sts!MgMnTf9Ws!IdG-NF*)de^:Hs8OQhiqB0:s8RS4mdu^)s8RG0nEG$Aqu74S +PORgY-NF*BYP7[T8H8]:rr3d2YP7[T8H8]Kde^:Hs8RS4mdu^)s8OGFrrb:/qQj#,rrCl+s1842 +rr%rY!VNbtXoYm*mf*:aqs"1[mJd7VlM1&P!qG[Sli-s\qecFXjFR@!rr`/lq#5jEc2Re"k5Tr~> +ir9"TpYGnHq#:NN9IsJ;kPkJt.WXPBUdb=`JqrgcN.1e1VuNkRY5bG'r;RF^L[XemIfKEuE8pVf +70!96s+-L8rrJ^Fr;R-Os8OTgiqK6:s8OGFru?NPmdu^)s8O]pjSJmQYP7[T8H8^5N:a\Xs8OGF +rtd$^s+6$pnr/%ts!r'JpS:4Ws#8C&ZV^Q!!%.^F'eX[jqYu/&n+)Eds8OR+oX6]6oX7'_rs0uo +l1('_s8OGEs",Sts!MgMnTf9Ws!IdG-NF*)de^:Hs8OQhiqB0:s8RS4mdu^)s8RG0nEG$Aqu74S +PORgY-NF*BYP7[T8H8]:rr3d2YP7[T8H8]Kde^:Hs8RS4mdu^)s8OGFrrb:/qQj#,rrCl+s1A:4 +rqH,orrE&SrrM$prX&ZDn*^2UkPKf1n*U,V[@H.IrrTg7k3N$I\bhEgQ0PjY!;j>,"7O[qpjrIi +rrCm;s*t~> +ir9"TpYGnHq#:NN9IsJ;kPkJt.WXPBUdb=`JqrgcN.1e1VuNkRY5bG'r;RF^L[XemIfKEuE8pVf +70!96s+-L8rrJ^Fr;R-Os8OTgiqK6:s8OGFru?NPmdu^)s8O]pjSJmQYP7[T8H8^5N:a\Xs8OGF +rtd$^s+6$pnr/%ts!r'JpS:4Ws#8C&ZV^Q!!%.^F'eX[jqYu/&n+)Eds8OR+oX6]6oX7'_rs0uo +l1('_s8OGEs",Sts!MgMnTf9Ws!IdG-NF*)de^:Hs8OQhiqB0:s8RS4mdu^)s8RG0nEG$Aqu74S +PORgY-NF*BYP7[T8H8]:rr3d2YP7[T8H8]Kde^:Hs8RS4mdu^)s8OGFrrb:/qQj#,rrCl+s1A:4 +r8?J?rrE&SrrM(#rXf/QnF$;VeGC9eipHaIVi'4$rrT?piTpLDf)*/^_=P/9!:dW""744bpOW@h +rrCm;s*t~> +ir9"TpYGnHpAZ2`S6dbSs8OG0s8VmBs8P=Ds8V:Hs.X0+Bn0suB;,8'(dI'\s6)ZHs!Hn.s7n&B +s!Id*4o53W8*0[K$RYoR-Kb@.q'Z4B-N=#O3U$MCn43NY-K4h$"o'GEs#BBCrr=DFrtQm\s$,QD +s6)ZHs!Hn.s7n&Bs%872q>UFArr3!GiVrig5NDeDkW]%H-LUp1-LUp1-i(*krSkE-N3rX +-NF)mhZ*W;4TGF.s8OGGs%872rVmTZkl:\Y-ia3,kl:\P8,rTOmJm4G-N!fH4RN1Ki[4R&"Sa>D +s!IUB#5BPFs%872rVm-`kl:\P8,rT9rr3$lN9%AG!8W5+]Di'6qtTs`rODk.q=reG!9X6_!57e" +!:9XK!;>g[!q5FMpAY6olK\B8rrC.:D?.bgrri?"q>C61rr`2mq>PsF_uB_mk5Tr~> +ir9"TpYGnHpAZ2`S6dbSs8OG0s8VmBs8P=Ds8V:Hs.X0+Bn0suB;,8'(dI'\s6)ZHs!Hn.s7n&B +s!Id*4o53W8*0[K$RYoR-Kb@.q'Z4B-N=#O3U$MCn43NY-K4h$"o'GEs#BBCrr=DFrtQm\s$,QD +s6)ZHs!Hn.s7n&Bs%872q>UFArr3!GiVrig5NDeDkW]%H-LUp1-LUp1-i(*krSkE-N3rX +-NF)mhZ*W;4TGF.s8OGGs%872rVmTZkl:\Y-ia3,kl:\P8,rTOmJm4G-N!fH4RN1Ki[4R&"Sa>D +s!IUB#5BPFs%872rVm-`kl:\P8,rT9rr3$lN9%AG!8W5+]Di'2mGHmgpUL5(io/_n!4)P1!''BG +!0I,0!6=L,!k"Q\pAY6iS=KB@rrCUGNr[_@rri;ljm`/crr_iDhYDa&_uB_mk5Tr~> +ir9"TpYGnHpAZ2`S6dbSs8OG0s8VmBs8P=Ds8V:Hs.X0+Bn0suB;,8'(dI'\s6)ZHs!Hn.s7n&B +s!Id*4o53W8*0[K$RYoR-Kb@.q'Z4B-N=#O3U$MCn43NY-K4h$"o'GEs#BBCrr=DFrtQm\s$,QD +s6)ZHs!Hn.s7n&Bs%872q>UFArr3!GiVrig5NDeDkW]%H-LUp1-LUp1-i(*krSkE-N3rX +-NF)mhZ*W;4TGF.s8OGGs%872rVmTZkl:\Y-ia3,kl:\P8,rTOmJm4G-N!fH4RN1Ki[4R&"Sa>D +s!IUB#5BPFs%872rVm-`kl:\P8,rT9rr3$lN9%AG!8W5+]Di'#^5A&]iOJmggtUZb!4;\:!'T`L +!'0ru!1`HV!iLq7pAY6hMMh/prrD3X^&[<+rri)FT>pH?rr_c:f_C$t_uB_mk5Tr~> +ir9"TpYGnHoD\s+56(X0rVmKWs8OVGs8W!Is626,1[-ac0^/H7#V5cOs84DIs!I^E$7>fQ-NF*^ +X8fnSqu6aFs8OGErrXVJs!IaF!%\!p">0ZR-N3rD$/B2S.jl\Ds!mpDrr=DFrsL1Rs"!sGs84DI +s!I^E#:BKNj*Na\b5;2=-N=#G-N3rD#V5cOs84DIs!IaF!%.^F!%.UC#U]EJs8"8Gs!I^E(af:_ +-Md]Aq()LF-NF)ms8V,+3)7Wrs!I^E""+'J/,^e#/cYi$qu?]l-N!fS/,TAHq'Q.Agh8\u-RSln +-N=#Ugh8\u-RSlnj*Na\b5_Jlr?_Uus8OGFrrhA/3)7W)rrCl+s1842rV?Hf!<'M/"T@rXn,D2D +!7q+O!7C67!;$-R!:K7S!r2KfpAY3glLF6@!9Euo!4KK=!WN#rp]:9ka8ZA@oBbc-oDF1>_uB_m +k5Tr~> +ir9"TpYGnHoD\s+56(X0rVmKWs8OVGs8W!Is626,1[-ac0^/H7#V5cOs84DIs!I^E$7>fQ-NF*^ +X8fnSqu6aFs8OGErrXVJs!IaF!%\!p">0ZR-N3rD$/B2S.jl\Ds!mpDrr=DFrsL1Rs"!sGs84DI +s!I^E#:BKNj*Na\b5;2=-N=#G-N3rD#V5cOs84DIs!IaF!%.^F!%.UC#U]EJs8"8Gs!I^E(af:_ +-Md]Aq()LF-NF)ms8V,+3)7Wrs!I^E""+'J/,^e#/cYi$qu?]l-N!fS/,TAHq'Q.Agh8\u-RSln +-N=#Ugh8\u-RSlnj*Na\b5_Jlr?_Uus8OGFrrhA/3)7W)rrCl+s1A:4rq5CPhZ +ir9"TpYGnHoD\s+56(X0rVmKWs8OVGs8W!Is626,1[-ac0^/H7#V5cOs84DIs!I^E$7>fQ-NF*^ +X8fnSqu6aFs8OGErrXVJs!IaF!%\!p">0ZR-N3rD$/B2S.jl\Ds!mpDrr=DFrsL1Rs"!sGs84DI +s!I^E#:BKNj*Na\b5;2=-N=#G-N3rD#V5cOs84DIs!IaF!%.^F!%.UC#U]EJs8"8Gs!I^E(af:_ +-Md]Aq()LF-NF)ms8V,+3)7Wrs!I^E""+'J/,^e#/cYi$qu?]l-N!fS/,TAHq'Q.Agh8\u-RSln +-N=#Ugh8\u-RSlnj*Na\b5_Jlr?_Uus8OGFrrhA/3)7W)rrCl+s1A:4rS!qDM?26']Di$&^5f,c +hZ!S2r=K$Smf*9:r#Pi/mJd7BcL^c0!n)t/m/I(WqRusd])N!2`K?%8\FR]?#4B0lMMf"2JcEXf +!8Zf;J,~> +ir9"TpYGnHoD\s_1]RJ%rVmHVs8PCLs8V:Ks8Q2Q@/jVeoLs6)cKs!I^E +!%.[E!rfDfqu6XCrr2sFrVm-hl2UeI63$s3rr2sFrr2sFqu7T^j8]/D4TGF/q>^KW-NF)mirB&? +56(X0s8OGErrrD+56(X0rVm!Is8PFTqu6g]n,NFE-N!fS47E4LhBr:&5bI<;o-XM;-N=#K5bI<; +o-XG9#6(hjs8PFTqu6XCr;QitYWfMq!8W5+\Gl[1qtg<&rri/`lKe6%rrBq7XoRVQrrDrnl2^eN +s8W)krrVWRp[.t]m +ir9"TpYGnHoD\s_1]RJ%rVmHVs8PCLs8V:Ks8Q2Q@/jVeoLs6)cKs!I^E +!%.[E!rfDfqu6XCrr2sFrVm-hl2UeI63$s3rr2sFrr2sFqu7T^j8]/D4TGF/q>^KW-NF)mirB&? +56(X0s8OGErrrD+56(X0rVm!Is8PFTqu6g]n,NFE-N!fS47E4LhBr:&5bI<;o-XM;-N=#K5bI<; +o-XG9#6(hjs8PFTqu6XCr;QitYWfMq!8W5+\Gl[.mHF>UrrhGXS>+otrr>Oe$37C#rrD6ZJH50, +s8VofrrT?ng$Se?nWs'5!jVe)]`/07p#4fkou@":pY).-U;>phJcEXf!8Zf;J,~> +ir9"TpYGnHoD\s_1]RJ%rVmHVs8PCLs8V:Ks8Q2Q@/jVeoLs6)cKs!I^E +!%.[E!rfDfqu6XCrr2sFrVm-hl2UeI63$s3rr2sFrr2sFqu7T^j8]/D4TGF/q>^KW-NF)mirB&? +56(X0s8OGErrrD+56(X0rVm!Is8PFTqu6g]n,NFE-N!fS47E4LhBr:&5bI<;o-XM;-N=#K5bI<; +o-XG9#6(hjs8PFTqu6XCr;QitYWfMq!8W5+\Gl^$]r:#k])MokOc#:ThZ!RKr=K%:n,EC;q]5as +mf3=^p&>)dMULnl!VaJ.^&la_rk/77r7R0hVqT/j#PQW(MNP@)rIP!drrCm;s*t~> +ir9"WpYGnKq#:Y3S*Tt9P'-g)-N3rV-NF+"T(VZ2L&_1G/#!!:/=ub=#_elCnqi)#s!I^E""+'J +-N=#H<_HfrrrXVJs!I^E%jq>V/E$@(Mja&+S72Ht-N3rc2U2'NKf\2mH@k[p9)noBi;*C"s8ReE +p%!rns8OGErs'nNs&?E&brkn'!%.^F!%.[E#_elCnqi)#s!IaF!%.^F!%.UC,pmm%nWnM$s$N[Z +j)?OKs!N'VoTO\&s!IdG-NF*F[JJ-1s8OGErt$OWs,3<6oUK@is)jb"l#S3Ks"eecn`b*As8P"% +q:UH_iVtIeq>W@tq:UH_iVulbqTV/&s,3<6oUK@is"*+(s&?E&briH7!8W5+JcG'9"TIrVmJ>`? +!W';)XoYlun,ECSr9=:Ui;WlOnG_kU!VVBID?PdhrU0BkrrN#q_uBf8o_F(<^]+;ik5Tr~> +ir9"WpYGnKq#:Y3S*Tt9P'-g)-N3rV-NF+"T(VZ2L&_1G/#!!:/=ub=#_elCnqi)#s!I^E""+'J +-N=#H<_HfrrrXVJs!I^E%jq>V/E$@(Mja&+S72Ht-N3rc2U2'NKf\2mH@k[p9)noBi;*C"s8ReE +p%!rns8OGErs'nNs&?E&brkn'!%.^F!%.[E#_elCnqi)#s!IaF!%.^F!%.UC,pmm%nWnM$s$N[Z +j)?OKs!N'VoTO\&s!IdG-NF*F[JJ-1s8OGErt$OWs,3<6oUK@is)jb"l#S3Ks"eecn`b*As8P"% +q:UH_iVtIeq>W@tq:UH_iVulbqTV/&s,3<6oUK@is"*+(s&?E&briH7!8W5+[Jp7+qYpQp_#FQ4 +]:>nehu<`G-iOGR):7jP!0I,0!6='u"8pNUq +ir9"WpYGnKq#:Y3S*Tt9P'-g)-N3rV-NF+"T(VZ2L&_1G/#!!:/=ub=#_elCnqi)#s!I^E""+'J +-N=#H<_HfrrrXVJs!I^E%jq>V/E$@(Mja&+S72Ht-N3rc2U2'NKf\2mH@k[p9)noBi;*C"s8ReE +p%!rns8OGErs'nNs&?E&brkn'!%.^F!%.[E#_elCnqi)#s!IaF!%.^F!%.UC,pmm%nWnM$s$N[Z +j)?OKs!N'VoTO\&s!IdG-NF*F[JJ-1s8OGErt$OWs,3<6oUK@is)jb"l#S3Ks"eecn`b*As8P"% +q:UH_iVtIeq>W@tq:UH_iVulbqTV/&s,3<6oUK@is"*+(s&?E&briH7!8W5+[Jp7)qYpQo_#FQ3 +Y)8_4hu<`H/cH=_+4BWX!'0ru!1`$J"8p6Aq!S._qo\fM"NpW?n+XKp!pdte_uBf&`o2LK^]+;i +k5Tr~> +ir9%i\G=t^\@MD7$/o\[.6*"Qs8OGErt-UXs7CLn2gY,rs5t`gs5GBequ6roG;_C+o`+q:!ks8OGEruSL1/6LYj0)t?K.ne4gs0OdFs!IdG +oQN2PHM%7;-N3rL-NF+`7k7'Dqu6XCrr2sFrVm/qG;_C+o`+qW7_f!'-N3rV-NF,>Jik_kfDkm8A2$6X/cGVI1[/F(5I`W7_f!'p4>C\>M&oTZoL)F_ac4H^UF.Bh1>U/rr`8uqu+>1 +!r)EdhZ!TFrN617qXFLboDIkRmbn*Grr)6a!2TL0#'TD3g">]kLAq>No_F(<[Jp6_k5Tr~> +ir9%i\G=t^\@MD7$/o\[.6*"Qs8OGErt-UXs7CLn2gY,rs5t`gs5GBequ6roG;_C+o`+q:!ks8OGEruSL1/6LYj0)t?K.ne4gs0OdFs!IdG +oQN2PHM%7;-N3rL-NF+`7k7'Dqu6XCrr2sFrVm/qG;_C+o`+qW7_f!'-N3rV-NF,>Jik_kfDkm8A2$6X/cGVI1[/F(5I`W7_f!'p4>C\>M&oTZoL)F_ac4H^UF.Bh1>U/rr`5jme+Bq +!nl&nhZ!T&r<`Qbn*p>W\GUmXR,S&HrqH'PrrBV,Ns:m>r7T`ireCFSk0Vt9s0_k,h<+`f~> +ir9%i\G=t^\@MD7$/o\[.6*"Qs8OGErt-UXs7CLn2gY,rs5t`gs5GBequ6roG;_C+o`+q:!ks8OGEruSL1/6LYj0)t?K.ne4gs0OdFs!IdG +oQN2PHM%7;-N3rL-NF+`7k7'Dqu6XCrr2sFrVm/qG;_C+o`+qW7_f!'-N3rV-NF,>Jik_kfDkm8A2$6X/cGVI1[/F(5I`W7_f!'p4>C\>M&oTZoL)F_ac4H^UF.Bh1>U/rr`&@^>$I' +!n,9]hZ!T(r=K&nnF6GXJ,C>f8E'RMrq5jLrrCXI^'2@Ir8$/rL&V55aOu.E[Jp6_k5Tr~> +ir9)C\Z#D%!iWZm^Ae58:5o2Q-@u36rrCl+s/uA&rql]i!;i8c!8IIT!6js4!;lZY!<(.A!4M`A +"krn-dG"Q;rrN)ta8ZA?o'>T,p&0IA[f6?`k5Tr~> +ir9)C\Z#D%!iWZm^Ae58:5o2Q-@u36rrCl+s/uA+qX*1tiTpEYrrDuPrrA8]$34]-rrD6ZJH5/_ +rrC+9Ns4SAg!SOP`;fl1!<1+?#QEr'U7@n&oR[%NrrCm;s*t~> +ir9)C\Z#D%!iWZm^Ae58:5o2Q-@u36rrCl+s/uA+mCJ14OgahtrrDuPrrAA`&HHS8rrCRG*WY3D +rrCpP^'4!'h::?[`;]nnfDNbj#QEhnOc#1=nq$hLrrCm;s*t~> +ir9&TmeQ,KmJ+Ks"8^%r_2SBo-@u36rrCl+s/l;*rqlNdq#12^rrC:AXoR5GrrDE`l2^S'rrCIC +D?[fRg!SOO`r?5Ar:p'arlP0ErUfC?mI^=-s0_k,h<+`f~> +ir9&TmeQ,KmJ+Ks"8^%r_2SBo-@u36rrCl+s/l;*r:&h*ht-c9rr?X/$36:ZrrA/YJH4$@rrCjN +Ns3i-g!SOO`r?5@n)<0kq8rX@ourqrW5nCYs0_k,h<+`f~> +ir9&TmeQ,KmJ+Ks"8^%r_2SBo-@u36rrCl+s/l;*o?3eaMUV9hrr?d3&HJ-drr>(W*WW4brrDB] +^'3Nph::?Z`r?5:`K?%hlH0&1o>?HCR(_m +Q2^n94fOA>!%*9s_Z'VlJcDbM!r`&r])Md0j8T/V^&>)6nF?MYoDIkRnBV%7jELK="f21mimdeD +rrE#sp]:3haSuAAqY0o=s0DY)h<+`f~> +Q2^n94fOA>!%*9s_Z'VlJcDbM!r;B^]Dhp.r8[eXml11P!7:99!4_rX!3"3C!U?!JNs3&npuBm" +`r?59iSWPSp;m79qrcQ$JcE%U!8Zf;J,~> +Q2^n94fOA>!%*9s_Z'VlJcDbM!pIek]Dhp-r8[eXn3$X]!7LE;!.Xnf!+X=S!V=2*^'3*fpuU0( +a8ZACi/rnST\RWg"8_''n:CVFrrCm;s*t~> +JcC<$JcFO*!8W5+JcF^/!r;E^j8T/LZMq!-\GGdr!;lZY!<1@F!VVBID?Yjrs8DWe`W$&>qYL0; +rr`8rpA9F@W;ckRk5Tr~> +JcC<$JcFO*!8W5+T`5&jrP\^;i4n10rrLI`rX&ZSn+-JYkPKf1pX&p@pn[eJ"f)+trV$*,rr`&X +kP*@'"8Lg&jamH1rrCm;s*t~> +JcC<$JcFO*!8W5+T`5&_q8E:7g9]MnrrLOirXf/`nFHSZeGC9enBh19qo\fM"j6lFrV-0.rri>_ +Tr6krrr`#Mb2@jNW;ckRk5Tr~> +JcC<$JcFO*!8W5+T`5,lq>:-2rrrDqlg"*@jSo5BrN6.;nc&UUr9=:Vnc&[fqY]CR!0[4s!I"1P +s8W)Frrr/dlK[d3JcD\K!8Zf;J,~> +JcC<$JcFO*!8W5+U&P8on`/s.a8Z>@etAPRpuMGTZMb+18+HTZOSjY0cgh#:lJqKrrrB+sNrbO@ +_#FH5rR(WMr7\cQS>t6?JcD_L!8Zf;J,~> +JcC<$JcFO*!8W5+U&P8gb*f]ma8Z>@cAmdqpZ2>S[/CR:9_&,_3W'ouWq$)jk2,XgrrC@A^&c(I +_#FH/pX0!Gr6qg+MOMrkJcD_L!8Zf;J,~> +JcC<$JcFO*!8W5+T`5#irV-Bla8Z;8lg!j7jSo5-rN6.Oo)A^]r9=:2rfR>P_!Umr!qYmXjSo4^ +qJH;oNW04[n`oE.p&0IAW;ckRk5Tr~> +JcC<$JcFO*!8W5+U&P/knG_;HiV!2krrgfFS>bi9rr@0>$35bMrrBS,JH1l4WrfTPnb<%b`3epm +rrBh1Nr\IbrrDu=rs%r*S=I"9pOW@CrrCm;s*t~> +JcC<$JcFO*!8W5+U&P/d`;YVqOkT`SrrgN-MO<\irr@ +JcC<$JcFO*!8W5+TDo&nqt^$c`r?/=md9f0rrBb2XoRVUrrDlll2Z#*D?6R,q>UNblM:5T!VuT] +rrC.:D?.c!rri?!q>C67rr`5pp\oaDV>gPOk5Tr~> +JcC<$JcFO*!8W5+TDo)lnDiF!rl>$Anuf"Lr8dkX2uO'`ZLe(rfDC+!Nr4q=\bQ"#!k"Q\q#:EP +jo+`L!7gq,!7f0j"T@lOnGCB."8Cd-pjrIArrCm;s*t~> +JcC<$JcFO*!8W5+TDo)abF"1?qT&U=n=Z9(r8dkX4T,il[.F:t\GI +JcC<$JcFO*!8W5+SGrTg_uBc6r8[eXqQg+'!OMIlrrVo'j8A0BSbm:*GKBX\!pf.Nq>UNnmITlJ +!T\J%D?6m;b5VMAr;QHlqu5+F"8qler.4m;rrCm;s*t~> +JcC<$JcFO*!8W5+SGrWdr5AU9kjmd6!Ugm)$3;%&p&>*ga+F5?!/^T6!LD:4rrSpbq"apkmB+Cu +rrMDNqi:cmr6#$Dr9rV%hsC6irr_iAea.keS,WKEk5Tr~> +JcC<$JcFO*!8W5+SGrWXo#1P/jRD40!Uq31&HO!4p&>*jh^A=C!.t*^!Q+!qrrS=?p\Fgjl(5QX +rrM`.qn<*br6#$Dp;N/OMR`6,rr_c7c00`YS,WKEk5Tr~> +JcC<$JcFO*!8W5+PQ1[]XT&:drN6.6pAY6BJ8W$tl2\`tD?.cTs8VBZrrViXo^`"_p36CO"-N0> +pWNR>rV?6br71fOrq#RClL4P"s-s#gh<+`f~> +JcC<$JcFO*!8W5+PQ([Xp8n8o_>O]@3;3@SgmsL]r.+j&q2YO+qu?\dq#:E9SB(4#!VhuXNruEQ +lM&L%"SUj4kOmC*#5Q!8Zf;J,~> +JcC<$JcFO*!8W5+PQ([CgoUMU_u1/I4nemXlc-YAr#Pi6q7Zjkqu?\Rq#:E/MS8T\!W0b2^&u[P +m.eg)"odAEMPo1Yrs&83TSeW(fRa'lrrCm;s*t~> +JcC<$JcFO*!8W5+PlCpdr:p'arN?/#g\n8Tbk_8>m?7Hd!1*NI!-\0U!6G-=!rhTRq#:E_lML/P +!/^Sj"FoO\g\8kj!W;oFrrr;flKe!8JcD2=!8Zf;J,~> +JcC<$JcFO*!8W5+PlCpanDN9kore;pPPkggB)2H-nZ2YM!/gZ)!06l9!7h&J!rApoq#:DoSF#hH +!2TLQ"J"Z&g\8nk!rDK^e,KX +JcC<$JcFO*!8W5+PlCpX`f?1igTLPVQMhBqCAIl1pWicP!/p^q!42L8!9X7[!r8=Oq#:D_MWjX2 +!6Y2Q"NB]WhY>:o!pe7me,KX8To+u8f_g=#S,WKEk5Tr~> +JcC<$JcFO*!8W5+PlCgarV?Hf!<((?!ri)rkl1Y'rN6.Yqu6]EGPl=Yj8A0BSb[.(GP;%9!ri&o +q>UNklL"0B!2TL0"ErDEdI!A%!r_ohJcD):!8Zf;J,~> +JcC<$JcFO*!8W5+PlCgap>u;2!V--3rrW#\qWRqZ +JcC<$JcFO*!8W5+PlCg`h4Xb)!R(8]rrVuWq<7hY>5]$5V>L8nlb`S6!%@ad!.t$\!Q+a5rrW&X +lhUP^g5;9grrCXI^'):6e^a,VrrVcEg4B9jrrCm;s*t~> +JcC<$JcFO*!8W5+OoGO_r;-B7rr`,fmec8K!W';)XoYlurr3#mV#"s/]_q$sjk?h[qecD0oD\me +nFZ>P!6G"S"3f0?lI,\7rr)coec,aKoCr37s,R*Zh<+`f~> +JcC<$JcFO*!8W5+OoGR]n)a9BbPq\)^96herrMR9rX&ZDd/O%Gppp6^!/LK'"/+\hQ2?UB\F]_% +hmgi#rrCUGNs!t\dH]0["9%obrRLoMm)R]IJcCc1!8Zf;J,~> +JcC<$JcFO*!8W5+OoGRR`LYl`bPq\$ZCpFGrrMU@rXf/Qdf07IqptVX!*T4@"((HM_>CqHf(8nC +g8r-^rrD3X^'!HHea1`a"8CNupsoBHke5:1JcCc1!8Zf;J,~> +JcC<$JcFO*!8W5+LAq8Qdf0IKn*932l2LeRZMq!0^&%ciM>;#hQM]qLrr;&&qecDpo`#!lqu66f +!8@9e"1Im\im[o2rquQdqu57J#5n&XlK[p9JcCc1!8Zf;J,~> +JcC<$JcFO*!8W5+NrK+YqYpQpdf0IC[%*Z3l2Le2)#ajF3:Hn4V"p&OMYhr,p]'NDqi:aBo`#!e +m/-GT!9 +JcC<$JcFO*!8W5+NrK+UqYpQodf0IAVM^8Ml2Le4+8uiT4n/LCb5&aOMu+OtnGi*rqn<(%o`#!c +l21,Q!:Tcu"5`e4jjX55pVi8P[clBD#4Ap^MMe_!JcCc1!8Zf;J,~> +JcC<$JcFO*!8W5+LAq>Rqu+tC"SM'Fo)@qS!9!gY!lsAGq/-7`g?\\%"8DiqjSNfpUuhUWmhq:#?DrVlQmqYf%G"o7NMmI^4*s,I$Yh<+`f~> +JcC<$JcFO*!8W5+LAq>Hm.Jg,"OaKiJcC`0!8Zf;J,~> +JcC<$JcFO*!8W5+LAq>&]\Cm7"N?7U]DCgm!2]W+!aG95q7ZpLmjn;W"02D$oD?6%f&co4pVQgA +"4I5JqUGNLrnrorMPo4]rs&DXQAV'Ci.:ofrrCm;s*t~> +ir9)V`j>QH!jfoBJcC<$L]7A1JcCK)!;lcj!W2lGrr`)bq#0IW!6kDE!/gVj"Eq6Rs76*Q!:^!f +!3Q0:!I+8#rrMhMqecFjp<`gArqcKiec,^Kq>5aCMZ3\4k5Tr~> +ir9)V`j>QH!jfoBJcC<$L]7A1JcCN*#5mlGhr3nteGfX5Yho-=rr?X/$34'%Ns(`gs8T>$JH2YJ +rrBh3NrbRAkPkSXV#-2RU\N49"8V-CpXT9FnDNYas,-gVh<+`f~> +ir9)V`j>QH!jfoBJcC<$L]7A1JcCN*#5#WeMNP@4eGfX0U=o8)rr?d3&HHkJ^'):/s8R*:*WT^L +rrCdN^&c+JkPkS[b58mRb59Qc"6ZPZiRRr0mb?rVs,-gVh<+`f~> +ir9&!`VJm%`Q%]QqBl7B""+'J-Ed@K-Lh$8-M%0:-KG++-M%0aH7-N!fE +-NF,F-3GekOnJ>G!%.=;!%*)6J,F0bLueR8!;ZNW"9/?# +pA8_-aQNR'V#,$1G4!WU!<1dR"8MN`rdk*#rrCm;s*t~> +ir9&!`VJm%`Q%]QqBl7B""+'J-Ed@K-Lh$8-M%0:-KG++-M%0aH7-N!fE +-NF,F-3GekOnJ>G!%.=;!%*"V$34r@Nrc$@rr2uMqgekD +s8VlkNr[_nrrBV,NrbO9ci4%DrS@JUhoOOIJcC<$!8Zf;J,~> +ir9&!`VJm%`Q%]QqBl7B""+'J-Ed@K-Lh$8-M%0:-KG++-M%0aH7-N!fE +-NF,F-3GekOnJ>G!%.=;!%*1[&HJ!l^&cCJrr2u.q]5k/ +s8Vun^&[ptbrPg:l&2JcC<$!8Zf;J,~> +ir9Ckm-F$(m-F$(m-CtPrr=D>rrXVJs'OU^!+50o!+5U&!+4[a!%.::!%-b+!%.::!aTJCrVm8t +=JFjPjGbUrs8OGCrsC+Qs!IdGnCO7=oZI16?gI^l?aTh5h1>TYrrW2trjVn.orS.q!NL2>D?6R, +r;Qc_r9=:Vrr2tor,)M(kl1XkqJH;eX8`4snG_\RoDF1>Jc>`+k5Tr~> +ir9Ckm-F$(m-F$(m-CtPrr=D>rrXVJs'OU^!+50o!+5U&!+4[a!%.::!%-b+!%.::!aTJCrVm8t +=JFjPjGbUrs8OGCrsC+Qs!IdGnCO7=oZI16?gI^l?aTh5h1>TYrrW)dq7$A)i"Z.t!>:.dNrccc +r;QbQr.+jorr2u.r/Ui_kl1Y'qMtX:ec,XIg&D-Oke$ha!QFPZs+11Mh<+`f~> +ir9Ckm-F$(m-F$(m-CtPrr=D>rrXVJs'OU^!+50o!+5U&!+4[a!%.::!%-b+!%.::!aTJCrVm8t +=JFjPjGbUrs8OGCrsC+Qs!IdGnCO7=oZI16?gI^l?aTh5h1>TYrr_c/kPi!k!T>$t&HNiWrk8Ea +qu$Ho/,UFgWrE"uf)35^dcg]2hYOqdn(%F +ir9CdjQ5IajQ5IajQ3E:rr=D>rrXVJs$,?>!'foO!'g>[!'fEA!%.::!%-b+!%.=;"R7Z'0BrK9 +!KOG_rred2s8OGCrrXVJs!I[D!QL5Drr>:Lrr>9jrrCl+s+14GrrE&IrrE&drrJpJrN66oDJmPl +rrDWfl2^>QrrCIED?>%^rp0RadJ@_\`Rk+mrquTirn@AVrV#OAme-L/s+11Ns4ui;J,~> +ir9CdjQ5IajQ5IajQ3E:rr=D>rrXVJs$,?>!'foO!'g>[!'fEA!%.::!%-b+!%.=;"R7Z'0BrK9 +!KOG_rred2s8OGCrrXVJs!I[D!QL5Drr>:Lrr>9jrrCl+s+14GrrN#reGfOGmf* +ir9CdjQ5IajQ5IajQ3E:rr=D>rrXVJs$,?>!'foO!'g>[!'fEA!%.::!%-b+!%.=;"R7Z'0BrK9 +!KOG_rred2s8OGCrrXVJs!I[D!QL5Drr>:Lrr>9jrrCl+s+14GrrM]eeGfOGmf*==L]%ee4MJPl +qYpP8r#PiJrr2uar4W9Ms8)Z[rrDB^^&bq,fDc!J`LOg6gA_BNcAILPbO:#^Jc>cNh<+`f~> +ir9C_hqm8Ihqm8Ihqk7*rr=DArtQm\s!Ib9-73p9oR/YQIJX!?3Pe'5r;R&oGW7X&nGiM8rVmBT +s$nC_G5Eu)5:^40s8OGErrjbL7j]R+rVm3p-73p9o6<5REq&u+'ditX2o\KA8AtQ.mU[tFdf9=o +s8OGErt$OWs6aPT6+SECs7C^u0n&oqrtG!K3&bmIs8+ap9.WWPs8OG82t$\F!qJDAr;QnpDZ=UJ +rr3!ilhLJ[-N!fF-NF)mr;R&t8H8_!6n:mOqu6pKs8+ap9.WWPqu72_faWs$nC_G..DNh1>TWs7uZsr;$6gfDbpOq=sIZ"/KgP +Nr?*]Q.l'6!;ZNW!<2utqecJrp@mtS!T\J&D?FgOlh]?8!WN#rp]13DrrW)nrdk*#s8Drth<+`f~> +ir9C_hqm8Ihqm8Ihqk7*rr=DArtQm\s!Ib9-73p9oR/YQIJX!?3Pe'5r;R&oGW7X&nGiM8rVmBT +s$nC_G5Eu)5:^40s8OGErrjbL7j]R+rVm3p-73p9o6<5REq&u+'ditX2o\KA8AtQ.mU[tFdf9=o +s8OGErt$OWs6aPT6+SECs7C^u0n&oqrtG!K3&bmIs8+ap9.WWPs8OG82t$\F!qJDAr;QnpDZ=UJ +rr3!ilhLJ[-N!fF-NF)mr;R&t8H8_!6n:mOqu6pKs8+ap9.WWPqu72_faWs$nC_G..DNh1>TWs8)`urpo.9p"03Fq:j`prr]fm +O%fKZ!Cl,FrrC[JJH5HDs8.iYlI+5MrrMDNqi:f_lh]?8#6"#Lhr!bsg&D-BhtVd&JcG]K!8Zf; +J,~> +ir9C_hqm8Ihqm8Ihqk7*rr=DArtQm\s!Ib9-73p9oR/YQIJX!?3Pe'5r;R&oGW7X&nGiM8rVmBT +s$nC_G5Eu)5:^40s8OGErrjbL7j]R+rVm3p-73p9o6<5REq&u+'ditX2o\KA8AtQ.mU[tFdf9=o +s8OGErt$OWs6aPT6+SECs7C^u0n&oqrtG!K3&bmIs8+ap9.WWPs8OG82t$\F!qJDAr;QnpDZ=UJ +rr3!ilhLJ[-N!fF-NF)mr;R&t8H8_!6n:mOqu6pKs8+ap9.WWPqu72_faWs$nC_G..DNh1>TWs8)`ur6:\=gXlH,psdpbrr^id +^1[BV!F>0irrBS+*WY^/s80M3o?,>FrrM`.r4W9HaR/iXrs&5:Oc#%(n_*pDm+V2bs+14KrrCm; +s*t~> +ir9"TpYGnHq#C4 +ir9"TpYGnHq#C4 +ir9"TpYGnHq#C4^XRi7JcG?A!8Zf; +J,~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF#s%5Ls6rPYs!H_$rs1jLs8V:Hs8OGErrXVJs!IaF#U\R2 +s62TEs!I^E""+'J-Mm`B-N=#K5NDeDkW\nD$mu#S-Kb@.q'Z4B3:-SC""+'J-N3rU-NF*.mJm4G +-NF*+kl:\P8,N<'5NDeDkW]%H-Kb@.q'Z4B-NE'gqZ$Lajo#,ckVi;;qD[U;s"*sEs8=;Err=DC +rrXVJs!I[D#5g%Ps%872q>U^Is8OG.s8VmBqu76+QurroJQ"t6U:r,)m\;ZPPLs8T/L"t6V3rrW2trT!n_ +rqGjGlKe-BJcC<$o`"pIk5Tr~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF#s%5Ls6rPYs!H_$rs1jLs8V:Hs8OGErrXVJs!IaF#U\R2 +s62TEs!I^E""+'J-Mm`B-N=#K5NDeDkW\nD$mu#S-Kb@.q'Z4B3:-SC""+'J-N3rU-NF*.mJm4G +-NF*+kl:\P8,N<'5NDeDkW]%H-Kb@.q'Z4B-NE'gqZ$Lajo#,ckVi;;qD[U;s"*sEs8=;Err=DC +rrXVJs!I[D#5g%Ps%872q>U^Is8OG.s8VmBqu7 +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF#s%5Ls6rPYs!H_$rs1jLs8V:Hs8OGErrXVJs!IaF#U\R2 +s62TEs!I^E""+'J-Mm`B-N=#K5NDeDkW\nD$mu#S-Kb@.q'Z4B3:-SC""+'J-N3rU-NF*.mJm4G +-NF*+kl:\P8,N<'5NDeDkW]%H-Kb@.q'Z4B-NE'gqZ$Lajo#,ckVi;;qD[U;s"*sEs8=;Err=DC +rrXVJs!I[D#5g%Ps%872q>U^Is8OG.s8VmBqu7"3Xo88%lULs>r;Qr%.0_3&cMYBa]l=&.r;Zeu.0_3&i;WlHdHKWj +#PuuDMMdG6pOW?qs7H +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF!%\!p">0ZR-N3f@#V5cOs84DIs!I^E""+'J-N=#N-MmcB +qCDUG-N3rH-NF)mqYpOBrr3-PqZ$Tn/,T>K-NF)mrVm!Is8OSGr;QjGs8OGErsL1Rs""!Hs7n#A +s""$p!%n*J#V5cOs84DIs!I^E$7>fQ-NF*^X8fnSqu6Ygr$DQUY^+'NQ"K6I63!KR6[Xp)N8S0=0urr3r5lKV\6 +Y2Ag"QOQ]-DH@3chR+?Ks8ST3M?*YSrs$Ua^[f2S=T!%FC_6[@s8U4[^[f2\cG9GarUfC?nb<$6 +s+14ArrCm;s*t~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF!%\!p">0ZR-N3f@#V5cOs84DIs!I^E""+'J-N=#N-MmcB +qCDUG-N3rH-NF)mqYpOBrr3-PqZ$Tn/,T>K-NF)mrVm!Is8OSGr;QjGs8OGErsL1Rs""!Hs7n#A +s""$p!%n*J#V5cOs84DIs!I^E$7>fQ-NF*^X8fnSqu6Ygr$DQ'hqq(iNpq*''n+ltfOrn:sO._d;Nraq7rX&fgn!kPe!<3!;f7AK/ +*aj<[e<^YWO,n8kFHhV%cN!p7+C"pBrVm)E)SbjZ'm';6%"SujpAb08)SbjZ*6uA"#5$-0S@dJO +JcC<$oD\gHk5Tr~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF!%\!p">0ZR-N3f@#V5cOs84DIs!I^E""+'J-N=#N-MmcB +qCDUG-N3rH-NF)mqYpOBrr3-PqZ$Tn/,T>K-NF)mrVm!Is8OSGr;QjGs8OGErsL1Rs""!Hs7n#A +s""$p!%n*J#V5cOs84DIs!I^E$7>fQ-NF*^X8fnSqu6Ygr$DQ*[nG_)?"S]'VVX4-Y#*L'N^:qY(rk8E2!<*Q64n+sbQ2ppa)n6q1 +$jROfjOBM,LVCKg'SqBk*7"TaS01Z/q#13sar8%c_&/U<^'pYI!;HNnar8%c_&Ub9rs&&3MMeRb +qLSZts7?6jh<+`f~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF!CH;Qrr=DArt%K\s8V:Ks8OJBs8V4.s8OGFrt$O;s8V=G +s8OJBs8V4.s8OGBrr=DFrrk^Qs8V:Kqu6aFs8OGErra\Ks#]EArtHg[s!RXBs5k[.s#]]Ls5#+& +s$H5Lrs1pTs8V:Ks8OGErsC+Qs!IdGc8"?Aebf@ITrri6Hs8OGCrrXVJs!I[D +!Pj'\rrW2(55Y?^-NF)mrVljEqu6aFs8OGErt?aZs!He+s62ZGs!RXBs5k[.s!IO@#6(hjs8PFT +qu6XC[/U-^JcC<$m/I.drVk^S!r;ThqYq!#+++K3DJk)MDM[udrN6:I;<@fXrVmc$ShT6jlM(>Y +D^oXB.7&RNn!7Mas&%V;!;uj$@$gona?V9SD?FZ0V?$Vq!FV8nrrJErlMgqbrVbIM!ri)lJcC<$ +n,ECDk5Tr~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF!CH;Qrr=DArt%K\s8V:Ks8OJBs8V4.s8OGFrt$O;s8V=G +s8OJBs8V4.s8OGBrr=DFrrk^Qs8V:Kqu6aFs8OGErra\Ks#]EArtHg[s!RXBs5k[.s#]]Ls5#+& +s$H5Lrs1pTs8V:Ks8OGErsC+Qs!IdGc8"?Aebf@ITrri6Hs8OGCrrXVJs!I[D +!Pj'\rrW2(55Y?^-NF)mrVljEqu6aFs8OGErt?aZs!He+s62ZGs!RXBs5k[.s!IO@#6(hjs8PFT +qu6XC[/U-^JcC<$m/I.^pANnK!oi#0qYq!#+,g_gO,os!O/)IMr<`[>;<@fXrVmak2H5R([?bA's&$Y'!;uj$@$gonePnO,Nrt>!V?$Vq!FV8nrrJErlMgtbo^i%@rrE#prrW)` +hgtfYs6osfh<+`f~> +ir9"TpYGnHq#:=@q>UXGs8OGGs!IaF!CH;Qrr=DArt%K\s8V:Ks8OJBs8V4.s8OGFrt$O;s8V=G +s8OJBs8V4.s8OGBrr=DFrrk^Qs8V:Kqu6aFs8OGErra\Ks#]EArtHg[s!RXBs5k[.s#]]Ls5#+& +s$H5Lrs1pTs8V:Ks8OGErsC+Qs!IdGc8"?Aebf@ITrri6Hs8OGCrrXVJs!I[D +!Pj'\rrW2(55Y?^-NF)mrVljEqu6aFs8OGErt?aZs!He+s62ZGs!RXBs5k[.s!IO@#6(hjs8PFT +qu6XC[/U-^JcC<$m/I.LhtQ%.!o2?"qYq!#+/0IZ^:qY(^<6 +ir9"WpYGnKq#:=@q>V'Ss8OGGs"*+(s,3<6oUK@is!IRA-AA&anqi)#s$N[Zj)?OKs"*+(s!E!U +nWnM$s$N[Zj)?OKs"*+(r;R'Si;*D,T(VZ2L&:lP-NF)mrVn&gs8RCsn[2!hs!IdG6`0\>E%Ctg +Fd_daF!gqeMja&+S72'VP26!)^gEK/ +s!IXC&LRPX-NF,ChjmR.s8Q'+qTV/"rrXVJs!I^E!%.UC""+'J-N3rZ-NF)mGj=gbHN4"4VYT7k +/-#W#i;*S@!Q"&Y9\!<3!!-JJJ! +!S8gfrrrE"q"X^ajo5G[p%/$2s+144rrCm;s*t~> +ir9"WpYGnKq#:=@q>V'Ss8OGGs"*+(s,3<6oUK@is!IRA-AA&anqi)#s$N[Zj)?OKs"*+(s!E!U +nWnM$s$N[Zj)?OKs"*+(r;R'Si;*D,T(VZ2L&:lP-NF)mrVn&gs8RCsn[2!hs!IdG6`0\>E%Ctg +Fd_daF!gqeMja&+S72'VP26!)^gEK/ +s!IXC&LRPX-NF,ChjmR.s8Q'+qTV/"rrXVJs!I^E!%.UC""+'J-N3rZ-NF)mGj=gbHN4"4VYT7k +/-#W#i;*USe2301crf75U +W;-AmAc2r +ir9"WpYGnKq#:=@q>V'Ss8OGGs"*+(s,3<6oUK@is!IRA-AA&anqi)#s$N[Zj)?OKs"*+(s!E!U +nWnM$s$N[Zj)?OKs"*+(r;R'Si;*D,T(VZ2L&:lP-NF)mrVn&gs8RCsn[2!hs!IdG6`0\>E%Ctg +Fd_daF!gqeMja&+S72'VP26!)^gEK/ +s!IXC&LRPX-NF,ChjmR.s8Q'+qTV/"rrXVJs!I^E!%.UC""+'J-N3rZ-NF)mGj=gbHN4"4VYT7k +/-#W#i;*USe5/&sprk8QV +c27M@C&JVGV>pPqrVlq=#Sd7Z!+Z$.rk8RVU8GEPf.-e"!iLnUr;QsJgAgcYTHF-H"(mbq!<3!! +-JJJ!!S8gfrrr/9Oc$I*jo5GH`OaoWs+144rrCm;s*t~> +ir9%i\G=t^\@MD7!%.OA&gmYY-NF+Q3B.!3Jik_kfDkjtq>Vf6G;_C+o`+s.7k7-M2uci="ls8Tr+.nIZ= +qZ#ej0L*'!rVuSC4>:!kqu6roG;_C+o`+q: +rr2sFqu6^Es8W'F""-?inc&Ok_ac4H^\e$5-NF)mrVljEqu6aFs8OGErtQm\s!G9B.qS2Ls2%8V +8B*Ubs0OdFr;RAH7k7'Ds8VeE4>:!ks8TGd2n&_dh1>TWs6TadrqZQg!W2lMrt##H;JoDCCi4-H +pAb-mqRuj1!q?3irVlrp&_I$I!:0Xa%u>+@"_r#1rq-^"s8DEO!;uj$$hj: +ir9%i\G=t^\@MD7!%.OA&gmYY-NF+Q3B.!3Jik_kfDkjtq>Vf6G;_C+o`+s.7k7-M2uci="ls8Tr+.nIZ= +qZ#ej0L*'!rVuSC4>:!kqu6roG;_C+o`+q: +rr2sFqu6^Es8W'F""-?inc&Ok_ac4H^\e$5-NF)mrVljEqu6aFs8OGErtQm\s!G9B.qS2Ls2%8V +8B*Ubs0OdFr;RAH7k7'Ds8VeE4>:!ks8TGd2n&_dh1>TWs6TadpuVM4!U]g=rt##JCQE9EN/s$p +q#C?oml11P!mprIrVlrN$$Q +ir9%i\G=t^\@MD7!%.OA&gmYY-NF+Q3B.!3Jik_kfDkjtq>Vf6G;_C+o`+s.7k7-M2uci="ls8Tr+.nIZ= +qZ#ej0L*'!rVuSC4>:!kqu6roG;_C+o`+q: +rr2sFqu6^Es8W'F""-?inc&Ok_ac4H^\e$5-NF)mrVljEqu6aFs8OGErtQm\s!G9B.qS2Ls2%8V +8B*Ubs0OdFr;RAH7k7'Ds8VeE4>:!ks8TGd2n&_dh1>TWs6]gfro9[NM?1NdgA_]]+-+'s)8!Vs +b5;5=!:W,L&H^D\!<)p!\,mWK*WRbjrt!8d^'M3Xj7W'Rs8VhjM?*SS"q1/%_S3Gbrk8N(4oYH] +rr3!,pAY'moaL9g!WM-YM?0X4kPkb[_3g+;RaH]dJcFm4!8Zf;J,~> +ir9)C\Z#D%!iWZm_#FB]Q2^ld:9=Hq-B8$*h1>TWs6BUerquTjrnIGSreD^JWDJfJlDVG-h"98E#qt^ +ir9)C\Z#D%!iWZm_#FB]Q2^ld:9=Hq-B8$*h1>TWs6BUeqsWS:r7h5Qp5C'lNs$S0O/)LLrrW9$ +cku`h!\!L;r;Qd!If4g1fDklNO,j=$O5p9="98Dslf\?Hrsf,/UlURr!frD0,M2tq!<3!!!r`,u +!W<,frr`)\l1a<>"n0-pW57ABs+143rrCm;s*t~> +ir9)C\Z#D%!iWZm_#FB]Q2^ld:9=Hq-B8$*h1>TWs6BUenAUdDp=oTKoTgp)^'#s2^<6?PrrW9$ +dNAH#!\WsBr;Qct*W7#l\GuTS^:jZ]^@2+#"98DrkN)^Arsf,/b.bU&!kuC],M2tq!<3!!!r`,u +!W<,frr_GcY2SLB"miLOR't_"s+143rrCm;s*t~> +ir9&TmeQ,KmJ+Ks!%+'4"8^%r_6!Y:-B8$*h1>TWs1eR8i>P\pD?ETGL\C]H!s&B$k5DF`_>sN6 +!>O#]lMU__D?^8ZDVG-_%K-5+!;uit$_I?8"_e0YG"dkorr<&urrEN$rr3#k%F+nSrqcMCs+140 +rrCm;s*t~> +ir9&TmeQ,KmJ+Ks!%+'4"8^%r_6!Y:-B8$*h1>TWs6'C^rnIGTrQ#[Rrf7.l(S^^'rrW9$s0DS1 +!Cm.frrEUOrIOnIs,R?gM3$]soF:d!!WE)srrEM5rf75=#EP-FN;ihW!<3!!$hjT"!V?igrrN)t +lMgk`qu6`lkj3m#JcFa0!8Zf;J,~> +ir9&TmeQ,KmJ+Ks!%+'4"8^%r_6!Y:-B8$*h1>TWs6'C^qYL3lro="\rQ,jnrk8Jg+3FEYrrW9$ +s0V_:!DELkrrEEFr>tn;s1S[C\%_>2oF:d!!WE)srrEMQrk8QD$GO>RN;ihW!<3!!$hjT"!V?ig +rrMojlMgk`qu6`jjQM0pJcFa0!8Zf;J,~> +Q2^h2Qi@+;4fPL^!%*^*!8W5+JcFX-!r`#pjo5AS?hsa&Vu6Pp!<2uudJ^3J!;uit8sK;>%.!rn +!,cZe?#I+NeL^Xu!!)rs!?PPGD?F)VE7+L^"*=Jkg&D!PeL^@m!<2*["8MK[r.4m!s4RDPh<+`f~> +Q2^h2Qi@+;4fPL^!%*^*!8W5+JcFX-!ql!Sjo5AT=S`!tWVlbr!<2uuFSuOH!;uit5Z7Q3%#Fr` +!0<0WH&p#GeL^Xu!!)rs!?lafNrsSDOPK[4"*=Jkg&D!PeL^@m!;bgW"5h/@m",1fs4RDPh<+`f~> +Q2^h2Qi@+;4fPL^!%*^*!8W5+JcFX-!nb?Djo5AWC\e#2X8Mtt!<2uuGl83S!;uit2A?$1$nVGY +!5?/hTt]C`eL^Xu!!)rs!@4B<^&srM]^,Co"*=Jkg&D!PeL^@m!:T%L"5:H'k^ibbs4RDPh<+`f~> +JcC<$JcFO*!8W5+JcFX-!;uik!W2l[rs=i(:n=;NG'9<1r;Q`srVll2riQ8%li$hb[NO?'l3mFc +!,c[)5Amq0NGJIl!!)ut!no.hrb_g)2R35Yrr<&urrH\orr3"YC\Ri3rquQgrosFer:'%;lL4S# +s+14'rrCm;s*t~> +JcC<$JcFO*!8W5+JcF[.#6+,Nhr3nskl1si*D:!TAqlS@1]77Q!<)ot2uX-b!5\X6!k&berIG@. +quDe=3)YgXs,Cglrr<&trrV4?;Z;^Z:d2Ymr;Q`srr3"1P5bI^NGJ:g"T@fJmJ?)I#4oI$S=HtI +JcC<$g&D'.k5Tr~> +JcC<$JcFO*!8W5+JcF[.#5Q9%MNP@2kl1t7-XCV(DQ^gK1]77Q!<)ot4T5on!5nd8!k&7Pr>l?V +quFIF95VE"s,Cglrr<&trrVX^D>q6OB2$eQr;Q`srr3"1P5bI^NGJ:g"S]lt^?b%`#4\jYMMe:f +JcC<$g&D'.k5Tr~> +JcC<$JcFO*!8W5+JcFU,"T/#iq#'CV$arh?CNPf*JE6VS\GcF-!<)p%qQd9,!42@srt/ujS_<,O +Rkc^9DH[EGXh,J&r;Q`srr3;lG?PAPBNGY#o)&Fe!<3!&dM]di],B5rrrN,rrqHKjkl1h_mcs65 +r.4m!s4I>Oh<+`f~> +JcC<$JcFO*!8W5+JcFX-#5muPhr!i!lMh74B+^)ZDJk?pr$AlOrr<&trs%p/$46bNi;NZf8eY6L +IWBE`233f@%Vi\h);"fd!!*#u$1X=(%Vgc7&!HM\rr<&urs$mh^@JlRfD5FNrU&S$hs:4)rrqYj +S?C0*JcC<$f`(s-k5Tr~> +JcC<$JcFO*!8W5+JcFX-#5-04MMf+rrqMX +MP.rSJcC<$f`(s-k5Tr~> +JcC<$JcFO*!8W5+JcFO*!ri)qlMgt?DAke>D?Y4*s8SWQrVlitr;ZTnrr38uSidMe(J:j*h!!)ut"LBQ^/@bKT"TJ5lqYfUW!r_unJcC<$ec,X*k5Tr~> +JcC<$JcFO*!8W5+JcFO*"8hKZrp0Rdj,YB_rf75 +JcC<$JcFO*!8W5+JcFO*"7X"[qWn.`n%LDmrk8Q?h>dMG4oPB\!;uln!<3!(WY>[=!!<\5h>Y+k +Kc^IL\GlO)!!p`]^4dX4+,AtSrr<&trrfYX"t[:ZrrhDPMPoFrrrVfQn:CUjs4.,Lh<+`f~> +JcC<$JcFO*!8W5+JcEXf!VV'@D?.-8rrCgPXoQ]FrrE&ql2g^hrb_dVGe!JI!1Wq)")i^Ke`Ql5 +rr)icrri>qnFlg3s+13orrCm;s*t~> +JcC<$JcFO*!8W5+JcF0u!W;rhrrMncqi:`tnc&TQr<`O:rr2umqgee"a8V,$N/#+@rrBA&NrkT: +f]N28qXj[Srri,N]?p2$s+13orrCm;s*t~> +JcC<$JcFO*!8W5+JcF0u!VQ<]rrN#:qn<'enc&TTr=K$Err2ufq]5dJhYt4j\?46RrrCLG^&u'X +[bp6I!q+Y/nG`Xce#p^]JcC<$bl7\!k5Tr~> +JcC<$JcFO*!8W5+JcF0u"8r#mrV$6kXnuu9Omi;Ma8N.@i;W`VnGMPPo"Y0A!d0O2rr3#srqucr +[et"EDfa1PrrN#brosOSr.4m!s31KCh<+`f~> +JcC<$JcFO*!8W5+JcF0u"7t[@p%JCc^\a&lWpfrf +JcC<$JcFO*!8W5+JcF0u"4X'Rg\1XIgAASacL:c5>5]$5V>gJpA,IAKET6u3!j@H`rr3#ap&+gi +hYb(h]tE7PrrW2_T`0fLZKd#@JcEso!8Zf;J,~> +JcC<$JcFO*!8W5+JcF4!!WN#qp]13errD-WD?4qSqYpWqq>U3i!W';)Xou*#s8Vikl2g5)rb_sl +Tr.kir:B[]rrCICD?.`ErrW2tr9=4bq9p\f[CJcEpn!8Zf;J,~> +JcC<$JcFO*!8W5+JcF4!#Q=5Ohr!D^rqcWplMHVCQ2(4U!qG@Iq>UKa-iOGU):8E`chr=pLu\Jq +#C^3 +JcC<$JcFO*!8W5+JcF4!#Pui.MMdP:qYL3loD?6&_>F*/!q5%Aq>UKb/cH=b+4C2hWr*n=/FWSP +#G#Rns8VMqd/EtElh\ +JcC<$JcFO*!8W5+JcF-t"TJ;oq#'sf!0[4s!8@8K"8M?Oq>($kn?W%r"24R2rr)*kk1RMMS=H.D +[F=X;lLb)U!T\J%D?-L#rrrE"q"X^alMgqaqYl'GJcEgk!8Zf;J,~> +JcC<$JcFO*!8W5+JcF-t"oIfNhs^L>rrB+sNr\5:rri>V[&E-_rrLI`rX&`en,N.\JIR^B]s"'# +Q&;BdnAh'Brr3#aQMZ^C\F0A#qsWM$lM0rM!<)co!qb[NJcC<$aSu7rk5Tr~> +JcC<$JcFO*!8W5+JcF-t"n9^.MSo&^rrC@A^&[Wurri>PVO6?c]="B- +Q%l'_n@a^rrr3#j_Y_%If'`PAnAUNIZK1TV!<)co!qPCGJcC<$aSu7rk5Tr~> +JcC<$JcFO*!8W5+JcF$qs8Mlp!8@RQ+HA_s7V!? +D?,L\rrrDtq"X^ao`#$jp@7m.s+13arrCm;s*t~> +JcC<$JcFO*!8W5+JcF$qs7u`pqu6ZVqi:`eq#:NiY+2$&q"k!jUAYE' +JcC<$JcFO*!8W5+JcF$q!p]1Nqu6Zbqn<']q#:NfTSeW?p\OmiV>Uu1>Q=_55D,U%L^&cph#IEO +`r!IMb3o95kE(RYVr..H"R+(0c2<.mJcELb!8Zf;J,~> +JcC<$JcFO*!8W5+JcE^h!ht-`rb_a[p@eLhp$1i6rqcWpbl+[Hg\A[InV@7Sn<3Zd!Ish1rrW&o +rUp0lrqPjZl2gMUJcC<$^]+;ik5Tr~> +JcC<$JcFO*!8W5+JcE^h!j\)Qrf7)Fq"F^jcCCEHqtglGI!M&rQrr`,_ +lhC)P!rLfPrgX#1p4<6ps1eR6h<+`f~> +JcC<$JcFO*!8W5+JcE^h!l:hFrk8ELqtC$m`JTPgqYL3lC&JVGQMA+RnV@7SnBUpF!QFs(rr_Sl +[c-oZ!rCN9re^`joR[$ns1eR6h<+`f~> +JcC<$JcFO*!8W5+JcEai#OR;AWgA)"LG&D2?E-C=/rrE&irs&Jr +lKe$9rdk*#s1\L5h<+`f~> +JcC<$JcFO*!8W5+JcEai#P"1UV4Ep5cLh,=m(MZ]q>UFRrX&[GQgKS6ZB^K3OcYjnmJm4boD]$h +eXWAMhtr!)JcEIa!8Zf;J,~> +JcC<$JcFO*!8W5+JcEai#PXa5DMb1'iq36Qkd'=Jq>UFWrXf0PQgKS6]"u+o]"GlNmJd4^q=FUj +p!/GW[bCS/s+13arrCm;s*t~> +JcC<$JcFO*!8W5+JcEai!k*HMriZ?op@A4`rqQKqos1m+lA,V2M1U8#aRfE3rp'O`r.4m!s1841 +h<+`f~> +JcC<$JcFO*!8W5+JcEai!lgFurhfdkp%&+_q=ssli#!;plA,V4T9bb)eareAqu63e!;u`o!rhcY +JcC<$])Mcdk5Tr~> +JcC<$JcFO*!8W5+JcEai!o9o&rb2Cgn+-JYq"Xjki?'/+lA,V5_7$e`k4ATRmeubW!;u`o!rh]T +JcC<$])Mcdk5Tr~> +JcC<$JcFO*!8W5+JcEai#)R58G)<-8k5PJ@S*5Y1NL,C$p&>0or:p0gpAY6joC;X-s+13TrrCm; +s*t~> +JcC<$JcFO*!8W5+JcEai#GdEAP*i#`rTF1]Ya+F."-'"A^@hL/rU8_4q=agjk/Y*jJcC<$Z2Xg[ +k5Tr~> +JcC<$JcFO*!8W5+JcEai#KjcpZ^>g;p#l>UZBaX0"-'Xpg%G@JpVi9+kk>#YiOuDHJcC<$Z2Xg[ +k5Tr~> +JcC<$JcFO*!8W5+JcEdj!;?;-!:B(O"TJH$pn$W(!K=V_rrDrqp]:9kq>U]up$:o.lhCC0s+13U +rrCm;s*t~> +JcC<$JcFO*!8W5+JcEdj!;QGP!:]jb!<2Qh"T/6!pn$W(!K=nhrs&GfiSWPZqYC-rpX#Y)S>4X2 +JcC<$ZMsp\k5Tr~> +JcC<$JcFO*!8W5+JcEdj!;lZ-!V66errE&hrri2us7i2JL]NL^pAY?l[ZQH)\aT@o#PQ3#MMdSA +q18Qss0DY)h<+`f~> +JcC<$JcFO*!8W5+JcEdj!8@?g!.XhE!r`#pp&>0np@eNgjG3htnFuqcrqcEdrV- +JcDtS!8Zf;J,~> +JcC<$JcFO*!8W5+JcEdj!9=!0edaeB"jG3htnFuqcpuUDrp\4[ko#I9'a6\BW +JcDtS!8Zf;J,~> +JcC<$JcFO*!8W5+JcEdj!:Tj"!6+d6!oClEp&>0cb0BsgjG3htnFuqcje7R0iV3?Un@a^P^$(%I +JcDtS!8Zf;J,~> +JcC<$JcFO*!8[DL!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng^D"nd$`#VWL_s7u`prrVLo!;ld! +X=4?%Xo88&X=4?%Xb$MGrrCdND?,gprrr>rq"Xacq#:HonERUEL]F%?rrN)tr;QcrqZ$TnJcC<$ +XoACWk5Tr~> +JcC<$JcFO*!8[DL!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng^D"nd$`#VWL_s7u`prrVLo!;ld! +X=4?%Xo88&X=4?%Xb$MGrrD*WNrZ3Vrs&JnjPSq^q"XjkmC/USieRT+p\t +JcC<$JcFO*!8[DL!qn,9rVuWm#64@>,7#s.r;Qu#6kT_H=Ng^D"nd$`#VWL_s7u`prrVLo!;ld! +X=4?%Xo88&X=4?%Xb$MGrrDNc^&ZITrs&GHRYm69jnSiXl)KW)ieRT+p\t +JcC<$JcFO*!8[DL!g4Xaq>UEpr;Qt#MWFQ`7\0PY&S=,=oCLIu&@VW=g*o"c +JcC<$JcFO*!8[DL!g4Xaq>UEpr;Qt#MWFQ`7\0PY&S=,=oCLIu&@VW=g*o"c +rr3,&.0_3&JcG<@!8Zf;J,~> +JcC<$JcFO*!8[DL!g4Xaq>UEpr;Qt#MWFQ`7\0PY&S=,=oCLIu&@VW=g*o"c +rr3,&.0_3&JcG<@!8Zf;J,~> +ir9#3`j>a!JcC<$\GlQbq#:Kn+2JokqYpNqr;Qf"q#:9ti>M[qX>KbNrrmdYs8T4rrr3#X)>jF> +arKgKs&%nX!;uit@$glm"dW^!s'V2mrrJErJcDJE!8@?g!0R!T!ri,rpAY,hi.qMsnGE._qYpTp +nc%eSmJ2D7!g4Xaq>UEpr;Qkh+dN-*s#"CM^@UsGQOpV*s&=m:psqp*s8PuXn+t[-R/d1cMWFQ` +7\0SZmkCm8l@)n9s2l7po"c +ir9#;`kqf8JcC<$\GlQbq#:Kn+2JokqYpNqr;Qf"q#:9ti>M[qX>KbNrrmdYs8T4rrr3#X)>jF> +arKgKs&%nX!;uit@$glm"dW^!s'V2mrrJErJcDJE!9=! +ir9#D`mk(SJcC<$\GlQbq#:Kn+2JokqYpNqr;Qf"q#:9ti>M[qX>KbNrrmdYs8T4rrr3#X)>jF> +arKgKs&%nX!;uit@$glm"dW^!s'V2mrrJErJcDJE!:Tj"!7(<<"7X:Zp%SIdUu7%3O6Xg2o(r@e +o +j8T/5=2mW/=5!TQb09hab[pbQQt;]c!8[GM"Ii!_8sfDS!!)cn"mm3-s$j3_rrML)r;Qit0rOpK +!!)rs!@HP"rrq"(s8OG"rr3#N.Y7VorrDH`D?0(hrrD$7L]apWqYp?k"oRlTnb)j5rri0?_&N1G +rr<&srrZ-[rrDus!j"6Sr;QqJ@K6A0q#:9si>M[q\,61)"m$O"s/l(qrrq@!s8Rb-rr3/pVuQd) +Qi@!cQ=PRHoD\gHk5Tr~> +j8T/=H,aS"H/\c&b09hab`;Z%R#[U7!8[GM"Ii!_8sfDS!!)cn"mm3-s$j3_rrML)r;Qit0rOpK +!!)rs!@HP"rrq"(s8OG"rr3#N.Y7VorrDTdNr\_;s8W'!s5Dgj"0(2Bp\Omnm^Se!e+84l"Ss4V +)u0:0!!)rs"&\1[!;uiuX>KbNrrmdYs8T4rrr3/\)?9`Gqu6U!jVImrXn_nq"lU@!s+H1,rrr(n +s8QJnrr3"bA:adPrrCm;s*t~> +j8T/FW5bY7W9XB^b09habh;spR+[o-!8[GM"Ii!_8sfDS!!)cn"mm3-s$j3_rrML)r;Qit0rOpK +!!)rs!@HP"rrq"(s8OG"rr3#N.Y7VorrDfj^&[oprr`&ns5Dgj",i&>iqiZYl`>uHbOL5b"Ss4V +)u0:0!!)rs"&\1[!;uiuX>KbNrrmdYs8T4rrr3/\)?9`Gqu6U!jVImrXn_nq"lU@!s+H1,rrr(n +s8QJnrr3"bA:adPrrCm;s*t~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[JN#5f^\s2#rVqu6Wrp\tD>GlRdV +lgk&VFa3ia!jaZ]qu6Wrr;Qd*pAY'qoaLm#$hjT"!VHkPs.TGmJ,F0bM>$B;"9&)mVVR%/m/Hh\ +!ri)rJc>oRRn?-JJJ!!S8fPs7?6j +h<+`f~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[JN#5f^\s2#rVqu6Wrp\tD>GlRdV +lgk&VFa3ia!jaZ]qu6Wrr;Qd*pAY'qoaLm#$hjT"!VHkPs.TGmSG\EKV"jBX"81jAUtph/g\C^F +qu6`nm.c/3"ok&`s%8XSrr<&prr<&srrGTmo)AaX)>a@6j"C3."mm3-s#SC#rrFJ#rr3#N.Y7Wk +rrCm;s*t~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[JN#5f^\s2#rVqu6Wrp\tD>GlRdV +lgk&VFa3ia!jaZ]qu6Wrr;Qd*pAY'qoaLm#$hjT"!VHkPs.TGm`VdFNb5:W,"59WTS_])(UuhOQ +qu6`mkkBZ."ok&`s%8XSrr<&prr<&srrGTmo)AaX)>a@6j"C3."mm3-s#SC#rrFJ#rr3#N.Y7Wk +rrCm;s*t~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[JN!Mq^RrrG0Tqu6Wrq#:P_6MLN[ +"T.fj!gH%Gr;QdZ\,-+)!;uit!r`,u"oSQ'rrW/urrN'#JcDGD!2TL0!K#n+rrW/plJ.0t`p`Ns +JcGNF#5f^\s2#rVqu6Wrq>UEpr;Qd1lgk&VFa3f`!o[%UqYpkEGlRdV[58.Hd/O%G$hjT"!VHkP +s7?6jh<+`f~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[JN!Mq^RrrG0Tqu6Wrq#:P_6MLN[ +"T.fj!gH%Gr;QdZ\,-+)!;uit!r`,u"oSQ'rrW/urrN'#JcDGD!4_oe!Mo#Mrr`8nj4)k?"1,DS +mXbE5rs&BG^]2.oqtpBn!;ZWp!;uit''o,g!HiYarrV.WW;?N#Fa3rd'"'P%2:2@&!=SW#rrMd$ +JcG?A!8Zf;J,~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[JN!Mq^RrrG0Tqu6Wrq#:P_6MLN[ +"T.fj!gH%Gr;QdZ\,-+)!;uit!r`,u"oSQ'rrW/urrN'#JcDGD!7q%]!Qt$'rr`5RQAXIR"0\W6 +l[f*2rs&BG^]2.oqtpBn!;ZWp!;uit''o,g!HiYarrV.WW;?N#Fa3rd'"'P%2:2@&!=SW#rrMd$ +JcG?A!8Zf;J,~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[MO!raaPrr3&+.K98F!!)ip!fL7V +rr3!6k5G>Y!;uiuMd#lQrrV$urqcWp!;uit$hjT""nW9(rsSQ"rrMa$JcDGD!VU^5D?6QonG`Og +akV[SRd0D=JcGNF!Mq^RrrG0Tqu6Wrq>UEpr;Qd#qt'ghPX>-Bs8N'"A,Z<)&!TETs8N0YaS*nF +e,TFLrVlftr<%WNoD\gHk5Tr~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[MO!raaPrr3&+.K98F!!)ip!fL7V +rr3!6k5G>Y!;uiuMd#lQrrV$urqcWp!;uit$hjT""nW9(rsSQ"rrMa$JcDGD!VhrVNrcfVnG`Od +_VBqLN1@B@JcGNF!Mq^RrrG0Tqu6Wrq>UEpr;Qd#qt'ghPX>-Bs8N'"A,Z<)&!TETs8N0YaS*nF +e,TFLrVlftr<%WNoD\gHk5Tr~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[MO!raaPrr3&+.K98F!!)ip!fL7V +rr3!6k5G>Y!;uiuMd#lQrrV$urqcWp!;uit$hjT""nW9(rsSQ"rrMa$JcDGD!W0_0^&cgVnG`OY +Y1na6MQ5]fs7lTpV)J>Q!BQtPrr<&prr<&srrE9"oD\lV6MLEXrr<(0rVQU*PX>-ErrY."p +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[MO!3Z.u!3Q2!!!)or!q0BNr;Qdk +UAFli!<3!"mp(_GrrJ1"q>UEpr;QdHg&D!TeL^b#.G=_#!S&`Ps.KAl^\D[JM7;71rrAnML]R&F +JcGNF!raaPrr3&+.K98F!!)ip!!)rs!>Xbqs8;rqrrS*^p\Xsmrng\Gr;QhV>5/$r!=6.5rrpY. +s8NK#rr3#k%>"QNrrCm;s*t~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[MO!3Z.u!3Q2!!!)or!q0BNr;Qdk +UAFli!<3!"mp(_GrrJ1"q>UEpr;QdHg&D!TeL^b#.G=_#!S&`Ps.KAlcM3G%UrVNdrrAnML]Q'% +JcGNF!raaPrr3&+.K98F!!)ip!!)rs!>Xbqs8;rqrrS*^p\Xsmrng\Gr;QhV>5/$r!=6.5rrpY. +s8NK#rr3#k%>"QNrrCm;s*t~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[MO!3Z.u!3Q2!!!)or!q0BNr;Qdk +UAFli!<3!"mp(_GrrJ1"q>UEpr;QdHg&D!TeL^b#.G=_#!S&`Ps.KAliqU4hb2;[YrrAnML]Pfr +JcGNF!raaPrr3&+.K98F!!)ip!!)rs!>Xbqs8;rqrrS*^p\Xsmrng\Gr;QhV>5/$r!=6.5rrpY. +s8NK#rr3#k%>"QNrrCm;s*t~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[MO!ApAFrrJrPr;Q`sr;Qii1p[#Y +!k'?Br;R!!!<<)j1pZrW!D'iurr<&srrH\orr3.]C]FEGP5bI^NGF+FTDnneokjqrXgd'>pA+aB +L]HCbs7cNnY5/+uXo/2!!;ZWp!;uit9VVC`!!*#u!q0BNp\t9_+TDBBmp(_IrrFCirr3/p$NL,T +g&D!PeLZ:OoD\gHk5Tr~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[MO!ApAFrrJrPr;Q`sr;Qii1p[#Y +!k'?Br;R!!!<<)j1pZrW!D'iurr<&srrH\orr3.]C]FEGP5bI^NGF+FTDno$ooB9W^rPKqq"asD +L]HCbs7cNnY5/+uXo/2!!;ZWp!;uit9VVC`!!*#u!q0BNp\t9_+TDBBmp(_IrrFCirr3/p$NL,T +g&D!PeLZ:OoD\gHk5Tr~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[MO!ApAFrrJrPr;Q`sr;Qii1p[#Y +!k'?Br;R!!!<<)j1pZrW!D'iurr<&srrH\orr3.]C]FEGP5bI^NGF+FTDnoBotCUTg>DAfqt^9G +L]HCbs7cNnY5/+uXo/2!!;ZWp!;uit9VVC`!!*#u!q0BNp\t9_+TDBBmp(_IrrFCirr3/p$NL,T +g&D!PeLZ:OoD\gHk5Tr~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[PP!k9?Kr;Qir-+NpR!!)rs!H"J) +rsWinX6ocDUbYC=s)"D'rrF)$q>UEpr;R;U)8>[R);"ogdM]di],B4Os.95jV!`+#JGkW2WS3.. +_h%j^rrFsIr;Qeo1]77Q!;ZWp!;uiu[Nk8=rs&B$s8V[IZMXY&PP5"U#3$U%s78(Qqu6\-N;ih\ +aXdDkAWm&m!KClGs7?6jh<+`f~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[PP!k9?Kr;Qir-+NpR!!)rs!H"J) +rsWinX6ocDUbYC=s)"D'rrF)$q>UEpr;R;U)8>[R);"ogdM]di],B4Os.95j\F,CXSc,Sh\Cu`= +_h%j^rrFsIr;Qeo1]77Q!;ZWp!;uiu[Nk8=rs&B$s8V[IZMXY&PP5"U#3$U%s78(Qqu6\-N;ih\ +aXdDkAWm&m!KClGs7?6jh<+`f~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[PP!k9?Kr;Qir-+NpR!!)rs!H"J) +rsWinX6ocDUbYC=s)"D'rrF)$q>UEpr;R;U)8>[R);"ogdM]di],B4Os.95jf'^6P`r40_d+X9U +_h%j^rrFsIr;Qeo1]77Q!;ZWp!;uiu[Nk8=rs&B$s8V[IZMXY&PP5"U#3$U%s78(Qqu6\-N;ih\ +aXdDkAWm&m!KClGs7?6jh<+`f~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8[PP!Bl_ErrJZRrVlitr;Q`uqZ$WF +rr3>,5nF2;:p0ftrrW&t!7UrI!=&Ats7u`prrfYX"t[:_rrfYX"t[98s.')iaEI5or,;LN!/0'^ +!5jBfq#:E*+8Yp8!rO@SrVlitq>UEpqu7(D-EHP1j.nG!s8Qr.qYpn%M;n<`8YQ1aD4g\)&(VPt +o$9(\s8ULb^@JlRf7EtnrrCm;s*t~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8[PP!Bl_ErrJZRrVlitr;Q`uqZ$WF +rr3>,5nF2;:p0ftrrW&t!7UrI!=&Ats7u`prrfYX"t[:_rrfYX"t[98s.')ieWoH]!1MVt!5jBf +q#:E*+8Yp8!rO@SrVlitq>UEpqu7(D-EHP1j.nG!s8Qr.qYpn%M;n<`8YQ1aD4g\)&(VPto$9(\ +s8ULb^@JlRf7EtnrrCm;s*t~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8[PP!Bl_ErrJZRrVlitr;Q`uqZ$WF +rr3>,5nF2;:p0ftrrW&t!7UrI!=&Ats7u`prrfYX"t[:_rrfYX"t[98s.')ik/$`)r4i0D!4U[< +!5jBfq#:E*+8Yp8!rO@SrVlitq>UEpqu7(D-EHP1j.nG!s8Qr.qYpn%M;n<`8YQ1aD4g\)&(VPt +o$9(\s8ULb^@JlRf7EtnrrCm;s*t~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8W5+JcF-t!9F(4r3l[%rK72BEU7QC +J_Gn[["88PrrG9JqYpSe4oPB\!;uln!<)p)X?dC$),RL8s8N/t!!h!Qn89'H0!YEU!!<#t#Li_Q +]eTgH^&@s6ZRQ/1\:O\NrrCm;s*t~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8W5+JcF-t!:'LBr5SfJrMosuP3e50 +R+d>r["88PrrG9JqYpSe4oPB\!;uln!<)p)X?dC$),RL8s8N/t!!h!Qn89'H0!YEU!!<#t#Li_Q +]eTgH^&@s6ZRQ/1\:O\NrrCm;s*t~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8W5+JcF-t!;$-Wr8.M*rQYGg^[/Z7 +[b?N;["88PrrG9JqYpSe4oPB\!;uln!<)p)X?dC$),RL8s8N/t!!h!Qn89'H0!YEU!!<#t#Li_Q +]eTgH^&@s6ZRQ/1\:O\NrrCm;s*t~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8W5+JcFs6!:B^=!5SQB!3Q0^!.`U; +!.3FU!MoUDs+139rrCm;s*t~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8W5+JcFs6!:g!I!7(P`!5SN5!1hZ$ +!0Z&l!MA_0s+139rrCm;s*t~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8W5+JcFs6!;HE[!9=%8!8@@r!63R' +!41C8!M8M+s+139rrCm;s*t~> +j8T.e7.r#4;TeY(a\;IX!<;O:"90btan@+`7C3!n!6k0:rA+L?E9-q0;trom-Q:!r1W8rcnR;rhKIMk5Tr~> +j8T.tCA)!gf6[4!!<;Oq"92_8fCiPPC;TuM!6k0:rA+L?E9-p722DrVlkXp723`qjd`epmhEbq4.NJopu*^!rD)`rga,$s1A9$rVlrpiMl^F!kJ?C +rga/kSa2sJSH5DJpRM;ERK!9Ce,KUHimYj*idq-9rrDilirIX-a8Dt +j8T/1V=qk3d..&3n]ppK!<;Q-"96?Znb0p&V:GSF!6k0:rA+L?E9-,f&rVllNp>,fLqq_>Qptc#Nq;),Gp"o]J!rhrTrn[_>s60I=rVlrtp#>l*!pBUI +rn[bWhY?"-h>uO/pYGo'RK!9Ce,KUHimYj*idq-9rrDromf;PKhu(b"b.bRiZe:-9MRMjKrrr>` +e)KBNJcC<$U]1>Mk5Tr~> +j8T.e7.r#4h.\Q!MU_DL!<;F7!9s2*!Ca?orrC::rr=kSrrV\WA*X'o8+ur_bl.PAAbC +j8T.tCA)! +S,pV!r;Qrukh>4_m",1fs02M'h<+`f~> +j8T/1V=qk3p=@:*ht6]_!<;H*!;Z?-!N"?GrrC::rr=kSrrV\WA*X'o8+ur_bl.PAg%F2'o(2JP +h>mTCh>mKIh>l7-rrCaGh>mTGh>mTOh>mKHh?Er9hV[\qrn[_IoCMt +j8T.e7.r#0j];@/""boLs8FDbs!T;qDXlLV-nFh/lgK"Dm-\pC./t^8s8Pgg-ilcCrr2uBpAY+K +rVmi/49,?HC--%us8T],3*"3&s6FD]B(Gt81Gde\rrC:Arr?X(GnkYoL%0M8H2j`8l&^19LY_d` +M0XCHrcn\IH//H"OSF)$Ac;W/AbLBLs8.'[s*8taWq5k]H$TF8H*l(KH$S3Fs,`#lq;7&,Gl[mD +Gmf)sH$O`)L%0M8H2mhg!IsqCGm\ldL%0M8H2i/QfD^$reWKTO!+hSu!8Z9,!Rd&&L]OC;JcFj3 +!9F(4r3l[.r/q&(O_t/Xg5#aWq>U^!qXO%CmIU;SrrN)jrTXFTrVZ[!rqcBcqYPjDq>UKS`;QP7 +[F=o%s3CWEh<+`f~> +j8T.tCA)!8m",.C"(GVEs8H@Ds'K.5PP+$`?X`VonFN'=na`#R?iOK`s8RE??NFoYrr2uBpAY+K +rVmi/49,?HC--%us8T],3*"3&s6FD]B(Gt81Gde\rrC:ArrA)PSJ:^noq%_Fs1S6sY+;,]k5+;? +SXof[SH]%ajo>@`pmhDFrVlkXp723`qjeZ*SY#Vlp\2FnSc>7OaPWV\S`TnOY,CFYkc"EM!<<%h +!MTDiSHe_`oq%_Fs8AJhUAOhY$1t+fSt2GPSZh&PSH7]PpRM;ERK!9CfDbm"O7nA1VWi[3jo5>G +r8[^q!5SN5!1&b.!2S>)!7L]C#PmMo[C)sSo_e^ioZ[9(!Qap2rrr5^g?7YcJcGQG!TCuqV?40S +pjrIjrrCm;s*t~> +j8T/1V=qk/psK)["3/=!s8KtUs2DtWf_kHh`Pqc.qYT"$qYSsb`W*pHs8UF?`;ugcrr2uBpAY+K +rVmi/49,?HC--%us8T],3*"3&s6FD]B(Gt81Gde\rrC:ArrCaFh?*T5r;PO_s69LYj5/YOp\spH +hVS;3h?Er9pAb0Qptc#(rVllNp>,fLqq_h_hVS4rr;Gm:hZ)HhmI^D7#kn;uj5Kb3pYu,-!<<&T +!T3nUh?*T5r;POQs8CdThuP +r9sR@!8@@r!5al4!6 +j8T.e7.r#3GP&"T0`EI#s8FD`s!T;qR59u?-n,"`12l]T12l5%./t\Ds7RiA7C3!n!6k0:!&OWS +)Y0)+s8R;)oob+1s$P<5[p/n4GEDK\L]@B1pAY-:rVlk/p3@CAep5f8H$TG)J@a?XH-a9U^)J#2RYH2i/eb'O#3#QK'pcbP%EdJS8#s*8m?\^#JG +Rauc7RsB;ZrcnQr^t\d4%[tsoeXLi0s*8nUK6`%3p3?XLRK!9Cf`(rYo8!F.dXhGsrrDHagAo%e +\,;BhJ;S7BOT:mK[K+DIg&^9#gP>jom/I=iq=="Cme-SWrrN)irTXFVrVZ[!rqcBcqYQ*K!Rd>0 +L]OpQJcF*s!8Zf;J,~> +j8T.tCA)!;ReO[_Ac?$:s8H@Bs'K.5ZY-De?XNc>B9`)!B9_^h?iOJ?s7Te#C;TuM!6k0:!&OWS +)Y0)+s8R;)oob+1s$P<5[p/n4GEDK\L]@B1pAY-:rVlkXp72r+iLSr9SXof-U7pfUi&4#QL?cgsMkBh>EfSs.,^TbhJ\Z +[Gd\8[[iuhrga+cdH1:s%^k8diO5;Js.,_MUn+:Kp722DRK!9Cf`(rYo8!F.dXhGsrrDTeirIC& +a8Dtjom/I=dj2&.2Y0?Y0 +L]OpQJcF*s!8Zf;J,~> +j8T/1V=qk2gAL3fa8X$Xs8KtSs2DtWj2g3I`Pql-PHp"oB(hVS;$hsU0ohXg6on+>Jn +s8LjWs5)W4p>,f&rVllNp>,fLqq_e^hVS;%hs($phZ)Hso).>Ls5)W(nDE^,r8%tahVR/XoA8?d +p"oB(hVS;3h?)X(pAEbWk4RU(k2+tphVS+ehVe8(h>l5srrCm-rrBFtL]NRbJcG]K!;HE[!9="7 +r6>;^MSB#6!7Lf%!9X7K!V;W3L]H]+rs/>U[\p$r_Y*j,!V3r&M?1Tbr;QrqiR?fGk_T6>d[0`b +!O_EJs3UcGh<+`f~> +j8T.e7.hr57"i;>@jic*r[8W`-n,*Y-p$`D./u7T/cRdY/c@(Gs!T;qp*]r1Zi9t)bkD)91Cl +j8T.tC@tp=FJR4NMdKikra-NB?XNhO?Yo:??iOnK@fL1M@fB_As'K.5p0Ri8_Z'Q8bkD)91Clqs.,_\Un+.WSXoefchj77Oe&@lrdIs+2Ng]nIh:_f.[.&kOdZsh4q#'.PebmGfZMgg(Ul(35 +U\q.i`rOE_irJl?rrBF]L]ELmrs/AX_6p\Vch[M=!VF8.S-#A0p\b$pq;^2lkO"W9!U63JL]GAE +s3^iHh<+`f~> +j8T/1V=he4bhhdae]#N-rl#`S`Pql"`QJ%r`W+'!`rF0"`rF#ss2DtWp;I'/ec,RKbkD)91CljhVS:pn,(rHs5)W1iSNMjr8.DP$Mr`,f&RK!9Cg&D&Zn;%(mQ2^j]r9jXKr8.M&rQYDcMS9)5 +r6G5s!93qF!;l*^!4:O;!0?":#Pd&^Vl-<0q#(-mo!eUU!fk:nr;QrqhUCKDl'MDNl(7O'!5sHg +dJj4&k5Tr~> +j8T.e7.M`/g)XpW`[: +!&sm5$98(cjF]j'c2[f&r\FX9s8OnKrrC:Arr?X(Gl[=4rt4aGH2i5:Hi//7r-EX7r- +j8T.tC@Y^7JEL9Hs8H@4s'K.5@UEUA?XNj4?NC-*?O$O;?iOJ?s7Te#C;TuM!6k0:">g)XpW`[: +!&sm5$98(cjF]j'c2[f&r\FX9s8OnKrrC:ArrA)QSH/<]rt4moSc>:PT)G4NrLTROrLKMZrga/k +SXofSSH+]KrrA)QSH/]eSHJn_ScA\["ok-as7O8+SHo1cSc,.NT)JSX#lgHdU +j8T/1V=MS.dJ(W!s8KtEs2DtW`l5ss`PqlV`;or;`g)XpW`[: +!&sm5$98(cjF]j'c2[f&r\FX9s8OnKrrC:ArrCaGh>mHPrr`2UhZ*T3"9767s8LjWs5)W4rn[bW +hVS;+h>l7-rrCaGh>mTQh?3f7hZ*T3"omH9s8;0Zh?3f7hZ*T3!<;uR#licl5srrCm/rrB_"L]HD8s8; +j8T.e7.r#E<\,XI3;"[Jr@B?Ys!T;q4"*5W-n,,p-ij;H-jK]"./t\Ds7RiA7C3!n!6k0:!&OWS +!Q![mrrG^`qYpd![7^K!8bDr\!&O?K!6kEA!+knM!L2OAGo5D&H2iSDL%BS8nUu1@nTfEZH[1>F +H$TG`GlVFSrr?X(Gl[mAGm"(lH2mkh#6/sos,GNpr-8PIH$Sq5H%b_cGl[mDGm&WnH'I7dGluof +H2mkh!MPPOGla/frcnV&P^3<.GlmN%me(i*AXWPuh:qr0iU)F%Qh\N!!9F(4r3l[.r/q&1Mf&N< +r/guTr3cUQr7\pc"7=agN899l^XqrQa8ZACp[[eAnFuh[!W;Kel2g;Hqu6j!q"OX]qm6;&l0jE. +[=SA,rrCm;s*t~> +j8T.tCA)!MJRVtnCA;.CraK5Os'K.5D-q2M?XNj4?NC-*?O$O;?iOJ?s7Te#C;TuM!6k0:!&OWS +!Q![mrrG^`qYpd![7^K!8bDr\!&O?K!6kEA!06fE!O:kfSJ^OpSc>OWVY6ROoqe4UopqZQSt2_X +SXofSSH+]KrrA)QSH/]eSHJn_ScA\[#616bs/Y%`r1+)mSXoGMSYc#WSH/]hSHP\aS[%DXSHJ&[ +ScA\[!P5B1SH6"Zrga/SZ(:poSHAJio(AORNg]nIh:qr0iU)F%Qh\N!!:'LBr5SfQr2TggMiRk' +r2Kb,r5Sfmr8YQl"7=agN899lLP +j8T/1V=qkDdDj/Eao02ts2N%#s2DtWb/MO"`PqlV`;or;`l7-rrCaGh>mTQh?3f7hZ*T3#63Q:s5Wb5r8%\YhVS1ghVe>0h>mTTh?;a8hW4J2h?3N6 +hZ*T3!U/SAh>u^4rn[bOjkg%:h?*W:qt8eGfpVj?h:qr0iU)F%Qh\N!!;$-Wr8.M.r6>;^MnT2- +r6>;nr8%G>r9qE#"7P$qNSTBmM29FOa8ZD;e[DBRWQkA=rrMGjre^cCc2@M>"ngNsio970rrD

    +j8T.e7.r#EbaC@HWPg25k\W)Iq^9BE.uulhCDZbl.PAAbUHN^Tmc`)6^f#s1 +j8T.tCA)!Mfs>C,^XHOsmZM4mr*Nh2Y%Fc[?XNj4?NC-*?O-U9BE.uulhCDZbl.PANq](Fd)Q'U)9'sns377]i16Fmd%SkA +SXoGdU=9+4SbT)VSH+]KrrA)QSH/]eSHJn_ScA\[#QL?cs.-%TVu<.kpnjV9d%SkAr1+,nSXlFq +l(-2@rga/1d%148SH7?8rLEu9`r;M2`R(1Urga,Ak0s!o!03KI!8ZE0!1)u-!5mRk!:g!I!7(M_ +r2TgnMN@\8!3uIB!7h#-!;NPn"8)!S]\\GHQ+Ea=\c2m.gVL;*]%Ho[!UdJsS,oYBqu6iogY1iR +m_So(plFj!!6]rneGfO)k5Tr~> +j8T/1V=qkDn`.^3kjQL0q:E[Krl)kVilC$F`PqlV`;or;`9BE.uulhCDZbl.PAg%X>(n*L&1)=-bJs6ee4p"nQsn)*X+ +hVS1ohsg[&hYlF-h>l7-rrCaGh>mTQh?3f7hZ*T3#QNZ;s5)`2iVhU +j8T.e7.r#E6GW3^]0IbmGjb!FnL,s^D=Q=O-n,,p-ij;H-jTc#./t\DF7T&R!Ca?orrC::rr=kR +ru0F=s8VM*4B0W+s2S"r;8`G6mVb3ecN!pR5PP0Xbl.PAAbUHNk_9"])2%."qPMa]LAZ>rrrr8S +NHs`ArcnTuk^!4,Gla/QrHSG-L&Q?"KBRU\rcnR7s-ND(!+hSu!8ZH1!8?ap!0?^N!;??F!6P/J +!1WnLMJ`EMr/poc!5JHc!:?9U!rVchqYpZrkLGXNL]c**s8B&!#6+Afn*ffAqu6]pn,DSQmJ-SY +"oe8jqYL-8rrBFnL]NS+JcF:#!8Zf;J,~> +j8T.tCA)!MEmXOPc#I)tRe$$=oj;2(P4dj[?XNj4?NC-*?O-Ud"fV!afRrga,!s0MBh!03KI!8ZH1!8?ap!0?^N!;QKP!7h"f +!4)O'MN7b4r2T\8!7(N&!:cQY!rVfjqYpZgO&_7uL]c**s7`Vp#5?fe[C*[$qu6]b[/QQrXkN[P +"o$^(kND +j8T/1V=qkDbjPE+mE(qVhG1);tAJroj=Wj5/YOp\smF +hVRPrrTa@l7-rrCaGhYdERh?3f7hZ*T3#licu^.rS@SOiVq[9i;2=1rn[_=s5iq1!83e?!8ZH1!8?ap!0?^N!;l]_!9a:; +!7LejMS9)5r6G5s!93qF!;Du_!rVikqYpZeHT.#CL]c**s7`Vp#5-EQVl-cKqu6]_VZ)GRT%*Z; +"ng +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1!4;$I!6tMP!2TOU!-a?=!.Xp/ +!3Q1-r7V/3LAqDGimZcXqu6fff@AE^i.qB)p\t?pp[\6]rs&Gqo'c&:0mqsOIK!U]^[rrrAp +p\Oa`h#@BDl\GPJJcF:#!8Zf;J,~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1!4;$I!7:_c!4i$.!1&P(!1`te +!5JHPr8ReBLAqDGimZcYqu6f,6o[/gi.qB)p\t?njjs1*rs&/J_6p\chY[ +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1!4;$I!7_#*!7q(n!5aZ.!6+l] +!8@A-r9jXWLAqDHjk&Jdqu6br+qtaKL]F%@rr`2\fCu9E#4p3MVl-lRqu6][U&KoMT%Nr?"nU*i +io9=[rrDQSL]Ff5s4.,Lh<+`f~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1!1)o+!3hf-r/guTr3cUQr7Z`% +nc&X`gA]J#h"gpK!VbLMeH+9miJ7Kgp\tEoldshPpR_BhrV#gNn+-;OrrMu`rosOQq>:0qrV$!^ +qY]UX!5.WR!0;^2ec,X*k5Tr~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1!1)o+!4A/Sr2Kb,r5Sfmr8WA. +nc&X`gA]J#h"gpK!SM5d2uuF9iJ7Kjp\tEe^kI`RkFV\Xo[L^b[DLl!rrM>`rgX"oi; +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1!1)o+!5"T3r6>;nr8%G>r9o4: +nc&X`hYu%+htm +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1l%f>/Y&45qrK.)Lr3cUHr7V/E +JcFL)"SL^)lM:DY!WD3YeH4I`O5l#tXDZ,Rrs&,Sf@S^DrKI6crUoaMn+->PrrMu_rosOQqYU9r +rUom\qYU!d!1)o+!8<#(f)Ga+k5Tr~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1l%f>2Y)`RXrMfk&r5Sffr8ReP +JcFL)"SL^)lM:DY!V2 +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1l%f>5Y.anYrQYDkr8%G9r9jX_ +JcFL)"SUm0m.pV[!UtI5'ETu"O5l#t]tWY(rs/PYVML%eanV)"#4fpFVl-u[qu6]XQMuaBVV_4M +"nKg[io91qrrAAML]H.[s472Mh<+`f~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZK2!9*0u!1UrF!.Xp/r3cU?r7V/< +JcE[g!WDomrrMT?qpbf6rVt=,L]F+ID?.0>rr`,^jR@m'#5n/bn*fiDqu6]mli-/MnG;q[!;Pf7 +!5jBff)Ga+k5Tr~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZK2!9*0u!1q/j!1`ter5Sf_r8ReI +JcE[g!WDomrrKMqq`"\Io)I/!L]F:NNr[5orr_`$WmZV$#4^'V[C*s7qu6]WU&LP_\)mDb!;Pf7 +!5jBff)Ga+k5Tr~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZK2!9*0u!27BG!6+l]r8%G5r9jX[ +JcE[g!WDomrrK#Aq\0-hnGgqtL]FLT^&['arr_c'Xj`"(#4KU@Vl.)aqu6]ROT(+ +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZK2!9*0u!1Vb]!-\:&!3Q1-r7V/3 +JcE4Z"8qTLp%A=cpYYku!T3bPrrCL0L]F4JD?-L)rrE"Ks7lTur:TXLn+6GOrrD$BL]FQ.s472M +h<+`f~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZK2!9*0u!1qu,!1!J^!5JHPr8ReB +JcE4Z"8qTLp@\FdfkUCD!GU]prrCL0L]F@NNrZ`_rrDeEs7u["rpS.K[C+'>q#:?Ql%f>AJcF=$ +!8Zf;J,~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZK2!9*0u!282^!5\TY!8@A-r9jXW +JcE4Z"8qWPp\"OedSK`S!D_VPrrCL0L]FRT^&ZaVrrDeEs7u["rp7V4Vl.2hq#:?Ql%f>AJcF=$ +!8Zf;J,~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1l%f>9no"Af!1Wnp!7C_uJcDJE +#5$p(dF@Xaq#:BnkPNd1g@G+?!SWV!L]O5oqecD0mf*Cgp@A-4s760iiTZ-uV1JZtrrCm;s*t~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1l%f>9nrN^K!3uIB!8RM4JcDJE +#5$p(dF@[bq#:BcO8Cm;:r)r-!SWV!L]NL$qi:`fmf*Cej4 +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1l%f>9o"P%I!7Lf%!:0ROJcDJE +#5.*0e^sBkq#:BaHi"KX0X^cW!SWV!L]NUSqn<']mf*Cej4F$Vs760iiTZ-uV1JZtrrCm;s*t~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1!0?E$!5/<>!6G)l!;;!DNW04V +i6fs+mJZh[!UnY;eH+t6q>UNo`KfeG"-:7>KDKHdS+c@O"oIW;g#hsYs7H +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1!0?E$!5/m3!#N>q>UNo`KfeG"-8@dG5@7#ZM +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1!0?E$!5/UNoaHl1K"-8FnRej`!deiP6"nBEbO1!qts7H +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1!3POB!8<#(KDu&Nlfn6>rrMlO +qpb`)qY1!mkgA5(O7.l.[.*bHf7<^8!K$O>rs&,Sf@S^Dr.4nArrDQQL]G)=s472Mh<+`f~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1!3POB!8<#(KDu&Nlfn6>rrLef +q`"Ujk4elYkgA5(O7.l.[.*"F[$LQL!MoM[rs%8RKnYB)q18S>rrDQQL]G)=s472Mh<+`f~> +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1!3POB!8<#(KDu&OmHaTBrrLPD +q\0'+iV3?TlIFh1O7.l.[.*%J]Y40U!QtrrDQQL]G)=s472Mh<+`f~> +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZH1!7L1h!K[#,s,6mXrVQ'`!WD3Y +eH+CppAYBqnE0QHpqrBgL^9orXoJFqq"BO?D?5Ufn,ELdlf@Pds7H +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZH1!7L1h!K[#,s,6mXrVZ-a!V2tlM..NNrc'On,ELY_Q)%8s7H +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZH1!7L1h!K[#,s,6mXrVZ-a!UtI5 +'EKnqpAYBqn`]iLpqr3bL^9)MgAh3:lhej$^&cCRn,ELZ`3%L>s7H +j8T.e7)gVU7C3!n!6i[e!6kEA!+jH$!+l-/!+hUE!+hSu!8ZE0!1)u-!47=WN;j%JhpLoknc&XY +fDF)!lM^>S!;ufq"7aUGQ26:@QE$R&eEX"1rrMhLqJH=ajR)sIrIP"@rrB1dL]Hpqs472Mh<+`f~> +j8T.tC;sT]C;TuM!6i[e!6kEA!05?q!07$X!03M=!03KI!8ZE0!1)u-!47=WN;j%JhpLrlnc&Wt +7/JqES+?1N!;ufq"1so$Q26:@QE@3RKRo +j8T/1V8gITV:GSF!6i[e!6kEA!85ZS!87>N!83gt!83e?!8ZE0!1)u-!47=WN;j%LimmVunc&Wf +,5W&TM=C-:!<)lr"0RN\QMQCAQE\!94!'1TrrN#>qS!!MoBlPXpjrJ;rrB1dL]Hpqs472Mh<+`f~> +j8T/5=2mZ0=5!TQb09hab[pbQQt;]c!8ZE0!7L7j!K[#,s,[0]r9i&5d/iY4oD\jchttq)htla? +#6+#Uo$Q1\ro!qCs6]f'".e`2dJX"Fp7(nr!I*Vfrr`8onGIk;rr2uPl\GP;JcF:#!8Zf;J,~> +j8T/=H,aS"H/\c&b09hab`;Z%R#[U7!8ZE0!7L7j!K[#,s,[0]r9i&5d/iY4oD\jECATskC$+g_ +#5bNqm*XPVro!qCs7-)L",VS\h#.0Qpp'[V!LE$6rr`2Ze+\Fnrr2uPl\GP;JcF:#!8Zf;J,~> +j8T/FW5bY7W9XB^b09habh;spR+[o-!8ZE0!7L7j!K[#,s,[0]rU8A;eH,.;oD\j>:\th,:>tU? +#5XpOmFC%^ro!qCs7cN,"+hRLlhpb`qpP>T!Q+Hkrr`2ZeG"Oorr2uPl\GP;JcF:#!8Zf;J,~> +ir9#3`j5ZuJcC<$\GlQbgA_/LmYCkkJcCc1"oIT7g?SV-rrN)]qpb`$o'?;ZrqQ9[h<+S6!1Wt* +!o*"KqYpPkqJH=XjQQUIqWlbbk4O<*s8N(jm"bZ#JcF:#!8Zf;J,~> +ir9#;`kh`7JcC<$\GlQbgA_/LmYCkkJcCc1"oIT7g?SV-rrM\Oq`"UQ_!D"(pY+Hph<+S6!3uNa +!eZ'(qYpQ*qMtZClKJ6On%aX2Zf$E7s8N(jm"bZ#JcF:#!8Zf;J,~> +ir9#D`mk(SJcC<$\GlQbgA_/LmYCkkJcCc1"oR`>h +JcC<$JcFO*!8ZB/!Vi8UL]Ff5s,?sYp\OF[!UnY;eH+t6kl1baqXXCWrrC.>D?I!*bP(f4!2TF. +!6FC(#5%!.f@fTiJc>`/m>(bEJcF7"!8Zf;J,~> +JcC<$JcFO*!8ZB/!Vi8UL]Ff5s,?sYp\OF[!OY>m3!#N>kl1b^qXXCWrrCUKNrt2hK_YED!4_ic +!7g<5#2H85Ko*nGJc>`/m>(bEJcF7"!8Zf;J,~> +JcC<$JcFO*!8ZB/!Vi8UL]Ff5s,?sYq"sU]!N..='EO'[kl1b]qt'UZrrD3\^&r6o7f3&^!7pt[ +!9WMF#2H>:LlBINJc>`/m>(bEJcF7"!8Zf;J,~> +JcC<$JcFO*!8Z?.!Vi8WL]G)=s- +JcC<$JcFO*!8Z?.!Vi8WL]G)=s- +JcC<$JcFO*!8Z?.!Vi8WL]G)=s-st-#Q)?O^9]4/bl%JCrpfpCq7Zjk +kPkYR`3%XBs8W*!_s`B^QM?%2eGfO)k5Tr~> +JcC<$JcFO*!8Z9,!5.u\!LDGjs-EZgnDDX@jnS6C!WD3YeH+CpnG`ObrTjI`V#G65[-Gg3rri/a +jT!rrE"Ks8N#u[./qQO6M5qe,KF(k5Tr~> +JcC<$JcFO*!8Z9,!5.u\!LDGjs-EZgnDDX@k4n?D!V2 +JcC<$JcFO*!8Z9,!5.u\!LDGjs-EZgn`&*LkkXWG!UtI5'EKnqnG`OcrTjI`f)EAb@if"Trrh`0 +YQ*b\^&[ +JcC<$JcFO*!8Z6+!q0i:647!UnY;eH+t6nG`RZi:?46!7Cd`"+KP# +mf!.hrRofgs2b"R!2SNP"9/#^r.k:P_t/ZbT(mm:df0='k5Tr~> +JcC<$JcFO*!8Z6+!q0i:647!OY>m3!#N>nG`RZi:H:7!8RR7"-%k_ +j8Ju]qM^-Fs4-q+!4h"e"8q3'pP8bK_t/ZbT(mm:df0='k5Tr~> +JcC<$JcFO*!8Z6+!qipuL:!N..='EO'[nG`R[j7Va +JcC<$JcFO*!8Z-(!9*mo!Rg4`s-*HbnD`a2mJd4`httq)htlgA"8pWqmcsfPJ,X +JcC<$JcFO*!8Z-(!9*mo!Rg4`s-*HbnD`a2mJd4LCATskC$+ma"8pWqmcsfPSGnQNLOl9!rs%D8 +L"QFcQ26OA\`!Jkn%aX2Ze:07!U6HTL]NRSJcF*s!8Zf;J,~> +JcC<$JcFO*!8Z-(!9*mo!Rg4`s-*Hbo&]69mJd4G:\th,:>t[A"8pd$n*9oQ`W!RQ=WW%irs%G< +LtVgs_>:kGf&6Q3n%jg9[G$H:!U6HTL]NRSJcF*s!8Zf;J,~> +JcC<$JcFO*!8W5+JcFm4!W;rorrE&brrN)`qpb`$o'QGYh9k'CrrB2#D?GpajSo)W#4:$tqu>`# +qJH>0p>Q#Up#O`Vg$\fprrV/dQMlUAO0-k*JcF'r!8Zf;J,~> +JcC<$JcFO*!8W5+JcFm4!W;rorrE&brrM\\q`"UQ_!V.'h9k'CrrBh5Nrt;kK(o3C#0DR`p&F +JcC<$JcFO*!8W5+JcFm4!WE#prrE&brrMVHq\0&b[I*tqi76cMrrCdP^&sWA.Id98#0Magp&FX" +qS!!]qr.PZi2qfkN6M'QrrV/dQMlUAO0-k*JcF'r!8Zf;J,~> +JcC<$JcFO*!8W5+JcG!7"T7]CiqV[9!V4tAeH+t6mJd:VdFA*js8W)hrrDHbD?A&IkPP8`kNV^? +s5\A"D?5Ufi;WoUmH!hjrrVHDpjrIgrrCm;s*t~> +JcC<$JcFO*!8W5+JcG!7"T7]Cj7qd:!PhS03!#N>mJd:VdFA*jrrMlko)A^[rJq#6J\q +JcC<$JcFO*!8W5+JcG!7"T7`Gjn\'=!OXZZ'EO'[mJd:We_'frrrMfho)A^arOr>%*i&W4#.V>+ +s8V],qS!!Qqr%JVnB.lbKDu#;iV8!(bPqRuk5Tr~> +JcC<$JcFO*!8W5+JcG'9!Vk^Sd/hnqkl1\[httq)htl^>"9%TDnG<.hrq#pbs7c<]rr@lSD??Bo +i; +JcC<$JcFO*!8W5+JcG'9!Vk^Sd/hnqkl1\GCATskC$+d^"9%TDnG<.hqT%Ils7lB^rrAhnNrk/h +L\q)Pr9=1[!ViGdNrc'OhZ!TOJcC<$b5VItk5Tr~> +JcC<$JcFO*!8W5+JcG'9!VtmWeH+G$kl1\B:\th,:>tR>"9.`JnbW7iq7YJ\s7uK`rrC4@^&im- +2#I:Rr9=1[!W1%9^&cCRhZ!TOJcC<$b5VItk5Tr~> +JcC<$JcFO*!8W5+JcG'9"n:?qi9gI,rrN)`qpb`$o'-/Tqt9db#5@EQs8(O3p&>$,rGD\klM:,Q +!VV?GD?5UTf`)'Qp?qj0s+14"rrCm;s*t~> +JcC<$JcFO*!8W5+JcG'9"n:?qi9gI,rrM\\q`"UQ_!1k"qt9db#2,NYs8(O4p&>$;rJq#4J_0Sp +!ViGdNrc'Af`)'OiQV%Is+14"rrCm;s*t~> +JcC<$JcFO*!8W5+JcG'9"nLU%ipZg0rrMVHq\0&b[H[\lr:]sd#1AC3s8(X8p&>$OrOr=g*k:nC +!W1%9^&cCJf`)'OiQh1Ks+14"rrCm;s*t~> +JcC<$JcFO*!8W5+JcG'9!r2B_kPkSRgABD$lM]T>#4_!Qs7"Flp&>$crGD\-lJqO:!VV?GD?4tB +g&D6Ql.=PIo7?pms472Mh<+`f~> +JcC<$JcFO*!8W5+JcG'9!r2B_kPkRu;>WG9#.pDYs7"Flp&>$erJq#:JX?$/!ViGdNrbR3 +g&D6G\qPj=fn'0Ss472Mh<+`f~> +JcC<$JcFO*!8W5+JcG'9!r;KakPkRj1&DXcM=BC%#-Nj3s7+Xtp&>$hrOr>b*`;S0!W1%9^&c+B +g&D6G]SMBGg4B9Ts472Mh<+`f~> +JcC<$JcFO*!8W5+JcGBB!r;E`i;WiShttq)htl1/#QF#Rrr;30kk+lTS,R:-G2qlaoD\fdqJH=X +jOsP;p#O`Vg$S`hs+14&rrCm;s*t~> +JcC<$JcFO*!8W5+JcGBB!r;E`i;Wi?CATskC$+7O#PagZq#BR*kk+lTZ2TddNe2i>oD\g#qMtZC +lIl1Ai2_QcM9#CBs+14&rrCm;s*t~> +JcC<$JcFO*!8W5+JcGBB!r;Hbi;Wi::\th,:>t%/#PX+5p]'O/lLb)Vdf-r_ZR?m7oD\gAqS!!I +o@a-Ji2qfkN6(dFs+14&rrCm;s*t~> +JcC<$JcFO*!8W5+JcGKE"oRfGdFe*NrrN)`qpb`$o%X0Lq +JcC<$JcFO*!8W5+JcGKE"oRfGdFe-OrrM\\q`"UQ^t\koihO-cs5;;oo`"pArJq#9JZeSD!4_ld +!LDNnrr`#;Xk&('JcF@%!8Zf;J,~> +JcC<$JcFO*!8W5+JcGKE"o[oLe_BfWrrMVHq\0&b[G1]dglei?s5MT!o`"pRrOr>N*cU]M!7q"\ +!Q+0Trr`# +JcC<$JcFO*!8W5+JcGNF!VY@Kd/i2$j8T/NgABD$lM]H:#Q",js8V$/qXa^eG5c@]Id64sq#:Bl +qYgEoXnci7aO^@krdk*#s4@8Nh<+`f~> +JcC<$JcFO*!8W5+JcGNF!VY@Kd/i2$j8T.q;>W;5#O'Lts8V$/qXa^eQ2ZgHNIcZLq#:Bb +mf!.c^\Noje^ja#qgncus4@8Nh<+`f~> +JcC<$JcFO*!8W5+JcGNF!VbOOeH+\+j8T.f1&DXcM=B7!#NWnbs8V*5qXa^e_>_.NW?*,?q#:Bb +mf!.cgA/G_k19P4qgncus4@8Nh<+`f~> +JcC<$JcFO*!8W5+kPkVW.eN]>p](?p;u?Uq+8u3DWC.@(+'?__rrJVirr3/oE?GK5RK!3d;u?V$ ++92B5E?GK5RJm-gX=4?%XlB?`pZ:5ur8[eXqVV2#!T3b9rrE#hrrrE%s8MNTo)A]crGD\LlLXiO +"9%ZDp&4mjaSB]RaO'qhrUfOSJcC<$iVro6k5Tr~> +JcC<$JcFO*!8W5+kPkVW.eN]>p](?p;u?Uq+8u3DWC.@(+'?__rrJVirr3/oE?GK5RK!3d;u?V$ ++92B5E?GK5RJm-gX=4?%XlB?`pZ:5ur8[eXk%acQ!GU]YrrE#hrrr/rs8MNTo)A^"rJq#8J[kOU +"8^6.i;NZUebP7+e^4 +JcC<$JcFO*!8W5+kPkVW.eN]>p](?p;u?Uq+8u3DWC.@(+'?__rrJVirr3/oE?GK5RK!3d;u?V$ ++92B5E?GK5RJm-gX=4?%XlB?`pugT(r8[eXiD9=b!D_V9rrE#hrrr)ps8MQWo)A^@rOr>9*e4"c +"8^60iVicVk4u^kk0X,1qV9BcJcC<$iVro6k5Tr~> +ir=ScJ_caMj8T,8JcFp5!g4Xaq>UEpr;Qdbe+s"LAim`uo@0*<[f$.,fbXYfrsDYbn+t[-R/d1R +e,'(T;NL;CfLVD0s2l7po"c +ir=ScJ_caMj8T,8JcFp5!g4Xaq>UEpr;Qdbe+s"LAim`uo@0*<[f$.,fbXYfrsDYbn+t[-R/d1R +e,'(T;NL;CfLVD0s2l7po"c +rVllJq2YNkdJjC?\qPj=d=M=Ks5X+Zh<+`f~> +ir=ScJ_caMj8T,8JcFp5!g4Xaq>UEpr;Qdbe+s"LAim`uo@0*<[f$.,fbXYfrsDYbn+t[-R/d1R +e,'(T;NL;CfLVD0s2l7po"c +ir9#7JcC<$S,WKEj8T,8JcFs6"Ss4V)u0:0!!)rs!Ai^2rrT8Yq>C6nHt!!R"8Y?s!<3!!\,61) +"m$O"s"iX1rrKV+rr3/`(B=DBQi@!cQ=TC_"8V9@o\9BHo%Nuk!UBXErrV$(l/)F?J,O6dbj+os +rrV95hYdBSd<>A(!2S$B#5.-1f@oWjJcC<$jo5>:k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcFs6"Ss4V)u0:0!!)rs!Ai^2rrT8Yq>C6nHt!!R"8Y?s!<3!!\,61) +"m$O"s"iX1rrKV+rr3/`(B=DBQi@!cQ=TC_"8V9@p"TKI^estg!LrZ@rrV$(l/)F?SGeKMKn7;> +rrT6TSG`Bfgm._s!4gMW#2lhAKoO.JJcC<$jo5>:k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcFs6"Ss4V)u0:0!!)rs!Ai^2rrT8Yq>C6nHt!!R"8Y?s!<3!!\,61) +"m$O"s"iX1rrKV+rr3/`(B=DBQi@!cQ=TC_"8V?Dp=oTJ[5%Om!K$=,rrV-/le_XA`VmLP737uo +rrT:k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcFs6"Ii!_8sfDS!!)rs!@.(0rrGTmp&>,=PlCaZrrqF8s8O>4p&>3U +0)tqugA_*Qf.-:i!rhcJrm:c3r8.GSqVV2#!T3b6rr_Q6eGS2'!4MiD!flR4q#:Hogt1ulrrM2( +qJH;/d/O4GmH3tjs+142rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcFs6"Ii!_8sfDS!!)rs!@.(0rrGTmp&>,=PlCaZrrqF8s8O>4p&>3U +0)tqugA_*Qf.-:i!rhcJrm:c4r8.GSk%acQ!GU]Vrr_Q6eGS2'!6>&!!fMVkq#:HjP_I9XrrMDM +qMtWed/O4Bag9QLs+142rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcFs6"Ii!_8sfDS!!)rs!@.(0rrGTmp&>,=PlCaZrrqF8s8O>4p&>3U +0)tqugA_*Qf.-:i!rhfNrm_&:rSIPTiD9=b!D_V6rr_W +ir9#7JcC<$S,WKEj8T,8JcG!7#5f^\s2#rVqu6Wrr;Qp6ZTAC@UAk/n''o8k"M[,!rrDoq$K4m] +s8Nb=3sR4/qYpcY;Q0Wq$hjT"!VHljrrr5[dF$nAhZ!WTlMK*4g@F8'"8C3joA0EHmJLi'gZnP. +rr`&]o)ARe!T\G#D?5Ufci4"EJcC<$jSo59k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG!7#5f^\s2#rVqu6Wrr;Qp6ZTAC@UAk/n''o8k"M[,!rrDoq$K4m] +s8Nb=3sR4/qYpcY;Q0Wq$hjT"!VHljrrr5[dF$nAhZ!WISGP8H:r))j"8C3joA0EHnbeFLK7VAD +rr_Puf)5IG!U>sHNrc'Oci4"BJcC<$jSo59k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG!7#5f^\s2#rVqu6Wrr;Qp6ZTAC@UAk/n''o8k"M[,!rrDoq$K4m] +s8Nb=3sR4/qYpcY;Q0Wq$hjT"!VHljrrr5]e^`[LhZ!WGMYe(g0X]p?"8LEso\KNIp\_`,1*3Ij +rr_T#fDPRH!V=/(^&cCRci4"BJcC<$jSo59k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG!7!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8"T.rn"n!Yfs8N)rs8N'+ +A,ZH-4HAXt]-X!Fs8N'&A,ZH-!r`,u!W<,irr`8knGM,B!V4tAeH+t6ir9,[m+CFSrrA2[D??Bo +me?_]qYC-ljG +ir9#7JcC<$S,WKEj8T,8JcG!7!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8"T.rn"n!Yfs8N)rs8N'+ +A,ZH-4HAXt]-X!Fs8N'&A,ZH-!r`,u!W<,irr`8knGM,B!PhS03!#N>ir9,[m+CFSrrB(tNrk/h +R.pU\oD/CelD+3:!MoM4rr`,Q`UABXJcG0 +ir9#7JcC<$S,WKEj8T,8JcG!7!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8"T.rn"n!Yfs8N)rs8N'+ +A,ZH-4HAXt]-X!Fs8N'&A,ZH-!r`,u!W<,irr`8lnbh5C!OXZZ'EO'[ir9,[mG-p[rrC@C^&im- +8GE,aoD/Ceo?-pD!Qt;]rr`,Q`peQZJcG0 +ir9#7JcC<$S,WKEj8T,8JcG$8!raaPrr3&+.K98F!!)cn"ih_brtX\ps8;rtrrH,Yrr2ruqu6ct +hc-0CrrL.^r;R$$hc-0HrsSQ"rrMa$q#CBjec,[Hhttq)htl71!qu'\p&>$kkl1Y(r,)SrlMBrK +!VV?GD?5Ufb5VYAl.=PIn:CUjs7$$gh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcG$8!raaPrr3&+.K98F!!)cn"ih_brtX\ps8;rtrrH,Yrr2ruqu6ct +hc-0CrrL.^r;R$$hc-0HrsSQ"rrMa$q#CBjec,[4CATskC$+=Q!qu'\pAY0mqrn%[ebkL.JH4Tq +rrMniqMtZQpr`U?n%+4,X3lLuJcG6>!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG$8!raaPrr3&+.K98F!!)cn"ih_brtX\ps8;rtrrH,Yrr2ruqu6ct +hc-0CrrL.^r;R$$hc-0HrsSQ"rrMa$q#:Bkqpk]IiD9=b!D_V2rrVrarV$6lrqbjY!9X3n![f&/ +mf*=bb5/gQb59?]"n0*[Loo-Ws+14>rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcG$8!3Z.u!3Q2!!!)cn"nN*$s%K0`rrN3#s7u]qF8Pt +ir9#7JcC<$S,WKEj8T,8JcG$8!3Z.u!3Q2!!!)cn"nN*$s%K0`rrN3#s7u]qF8Pt +ir9#7JcC<$S,WKEj8T,8JcG$8!3Z.u!3Q2!!!)cn"nN*$s%K0`rrN3#s7u]qF8Pt9X#aSCDeJcG<@!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG$8!ApAFrrJrPr;Q`sr;Qf]rr2p%_(boh[Nk8=rrN#tqYpNqrr3"_ +pAY'qiZ%ptkl1S]"i2nms-*0UrrqC$s8QYnrr3"YC]486rU'U3!n?N5g&D*DgABD$lM]$.!qGRM +rr3&djnA-B!2TR2"*WtprU'Ucp8%P&!I*VHrr`2fk44*'JcG9?!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG$8!ApAFrrJrPr;Q`sr;Qf]rr2p%_(boh[Nk8=rrN#tqYpNqrr3"_ +pAY'qiZ%ptkl1S]"i2nms-*0UrrqC$s8QYnrr3"YC]486rU'U3!n?N5g&D)g;>W +ir9#7JcC<$S,WKEj8T,8JcG$8!ApAFrrJrPr;Q`sr;Qf]rr2p%_(boh[Nk8=rrN#tqYpNqrr3"_ +pAY'qiZ%ptkl1S]"i2nms-*0UrrqC$s8QYnrr3"YC]486rU0[8!ncl +ir9#7JcC<$S,WKEj8T,8JcG'9!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EHP1j.nG!qYpNq +rr4-@M;n<`8YQ1a4EBNW`$hA[s&=j7pt864s8ULb^@JlRfDPXNmF^@af`)!Khttq)htkUt"9.TN +r;Q]th9ki^rrCIED?@K9o'?;UV#"s0GM:+;!<.QLJcG9?!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG'9!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EHP1j.nG!qYpNq +rr4-@M;n<`8YQ1a4EBNW`$hA[s&=j7pt864s8ULb^@JlRfDPXNmF^@af`)!7CATskC$*\?"8JCV +o)AXjh9ki^rrCjPNrk)fYj;;h\GD6eQK-$c!;h?IJcG9?!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG'9!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EHP1j.nG!qYpNq +rr4-@M;n<`8YQ1a4EBNW`$hA[s&=j7pt864s8ULb^@JlRfDPXNn(cpkf`)!2:\th,:>sIt"8@\1 +nG`Fhi77JfrrDB_^&hFYEU3W)f)!)]_XGPF!;h?IJcG9?!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG'9!Bl_ErrJZRrVlitr;Qr`>T!\kT`"fpX?dC$),RL8qYpNqrr3/k +DAWO0Z2Xb,k?Jl.-(t8;"n6CH"YR(YrrfYX"t[:]rrMupf`)!NlMK*4g@EGe!r)!JrVuoFm/I'/ +rGD^dlKeHBrrW,mr;-EnV"nm.aMIlYrUfIQJcC<$qu6ZPk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG'9!Bl_ErrJZRrVlitr;Qr`>T!\kT`"fpX?dC$),RL8qYpNqrr3/k +DAWO0Z2Xb,k?Jl.-(t8;"n6CH"YR(YrrfYX"t[:]rrMupf`)!CSGP8H:r(9S!nj*HrVuoFm/I'N +rJq&?JVa'nrrVlUp%n[g\G;0ce\V7fqV9'YJcC<$qu6ZPk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG'9!Bl_ErrJZRrVlitr;Qr`>T!\kT`"fpX?dC$),RL8qYpNqrr3/k +DAWO0Z2Xb,k?Jl.-(t8;"n6CH"YR(YrrfYX"t[:]rrMupf`)!AMYe(g0X]+(!n)t!rVuoJm/I(% +rOrB5*\?gRrrVlUp%n[gf(m#[k/%'"qV9*[JcC<$qu6ZPk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcD5>"8V9LqU,Om(rrC.9D?.bprs&>af@T!NrIP!"s8N#uh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcD5>"8V9MqpGEE^estg!LrZ&rrTs*e,K@KprrCUFNr[_Irs%r'KnZ;LqLSZts8N#uh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcD5>"8V?QqpGEE[5%Om!K$ +ir9#7JcC<$S,WKEj8T,8JcD>A#6!uCdF$hFe,KIFhttq)htl(,!V#mSrrVocrVlfun^QL`rrD-X +D?>j`lh18[rS6#eq>UH9q/-2A_Z'i7k1SA?mJVV9JcGcM!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD>A#6!uCdF$hGe,KI2CATskC$+.L!V-!Vrr`5J_Y*p.!qFdum/I(N +r/Uo;JVa"!"8J+7ZhaV$ebP7+a27i\kHg,$NQ:jGs+14MrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcD>A#6"#He^`XRe,KI-:\th,:>sq,!V?-Xrr`5B[e'Lu!qP"'m/I(W +r4W5t*\@!a"8J4=[JBh&k4u^khnoBtkI$A,ON@6Ks+14MrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcD>A"n($jeDg&KrrN)`qpb`$o%F$Ekgo%hrrN,trVlrllLO9@!/UPj +!oN;;p&>-gf@TKerrC.9D?-KKrr`2fk44*'JcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD>A"n($jeDg&KrrM\\q`"UQ^tJ_hkgo%hrrMl`rVlrllLO9@!2KIQ +!fV]Vp&>-WKn[nLrrCUFNrZ`,rr`#BZds^-JcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD>A"n16sf]D_SrrMVHq\0&b[FtQ]lIkOorrMfZrVlrlm.9QC!6Y5R +!^Ig,p&>-XLksLTrrD3W^&Za#rr`#D[F^!0JcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE^h!nt&ZreLZJ[F=p3rr_lWmJPH5!V4tAeH+t6g&D0JdF%RNrrN&r +li-t"r,)S1lKn0C"7Ok&r;$?njECB;!2RC0!<.QLJcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE^h!nt&ZreLZJ[F=p3rr_lWmJPH5!PhS03!#N>g&D0JdF%RNrrN&r +li-t1r/Uo>JWTO("42b&p%eUglBV4,!4flE!<%KKJcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE^h!nt&ZreLZJ[F=p3rr_o[n,1Z7!OXZZ'EO'[g&D0Ke^a1:;!7npb!<%KKJcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEdj!Rd>0L]WXUq!S._qY\P:!W(^NeH+S(f`)'Of$WU,rrDH`D?B"d +qXjdhmdU)JrrM2(qJH>'p:C8+rUf=MJcCQ+!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEdj!Rd>0L]WXUq!S._qu"Y;!Tn.o3!!aUf`)'Of$WU,rrDTdNrk8k +ht6pMbgQ+XrrMDMqMtZ_pq$J-qV8[NJcCQ+!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEdj!Rd>0L]WXUq!S._qu+_E7rrDfj^&g57 +`q994c-u:ZrrM`-qS!!Yqmue0qV8aQJcCQ+!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEjl!ViPaL]Nk,o)Ajgldjqdc2RhClMK*4g@Ehp!q"Lkci4!7r,)SQ +lL4BF!WN&krrM21qJH=jp:L>/qWZV`hXLJps,6mWh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEjl!ViPaL]Nk,o)Ajgldjqec2Rh8SGP8H:r(Z^!q"Lkci4!Mr/UoI +JY;Z8!WDlgrrMDTqMtZQpq-P1n%+4,SC.1as,6mWh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEjl!ViPaL]Nk,o)AjgmFpOoc2Rh6MYe(g0X]L3!q4dtci4!nr4W5V +*`hq5!WDlgrrM`1qS!!Qqn)k4n%=I4T%!Oes,6mWh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEmm!U5[9L]NS$p&>'fhu;"(fCmMi!V4tAeH+t6f)GjOo'#kprrC.< +D?G(JlMKcE!VV?GD?5Uf]Di*2k1SA?meq_:N;in6k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEmm!U5[9L]NS$p&>'fhu;"(fCmMi!PhS03!#N>f)GjOo'#kprrCUI +NrtDuJ`l4r!ViGdNrc'O]Di*%Z]'TtbP?_hN;in6k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEmm!U5[9L]NS$p&>'gir7I/g@rnm!OXZZ'EO'[f)GjOoBQ+srrD3Z +^&t\l*n9BQ!W1%9^&cCR]Di*&[?$-*bkZhiN;in6k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEpn!Vh`FL]NS$pAY9gi7-cUcMmqAhttq)htke$!;k%@!-\9X!o*#2 +k5PJUM#(uiJE4 +ir9#7JcC<$S,WKEj8T,8JcEpn!Vh`FL]NS$pAY9gi7-cUcMmq-CATskC$*kD!;k%@!1!JC!iCOQ +k5PJWU\^#PSa*fd"8C0Qfn'0]rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcEpn!Vh`FL]NS$pAY9hj4NJ`cMmq(:\th,:>sY$!;t+A!5\TI!d#K' +k5PJZb5/gQ`q-eA"8C6Tg4B9^rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcEpn!2]+>!LNTUrrW/mr6G +ir9#7JcC<$S,WKEj8T,8JcEpn!2]+>!LNTUrrW/mr6G +ir9#7JcC<$S,WKEj8T,8JcEpn!2]+>!LNTUrrW/nrQbEDn;@)W!ALprrrDuRrrCXJ^&t_^"k`eR +p](?p;u?Uq+8u3DWC.=&(IFJf^'1rJ+p]j-rr;fprr3,O56rdGrr;fprr3,&.0_3&hu<]TJcCZ. +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEso!7L4i!5l\R!V4tAeH+t6^An60!<)iq!W2fXrrCdMD?>S6LACiL +!;uit6dtl2&S=,=oCIc(#>T/S,Wfeuejc5,rsG*!s8U8*cLIqMd/*bLQX9^lar8%c_&UbRrr`5k +kkBZ.Q2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEso!7L4i!5l\R!PhS03!#N>^Ae8ul1b,Us8;'[!9UEp +r;Qjde,TFErt/j)^@Ura*!s2l7po"c +ir9#7JcC<$S,WKEj8T,8JcEso!7L4i!5l\R!OXZZ'EO'[^Ae8pjnAWP!W;oZrrDNb^&gJ#:AOni +!;uj!6du)7qu77?421=XZ>^5-^:lgEY3je0Sbi?nQX9^lb<=/@Wtj"XrsG*!s8U4[^[f2\cIr4" +pt<=DJcD#8!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEso!1)u-!K[#prrMuRqpb`)qRlh0lgF`MrrW/`n)jWMJ,O6fCDa;n +p\Omi!;uj"1ZA<+o)8RiX>KbOrsPV[.W0,rC2Rq1i>MOm#0IqQs8P+(rr3"[@/Ks.arKgKs'V2m +rrJErg&D9Rk1A5AnGRq +ir9#7JcC<$S,WKEj8T,8JcEso!1)u-!K[#prrM7sq`"Ujk.L]qU9F=irrW/anE0`NSGeKON##h3 +nG<.b!;uj"1ZA,if_tgOX>KbOrsQ>*2NNo-MiWqLi>MOm#0IqQs8P+(rr3"[@/Ks.arKgKs'V2m +rrJErg&D9H["X4(dJAFoR/[0Bk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEso!1)u-!K[#prrM(Sq\0'+iOo0lOeMIHrrW/co&frP`VmLR\ePt` +l2(D[!;uj"1ZA,ig&:pPX>KbOrsRC_8A;fh\A#]>i>MOm#0IqQs8P+(rr3"[@/Ks.arKgKs'V2m +rrJErg&D9H[>9X1e,"XqR/[0Bk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcF!p!9rd)!7Jpf!WD<\eH+Cp]Dhs-lL+TM!qXgqk5PF`rGDa*,k"-a +qYpNqr;QpFn,;7tn,E=f7^)^h!4M]@!P00HrrW0SVuH\s#kn8t!R;tgrrW0SVuH\s-JJJ!!S8gR +rs&;]g"4sFrIP!:rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcF!p!9rd)!7Jpf!V2cX2uujk]DhriS?Dei!qXgqk5PFrrJq(_/YFD9 +qYpNqr;QpFn+io9d/O%G7^)^h!6=nr!QH#TrrW0SVuH\s#kn8t!R;tgrrW0SVuH\s-JJJ!!S8gR +rs%eqN.m84q18R6rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcF!p!9rd)!7Jpf!Uu!D'EKnq]DhrdMP0nI!qb%$k5PG8rOrDU3)p5p +qYpNqr;QpFn+iu>df07I7^)^h!8dOc!S/.drrW0SVuH\s#kn8t!R;tgrrW0SVuH\s-JJJ!!S8gR +rs%htO,/n>q18R6rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcF!p!5n)X!3O?B!V4tAeH+t6d/O.CqsFCbo'5oGrrVE3jlZRCmJ^u- +C_'G%Z6/u@rr<&srsBFG3sR!fp](7+lh^V]aSKcT11'nY!jaZ]rr3!\c2R_DYR17-!jaZ]rr3!, +pAY'moaKCN!q5@DJcD,;!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcF!p!5n)X!3O?B!PhS03!#N>d/O.Dr9aLc_49!PrrVE3jlZRCnc"RR +N>-0H@M8S8rr<&srsBFG3sHF&kPtPplh^V]ebY=-6"Kon!jaZ]rr3!\c2R_DYR17-!jaZ]rr3!, +pAY'moaKCN!mnL2JcD,;!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcF!p!5n)X!3O?B!OXZZ'EO'[d/O.Dr9aLc[Yi9+rrVK9kiVmFp\ql2 +],H^3('ja6rr<&srsBFG3sHI)kl:Yqlh^V]k5)dm=)@g7!jaZ]rr3!\c2R_DYR17-!jaZ]rr3!, +pAY'moaKCN!n+[6JcD,;!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcF!p!2\t:!0>;&!W(^NeH+S(ci4+=h!P(.rrVNOr;?Qri6grRrs=L! +DFYL\V!Kt0qu6Wrr;R*dNp-,6+,Bdo"T/#p!6G(U"$di@V#C;o41G1g#0f?Xot<'_r;QdZ\,H=- +!r`,u!W<,LrrE%Ls-Wfdh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcF!p!2\t:!0>;&!Tn.o3!!aUci4+=h!Y./rrSpbo)/Lhi6grRrs>H] +O'E`e\<%_`qu6Wrr;R*dNp-+f'4:P7"T/#p!7h"."&gM'\c)O/41G1g#0f?Xot<'_r;QdZ\,H=- +!r`,u!W<,LrrE"Ks-Wfdh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcF!p!2\t:!0>;&!T?iO'ELtfci4+>hsgU4rrS=?nGN:fimmMZrs?i^ +^3_9BeiUL41G1g#0f?Xot<'_r;QdZ\,H=- +!r`,u!W<,LrrE"Ks-Wfdh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcF!p!1)l*bl7_BlMK*4g@EPh"8p`tlL+ZRrU]UWrrUp%p>u;]aDPi. +8oAkIUaH*=rr<&ors&D()tO"Dk5G>Y!"]+`G&D1[-YdO:V#UJO*rc*;"jSh.42;L-rrV$urr)it +$hjT"!V?iFrr`5ikkBZ.UAk5Lk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcF!p!1)l*bl7_7SGP8H:r(BV"8p`tlL+ZRo#8KCrrUp%p>u;]eW5_. +@#pW"=rI>;rr<&ors&4D'A*7!k5G>Y!"]+iQ&gu$15_-R\c;]d*rc*;"jSh.42;L-rrV$urr)it +$hjT"!V?iFrr`&F]'"YEUAk5Lk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcF!p!1)l*bl7_5MYe(g0X]4+"8pm'm-alTn%,t)rrV$,pZ;D^k.\MP +JA/n#'b10?rr<&ors&4E'A3="k5G>Y!"]+u_7mWr6b'kEf)Pd,*rc*;"jSh.42;L-rrV$urr)it +$hjT"!V?iFrr`&G]]aqHUAk5Lk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcF!pk_RL`!V4tAeH+t6c2Rk)dG"!f!ri,qqu6][jQ-=Bp23P"!!'%s +rr<&nrrqitq#=$^qYpa"s8V.t-Th6D"/PXOE;0A5h`Lf:!KV3trrFS%rr3#L/Bn+uqrZM^hX:>n +s/#_qh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcF!pk_RL`!PhS03!#N>c2Rk)dG"!f!rMEUqu6][jQ-=BplAk[!!&A` +rr<&nrrqWmlMjPPqYpa"s8VAB1JRe."1e2fE;0A5h`Lf:!KV3trrFS%rr3#L/Bn+un[+"(SBC\Z +s/#_qh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcF!pk_RL`!OXZZ'EO'[c2Rk,e_TWm!rM +ir9#7]DqmXJcC<$j8T,8j8T,8JcF!p!1)l*ci4%Bhttq)htkRs"8(!jq;hPVqY9+N!h0rmrb_h- +oTq90rr<&srrM?_rr32=0`V0],ObR1#5eK$s77mBqJH@k7D&Kt!M&f]rrJ(4rVlmh]DV[0AWm&m +!KCm +ir9#7]DqmXJcC<$j8T,8j8T,8JcF!p!1)l*ci4%.CATskC$*Y>"8(!jq;hPVqY9+N!jNbJrf7/d +^f)KUrr<&srrM?_rr32=0`V0],ObR1#5eK$s77pXqMt]R7_ATu!M&f]rrJ(4rVlmh]DV[0AWm&m +!KCm +ir9#7]DqmXJcC<$j8T,8j8T,8JcF!p!1)l*ci4%):\th,:>sFs"813sq;hPVqYB1O!n&H=rk8K_ +NY<3+rr<&srrM?_rr32=0`V0],ObR1#5eK$s78"$qS!$R8%\^!!M&f]rrJ(4rVlmh]DV[0AWm&m +!KCmq18RCrrCm;s*t~> +ir9#7oDeh;bQ%ShJcC<$j8T,8j8T,8JcF!p!2\t:!0>P-!WD<\eH+CpbPq\Dn)3QMrrSMrC]/,Q +mcPe&rVlitr;Qs`Eocu5.&-_@%WEbqmJ>k=1.D6CD4gNXqJH[R):ut0!q5IGJcDSH!8Zf;J,~> +ir9#7oDeh;bQ%ShJcC<$j8T,8j8T,8JcF!p!2\t:!0>P-!V2cX2uujkbPq\Dn)3QMrrSf)N;\e> +j*q`DrVlitr;Qs`Eocu5.&-_@%WEbqmJ>k=1.D6CD4gTuqMtXhi;ETZ=Fg&7Ors,jrrF)$r;QuL +)8>[R):ut0!mng;JcDSH!8Zf;J,~> +ir9#7oDeh;bQ%ShJcC<$j8T,8j8T,8JcF!p!2\t:!0>P-!Uu!D'EKnqbPq\DnDioRrrT2:])B>F +gDpElrVlitr;Qs`Eocu5.&-_@%WEbqmJ>k=1.D6CD4g^JqRutFir&f\=Fg&7Ors,jrrF)$r;QuL +)8>[R):ut0!n,!?JcDSH!8Zf;J,~> +ir9#7oDeh;bQ%ShJcC<$j8T,8j8T,8JcF!p!5.TQ!3O]L!V4tAeH+t6ao;D>p;6h14[o9d"2FDg +3rT'Y!;uj#k?Jl.-(t29$EQN)"W:.>rrL#i44"n5\,$;0%MrrE?"qu6f*.L%H6 +`W#r;JcDSH!8Zf;J,~> +ir9#7oDeh;bQ%ShJcC<$j8T,8j8T,8JcF!p!5.TQ!3O]L!PhS03!#N>ao;D>p;6h14]hQB"4",H +/H,SK!;uj#k?Jl.-(t29$EQN)"W:.>rrrf7*_T^)LU"n5\,$;0%MrrE?"qu6f*.L%H6 +`W#r:JcDSH!8Zf;J,~> +ir9#7oDeh;bQ%ShJcC<$j8T,8j8T,8JcF!p!5.TQ!3O]L!OXZZ'EO'[ao;D>p;6h14`UD6"6+;5 +*rZ*=!;uj#k?Jl.-(t29$EQN)"W:.>rr +ir9#7oDeh;q#:NL@k]Q=ao25XUH^;5gGgPVs8U\\0J?SNs8Vd>5ho^#2K/!^rs#2\.oXeA-@u2J +s5X+Zh;eM8h1>UNrrDM>c`*rnm_Vp5&Q_!I*V"rr`5ik4aH, +YQ"UYk5Tr~> +ir9#7oDeh;q#:NL@k]Q=ao25XUH^;5gGgPVs8U\\0J?SNs8Vd>5ho^#2K/!^rs#2\.oXeA-@u2J +s5X+Zh;eM8h1>UNrrD +YQ"UYk5Tr~> +ir9#7oDeh;q#:NL@k]Q=ao25XUH^;5gGgPVs8U\\0J?SNs8Vd>5ho^#2K/!^rs#2\.oXeA-@u2J +s5X+Zh;eM8h1>UNrrD +ir9#7oDeh;q>W,+0i$]g;Cg5rs19U[jjR3X-NF,(0i$]g;Cg5rr$F%#de&;ADZBaO- +ir9#7oDeh;q>W,+0i$]g;Cg5rs19U[jjR3X-NF,(0i$]g;Cg5rr$F%#de&;ADZBaO- +ir9#7oDeh;q>W,+0i$]g;Cg5rs19U[jjR3X-NF,(0i$]g;Cg5rr$F%#de&;ADZBaO-9X* +bPHeiZMsp\k5Tr~> +ir9#7oDeh;q>W*n-H6#b_'X("s(*Oqs8SoB-NF*k-H6#b_'X("s!B)*s8VC32?3\h-H,ra]-\kU +s+141rrCm8rrCl+s31KCdd2bi_q+hgo%Nuk!UBW7rr@QHD?I$;lKm[5#5I3$`5L[1rr2toqJH=X +dA6dHqruech!P&ks0M_*h<+`f~> +ir9#7oDeh;q>W*n-H6#b_'X("s(*Oqs8SoB-NF*k-H6#b_'X("s!B)*s8VC32?3\h-H,ra]-\kU +s+141rrCm8rrCl+s31KCdd2bi_q+hg^estg!LrY2rrASeNs!/SJWT$o#5I3$`5L[1rr2u.qMtZC +gnarSo"'d6P0!HMs0M_*h<+`f~> +ir9#7oDeh;q>W*n-H6#b_'X("s(*Oqs8SoB-NF*k-H6#b_'X("s!B)*s8VC32?3\h-H,ra]-\kU +s+141rrCm8rrCl+s31KCdd2bi_q+hg[5%Om!K$;srrC%9^'!*/*]iH`#5I3$`5L[1rr2uLqS!!I +l_OObo":$>Q-&iQs0M_*h<+`f~> +ir9#7oDeh;q>W*6-M%3:mNt=$s$8"!s8V%)-NF*3-M%3:mNt=$s!B)\s8W'F-NF*.-LUp6lm='1 +s+141rrCm8rrCl+s3(EBV='-?QMB,4!W(^NeH+S(XT&=tr;-EnrndYT^\hsPJH,!$pZ_\Yd\cks +"J3g3s/l*7!6Co7!qP[JJcE%U!8Zf;J,~> +ir9#7oDeh;q>W*6-M%3:mNt=$s$8"!s8V%)-NF*3-M%3:mNt=$s!B)\s8W'F-NF*.-LUp6lm='1 +s+141rrCm8rrCl+s3(EBV='-?QMB,4!Tn.o3!!aUXT&=cnG<.brndYTcMW_+Sc=e&cftH1d\cks +"J3g3s1eAj!7dhD!nbBCJcE%U!8Zf;J,~> +ir9#7oDeh;q>W*6-M%3:mNt=$s$8"!s8V%)-NF*3-M%3:mNt=$s!B)\s8W'F-NF*.-LUp6lm='1 +s+141rrCm8rrCl+s3(EBV='-?QMB,4!T?iO'ELtfXT&=_mJ?h_rndYTir$Ln`rA%?Wp0Nad\cks +"J3g3s4[:_!9U$U!nkKFJcE%U!8Zf;J,~> +ir9#7oDeh;q>UFFq^)b's8O`!r;Zfn-78cm/,LXr/H>_s-N3uE-NF)N.OP)ns8+,iJcC<$j8T,8 +j8T,8JcEpn!Vh`FL]NS$g&D*OlMK*4g@E5_!WE#^rrVu_o_SRhp$qn:rrDH`D?J;\lL+! +ir9#7oDeh;q>UFFq^)b's8O`!r;Zfn-78cm/,LXr/H>_s-N3uE-NF)N.OP)ns8+,iJcC<$j8T,8 +j8T,8JcEpn!Vh`FL]NS$g&D*DSGP8H:r('M!WE#^rrV)Xanl#=p%%t;rrDTdNs"1`JXGd'!TBC= +L]`^ls4-q+!7deC!<)co!<.QL])Mcdk5Tr~> +ir9#7oDeh;q>UFFq^)b's8O`!r;Zfn-78cm/,LXr/H>_s-N3uE-NF)N.OP)ns8+,iJcC<$j8T,8 +j8T,8JcEpn!Vh`FL]NS$g&D*BMYe(g0X\n"!WE#^rrUoD^\[s3p[n@@rrDfj^'!]$*_>Vs!TBC= +L]`^ls5s-k!9U!T!<)co!<.QL])Mcdk5Tr~> +ir9#7oDeh;q>ULH-M[H;$n3P%s8VpB-NF)r-M[H;s!I^Es!IdG#:V"us8VpB-@u2Js5X+Zh;eM8 +h1>UKrrMAFnq[=-iS"53o%Nuk!U'F#rr`2Zo_e"S!qPXKqYpWQeFqf"!0R1s"Jl(`lMBoJ!6aqh +!k&'Lq/-27S,WTgn`KLqs1J@3h<+`f~> +ir9#7oDeh;q>ULH-M[H;$n3P%s8VpB-NF)r-M[H;s!I^Es!IdG#:V"us8VpB-@u2Js5X+Zh;eM8 +h1>UKrrMAFnq[=-iS"53^estg!KQ`irr`2[p&++T!l:DIqYpWQeFqf"!35sX"M"JfJ`#kp!6aqh +!k&'Yq2YNkS,WTae$It`s1J@3h<+`f~> +ir9#7oDeh;q>ULH-M[H;$n3P%s8VpB-NF)r-M[H;s!I^Es!IdG#:V"us8VpB-@u2Js5X+Zh;eM8 +h1>UKrrMAFnq[=-iS"53[5%Om!IF7Srr`2]pAO:V!k+!"qYpWTfD"2&!7(MV"P3T'*ldUI!6aqh +!k&'jq7Zj_S,WTae@"7ds1J@3h<+`f~> +ir9#7oDeh;q>ULa-KY+($o]O&s8V++-NF*6-KY+(s!I^Es!IdG#<4("s8V=1-@u2Js5X+Zh;eM8 +h1>UJrrMVcoSmf*:"n;%1S +s3Z#dD?-K&rs&A_f@SgGqgnd^rrCm;s*t~> +ir9#7oDeh;q>ULa-KY+($o]O&s8V++-NF*6-KY+(s!I^Es!IdG#<4("s8V=1-@u2Js5X+Zh;eM8 +h1>UJrrMVcoS +ir9#7oDeh;q>ULa-KY+($o]O&s8V++-NF*6-KY+(s!I^Es!IdG#<4("s8V=1-@u2Js5X+Zh;eM8 +h1>UJrrMVcoS +ir9#7oDeh;q>VOc-E[=Jgc^,ds'-nos8T&F-NF*p-E[=Jgc^,ds!B)ks8OGGrs)sZb5_LN-74 +ir9#7oDeh;q>VOc-E[=Jgc^,ds'-nos8T&F-NF*p-E[=Jgc^,ds!B)ks8OGGrs)sZb5_LN-74c;a!r:6qhZ!WOQ2H[G +eb=lNn*p>WddDnn_uK"eqMtWeSGrfa\s.o3aSUPg_#FDjk5Tr~> +ir9#7oDeh;q>VOc-E[=Jgc^,ds'-nos8T&F-NF*p-E[=Jgc^,ds!B)ks8OGGrs)sZb5_LN-74MO=8?!r:C#hZ!WR_>M"M +k3slBipcsJddDnn_uK>EqRus\SGrfa]U+G>anpYh_#FDjk5Tr~> +ir9#7oDeh;q>VPs1Hs^\>pc6Es/RJTlI9/f-NF,+1Hs^\>pc6Es!B)ks8OGGrs,kW@-ZNP.OK`H +JcFd1!8Z]8!8W5+`W$"n[%@8Q".lmJptG`Ko%Nuk!U'Eurr`)GdI$2u!r)3WqYpWddGrrVcWnq$hUrrCm;s*t~> +ir9#7oDeh;q>VPs1Hs^\>pc6Es/RJTlI9/f-NF,+1Hs^\>pc6Es!B)ks8OGGrs,kW@-ZNP.OK`H +JcFd1!8Z]8!8W5+`W$"n[%@8Q".lmJptG`K^estg!KQ`frr`)GdI$2u!o192qYpWddG +ir9#7oDeh;q>VPs1Hs^\>pc6Es/RJTlI9/f-NF,+1Hs^\>pc6Es!B)ks8OGGrs,kW@-ZNP.OK`H +JcFd1!8Z]8!8W5+`W$"n[%@8Q".lmJptG`K[5%Om!IF7Prr`,LeaMc&!nOBkqYpWee_o9`!7q(^ +"O@$e*c^`M!Vh`CL]cW9o>1:;!Qt;/rrUlkg4B:=rrCm;s*t~> +ir9#7oDeV5rr3/UBJV,1XT&5)rf/okA`P0brr3/UBJV,1XT&8"-N3uE-N=#MQocfrc8d6JJcC<$ +jSo59j8T,8JcD&9!W(^NeH+S%_#FK(gu.Dr!rVonqYpWfi9fA#!7C[]"RZ0QlMgAS!4;*K"K)5! +jG +ir9#7oDeV5rr3/UBJV,1XT&5)rf/okA`P0brr3/UBJV,1XT&8"-N3uE-N=#MQocfrc8d6JJcC<$ +jSo59j8T,8JcD&9!Tn.o3!!aH_#FK(gu.Dr!q51DqYpWfi9fA#!8RI4"S(r3JbSa8!4;*K"K)5! +lD+3:!MoLZrrE&prrE%Ls2Y->h<+`f~> +ir9#7oDeV5rr3/UBJV,1XT&5)rf/okA`P0brr3/UBJV,1XT&8"-N3uE-N=#MQocfrc8d6JJcC<$ +jSo59j8T,8JcD&9!T?iO'ELtW_#FK*hrh<+`f~> +ir9#7gA_6L-8C)OJcE^h!8Z]8!8W5+R/[3clMK*4fC-HR!r;?ahZ!ZSp%mJD!.Xoa"Mb!+lLa]J +!;Pi8"R5sdp5&Q_!K$N7rr`2gk4Rsrs#Gj&dKL\bPM5>S,iEc!Ls/h +s7u`qrr?!q!!",?rrfDP"t6UZrrCm;s*t~> +ir9#7gA_6L-8C)OJcE^h!8Z]8!8W5+R/[3XSGP8H6aXT-!r;?ahZ!ZSp%mJD!1`tJ"O@%GJ\^mW +!;Pi8"R5sdpnR\H!MoLTrr_uBZf('I!qn,9rVuWm!WQ*r!!",>rs#Gj&dKL\bPM5>S,iEc!Ls/h +s7u`qrr?!q!!",?rrfDP"t6UZrrCm;s*t~> +ir9#7gA_6L-8C)OJcE^h!8Z]8!8W5+R/[3VMYe(g+frs#Gj&dKL\bPM5>S,iEc!Ls/h +s7u`qrr?!q!!",?rrfDP"t6UZrrCm;s*t~> +ir9#7huJH,K2lgt,VdcuVg +]`.p3p5&Q_!I*Uirs&>^f@SgDqs47`OroYYrr<&srrGL9q>U_4421=Xe<^`Tr;QiO(BF@4!ne@i +q>UVb?N:$me,'(Kar8%c_&Ub,rrCm;s*t~> +ir9#7huU_4421=Xe<^`Tr;QiO(BF@4!ne@i +q>UVb?N:$me,'(Kar8%c_&Ub,rrCm;s*t~> +ir9#7huU_4421=Xe<^`Tr;QiO(BF@4!ne@i +q>UVb?N:$me,'(Kar8%c_&Ub,rrCm;s*t~> +ir9#7hu +ir9#7hu +ir9#7hu +ir9#7huMrrFA5 +qYpRCgA_*Qf.+-,!8Zf;J,~> +ir9#7huMrrFA5 +qYpRCgA_*Qf.+-,!8Zf;J,~> +ir9#7huMrrFA5 +qYpRCgA_*Qf.+-,!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD>A!V4tAeH+k3JcG!7!5JGL"aC"Hm-=H?rrA,EM#.,OV"nm.aHHQ' +rpB^ir$/uV_BJgRrr<&srrj(B3sR4/rr3!3lh:>]^HMSr!<)p#^HMSr!;lctZSMOZrrj(B3sR4/ +rr3!,pAY'moaJ2,!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD>A!PhS03!#'1JcG!7!7(M'"d]2gOFc<^rrA,EM#.,O\G;0ceWTq4 +rqcWprq69qr$/uV_BJgRrr<&srrj(B3sR4/rr3!3lh:>]^HMSr!<)p#^HMSr!;lctZSMOZrrj(B +3sR4/rr3!,pAY'moaJ2,!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD>A!OXZZ'ENOLJcG!7!93pj"iC<>3?H35rrA,EM#.,Of(m#[k*#`E +rqcWprq69qr$/uV_BJgRrr<&srrj(B3sR4/rr3!3lh:>]^HMSr!<)p#^HMSr!;lctZSMOZrrj(B +3sR4/rr3!,pAY'moaJ2,!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDDC!W(^NeH+S%JcFp5!;?;-"O[8ClL4EG!0?B#q>UH9q/-2RN;j"X +nE0?:rrJrSrr3![UAOrj!;uj(4HAXt]-X!Irri5nrrqg9fDkjNrr3/i,hN(r!;lcs41G1g$9X@4 +oXcE>s8N0!rr3#t"1/"-h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDDC!Tn.o3!!aHJcFp5!;QGP"Pj$tJY;]9!0?B#q>UHFq2YO+N;j"R +dBhO#rrJrSrr3![UAOrj!;uj(4HAXt]-X!Irri5nrrqg9fDkjNrr3/i,hN(r!;lcs41G1g$9X@4 +oXcE>s8N0!rr3#t"1/"-h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDDC!T?iO'ELtWJcFp5!;lZ-"RH)X*`ht6!0?B#q>UHWq7ZjkN;j"R +d^@g'rrJrSrr3![UAOrj!;uj(4HAXt]-X!Irri5nrrqg9fDkjNrr3/i,hN(r!;lcs41G1g$9X@4 +oXcE>s8N0!rr3#t"1/"-h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDJE!WD<\eH+:j\c2a$pAX4S!ri,rc2Rd5r,)\-s8M?LqtC$iVJpr;clt!EG*Xrr<&urrH,Y +rr2rur;QiT*rbs7"ih_brsSQ"rrMa$Zi:$]k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcDJE!V2cX2uuCR\c2a%p\s=T!rMK]c2RdKr/V#ds7_>#kP"oUVJpr;clt!EG*Xrr<&urrH,Y +rr2rur;QiT*rbs7"ih_brsSQ"rrMa$Zi:$]k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcDJE!Uu!D'EKAS\c2a&q#9FU!rDJpr;clt!EG*Xrr<&urrH,Y +rr2rur;QiT*rbs7"ih_brsSQ"rrMa$Zi:$]k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcDMF!V4tAeH+k3\c2`rdH'Eh!qc$Yq#:BepXoKGaSTiXpAaaLo(N(` +Xm1]BT(i6baSB]RUlGBYqs3%hh!Y.=rrB4u!!'/!rr<&nrrr!$s8PceqYpTss8Voq!H\;;!!%*> +rrJ1"p\tEg$NL,Tg&D!PeL\',!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDMF!PhS03!#'1\c2`rdH0Ki!mSF>q#:Bfpt5THebbC1q#@jTYkJ(s +Xm1]BT(i6bebP7+\W-Unn\UNEP0<_"rrB4u!!'/!rr<&nrrr!$s8PceqYpTss8Voq!H\;;!!%*> +rrJ1"p\tEg$NL,Tg&D!PeL\',!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDMF!OXZZ'ENOL\c2`te`Pun!lVA%q#:Bgq:P]Ik52jqqu;-eEVBD4 +Xm1]BT(i6bk4u^kerB\6n\gcMQ-B+&rrB4u!!'/!rr<&nrrr!$s8PceqYpTss8Voq!H\;;!!%*> +rrJ1"p\tEg$NL,Tg&D!PeL\',!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDSH!W(^NeH+S%\Gl[)e'[[HrrVTQqt^6no@W3Wrr@6?D?[fTrT`\H +p\t6:lA,GIpAY0SG5?(VUl56Sp$MDKrrFsIr;Qeo1]77Q!;uitkl1S]#/N"ns0a0@r;Qfq!;c]q +!;ZWp!;uit8A"g"!U0O^rrp4ms8QYnrr3"YCU=$@h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDSH!Tn.o3!!aH\Gl[)e'[[HrrT-hm.pY_o@W3WrrA>^Ns3i/mt$&Y +p\t6:lA,GIpAY0YQ26OA\VpIhi5a[NrrFsIr;Qeo1]77Q!;uitkl1S]#/N"ns0a0@r;Qfq!;c]q +!;ZWp!;uit8A"g"!U0O^rrp4ms8QYnrr3"YCU=$@h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDSH!T?iO'ELtW\Gl[*f@BEQrrSRFkkY5[o\8W^rrBn5^'3NriZ90# +p\t6:lA,GIpAY0b_>:kGer0P0iQ9pQrrFsIr;Qeo1]77Q!;uitkl1S]#/N"ns0a0@r;Qfq!;c]q +!;ZWp!;uit8A"g"!U0O^rrp4ms8QYnrr3"YCU=$@h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDYJ!WD<\eH+:j[f6E_dGj9f!rM9Mq#:E\dGidX!2TO1"c<9Zo'5lA +rrDQRL]HE,rrM2(qJH>'p5AqNrquct\0(SFrrW*E\GcF-!;uj$4EBNW`$hAZrs3QjX6ocDUbYC8 +rr<&prr<&srrF)$r;R9iEocu5.&-bAdM]di],B5,rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcDYJ!V2cX2uuCR[f6E_dGj9f!plGUq#:E\dGidX!4_rf"f21uY^sUa +rrDQRL]HE,rrMDMqMtZ_pl#.Prquct\0(SFrrW*E\GcF-!;uj$4EBNW`$hAZrs3QjX6ocDUbYC8 +rr<&prr<&srrF)$r;R9iEocu5.&-bAdM]di],B5,rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcDYJ!Uu!D'EKAS[f6Ebe`Gom!pGN/q#:E^e`GE_!7q(^"j6lFE?:/7 +rrDQRL]HE,rrM`-qS!!YqhtISrquct\0(SFrrW*E\GcF-!;uj$4EBNW`$hAZrs3QjX6ocDUbYC8 +rr<&prr<&srrF)$r;R9iEocu5.&-bAdM]di],B5,rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcD\K!VP1DeH+k3[f6I"f@Tr^rrViXo_AFfimI&CrrD-WD?]G-qWdDG +p\t6#m"bY-oD\jPJ,4$`M=u]("?htT!\kT`+lnZRQ/1\?c,7h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcD\K!R4L=3!#'1[f6I"f@Tr^rrU62a8#Z9imI&CrrD?]Ns5(RhgpUX +p\t6#m"bY-oD\jVSGJ9IV"f]E"?hjoX4dIO!M)CPrr<&srrqRj)$M=Zr;R#'5nF2;:p0forr<&p +rr<&srrE?"r;Qr`>T!\kT`+lnZRQ/1\?c,7h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcD\K!Q6_i'ENOL[f6I#gY2SerrTlk^%hU/jji_LrrDZf^'492`Z?]# +p\t6#m"bY-oD\j_`VR:Lb56qn"?hjpXkNaR!M)CPrr<&srrqRj)$M=Zr;R#'5nF2;:p0forr<&p +rr<&srrE?"r;Qr`>T!\kT`+lnZRQ/1\?c,7h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcDbM!W(gQeH+S%[/U4#lLs<=!qYgVq#:ELdIYrh!.Xoa"g.h)n*9ZA +rrMVMm>(c$o)AaaM#(uiM=u](#5dK5fA,TfJcFm4!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDbM!TnS&3!!aH[/U4#lLs<=!lM&)q#:ELdIYrh!1`tJ"i(*;TRkG` +rrMVMm>(c$o)AacU\^#PV"f]E#4\jMKp91BJcFm4!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDbM!T@>]'ELtW[/U4$m.]T@!k=]_q#:EOeb%Gm!6+lM"ks"V(c$o)Aafb5/gQb56qn#4\mQLmPdJJcFm4!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDeN!UA;7eH+:jZ2Xh%jSo;\qY9gb!SuDYrrBM*D?YRjs7tsHpAY-9 +mYCkMnG`O_M#(uiJE2Ib#5dfCfA,fmJcFp5!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDeN!LuRU2uuCRZ2Xh%jSo;Zj4sD/!SuDYrrC+;Ns2*Ss4;g`pAY-9 +mYCkMnG`OaU\^#PSa(t0#4]g"Kp'XUJcFp5!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDeN!K&*!'EKASZ2Xh%jSo;ZhU_H$!T;b`rrCpR^'2OVs0s+2pAY-9 +mYCkMnG`Odb5/gQ`q+rb#4]j&Lm?3\JcFp5!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDkP!VP1DeH+k3LAq>Ro't91!:BZ$"ks"Vm-=?=rrBFqL]O+Bn,EF^ +S,."'GN=GW!r)-UJcFm4!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDkP!R4L=3!#'1LAq>Ro't91!:frI"loX_OFbaOrrBFqL]O+Bn,EF` +Z20L^QKj/'!p@_`JcFm4!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDkP!Q6_i'ENOLLAq>SoCCH3!;HB)"n2Kk3?G3orrBFqL]O+Bn,EFc +de^ZY_XiH\!pIkcJcFm4!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDqR!W(gQeH+S%JcF7"!/UPj"f21upZh5?rrB_&L]OXQm/I']qJH=X +jFdI4rqcWprp0Rjl,9H[LkqCpbOCPl!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDqR!TnS&3!!aHJcF7"!2KIQ"h=U4c[hb^rrB_&L]OXQm/I'qqMtZC +l@]*:rqcWpr9O@hl,9H[LkqCpbOCPl!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDqR!T@>]'ELtWJcF7"!6Y5R"kN_RWZG46rrB_&L]OXQm/I(:qS!!I +o7R&CrqcWpr9O@hl,9H[LkqCpbOCPl!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDtS!UA;7eH+:jJcF0u!6G(U#']e@rp/kGp&>'HO7nA1O3?ef!2TI/ +!I)V9s8Ds"r9iV:n,EFIVY>lI[IB:X!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDtS!LuRU2uuCRJcF0u!7h".#+#&apP=CXp&>'HO7nA1O3?ef!4_ld +!LD8es8Ds"ousJin,EFIVY>lI[IB:X!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcDtS!K&*!'EKASJcF0u!9X3n#/^9;n1,R"p&>'HO7nA1O3?ef!7q"\ +!Q*uMs8Ds"ousPln,EFIVY>lI[IB:X!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE%U!VP1DeH+k3JcF-t!;?;-"j$`Do]l#>rrVu=QMQC=QG`4TrrBM' +D?.b/s8N$&qrHA\g$&A*rrB_'L]GV\rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcE%U!R4L=3!#'1JcF-t!;QGP"kEYQ^k&`^rrVu=QMQC=QG`4TrrC+8 +Nr[^]s8N$&nZIS"N4S`SrrB_'L]GV\rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcE%U!Q6_i'ENOLJcF-t!;lZ-"m5jbNZN34rrVu=QMQC=QG`4TrrCpO +^&[;Hs8N$&nZRb)O1b2XrrB_'L]GV\rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcE+W!W(gQeH+S%YQ"Y!qP*uiV#5*7S,`NelK\?=rrMW;rkec[l/VdD +aSB]RaFXBjrs&Ghgt1BMrV$6lppKXJ!4A!i!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE+W!TnS&3!!aHYQ"Y!qP*ui\GVBlZ2ajmJV!:\rrMW;rkec[l/VdD +ebP7+eUdc"rs&8?P_GFHqY'pippKXJ!4A!i!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE+W!T@>]'ELtWYQ"Y"qkF)jf)35ddf9@,*Zj>3rrMW;rkec[l/VdD +k4u^kk(3R3rs&8@Q\_$QqY'pippKXJ!4A!i!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE.X!UA;7eH+:jY5\Utf]i:.rrCIDD?]G-s75IGbl7[aq/-2.JcGZJ +!r)-Up&>$!mt^tVPQ(X=k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcE.X!LuRU2uuCRY5\Utf]rC0rrCjONs5(Rs0.'Ybl7[nq2YNdJcGZJ +!p@_`p&>$!mt^tVPQ(X=k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcE.X!K&*!'EKASY5\Uug[+j5rrDB^^'492s)B*"bl7\*q7Zj[JcGZJ +!pIkcp&>$!mt^tVPQ(X=k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcE4Z!VP1DeH+k3XoAIVdH0?es8Bk8!-\9X#/C3 +ir9#7JcC<$S,WKEj8T,8JcE4Z!R4L=3!#'1XoAIVdH0?es7HBi`;]h&r/V'-s8VP=M"f-n!TTIA +NrZ_As6osfbO()ciKX?Bh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcE4Z!Q6_i'ENOLXoAIYe`buls766g`;]hRr4WBps8V("/F^m`!Uml$ +^&Z`8s6osfbO()ciKX?Bh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcE:\!W(gQeH+S%XT&CadF\ +ir9#7JcC<$S,WKEj8T,8JcE:\!TnS&3!!aHXT&CadF\ +ir9#7JcC<$S,WKEj8T,8JcE:\!T@>]'ELtWXT&Cde_9r[rrTXMq=jmjr;$<=rrCdN^&Z1PrrQ1A +Nm%G'o>1:;!S7.!s760jplFfu!1/rM!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcE=]!UA;7eH+:jX8`:qe'[mJrrW)_mIpP]jP]d[rrD-WD?],$s8)$I +b5VM'G5?(WM=uN#oD\g.l\GPhQ2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcE=]!LuRU2uuCRX8`:qe'[mJrrVPWW:p5mjP]g\rrD?]Ns4hKs5/Bh +b5VM-Q26OBV"fN@oD\g.l\GPhQ2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcE=]!K&*!'EKASX8`:rf@BWSrrVDAR.gO]kMu?brrDZf^'4-.s2H*@ +b5VM6_>:kHb56bioD\g.l\GPhQ2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEC_!VP1DeH+k3WrE.kjQkb(!qbdMpAY3DdJ;/h!/UPj!3Q8#!po4H +b5VM0M#(uiM=uN#o`"oWl\GP +ir9#7JcC<$S,WKEj8T,8JcEC_!R4L=3!#'1WrE.kjQkb(!lphOpAY3DdJ;/h!2KIQ!5JO5!g%uZ +b5VM4U\^#PV"fN@o`"oWl\GP +ir9#7JcC<$S,WKEj8T,8JcEC_!Q6_i'ENOLWrE.lk3_+,!kjK)pAY3HebRSl!6Y5R!8@GP!]_=% +b5VM:b5/gQb56bio`"oWl\GP +ir9#7JcC<$S,WKEj8T,8JcEIa!W(gQeH+S%VuHbkhuU!rUHqci4![r,)LYrr3&olL)do +!VV?GD?5U]JcGHD!9ra(!;Ml[!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEIa!TnS&3!!aHVuHbkhu +ir9#7JcC<$S,WKEj8T,8JcEIa!T@>]'ELtWVuHblhu +ir9#7JcC<$S,WKEj8T,8JcELb!UA;7eH+:jKDu#NmHsWI!qXgqci4"4qecD]rr3&dlMAX&!VV?G +D?4tBJcGKE!6aV_!9'7D!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcELb!LuRU2uuCRKDu#DXf1sn!qXgqci4"8qi:a4rr3%]J`"TL!ViGd +NrbR3JcGKE!6aV_!9'7D!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcELb!K&*!'EKASKDu#BSs]6O!qb%$ci4">qn<'rrr3$[*lc>%!W1%9 +^&c+BJcGKE!6aV_!9'7D!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcERd!VP1DeH+k3K)YoMq"aX`!q"V%cMmm6r,)M1rr3&llL2dn!2TI/ +!I*UUs7lTo_s)sWd['n5h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcERd!R4L=3!#'1K)YoAg>DW(!q"V%cMmmLr/Uifrr3&8JY:'`!4_ld +!LE#%s7lTo_s)sWd['n5h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcERd!Q6_i'ENOLK)Yo?eCjQq!q+h,cMmmmr4W0^rr3%[*`g>]!7q"\ +!Q+GZs7lTo_s)sWd['n5h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEXf!W(gQeH+S%JcG`L!<2]l!qbmRcMmmcqecW3s8W)alM\d'!2TI/ +!I)qBs7uZp_s)sW_j:<&h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEXf!TnS&3!!aHJcG`L!;lKi!qbmRcMmmpqi:sVs8VhLJa^YZ!4_ld +!LDMls7uZp_s)sW_j:<&h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEXf!T@>]'ELtWJcG`L!;lKi!ql$VcMmn,qn<:3s8VR=*ob6?!7q"\ +!Q+/Rs7uZp_s)sW_j:<&h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcE[g!UA;7eH+:jJcE=]!VU^7D?.cWrrVcVo#C\0Xnci7aFXBfrrBt$ +L]GkhrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcE[g!LuRU2uuCRJcE=]!VhrXNr[`0rrTEUYf?\C^\NojeUdbsrrBt$ +L]GkhrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcE[g!K&*!'EKASJcE=]!W0_2^&[ +ir9#7JcC<$S,WKEj8T,8JcEai!VP1DeH+k3V>gSpr0I?_V#5*1M>mMWrT`\I`r?%[q/-2RJcGWI +!6aV_!9'7D!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEai!R4L=3!#'1V>gSpr0I?_\GVBfV#LArmt$&a`r?%hq2YO+JcGWI +!6aV_!9'7D!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcEai!Q6_i'ENOLV>pSoQN$s9r4W0Rrr3)[*ZjgjrrD3W^&[;Hs82fr +bNXf_iKjKDh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEgk!W(gQeH+S%V#LPpk4/A9rrCdMD?0)'rrV]ToYph1aSB]RXb$NM +rrD +ir9#7JcC<$S,WKEj8T,8JcEgk!TnS&3!!aHV#LPpk48G:rrD*VNr\_LrrT-M^r? +ir9#7JcC<$S,WKEj8T,8JcEgk!T@>]'ELtWV#LPpkk+h?rrDNb^&[p,rrQ[ONlD"uk4u^kg4B;% +rrD +ir9#7JcC<$S,WKEj8T,8JcEjl!UA;7eH+:jUAk;VdGL5h!.Xoa!4Mn,!rD3J`;]kZG5?(VUk/RD +rrA,GL]F9:rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcEjl!LuRU2uuCRUAk;VdGL5h!1`tJ!6>*=!oJQb`;]kgQ26OA\UjeY +rrA,GL]F9:rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcEjl!K&*!'EKASUAk;Ye_uen!6+lM!8d_T!lc94`;]l#_>:kGeq*l! +rrA,GL]F9:rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcEpn!VP1DeH+k3UAk>bdF%ZQrrB2!D?,4crrVZSpVd(4jECB;!2P2G +rVll8l\GPhQ2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEpn!R4L=3!#'1UAk>bdF%ZQrrBh3NrYaLrrSjEcc#halBV4,!4d[\ +rVll8l\GPhQ2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcEpn!Q6_i'ENOLUAk>ce^aDZrrCdN^&Z1OrrQ1AWl4o1:;!7l`$ +rVll8l\GPhQ2^j?k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcF!p!W(gQeH+S%U&P5ne'[I9rrE#/rrDH`D?/DirrVr[m)/i(jECB; +!L!/-s8W*"plFfu!1&lL!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcF!p!TnS&3!!aHU&P5ne'[I9rrMfj]Dhm$qi:a;rr3&GJWReL!U>sH +Nrc +ir9#7JcC<$S,WKEj8T,8JcF!p!T@>]'ELtWU&P5nf@B6CrrM`h]Dhm*qn<(!rr3&"*]h4=!V=/( +^&cOVJcGcM!Vh`CL]Ea*rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcF$q!UA;7eH+:jTDnu_hqm/g!rV]eo`"sgqoSj +ir9#7JcC<$S,WKEj8T,8JcF$q!LuRU2uuCRTDnu_hqm/g!qFLro`"sgqoSj +ir9#7JcC<$S,WKEj8T,8JcF$q!K&*!'EKASTDnuaio/\m!q4%bo`"shr5ns=b5AsRf)>UM3?G]J +rrM`6qS!!QqgneIrrC70L]HCurrCm;s*t~> +ir9#7N;io>!87ARAcQG9s8N'![\<^$h;eM8h1>UQrrMfHqpb`1rLX#jqsjU>rrVlYo(E"apZ:hb +rrC. +ir9#7NW0(7!+sparr<&-U&P2&!!&\l!8Z]8!8W5+d/O-k;>WJY9m[!ViGdNrc'OJcGcM!4;3N!5k$#!8Zf;J,~> +ir9#7NW0'A!4LV]!k&(/T`5(*!+qo(!8Z]8!8W5+d/O-b1&DXcHLRO+!rVZfh#@H!MRiE[!r2!L +ao;A'r4W0JrVlqh*`g/X!W1%9^&cCRJcGcM!4;3N!5k$#!8Zf;J,~> +ir9#7T)SfFq#CD,q>UIV!8@GX[K'q>s,[5B`W$"$!0H4?!BL4SrrCm8rrCl+s3goJqVqD&!T3X& +s7HTs8N)+nV@1PP5bO +ir9#7T)SePq#CE'qYpWO!+ssb#A*tEs8P+[gVs0o3WRpprrUpTAtf5)h;eM8h1>USrrM8*q`"Uj +fn'1qrrT?nht@!NmEsq8rrDikNr[`0rr`"OJ`joM!ViGdNrbR3JcGcM!4;9P!47ph!8Zf;J,~> +ir9#7T)SdOq#L6j!g!DjgAh0Qs8N/T!'8+!!o!]9ir9(A!4JU$!8Z]8!8W5+df0@,?2G<::==^n +o`"ucMV@b'!q4\$ao;AqS!!Io7?rArrBFrL]FfFrrCm;s*t~> +ir9#7T)SfFq#CD,q>UIV!8@GR!':,Z!g!DDp&>)T!4LV]!g!Djrr3%]!0H4?!o!]eUAk5Lj8T,8 +JcF4!!UA;7eH+:jJcG?A!rV?Lo`#!SdHJ[O!1Wn(!1Wre!qY^J_>aQ0V#"s0GN=>Ts8N)3oS +ir9#7T)SePq#CE'qYpWO!+t!c!k&)jrr3$\!8I2H!BL56rrG.\rVlp[!8HN5!g!DjUAk5Lj8T,8 +JcF4!!LuRU2uuCRJcG?A!qMkUo`#!SdHJ[O!3uH_!3uM&!kaQ2\GD6eQKj&$s8N)3oS +ir9#7T)SdOq#L6j!g!Djg]%Lj!8IPRgAj;-rrUpTB%m7dgAkjbrrUpT3oU)>3WPlR!8Z]8!8W5+ +e,KH+,5`,U+f9hjoD\m]MNRQ2!pJ2"aSu7gr4W0ZrVlqK*c]$r!W1IE^&c+BJcGcM!5.r[!KYZk +rrCm;s*t~> +ir9#7T)SlH!+tg%!BL58rrS8^[dX4tO8u`CrrS8^[bLf`AcUS\rrCm8rrCl+s4.,Mp"K;n!U'E4 +s760kq!7MCrrV$(o>pq3dJIe]pAY'orT`\H_#FD1qJH=Xg4B;(rrM)TpP8jWn +ir9#7T)SkR!4MM!!o!]eg]%:8!:Kjf3WRk5!BL57rrE*\UAk5Lj8T,8JcF:#!R4L=3!#'1JcG<@ +!o0Hbo`#!KdIYHZ!8RI4!;QQn"7Leln%er'\GD6eQK*Prs8N,YV>#cH[.'1W!8Zf;J,~> +ir9#7T)SgP!:p-kO8u`ErrUpTB(,a$gAkj>rrUpTB&!=e[K)D`rrCm8rrCl+s4.,M`%h-'!IF6d +s760kerI32rrV-/oZ7%4lheBrqu6TtiZ90#_#FDcqS!!Imt(N=rrM)TpP8jWn +ir9#7T)SlH!+tg%!BL58s8P.JrrS8^[bC`_O8u`DrrUpTAu#A+h;eM8h1>UXrrMuUqpb`)pOWA6 +rrW#hqXjdheC"37rr@6?D?.HMrrVcVoY:D+V"nm.aFXBjrsA24V2pFgQDMdoNrK+8k5Tr~> +ir9#7T)SkR!4MM!!o!]eh#@H1!0HXK!BL56rrG.\gA_59!4J[&!8Z]8!8W5+fDbm6G5F6"C"\(; +nG`RKcg(0&!n>Wqa8Z.)r/Uj'rVlr'J\]&#!4_ic!7cZ#rr3;o_kiEMLmFm\n;dMKh<+`f~> +ir9#7T)SgP!:p-kO8u`ErrS8^g[G.DgAkj>rrUpTB%m7c3WPoS!8Z]8!8W5+fDbm1?2G<::==^n +nG`RF`ocpn!nc'$a8Z.Ur4W0jrVlq=*fe#8!7pt[!9Sk4rr3;o_kiEMLmFm\n;dMKh<+`f~> +ir9#7T)SlH!+u!*!+u31!rk:]rVlkZrW!"33]d6>!+u00rVlkZr;cZn!o!^:rVm+a!4Mp9!4LY] +!!?j5s(;0/"1J70B)M`/rs,t4[bCc^[f?7*!+u0/!0I-Z!WQd0!!BZk!4Mn,!':)Z!0I3["1A3< +g\q0QB)V`0OSo1WrrG.\U]1>Mj8T,8JcFC&!UA;7eH+:jJcG-;!<)Qi!rV?I`r?%7r,)LkrVlus +lKeGarrBh0D?.b/s+:7Nh<+`f~> +ir9#7T)SkR!4MY%rW!%4gAkjarr>+Z!!85^OT#4X!!$X0rr>+Z!!$X,rrS8^g\q-W3WT3[AcVjm +rW!#.s8Vrrrr;os!+u61#A*u9O8o:\[ep+*[f$.*3rT*[B)h`.!rk:]rr2uQr;ZiPrr3(4!<8/[ +!!'J+rr>+Z!!$X0rrUpTAu#A+h;eM8h1>UYrrJWXr&=^E["88ErrD]`rrW,`kf3W&\GVBfV#C;q +kCJH`^]+;Zq2YO+JcC?%!8Zf;J,~> +ir9#7T)SgP!;HKn[f-7/[ZCKtrr2uQr;Zn\!8IMQ!4Mh+!4Mn,!8IGP!4M_'s#U,Y#ho>ks8N(2 +s#U,Zs8N)-qu?h2s8TP+!!'J,rs&O9s#L-ls(;0/r;QcOr;cl+qu?h2gAkjbrrA/[!!#(YrrW75 +s#U,ZrVllPr;Zi+rVlq\!4J[&!8Z]8!8W5+f`(u0,5`,U+f9hjmJd1Wo`#!jm-;Uj!7q(^!6Y9? +"4SACnA"u'iq^:gk(3ParrCm;s*t~> +ir9#7T)SfFq#CN*s8P.X!!,+\rr2sZqZ$UWrr2sZqZ$]Ps(;0/!+u*-!g!E:rVm(`!4Mp9!+u-/ +!g*Foqu?f,s#U#W!o*a`quHc*qZ$V.rr;fp!+u-/"h'Km[f?C)!!PF`s0_o>qu?h\s8Q^/!!$X0 +rrS8^gSFiLh;eM8h1>U[rrMfHqpb`1rL*ZenFcb$rrN&p`r?&"qecDprVlrflLqsl!6FtR!5O0c +KDtr-k5Tr~> +ir9#7T)SePq#LHp!8IDO"ZcWqs8UjM!!A>_s4dDN!]pA]qZ$W)qZ$RVr;Qs^!<<(2!+u-/!SdYO +!!3,SqZ$^Zs8Q^/!!3+3qZ$`,s8TP)!!$X.!!WB`!<<)-qZ$e]s8Q[2B)DW1g].r;4M6!:'HB!:'O_!hb+b^Ae2`q2YO$JcCB&!8Zf; +J,~> +ir9#7T)SdOq>^V0s8S2Y!!PC`[f?Ahq>^WPs8S2X!!88^[eg($rrUpTOT#1`gAkjcrr?[/!!54] +[ep+,B)dti!!88^s82itB)h]-rr2t1qZ$V.qu?q5gAkjcs(;-."P`tV!+u-/"$6J^[eg('rrUpT +OJDgUh;eM8h1>U[rrL%mq\0'Wn +ir9#7T)SfFq#CQ+s,[4ArVults8N.^!':)Ys#U2[!K[<[rrq-WB)_ilrr3#-B);N.AcVc/&Wd"$ +s0_n-OT5@8!!*'!O8u`grrJ2]rVm,W!+u8>!!'J,s8TP+rs!'8g]*?83rT']!<8,\[f6:2O8u`h +AcQHBrt%3k[f+ZrrKQ?rVlr-!4J^'!8Z]8!8W5+h#@EOiqq7,htNN<"7X^r +rJLUTJ,F0aXo88$q +ir9#7T)SePq#LHp!]g=Crr353!+u923WP9@rs%3XOT5>AB)V`5O8u_t!0I3[!G8e:rrE+3r;RU]rrM8*q`"UjfpMdAnBp1m +MZ3[Hr/UimrVlrNJWRSF!7gn+!4d[\K`;&.k5Tr~> +ir9#7T)SdOq>^\2s4[MRg]%3XAcT:>gAh6.rr31a!8IP.!4Mk+"ZcY`AcUTbrr<&qrrTV/[f-42 +gAkjcrr<$[rr30`!4Mp^!+u61!o!^`rVm'_!<<'!!+u30!+u30#IXVos4[MRg]%3UB"$FoB)_f7 +gAkjc[K$=,rs+VcB)hl2!':,Z#!)ams(28crr2rur;QctAu#A+h;eM8h1>U]rrM(aq\0'+d[:%: +n^Z[uMZ3[qr4W0brVlr/*]h"7!9X*k!7l`$K`;&.k5Tr~> +ir9#7T)SlH!+u',!BL5YrrkF`s8P+[r;ZdXs8Vlp"$6G^!;6?mAcVc/#*8hns0_p9rVm'_!<<(\ +!4Mn,q#COYs0_p9qu6YXqu?iRrr<&qrrS8^[f6:1O8u`h!!)ut#29,is0_p9rVm$^!<<'!!;QQq +gAn[XrrCm8rrCl+s5!\UlIYsa!S?e,rr`2JdHZSg!5JGL!.b"I!po4H^&J,oG5?(VUk/Q"rrCm; +s*t~> +ir9#7T)SkR!4Mb(!o!]erVm)V!+u8c!+u30"PWpqYpRW!<)p$3WT2g!+u30"cr_ms(290rs%3XB)f:> +B))B,O8u'U!8Z]8!8W5+h>[MG7/T"F6aW3["8pWqlA>N@cMW_'Sc&KhOFb`krrMDMqMtWeJcCH( +!8Zf;J,~> +ir9#7T)SgP!;ZWrO8u`frs"Pb[f;Eh[f-4/O9"&8B))E/gL^GopAY3&!4Mk+#29,is8N(2rVm(` +!4Mp^!+u61!+u$,"5EhUB)DT.g\_$SOT/nm[ep(+gAkjbrs%3XB)cHC[f-403WT3[!+u30#*8hn +s(28>q#:@UAu#A+h;eM8h1>U^rrJ!$r"K/TVO.;br7BKcM>mS8r4W0Nr;QgY*icpR!V=/(^&Z`8 +s+UIQh<+`f~> +ir9#7T)SlH!+u',!<>1YrrkF`s8N'[r;ZdXs8Vlp!]p@Cr;cWm!G4Cjrs"Pb[f +ir9#7T)SkR!4Mb(!k&)jrVm)V!+u8>!0I0Z"PWp_AcVc/!+u*."?QRE!4Mb(!BL5ZrrkF`s,[5hrVm&0!0I4m!;uj"!+u92 +3rT*ZB)DT0O9"%2rrCm8rrCl+s53hWbu+?t!KQ`:rrV$(h2)(2nb\@Ih#76Sc[hb%rrMDMqMtZ_ +pjrI#rrCm;s*t~> +ir9#7T)SgP!;ZWrAcUTars"Pb[f9q>g\q-TO9"&8B))H,g\h*P[e]q)[K,(\rs%3XB)hl2B)V`6 +[K*c9gAkjbrr?[,!!D!U!+u0/q>^VZs#L/VrrUpTB)_f6gAkjc3WT*X"_Ibhrr?[0rrfb1[f>+\ +!!'J)s8P-TrrCm8rrCl+s53hW`%h-'!IF7$rrV-/i/%C5p\VZ)li$hbWZG3RrrM`-qS!!Yqgnd& +rrCm;s*t~> +ir9#7T)SlH!+u',! +ir9#7T)SkR!4Mb(!k&*;rVm)V!+u8>!4Mk+#29->s,[5hq#:?Kr;Zi+qYpQrB)MZ43WT3[AcVc/ +"TW07s#L/ZrrS8^[e]q(AcVf0"5 +ir9#7T)SgP!;ZWqAcVc/"cr_ms(29/rrnJag]';7p\t5Tr;c]o!k&*;rVm)V!+u92!+u30#.=N? +s4[Ncrr3![!;QQp!+u30!g!B^rr3/1!0I4A!;c]sgAkjbrrq-WB)amlr;Qq4!8IMRB)V`2[K*c8 +rrA/Z!;uit3bG/e!8Z]8!8W5+iVrr;?2G<::=>F-"81O'r.k:PcMYBVf)>UNn1,R"]`/$(`VR:L +b56biM#RJ2k5Tr~> +ir9#7T)SlH!+u',rrDus"ZcY`rr<&ss8P.[s8N)ks8N)qrrH^3r;Qt_!4Mp9!4Mk+#%dl8s,[5h +rr;uuq>UN)!4Mn,!o!]erVm%5!8IMR!;c]sO8u`grrnJa[f6=-rVm)V!+u8>!4Mk+!G2?.s8N)t +rrTV/[\Wp'h;eM8h1>UcrrME:r7(i"n!!bQq!7V)rrE&'rrC.;D?0D/rrViXo"4o&p5&Q_!K$N$ +s,$aUh<+`f~> +ir9#7T)SkR!4Mb(!k&)@rVm)V!+u8>!+u30#29->s0_o>p&>*%!+u*-! +ir9#7T)SgP!;ZWrAcT:[f-41O9"&8AcT:4rrQd4[ep(+[K*c7rs%3XB)hl2B)V`6 +[K*c9gAkjbrrQd4[e]q(!+u30!BL5Zrs#n3OT/nm[ep(+gAkjbrs%3XB)cHC[f-403WT3[!+u30 +!k&*;qu6_0!4Mk+!(rrW#`p=TBGr;*\u!9X0m!;l`p!fe=A +]Dhp/b5/gQb56biM>mS3k5Tr~> +ir9#7T)SlH!+u',!bMFErr33a!!*'!AcQHBrs.9Y3rf4l!!)ut"-@-p!<)ou3WT$V!g!E:rVm(` +!4Mp9!4Mk+#%dl8s0_ohrr3%3!!)ut"d!?r[K*c7s8N)urs,t4!8INc!':)Y"9AJ1!0I3[#*8hn +s(27Crr;uu"Le?=!4Mk+"D.Z6rrE#t!BL5ZrrS8^gSFiLh;eM8h1>UerrMfHqpb`1rK7*[rR_&N +qY:![rrN,s_Z'Z1G5Q4XaSl,@rp&eI]Dhp*M#(uiJE2:]MZ3\4k5Tr~> +ir9#7T)SkR!4M_'rrrVlr-!+u61#A*rss8N'!OT,7`[V#PO!8IMQ%ls^j +rr<&-s8TM-!<<(2!;uj"!+u8>B)_f3gAkjas8P-TrrCm8rrCl+s5a1\bu+?t!KQ`5rrE#LrrV?> +o(2k^rqsY5!VhrXNr[`/rr`"HJa^5N!ViGdNrbg:JcCW-!8Zf;J,~> +ir9#7T)SgP!;ZWr[K$=,rs+Vc!4Mp9!!)ut#s0_n-[f6:0gAq7c[f6:.O8u`drrUpTOT#1` +gAkjcrr?[0rs#n3[f?@-3r]-][K$<9rr3/V!<<'!B)V`2AcT:=s8N'&OT2`h!8IMQ"D5+B!':,Z +#29,is0_n-rr317!+u92!+u30"h"E>s(8_=rrS8^[f6:.gAm>1rrCm8rrCl+s5a1\`%h-'!IF6t +rrE#LrrV35nFQY\rr'_6!W0_2^&[ +ir9#7T)SfFq#CJ.s4d>Ls8N)Rq>^LVrr;fp!G;B/!!&,WrrUpTOT#1`O8u`h[K*c7rrcp6s8UjP +!!0P.q>^Y1s0_p9rVlk0qu?j\!8IPRq>^Qrg\h*U[ZCKts8Vrr"Zl\`[K*c7rrZj5s8Vrr!0I0Z +!BL4UrrCm8rrCl+s5s=^qVqD&!T3X&s5a1]mcsZ?rrV]Yqni@5V#5*1P5P=]o'5eWrrMhUqJH=X +jFR>hrrCm;s*t~> +ir9#7T)SePq#CK)s,d'W"(qT5OSSqZOT5?hq>gQ(qZ$WNqYpVY!8IJP"ZcY`s(29/rr`=6s8S2Z +!!3,.q>^W+s(29/s82j#3WM5@s0he)!bVIor;[$$3WT3[[eg%-OT5>m!;uj!!+u8>qZ$WNrr3&S +!+r#+!8Z]8!8W5+k5PJEG5F6"C"\(;jSo:aSEKMD!qGdX_Z'VGr/UiYr;Qi&JZu`c!Vi\kNrbR3 +JcCZ.!8Zf;J,~> +ir9#7T)SdOq#LHp!'9rV"1J703r/gYg].:cq>^QrB)DW/3r/gU3rT'_gAkjcrr?[0rroh2[f?@g +rW!"3s(;*-s8N*"B)V`0[ep+/3WP9As(;-.!k/+irW!.7gAkjcs(;-."P`tV!+u30"L\<=s(;0/ +!':)Y!g!DjU]1>Mj8T,8JcFm4!T@>]'ELtWJcFg2!hbG2oDej]!;s_6!7q(^!7(NB!c]9$])Mg. +cMG6U_Xi?YMuNe5k5Tr~> +ir9#7T)SfFq#CD,rr;os!rk:]rVufr!o#asrVlkZr;Zq3s8UjP!!&,Us8P.Yrs"Pb[f!4Mh*!+u31"92s5g]%3QB)M`/rrBM,!!BZk!4Mn,!':)Z!0I3[ +!k&*;rVm"4!<<)Rr;ZhZrVlrR!+r#+!8Z]8!8W5+kPkSJfDO/"fC+k%!qn,9rVuWmr;Qef!;uj$ +WC.@(+'?_crsn[@+9s6]s8W#^li7!T!<)p&gIhnf@.XEMq>gNp"KX$V.':hq!7C[]!:Bab"9%NN +rji%/V#"s0GN=>TN;in6k5Tr~> +ir9#7T)SePq#CN*s8TP,!!?if!+u61!4Mk,"$50:OT#1Z3rK$\[f?Ahr;ZiPq>UNN!0I0Z"ZcY` +s(29/rrE+3rr2t1rW)rt!':&Y"Le@1AcV`.rW!%4rr>+Ys8;otB)_f1B)Vc3s#L/ZrrCgP!!(dQ +rrH^3r;Qm"B)hmmr;ZiPrVlq\!4J[&!8Z]8!8W5+kPkRQ7/T"F6aW!U!qn,9rVuWmr;Qef!;uj$ +WC.@(+'?_crsn[@+9s6]s8VY[UAt7`!<)p&gIhnf@.XEMq>gNp"KX$V.':hq!8RI4!:g$f"7Les +pUU;(\GD6eQKj&$N;in6k5Tr~> +ir9#7T)SdOq#LEo!+u31"1F9k[f6:,B)Vf1O9#@9rr2uQquH`r!':)Z!'9oT!g!E:rr32W!+u92 +!+u30!k&*;rr;rt"(qT5g\_'NrrE+3r;Qc*rW)u,!&rrVmDo_ngb!;uitS,iKe +#,t!'#9R'krr3K#E?GK5RK* +ir9#7Jc>`N3p-GDO8u_ZrrQd4gS=cKh;eM8h1>UjrrMfHqpb`1rK.$\OroYYrr<&prrUji!<)p8 +Aim`uo@0*<[f?A*O72qt8=9GMlLOu.(BFI7$1BRMoBLd-r6`pjrsG*!s8U4[^[f2\cHlLjJ,F0a +^\n*5n*9PTrrAkkD?4t&JcC`0!8Zf;J,~> +ir9#7K)Yn\!0H@C!BL4MrrE*\UAk5Lj8T,8JcG!7!R4L=3!#'1OT,BF+,p$q!!)ip!ne@irVmaI +421=Xe<^`Ts8PuXn+t[-R/bX*_>i1)!<3!)mkCm8l@)n6dF%pm$C>*!s2l7po"c +ir9#7K)Yma!8H]:!o!]eSGrZ!!0ErT!8Z]8!8W5+l2Le&1&DXcHLR$r!g4Xaq>UEpq>UNL(BFF6 +).ktEoCLIu&@VW=;NL;CfLVD0bDNb.fbXYfrsA-JXn1h,=o?h#rVm4k?N:&J)SbjZ*6un1!6+lM +!93qV!`^;%\GlQ[qS!!Ik(3PlrrCm;s*t~> +ir9#7K)Yma!0H=BrrAVi!o!]eUAk5Lj8T,8JcG'9!W(gQeH+S%O8f@Z+2JokqYpNqqYpZo6G*C6rHt!'T\,61)$0;s&n*9]E6G* +ir9#7K)biN!8HZ9!k&)@Sc8bQ!4JX%!8Z]8!8W5+li."JG5F6"C"\RI"Ss4V)u0:0!!)lq"8Y?s +!<3!"X>KbNrrmdYs8TS*rr3;d(B:b3htf[P!<3!!KSTR,"SJ\adG=g%#0IqQs8QJnrr3"bAC(8U +^\j,mSc&KhhgplurrC+8Nr[^]s,R*Zh<+`f~> +ir9#7KDu"]!'96A!bMG@Sc8^O!29Dmh;eM8h1>UlrrM(aq\0'+dZ=D2qB*Nmq"k!j!;c]tqEhgp +rr3&$2#7(L"ajbYs0qn)rs@d&s/(\-qEhgprr3"PL]7;Vor%H4i;W`\arKgKs'V2mrrJErci4"! +r4W0Nr;Qi<*]ge1!8dOc!9Sk4NrK+8k5Tr~> +ir9#7M#RJ0q>fUV!k&)@T)SgP!29Dmh;eM8h1>UmrrME:r7(i"muIDOqNjeR8sfDS!!)lq"*g(1 +!<3!!7^)C_$0*Z;p%89/PlCa_rrG1)r;R#edH1E.r\:>MrrFJ#rr3#N.aS+pjSNfpjS]#Zm-=>S +rrC.9D?.b/s,[0[h<+`f~> +ir9#7M#RI:qZ$V.jSo9n!4JO"!o!]eU&P,Kj8T,8JcG*:!LuRU2uuCRNrK:ZQV%3LQhp^^!;c]t +Ga/4.rr3!gYO_]"j"C5T`rC:JrrE&u!BSI&rs.i:jo>A[0rP$N!@HP"rrL_$ci4"1qi:aBr;Qh[ +J^:h*!7gn+!7cZ#O8f49k5Tr~> +ir9#7M#RH9qZ$W)jT#5[T)SkR!4JU$!8Z]8!8W5+m/I*D,5`,U+f:;""oFWXs%8XSrr<&qrr[M1 +rrE&u!Cj9`rs@^"s8FaNrr3!GgA_*Qf.,,H!;$*%!;$-g!]_=% +\,QHjq7ZjkJcCf2!8Zf;J,~> +ir9#7M#RJ0qu?^Xir9'l!+qo(rr<&-U&P,Kj8T,8JcG0s0FK[rr3!,pAY'moaK.G!/UPj +!2TPm!r)!J[f6?Kq/-2.JcCi3!8Zf;J,~> +ir9#7M#RI:qu?_YirB#Y!4JU$!k&(/T`5#Jj8T,8JcG0s0FK[rr3!,pAY'moaK.G!2KIQ +!4_t,!mcFb[f6?Xq2YNdJcCi3!8Zf;J,~> +ir9#7M#RH9qu?`Oj8T1h!!&\l!bMFET`5#Jj8T,8JcG0 +ir9#7JcC<$S,WKEj8T,8JcG6>!W(gQeH+IuN;it8LG8`-!BQtPrr<&srrqg9fDkjNrr3!%qt0pg +!"!06s8VL4fDkjNrr3E029>L:6.>`*r;ZdY\,H=-!r`,u!W<,GrrBh3D?+nXrrVQPqR6D)g33=1 +!2P2GOoGF;k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG6>!TnS&3!!:/N;it8LG8`-!BQtPrr<&srrqg9fDkjNrr3!%qt0pg +!"!06s8VL4fDkjNrr3E029>L:6.>`*r;ZdY\,H=-!r`,u!W<,GrrC@BNrYLCrrS:5hmWOcj-BJ% +!4d[\OoGF;k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG6>!T@>]'ELG:N;it;MD5&0!BQtPrr<&srrqg9fDkjNrr3!%qt0pg +!"!06s8VL4fDkjNrr3E029>L:6.>`+r;ZdY\,H=-!r`,u!W<,GrrD'V^&Z%IrrP2%`jYmJn%nk7 +!7l`$OoGF;k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG9?!UA;7eH+:hMuNnCcm>^krrTMUrqucr!;uitXbq +s8;rqrs/P\<1X'h +ir9#7JcC<$S,WKEj8T,8JcG9?!LuRU2uuCEMuNnCcm>^krrTMUrqucr!;uitXbq +s8;rqrs/P\<1X'hqi:a4r;Qi6JY9FN +!U>sHNrcfdJcCr6!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcG9?!K&*!'EKADMuNnEe0_3prrTMUrqucr!;uitXbq +s8;rqrs/P\<1X'h +ir9#7JcC<$S,WKEj8T,8JcG?A!VP1DeH+b0MuNkTe;sG+!3Q2!!!)rsq>^V=s%K0`rr<&qrr_^4 +s8Voq"*=Jfc2R_Doa:Zt!KV3trrFS%rr3#L/C"1pS,@.(S,E9grp/kJ[Jp9gG5?(WM=uN#PlCa> +k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG?A!R4L=3!"X%MuNkTe;sG+!3Q2!!!)rsq>^V=s%K0`rr<&qrr_^4 +s8Voq"*=Jfc2R_Doa:Zt!KV3trrFS%rr3#L/C"1pZ2BX_Z2FV(pP=Ch[Jp9mQ26OBV"fN@PlCa> +k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcG?A!Q6_i'EN"=MuNkTfTQ(2!3Q2!!!)rsq>^V=s%K0`rr<&qrr_^4 +s8Voq"*=Jfc2R_Doa:Zt!KV3trrFS%rr3#L/C"1pdepfZdes+In1,R>[Jp:!_>:kHb56biPlCa> +k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcGEC!W(gQeH+IuM>m\Mk:iJ)rrJrPr;Q`sp\t3nrr3&.,ObR1"oJB# +s-*0UrrM*uqYpNqrr3"0N;ihXaXd>i!D'j#rrH\orr3"YCX)kZaSTiTpAFplo'5eQrrMMCqJH=j +p4<7/rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcGEC!TnS&3!!:/M>m\Mk:iJ)rrJrPr;Q`sp\t3nrr3&.,ObR1"oJB# +s-*0UrrM*uqYpNqrr3"0N;ihXaXd>i!D'j#rrH\orr3"YCX)kZebbC-q#(-nY^s$crrMYbqMtZQ +pjrI1rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcGEC!T@>]'ELG:M>m\NkqJ\+rrJrPr;Q`sp\t3nrr3&.,ObR1"oJB# +s-*0UrrM*uqYpNqrr3"0N;ihXaXd>i!D'j#rrH\orr3"YCX)kZk52jmqu$HqE?9,,rrMl:qS!!Q +qgnd4rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcGHD!UA;7eH+:hLAq=]+8Yp8!rO@SrVlitp\t3nrVmIK-EHP1j.nG! +s8Q&TiqV1uU&+ch!<3!&eebCXcSD!grrF)$r;QuL)8>[R);!+4!-\9X!5JI3"9%NMrj;\+p5&Q_ +!K$2ps-EZbh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcGHD!LuRU2uuCELAq=]+8Yp8!rO@SrVlitp\t3nrVmIK-EHP1j.nG! +s8Q&TiqV1uU&+ch!<3!&eebCXcSD!grrF)$r;QuL)8>[R);!+4!1!JC!7(NB"7LelpU'r$pnR\H +!Mo7:s-EZbh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcGHD!K&*!'EKADLAq=]+8Yp8!rO@SrVlitp\t3nrVmIK-EHP1j.nG! +s8Q&TiqV1uU&+ch!<3!&eebCXcSD!grrF)$r;QuL)8>[R);!+4!5\TI!93qV"6(@Cn?i2rqo\cL +!Qt.fs-EZbh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcGNF!VP1DeH+b0L&V0:Q2:L]SNZrO!!)cn!!)rs&$/&."W:.>rr<#f +DAWO0Z2+D"!<)p#]eTgH^&7m2#5S/r"LBQ^/@`n'!2TO1!/^UQ!q>LIZi:("M#(uiGN=>TQi@'A +k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcGNF!R4L=3!"X%L&V0:Q2:L]SNZrO!!)cn!!)rs&$/&."W:.>rr<#f +DAWO0Z2+D"!<)p#]eTgH^&7m2#5S/r"LBQ^/@`n'!4_rf!2TMl!iU[cZi:($U\^#PQKj&$Qi@'A +k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcGNF!Q6_i'EN"=L&V0:Q2:L]SNZrO!!)cn!!)rs&$/&."W:.>rr<#f +DAWO0Z2+D"!<)p#]eTgH^&7m2#5S/r"LBQ^/@`n'!7q(^!6Y3=!b3:3Zi:('b5/gQ_Xi?YQi@'A +k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcGTH!W(gQeH+IuJcC<$q>UHUqecE$r;QlqlKeGTrrAkkD?4tBJcD,; +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcGTH!TnS&3!!:/JcC<$q>UH[qi:aIr;QlVJVa'+rrBS*NrbR3JcD,; +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcGTH!T@>]'ELG:JcC<$q>UHdqn<()r;Ql=*\?fdrrCXH^&c+BJcD,; +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8aSu>8.eN]>p]1?o!pa4oqYpc!6kT_H=Ng^Dq>gQq!)rdq#Ts*Hol_Pc +0=(TW"nZdW#:>l;rrfDP"X0!+eH+:hJcEOc!rVT_])Mb[r,)M:qu6`dlM%R`!2TI/!I)qBs-`le +h<+`f~> +ir9#7JcC<$S,WKEj8T,8aSu>8.eN]>p]1?o!pa4oqYpc!6kT_H=Ng^Dq>gQq!)rdq#Ts*Hol_Pc +0=(TW"nZdW#:>l;rrfDP!t$CR2uuCEJcEOc!rVWa])Mc#r/Uimqu6_jJ^:V$!4_ld!LDMls-`le +h<+`f~> +ir9#7JcC<$S,WKEj8T,8aSu>8.eN]>p]1?o!pa4oqYpc!6kT_H=Ng^Dq>gQq!)rdq#Ts*Hol_Pc +0=(TW"nZdW#:>l;rrfDP!sB)3'EKADJcEOc!r_ce])McLr4W0bqu6^t*icLF!7q"\!Q+/Rs-`le +h<+`f~> +ir9#7JcC<$S,WKEj8T,8aSu=)+,p$q!!)rs".UO#!;ld%Aim`uo@0*<[eg"-QX9^l6dto3*)qgV +psqp*s8PuXn+t[-R/d3/)5G?J(p)9 +ir9#7JcC<$S,WKEj8T,8aSu=)+,p$q!!)rs".UO#!;ld%Aim`uo@0*<[eg"-QX9^l6dto3*)qgV +psqp*s8PuXn+t[-R/d3/'g+?'"t_eoK(=Km^]+B)eE+:A!6>"u!1j#e!mcFZYl=^ +ir9#7JcC<$S,WKEj8T,8aSu=)+,p$q!!)rs".UO#!;ld%Aim`uo@0*<[eg"-QX9^l6dto3*)qgV +psqp*s8PuXn+t[-R/d3/'I4;%!Y?%[C[coT^]+B*fBBgG!8dXf!64p9!id;&Yl=^Wq7ZjkJcD2= +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8ao;M?+2JokqYpNqr;Qjrjo5>YrrT8Yq>C6nHsupP#0IqQs8On6qYpSu +q#:9si>M[q\,61)"m$O"qGi"DeH:5!h"?@#!WMrHrrLidrMBXubOG$$!pJ%q])MctqecDfqu6`a +lM7[a!6FtR!6B`kS,WKEk5Tr~> +ir9#7JcC<$S,WKEj8T,8ao;M?+2JokqYpNqr;Qjrjo5>YrrT8Yq>C6nHsupP#0IqQs8On6qYpSu +q#:9si>M[q\,61)"m$O"jt%\T3!1<>>g7s%!WMuIrrLidrMBXubOG$$!pJ%q])Md#qi:a;qu6_Z +J_..+!7gn+!7cZ#S,WKEk5Tr~> +ir9#7JcC<$S,WKEj8T,8ao;M?+2JokqYpNqr;Qjrjo5>YrrT8Yq>C6nHsupP#0IqQs8On6qYpSu +q#:9si>M[q\,61)"m$O"i?A[/'E\^J5K&6T!WMuIrrLidrMBXubOG$$!p\>$])Md)qn<(!qu6^X +*k8HS!9X*k!9Sk4S,WKEk5Tr~> +ir9#7JcC<$S,WKEj8T,8ao;L58cMDLqYpNqq>UEpr;QdeYOqhrr\:>MrrFA5p&>'[)>a@:j"BWK ++L_:"!OX;,rrV3IqUtlLd[0`b!N+iHrrV$(n@AQ!M#;,jV#1/np?M+MrrC.9D?-eis.')hh<+`f~> +ir9#7JcC<$S,WKEj8T,8ao;L58cMDLqYpNqq>UEpr;QdeYOqhrr\:>MrrFA5p&>'[)>a@:j"?ii +#VZ-9!$$Uj!oiYFg&D*$QhZ@;VW%+G!o;8n\c2Z)r/Uifqu6` +ir9#7JcC<$S,WKEj8T,8ao;L58cMDLqYpNqq>UEpr;QdeYOqhrr\:>MrrFA5p&>'[)>a@:j"?35 +!tkMH!?;u/rrV +ir9#7JcC<$S,WKEj8T,8b5V\D,JX8q+oD0:!!)ip!!)rs!>=_jrrTM^rr2p$'=0b*.AHYQl(7O'!5.q'!n>Wn\c2ZNr,)OZpAFpmrp/kHYQ"XEG5?(V +Uk/Q:rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8b5V\D,JX8q+oD0:!!)ip!!)rs!>=_jrrTM^rr2p$'=0b*.AHYQl(7O'!5.q'!n>Wn\c2Z[r/UlEq#(-opP=C`YQ"XRQ26OA +\UjdOrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8b5V\D,JX8q+oD0:!!)ip!!)rs!>=_jrrTM^rr2p$'=0b*.AHYLi',2-rjpZnB"7"FlrS.>Ql(7O'!5.q'!nc'!\c2Zlr4W3Kqu$Hrn1,R0YQ"Xc_>:kG +eq*jlrrCm;s*t~> +ir9#7]Dhooj7E9Oj6"D^!;baU!T36ps3CWEh;eM8h9,`uV)J>Q!BQtPrr<&prr<&srrE9"o`"qR +\,H=24HAXt]-X!ErrSEOp\b'k!")ZRe^X`Mh"C^G",-[Vp +ir9#7]Dhooj7E9Oj6"D^!;baU!T36ps3CWEh;eM8h9,`uV)J>Q!BQtPrr<&prr<&srrE9"o`"qR +\,H=24HAXt]-X!ErrSEOp\b'k!"'H"3&gms>g<sHNrZ_As.95jh<+`f~> +ir9#7]Dhooj7E9Oj6"D^!;baU!T36ps3CWEh;eM8h9,`uV)J>Q!BQtPrr<&prr<&srrE9"o`"qR +\,H=24HAXt]-X!ErrSEOp\b'k!"&rE'GLN\5K*U#",-[VpXRgdg]%<=O7J)-T(r$Z!rM$:\GlR+ +qn<'mqu6_I*c\@_!V=/(^&Z`8s.95jh<+`f~> +ir9#7_uC&;F'`$G?!Wt?>l=U'X(_5(rrH;Be,KWcH!XXFLSFeJ!qpTHnG`[EN+#q1p&"ajq*1(A +rrU&Ckc4X_h;eM8h95g"r[b/MrrTMUrqucr!;ZWp!;uit($>Jpr;cfr!o>!tq#:B8+8l-?Md#lQ +rs7o@\jh>&eHt=9rrMa$L&V8Rf$W^9rrMAFn;%(9pAY3mp%5`n!2TO1!1Wlc"9%NMrN?/$jECB; +!L!/-s.KAlh<+`f~> +ir9#7_uC&;F'`$G?!Wt?>l=U'X(_5(rrH;Be,KWcH!XXFLSFeJ!qpTHnG`[EN+#q1p&"ajq*1(A +rrU&Ckc4X_h;eM8h95g"r[b/MrrTMUrqucr!;ZWp!;uit($>Jpr;cfr!o>!tq#:B8+8l-?Md#lQ +rs5,^0bPZi3!,fQrrMa$L&V8Rf$W^9rrMAFn;%(9pAY3mp%5`n!4_rf!3uG$"7Leln#lZklBV4, +!NZ!Hs.KAlh<+`f~> +ir9#7_uC&;F'`$G?!Wt?>l=U'X(_5(rrH;Be,KWcH!XXFLSFeJ!qpTHnG`[EN+#q1p&"ajq*1(A +rrU&Ckc4X_h;eM8h95g"r[b/MrrTMUrqucr!;ZWp!;uit($>Jpr;cfr!o>!tq#:B8+8l-?Md#lQ +rs4K*&I&XX'EF9prrMa$L&V8Rg=>KCrrMAFn;%(9pAY3mp@Yop!7q(^!7LcE"6(@Cii`:^o>1:; +!RCRns.KAlh<+`f~> +ir9#7_Z'nldZtBVd,SkAr;Qi!@.a?r!E +ir9#7_Z'nldZtBVd,SkAr;Qi!@.a?r!E +ir9#7_Z'nldZtBVd,SkAr;Qi!@.a?r!E +ir9#7_#Fk\,Otg6Cg>5?`;fkU_>aHEY^i59=D\$!Qf$/rdtkR5rsdG4[f?C&VLm.oq5T"gnG`R# +*9I/!#1jaCs8RU>nc&[W-DgV>)Xs&Ih>d:4OoPISS:oAknu;6\qQel-aMsqMoD]*8Ko5!ls0[?d +q>W=nL;j#f8-a4s3f0+VZ6[sLu\O8p7[,gs7iFBd/VS&s8V\ZL"?;(eZIP^YdXQ3 +h;eM8h95g!1nFRE!MqUMrr<&prr<&srrTVRn,31dquH]q!D'j#rrM?_rr32=0`V1E1p[)["8_#( +c2Q5s]GL8@AWm&m!KClKrrW2kqV2#M]^1FSl)Oa`G5Q4X^\e$5qs*MHXoAFqM#(uiM=uN#UAk5L +k5Tr~> +ir9#7_#Fk\,Otg6Cg>5?`;fkU_>aHEY^i59=D\$!Qf$/rdtkR5rsdG4[f?C&VLm.oq5T"gnG`R# +*9I/!#1jaCs8RU>nc&[W-DgV>)Xs&Ih>d:4OoPISS:oAknu;6\qQel-aMsqMoD]*8Ko5!ls0[?d +q>W=nL;j#f8-a4s3f0+VZ6[sLu\O8p7[,gs7iFBd/VS&s8V\ZL"?;(eZIP^YdXQ3 +h;eM8h95g!1nFRE!MqUMrr<&prr<&srrTVRn,31dquH]q!D'j#rrM?_rr32=0`V1E1p[)["6ObL +2Z>Z>0aZ,)AWm&m!KClKrrW2kqV2#M]^1FSl)Oa`Q2H[CcMRVDkCJH`XoAFsU\^#PV"fN@UAk5L +k5Tr~> +ir9#7_#Fk\,Otg6Cg>5?`;fkU_>aHEY^i59=D\$!Qf$/rdtkR5rsdG4[f?C&VLm.oq5T"gnG`R# +*9I/!#1jaCs8RU>nc&[W-DgV>)Xs&Ih>d:4OoPISS:oAknu;6\qQel-aMsqMoD]*8Ko5!ls0[?d +q>W=nL;j#f8-a4s3f0+VZ6[sLu\O8p7[,gs7iFBd/VS&s8V\ZL"?;(eZIP^YdXQ3 +h;eM8h95g!1nFRE!MqUMrr<&prr<&srrTVRn,31dquH]q!D'j#rrM?_rr32=0`V1E1p[)["6!Mn +'E/[L&I-2RAWm&m!KClKrrW2lqqM,N]^1FSl)Oa`_>M"Iiqr`Xe/g11XoAG!b5/gQb56biUAk5L +k5Tr~> +ir9#7_#H.%,3f.-Eu0Od,bG$F=9%S_Bo[Q&=`X*jJ+ng-HB9V1s8S6eOC)WW/OoEKE%u\,QHaj8T,8bl7aS+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1j.nG! +rVlm;k5>5d4EBNW`$hA[s)"D,rt=_NeOFSlcaQ<9s8ULb^@JlRf7EtXrrDQSL]Ff^rrB2!D?,Oi +rrVZSp8n8pp5&Q_!I*UUs.fSoh<+`f~> +ir9#7_#H.%,3f.-Eu0Od,bG$F=9%S_Bo[Q&=`X*jJ+ng-HB9V1s8S6eOC)WW/OoEKE%u\,QHaj8T,8bl7aS+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1j.nG! +rVlm;k5>5d4EBNW`$hA[s)"D,rt;7u3"d8e2E +ir9#7_#H.%,3f.-Eu0Od,bG$F=9%S_Bo[Q&=`X*jJ+ng-HB9V1s8S6eOC)WW/OoEKE%u\,QHaj8T,8bl7aS+8Yp8!rO@SrVlitq>UEpqu6q@-EHP1j.nG! +rVlm;k5>5d4EBNW`$hA[s)"D,rt:\C'F"mV'-&Nrs8ULb^@JlRf7EtXrrDQSL]Ff^rrCdN^&Z=P +rrQ1AS?2_kqo\cL!Q+GZs.fSoh<+`f~> +ir9#7_#FtY,3f.-E@C\`PV`/N>Q9L=rVmd;Dh1dXs,7fYs0*X8ffA-noJ*j6NW9%S3.q//!pO#f +r_`bkT)ATiocpO7rrnEJs2chKnc&W#>5\C=p-a9-s(Fgr4Hf_DBE/!\1YT!\kT`4rk!rDs&Ygpg"'Ep+orVm#,.L%H6JcFO*!6aY`!;NVp!9F#p!9F%W!r;-J +X8`4oV#"s0GN=>TV#LGNk5Tr~> +ir9#7_#FtY,3f.-E@C\`PV`/N>Q9L=rVmd;Dh1dXs,7fYs0*X8ffA-noJ*j6NW9%S3.q//!pO#f +r_`bkT)ATiocpO7rrnEJs2chKnc&W#>5\C=p-a9-s(Fgr4Hf_DBE/!\1YT!\kT`4rk!rDs&/iY[)"Tg6[rVm#,.L%H6JcFO*!6aY`!;NVp!:'HB!:'I]!nW!b +X8`4q\GD6eQKj&$V#LGNk5Tr~> +ir9#7_#FtY,3f.-E@C\`PV`/N>Q9L=rVmd;Dh1dXs,7fYs0*X8ffA-noJ*j6NW9%S3.q//!pO#f +r_`bkT)ATiocpO7rrnEJs2chKnc&W#>5\C=p-a9-s(Fgr4Hf_DBE/!\1YT!\kT`4rk!rDs&&/5`_! +ir9#7_#FtY,3f.-CgI)@YUT6\?2lFKrVmjE&cp/Ts+s/Ds2l5KM]-8>AK[SF$#Ar.WX<8#rVufl +q>UIeT)8NjfeDWBC@M6(MHKfV)TI2A/MTO9`sGUs$DhHs!LNhT03/J,Y2T[:FPe&#BTD7TEoB$s+s1k']8rj +iYL:D2u*F0(=]ko!8Z]8!8W\8!WD-WeH+IuJcF*s!1rJ3!7InI!.Xoa!3Q+t!po4HWrE'pqJH=X +g4B:#rrCm;s*t~> +ir9#7_#FtY,3f.-CgI)@YUT6\?2lFKrVmjE&cp/Ts+s/Ds2l5KM]-8>AK[SF$#Ar.WX<8#rVufl +q>UIeT)8NjfeDWBC@M6(MHKfV)TI2A/MTO9`sGUs$DhHs!LNhT03/J,Y2T[:FPe&#BTD7TEoB$s+s1k']8rj +iYL:D2u*F0(=]ko!8Z]8!8W\8!V1m?3!!:/JcF*s!1rJ3!7InI!1`tJ!5JC1!g%uZWrE(/qMtZC +j+76,rrCm;s*t~> +ir9#7_#FtY,3f.-CgI)@YUT6\?2lFKrVmjE&cp/Ts+s/Ds2l5KM]-8>AK[SF$#Ar.WX<8#rVufl +q>UIeT)8NjfeDWBC@M6(MHKfV)TI2A/MTO9`sGUs$DhHs!LNhT03/J,Y2T[:FPe&#BTD7TEoB$s+s1k']8rj +iYL:D2u*F0(=]ko!8Z]8!8W\8!Usq&'ELG:JcF*s!1rJ3!7InI!6+lM!8@;L!]_=%WrE(MqS!!I +mt(M8rrCm;s*t~> +ir9#7_#FtY,3f.-Cfp`;X"uIPrHq,`RF;U^.(9Us2%Dem/R+R +KR*QD!HkgIrrI[:qu6fq/tG;6nG`R3)WL_q)U0Mps8U.Yi]i^k+Q*5!g_nZWl2Uc=VPu9>rVlno +GQ)pnG`hb#s'p$Iru1`#SH&Wc2O;q4`:/%Ccc*lRo]A(\W;llaN;ii)9pM;1q=uh&bf%ZZs8TVp +8+chq76^I)7+WUDs8UXfiM&1$s4J7?\GlQbj8T,8O8f7JfDO/"fBn.hcN!-b!5,?3!5JGL!-e;> +!r)!KWW)soq/-2RJcDVI!8Zf;J,~> +ir9#7_#FtY,3f.-Cfp`;X"uIPrHq,`RF;U^.(9Us2%Dem/R+R +KR*QD!HkgIrrI[:qu6fq/tG;6nG`R3)WL_q)U0Mps8U.Yi]i^k+Q*5!g_nZWl2Uc=VPu9>rVlno +GQ)pnG`hb#s'p$Iru1`#SH&Wc2O;q4`:/%Ccc*lRo]A(\W;llaN;ii)9pM;1q=uh&bf%ZZs8TVp +8+chq76^I)7+WUDs8UXfiM&1$s4J7?\GlQbj8T,8O8f6Z7/T"F6`5M8cN!-b!5,?3!7(M'!1*K] +!mcFjWW)t.q2YO+JcDVI!8Zf;J,~> +ir9#7_#FtY,3f.-Cfp`;X"uIPrHq,`RF;U^.(9Us2%Dem/R+R +KR*QD!HkgIrrI[:qu6fq/tG;6nG`R3)WL_q)U0Mps8U.Yi]i^k+Q*5!g_nZWl2Uc=VPu9>rVlno +GQ)pnG`hb#s'p$Iru1`#SH&Wc2O;q4`:/%Ccc*lRo]A(\W;llaN;ii)9pM;1q=uh&bf%ZZs8TVp +8+chq76^I)7+WUDs8UXfiM&1$s4J7?\GlQbj8T,8O8f6J,5`,U+d[c[cN!-b!5,?3!93pj!5eU4 +!id;BWW)tLq7ZjkJcDVI!8Zf;J,~> +ir9#7_#G"Y*pN_)C/t<6W[[XU=oX=:mf*4s;g%^ZLB!&ms8U"Sl/*bsrVmArs3:r2nc.;Jg].I!6B`kVuHbQk5Tr~> +ir9#7_#G"Y*pN_)C/t<6W[[XU=oX=:mf*4s;g%^ZLB!&ms8U"Sl/*bsrVmArs3:r2nc.;Jg]. +ir9#7_#G"Y*pN_)C/t<6W[[XU=oX=:mf*4s;g%^ZLB!&ms8U"Sl/*bsrVmArs3:r2nc.;Jg]. +ir9#7_#H.&,jG@/D-Hu>X=j3_?2s+a7<)et>]0SK(pJues8U%ZkPpQ0D/k?rBk^%Zs))LAD=@K3 +cU),\BVPP,_$bGSrugu?;fQT"pV\an=$YUA4d5ol2csBGd/ShEGBjmuV)%T4rsSR?2fMg@m8QGj +/u/@E3Ve(nDK(o:-0>/,?1pcIB5TG^s->b@s5Qp[EHAAa?tr&Xs(?%8G5mLfs33B)>WUC7Si66@ +fc&GOrrCm8rrClQrrV/eO8F_7Qb;h`rrN)[qpb`&on!/C2nhqn.7rrAPd +D?-L/rrViXn>Q?eaSB]R^k)NarrCm;s*t~> +ir9#7_#H.&,jG@/D-Hu>X=j3_?2s+a7<)et>]0SK(pJues8U%ZkPpQ0D/k?rBk^%Zs))LAD=@K3 +cU),\BVPP,_$bGSrugu?;fQT"pV\an=$YUA4d5ol2csBGd/ShEGBjmuV)%T4rsSR?2fMg@m8QGj +/u/@E3Ve(nDK(o:-0>/,?1pcIB5TG^s->b@s5Qp[EHAAa?tr&Xs(?%8G5mLfs33B)>WUC7Si66@ +fc&GOrrCm8rrClQrrV/eO8F_7Qb;h`rrM\Cq`"U]c%5oirrVZ^r7M#LiTZ-uV>C2nhqn.7rrB>% +NrZ]drrTueW2T^rebP7+c@Q"orrCm;s*t~> +ir9#7_#H.&,jG@/D-Hu>X=j3_?2s+a7<)et>]0SK(pJues8U%ZkPpQ0D/k?rBk^%Zs))LAD=@K3 +cU),\BVPP,_$bGSrugu?;fQT"pV\an=$YUA4d5ol2csBGd/ShEGBjmuV)%T4rsSR?2fMg@m8QGj +/u/@E3Ve(nDK(o:-0>/,?1pcIB5TG^s->b@s5Qp[EHAAa?tr&Xs(?%8G5mLfs33B)>WUC7Si66@ +fc&GOrrCm8rrClQrrV/eO8F_7Qb;h`rrMV*q\0&q`.@s`rrV]`r7M#LiTZ-uV>C5li;i\[rrCLF +^&Za\rrS3%A#TD-k4u^kj+76/rrCm;s*t~> +ir9#7_#Fl2aS>f8g=?6'l,s%Zf)G[k\u<@mci=%7YcmQrs5qQ*s7F;%\GlQbj8T,8 +WW*"oXn@JM`;BQ8mFV9d!S?^is7cNqo?l@kf`(s1l%f>9qZ$TCZMspGqecE-qu6ctlK\>HrrC.9 +D?-J`s/H"uh<+`f~> +ir9#7_#Fl2aS>f8g=?6'l,s%Zf)G[k\u<@mci=%7YcmQrs5qQ*s7F;%\GlQbj8T,8 +WW*"oXn@JM`;BQ8W'pPC!CNc9s7cNqo?l@kf`(s1l%f>9qZ$TCZMspTqi:aPqu6cmJV!9grrCUF +NrZ_As/H"uh<+`f~> +ir9#7_#Fl2aS>f8g=?6'l,s%Zf)G[k\u<@mci=%7YcmQrs5qQ*s7F;%\GlQbj8T,8 +WW*"oXn@JM`;BQ8Qm2GB!?me\s7cNqo[Vjtf`(s1l%f>9qZ$TGZMspeqn<(-qu6cf*Zj=>rrD3W +^&Z`8s/H"uh<+`f~> +ir9#7JcCl4!Ao@errCm8rrClTrrMAFo8!RAq#CBeh>>_'jSaZ0p\t?nf$W^4s65=>[/9k)o?l9t +rrMh:r,)MUqYpWflLLkQ!T\G#D?-J`s/Q)!h<+`f~> +ir9#7JcCl4!Ao@errCm8rrClTrrMAFo8!RAq#CB=?2HS^K(=Kmp\t?nf$W^4s65=>[/9k)o?l9t +rrMn[r/Uj.qYpW$JZu'P!U>sHNrZ_As/Q)!h<+`f~> +ir9#7JcCl4!Ao@errCm8rrClTrrMAFo8!RAq#CB45l25rC[coTp\t?ng=>K>s65=>[/9k)o[Vd' +rrN#5r4W0nqYpV:*c\+X!V=/(^&Z`8s/Q)!h<+`f~> +ir9#7JcCl4!M$ucrrCm8rrClUrrMAFnV@7

    u2%!Sm@!s7QBni6g9/rrAAML]GWqrrVK5ij&L` +V#5*1M>I5SrT`_JVuHeYG5?(WS+_F5XT&:Vk5Tr~> +ir9#7JcCl4!M$ucrrCm8rrClUrrMAFnV@7 +ir9#7JcCl4!M$ucrrCm8rrClUrrMAFnV@7:kHdeeUqXT&:Vk5Tr~> +ir9#7JcC<$S,WKEj8T,8XT&=jO7.l*S_*hj!S?^is7H +ir9#7JcC<$S,WKEj8T,8XT&=jO7.l*R7$p4!CNc9s7H +ir9#7JcC<$S,WKEj8T,8XT&=jO7.l*Qm)DB!?me\s7H +ir9#7JcC<$S,WKEj8T,8XT&9sm>(bPrm_&1rIP"?rrW&bo@3d?l0F-*T)/Hgp$hg^rr@QHD?.-A +rrW&^m%s^_p5&Q_!K$N$s/uA%h<+`f~> +ir9#7JcC<$S,WKEj8T,8XT&9sm>(b)r\sq1nq$i4rrW&bo@3d?l0F-*T)/Hgp$hg^rrASeNr[5s +rrV)/OJVsXpnR\H!MoLAs/uA%h<+`f~> +ir9#7JcC<$S,WKEj8T,8XT&9sm"kWT!Gh1Us7?6lqX=%*rrDqS!!QqgndMrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8XoAC[m"bb)e_KhKs7$$grmLfHV +ir9#7JcC<$S,WKEj8T,8XoAC[m"bb);d@Rus7$$grmLfHV +ir9#7JcC<$S,WKEj8T,8XoAC[m"bb)2*]$1s7$$grmLfHV +qS!!Mo7?qFrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8XoABtl\GPVJcEIa!9rm,!2ZOl!:BZ$!9F"V!r)!HV#LJhOnrqrGN=>T +Yl=^Zk5Tr~> +ir9#7JcC<$S,WKEj8T,8XoABtl\GPLJcEIa!9rm,!2ZOl!:frI!:'F\!mcFZV#LJjWqqbWQKj&$ +Yl=^Zk5Tr~> +ir9#7JcC<$S,WKEj8T,8XoABtl\GPJJcEIa!9rm,!2ZOl!;HB)!;$'e!id;&V#LJmcMG6U_Xi?Y +Yl=^Zk5Tr~> +ir9#7JcC<$S,WKEj8T,8Y5\LslA,G,JcEF`!7L=l!K[#Orr@lQD?-L.rrVQPqP4&jV#"s0GN=>T +Z2Xg[k5Tr~> +ir9#7JcC<$S,WKEj8T,8Y5\LslA,G,JcEF`!7L=l!K[#OrrAhlNrZ]crrS:5hkU2O\GD6eQKj&$ +Z2Xg[k5Tr~> +ir9#7JcC<$S,WKEj8T,8Y5\LslA,G,JcEF`!7L=l!K[#OrrC4>^&Za[rrP2%`hWP6f)!)]_Xi?Y +Z2Xg[k5Tr~> +ir9#7JcC<$S,WKEj8T,8Y5\LUl%f?/JcEF`!7LCn!KZK?rrBh3D?+nVrrViXn"Tg^V#"s0GK>@8 +ZMsp\k5Tr~> +ir9#7JcC<$S,WKEj8T,8Y5\LUl%f?/JcEF`!7LCn!KZK?rrC@BNrYLArrTueTVDGd\GD6eQIUQd +ZMsp\k5Tr~> +ir9#7JcC<$S,WKEj8T,8Y5\LUl%f?/JcEF`!7LCn!KZK?rrD'V^&Z%GrrS3% +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>uJcEC_!Rd&$L]O+:UAk5eqecDTqYpZslg"GCrrBM'D?.b/ +s0M_*h<+`f~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>uJcEC_!Rd&$L]O+:UAk5gqi:a-qYpZlLk5#hrrC+8Nr[^] +s0M_*h<+`f~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>uJcEC_!Rd&$L]O+:UAk5jqn<'mqYpZe.j!]ErrCpO^&[;H +s0M_*h<+`f~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>nJcGEC!rDWhb5VM3V>#cHO2IUi!1Wn(!1Wfa!qPXIU&P,6 +q/-2RJcE+W!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>nJcGEC!rDZib5VM3V>#cHO2IUi!3uH_!3uA"!jI6[U&P,C +q2YO+JcE+W!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>nJcGEC!rMckb5VM3V>#cHO2IUi!7LeZ!7L]C!c]9$U&P,T +q7ZjkJcE+W!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>nJcGHD"8pX-qT/[ +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>nJcGHD"8pX.qT/[ +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>nJcGHD"8pd4qoJd=n@Y@kL]`^?deNP9!ri#mXT&:dqn<(- +qYpZW*ZjgErrD3W^&Z`8s0_k,h<+`f~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>uJcGHD!oVJ^Z2Xmti9[NE!-\9X!5J@0!qPXKT`5&HG5?(V +Uk/QSrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>uJcGHD!oVJ^Z2Xmti9dTF!1!JC!7(E?!jI6kT`5&QQ26OA +\UjdhrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8Y5\L>l%f>uJcGHD!ohbgZ2Xmuj6s&K!5\TI!93hS!c]9AT`5&]_>:kG +eq*k0rrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8Y5\LMl%f?/JcGKE"7=Lcq6Br$kgAUprrAkmD?,Ohrr`,_li*RW!T\G# +D?6R,JcE7[!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8Y5\LMl%f?/JcGKE"7=Lcq6Br$kgAUprrBS,NrZ!Orr_/0M"dSB!U>sH +NrcfdJcE7[!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8Y5\LMl%f?/JcGKE"7Odmq6Br$lIG1#rrCXJ^&Z=Orr^7^/F]>4!V=/( +^&cg^JcE7[!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8Y5\LklA,G+JcGKE"8pj"n?Dooi6h%prrD-WD?/bnrrVZSpRhHdjECB; +!K$N$s1/.0h<+`f~> +ir9#7JcC<$S,WKEj8T,8Y5\LklA,G+JcGKE"8pj"n?Dooi6h%prrD?]Nr\J@rrSjEc_(4 +ir9#7JcC<$S,WKEj8T,8Y5\LklA,G+JcGKE"8q!*nZ`#pimmS"rrDZf^&[d#rrQ1AWh9:lo>1:; +!Qt:js1/.0h<+`f~> +ir9#7JcC<$S,WKEj8T,8XoABml\GPRJcGKE!r)!DYQ"[UdIsU?!.Xoa!3Q(s!r)!HT)SiYM#(ui +M=uN#])Mcdk5Tr~> +ir9#7JcC<$S,WKEj8T,8XoABml\GPRJcGKE!r)!DYQ"[UdIsU?!1`tJ!5J@0!mcFZT)Si]U\^#P +V"fN@])Mcdk5Tr~> +ir9#7JcC<$S,WKEj8T,8XoABml\GPRJcGKE!r2-IYQ"[Xeb?*D!6+lM!8@8K!id;&T)Sicb5/gQ +b56bi])Mcdk5Tr~> +ir9#7JcC<$S,WKEj8T,8XoACLl\GQ1JcGHD!W)c!rrW/Ne#E?I^\hsLJGB-Gm-=D +ir9#7JcC<$S,WKEj8T,8XoACLl\GQ1JcGHD!W)c!rrW/Ne#E?IcMW_'SbW3dOFc#TrrMniqMtZQ +nU^_PrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8XoACLl\GQ1JcGHD!W)c!rrW/Rf;\cMir$Lj`q]Q83?G]%rrN#>qS!!Q +pOW@VrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8XT&9lm>(bTJcDJE!rMBQWW)tcqecD]q>UNilL1;D!VV?GD?4tBJcEC_ +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8XT&9lm>(bTJcDJE!rMBQWW)tgqi:a4q>UN:JY8S6!ViGdNrbR3JcEC_ +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8XT&9lm>(bTJcDJE!rVNVWW)tmqn<'rq>UMd*`ej3!W1%9^&c+BJcEC_ +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8XT&=cO7.l*QM?%2T`5#jW;cj[r,)M1q>UQrlg"A;rrAkkD?4tBJcEF` +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8XT&=cO7.l*QM?%2T`5#jW;cjtr/Uifq>UQkLk4`ZrrBS*NrbR3JcEF` +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8XT&=cO7.l*QM?%2T`5#jW;ckCr4W0^q>UQd.j!31rrCXH^&c+BJcEF` +!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8X8`1Jn;%++l%/kcs2G!3rrCm; +s*t~> +ir9#7JcC<$S,WKEj8T,8X8`1Jn;%++l%/kcs2G!rrCm; +s*t~> +ir9#7JcC<$S,WKEj8T,8X8`1Jn;%++l%/kcs2G!qS!!Il[f)MrrCm; +s*t~> +ir9#7JcDkP!nsU4qu6`PUrIucqu6ZPj8T,8WrE+JO7S/.O6M5qJcE[g!;?;-!6G!9"9%NMrL +ir9#7JcDkP!nsU4qu6`PUrIucqu6ZPj8T,8WrE+JO7S/.O6M5qJcE[g!;QGP!7goF"7Leln!j=W +^\NojeUdb8rrCm;s*t~> +ir9#7JcDkP!nsU4qu6`PUrIucqu6ZPj8T,8WrE+JO7S/.O6M5qJcE[g!;lZ-!9X+W"6(@Cig]rJ +gA/G_k(3QIrrCm;s*t~> +ir9#7JcDnQ"KbR5/]I\g"gBLs@"\9+s8Drth;eM8h5UDTl(7R(!Nl-Js7lTprqV-Fc2Rd>r,)Lt +q#:EdlLUJE!6FtR!6B`k_#FDjk5Tr~> +ir9#7JcDnQ"KbR5/]I\g"gBLs@"\9+s8Drth;eM8h5UDTl(7R(!Nl-Js7lTprqV-Fc2RdRr/UiY +q#:E"J[h0K!7gn+!7cZ#_#FDjk5Tr~> +ir9#7JcDnQ"KbR5/]I\g"gBLs@"\9+s8Drth;eM8h5UDTl(7R(!Nl-Js7lTprq_3Gc2Rdpr4W0V +q#:D8*e0XY!9X*k!9Sk4_#FDjk5Tr~> +ir9#7M>mSDr;QfcoX=c#Tt:1%&()lPs)q$.s8VgEPlKtUc@Q#orrCm8rrClQrrLQEq1o'YiIV%& +rrV3EpjrIjrrCIDD?0)"rr`/`li*@Q!6FtR!3LhP_>aMkk5Tr~> +ir9#7M>mSDr;QfcoX=c#Tt:1%&()lPs)q$.s8VgEPlKtUc@Q#orrCm8rrClQrrLQEq1o'YiIV%& +rrV3FpjrIjrrCjONr\_Grr_G8M"dAaMkk5Tr~> +ir9#7M>mSDr;QfcoX=c#Tt:1%&()lPs)q$.s8VgEPlKtUc@Q#orrCm8rrClQrrLQEq1o'YiIV%& +rrV9Jq18RkrrDB^^&[p'rr^al/F],.!9X*k!8<#(_>aMkk5Tr~> +ir9#7MuNn$@4p.1rr\`i7B!]q"05"Lh>[EbI:<0UkS_D?s7o$+s._1.JcG]K!8Z]8!8XLO!VkCI +_ZA`kJcGEC"7":`rIP!nrr@QHD?.HHrrVZSp6kp]aEIDt!2P2G_Z'Vlk5Tr~> +ir9#7MuNn$@4p.1rr\`i7B!]q"05"Lh>[EbI:<0UkS_D?s7o$+s._1.JcG]K!8Z]8!8XLO!VkCI +_ZA`kJcGEC"7":`rIP!nrrASeNr[K#rrSjEa-lr.eWoul!4d[\_Z'Vlk5Tr~> +ir9#7MuNn$@4p.1rr\`i7B!]q"05"Lh>[EbI:<0UkS_D?s7o$+s._1.JcG]K!8Z]8!8XLO!VkCI +_ZA`kJcGEC"74RjrIP!nrrC%9^&[0frrQ1AS=0BXk/$o.!7l`$_Z'Vlk5Tr~> +ir9#7\c2]?SEZRFSCRE7!rC1:qu7&4TG,NKs,TG&UD_kErrMQ0ji@Ggq#:clP?rk+s&*\5s7%#@ +rr3,N,q]4hJcGZJ!8Z]8!8W5+P5bXXe'[Zcs8VtlrrB2!D?,4^rrW#]m$ReRjECB;!2P2G_uB_m +k5Tr~> +ir9#7\c2]?SEZRFSCRE7!rC1:qu7&4TG,NKs,TG&UD_kErrLMOj]DN)q#:clP?rk+s&*\5s7%#@ +rr3,N,q]4hJcGZJ!8Z]8!8W5+P5bXXe'[ZcrrN&pV#LG0r/UiKq#:EIJWQ9!!U>sHNrZ_As24j: +h<+`f~> +ir9#7\c2]?SEZRFSCRE7!rC1:qu7&4TG,NKs,TG&UD_kErrUYV>j,Gp>[>PJrs\C\?@qJB;JcC5 +nJ]+?rrggt/chMos8;lsh;eM8h1>Thrr`#Iea]^?s88\m!8@@b!64g6!k9:4R/[3Y_>:kGeq*k= +rrCm;s*t~> +ir9#7\c2Xok5YLBp\t;;hu<`3WTL;`Wn$hC$M]f7fiN"is7$r4rrM2(qJH=sp4<7_rrCm; +s*t~> +ir9#7\c2Xok5YLBp\t;;hu<_A!9OLe!/("F$M]f7fiN"is7$r +ir9#7\c2Xok5YLBp\t;;hu<_D!p0sn"GZXM$M]f7fiN"is7$r +ir9#7\c2Xuk5YLEp\tBlX(-+prVm5`)9r3&)smV)Imi2o!pR%nkH4ijjnJchpp+^Zl@!=Fs6;/c +s8TAOli6uJIt@XurrCm8rrCl+s-*HbpuU +ir9#7\c2Xuk5YLEp\tBlX(-+prVm5`)9r3&)smV)Imi2o!l#TYkR%@t'X[W7'_ntMG3XKgs8V@8 +ec5ZT-L:^34b&%_rVllRj8T,8JcCr6"8M!5r2TesdA-^AU\p/Q\G6(*c[hIMrrMD[qMtZQpjrIb +rrCm;s*t~> +ir9#7\c2Xuk5YLEp\tBlX(-+prVm5`)9r3&)smV)Imi2o!l5rhkRdk,)R]>>'_ntMG3XKgs8V@8 +ec5ZT-L:^34b&%_rVllRj8T,8JcCr6"8V- +ir9#7\c2Y!k5YLFo`#K2BQ3J@s5=j?s2>f:s8R@9hZ!WBi99,#i9C%:(A+b +h<+`f~> +ir9#7\c2Y!k5YLFo`#K2BQ3J@s5=j?s2>f:s8R@9hZ!VrV!+]WUqld*(A+b +h<+`f~> +ir9#7\c2Y!k5YLFo`#K2BQ3J@s5=j?s2>f:s8R@9hZ!VsVWau[Vo&6/(A+b +h<+`f~> +ir9#7\c2Xkk5YL@o`#KfG<5$hs5=j?s3;eOs8RLJ\GlVa:Wr\9%YR2e9ud3R2t^B?H=1jgJcG]K +!8Z]8!8W5+JcE:\!q"CnU]1>fqecD]q#:EflL:,>!VV?GD?4tBJcEgk!8Zf;J,~> +ir9#7\c2Xkk5YL@o`#KfG<5$hs5=j?s3;eOs8RLJ\GlVa:Wr\9%YR2e9ud3R2t^B?H=1jgJcG]K +!8Z]8!8W5+JcE:\!q"CnU]1>hqi:a4q#:E2JZ+n7!ViGdNrbR3JcEgk!8Zf;J,~> +ir9#7\c2Xkk5YL@o`#KfG<5$hs5=j?s3;eOs8RLJ\GlVa:Wr\9%YR2e9ud3R2t^B?H=1jgJcG]K +!8Z]8!8W5+JcE:\!q4\!U]1>kqn<'rq#:DU*b1N9!W1%9^&c+BJcEgk!8Zf;J,~> +ir9#7\c2\`<9[Ea<4;N#"P\E1SG<*`$K2lIs7o*Ws8P9]\GlT_p\Omt];GB's4kcss0S*,JcGWI +!8Z]8!8W5+JcE:\!p@tpUAk4_r,)M(q#:HqlK\>;rs&0Ho`+sbS+lsfs7LO[#VWL]rs#Gj&dKL\ +bPqMFol_Pc0=(QV"M6Gq1qN\d"nZdW#:>l;rrfqi#W0-krrfDP"t6U1rrCm;s*t~> +ir9#7\c2\`<9[Ea<4;N#"P\E1SG<*`$K2lIs7o*Ws8P9]\GlT_p\Omt];GB's4kcss0S*,JcGWI +!8Z]8!8W5+JcE:\!p@tpUAk4ur/Ui_q#:HjJV!9Zrs&0Ho`+sdZ1n;'s7LO[#VWL]rs#Gj&dKL\ +bPqMFol_Pc0=(QV"M6Gq1qN\d"nZdW#:>l;rrfqi#W0-krrfDP"t6U1rrCm;s*t~> +ir9#7\c2\`<9[Ea<4;N#"P\E1SG<*`$K2lIs7o*Ws8P9]\GlT_p\Omt];GB's4kcss0S*,JcGWI +!8Z]8!8W5+JcE:\!pS8#UAk5Ar4W0Zq#:Hc*Zj=1rs&0Ho`+sgdeEeHs7LO[#VWL]rs#Gj&dKL\ +bPqMFol_Pc0=(QV"M6Gq1qN\d"nZdW#:>l;rrfqi#W0-krrfDP"t6U1rrCm;s*t~> +ir9#7PQ(`I8Y,8HrsIWjb5_L60<0+\l@Ju+rrCm8rrCl+s+13\rrV]Opq6V.p+#_5s7cQps&8gq +$QoEKaDOQi#QkN9bPM5ES,hjFs8VCm!;ld!X=4?%XoA@s!<3!$X=4?%XhF`9OroY]rrAkoD?'\9 +D?tI? +ir9#7PQ(`I8Y,8HrsIWjb5_L60<0+\l@Ju+rrCm8rrCl+s+13\rrV]Opq6V.p+#_5s7cQps&8gq +$QoEKeW4#`$3UrAbPM5ES,e,Es8VCm!;ld!X=4?%XoA@s!<3!$X=4?%XhF`9OroY]rrBS.NrT1Z +NsM'3 +ir9#7PQ(`I8Y,8HrsIWjb5_L60<0+\l@Ju+rrCm8rrCl+s+13\rrV`Rq7Q_/p+#_5s7cQps&8gq +$QoEKk.Z:#%L!YMbPM5ES,aUMs8VCm!;ld!X=4?%XoA@s!<3!$X=4?%XhF`9OroY]rrCXL^&S04 +^'MUE +ir9#7PlCg\T[io=!pk!drr3)0@Zp84s.')hh;eM8h1>TWs1/.2r;$?)rrS?*N;+dN-+rs$Ua^[f2\cMIPJQX9^lar8%c_&Ub8rri0?_&N1Jrr]'7 +D?0TP!JgILrs%F"s8T/Wq>C6rHt!'TXn_nq"lU@!rtar"rrqU&s8TS*rr3/`(B=CMli-nfkSO:! +@$glm!L@8RrrCm;s*t~> +ir9#7PlCg\T[io=!pk!drr3)0@Zp84s.')hh;eM8h1>TWs1/.2r;$?)rrS?*N;C6rHt!'TXn_nq"lU@!rtar"rrqU&s8TS*rr3/`(B=CMli-nfkSO:! +@$glm!L@8RrrCm;s*t~> +ir9#7PlCg\T[io=!pk!drr3)0@Zp84s.')hh;eM8h1>TWs1/.1r;!u)!g4Xaq>UEpr;Qdbe+s"L +9e;:3[@W0c[f$.3fbXW0/F]/QQ2pj_#0Ik!o"c!"Ss4V)u0C3"4k3# +!;sP3SG<*`#2pI"s/\'Qr;QqJ@K6A0q#:9si>M[q(@1u""m?d&s0qn)rrqL"s8Nl#rr3/c(]XMC +Qi@!cQ=PmQ!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcD):!<%KKh>[WS+2JokqYpNqr;QdRiVNQUXZB@K$35qEhgp +n*9OBjo5>YrrHMorr3"bAGcB2arKgKs'V2mrrJEr^]+G+8cMDLr;Qi5D?0QO!6G0>"mm3-s$j3_ +rrqd-s8Ob8rr3#b0Db\Pj"CB30B`?7"m[iAs!HJ!rrL_$MZ3\4k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcD):!<%KKh>[WS+2JokqYpNqr;QdRiVNQUXYrrHMorr3"bAGcB2arKgKs'V2mrrJEr^]+G+8cMDLr;QiDNr]' +ir9#7JcC<$S,WKEj8T,8JcD):!<%KKh>[WS+2JokqYpNqr;QdRiVNQUX=Lj[^&lH)@K$35qEhgp +YrrHMorr3"bAGcB2arKgKs'V2mrrJEr^]+G+8cMDLr;QiX^&\&E!9X:\"mm3-s$j3_ +rrqd-s8Ob8rr3#b0Db\Pj"CB30B`?7"m[iAs!HJ!rrL_$MZ3\4k5Tr~> +ir9#7JcC<$S,WKEj8T,8JcD,;!qGaUJcFU,"Ii!_8sfDS!!)rs!@.(0rrGTSqecE$r;QtGPlCa[ +lKeHL!!)rs!@HP"rrL_$r;Qit0rP$N!@HP"rrL_$_#FW:,JX8q+oD3;!QY9;D@"&Xs)iSdrt=Yg +rsEmns8T5nh#-).XS`#.iDQWSs/nrKr8:JSs8NK#rr3#l%#Y&bh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcD,;!qGdVJcFU,"Ii!_8sfDS!!)rs!@.(0rrGTYqi:aIr;QtGPlCa@ +JVa=*!!)rs!@HP"rrL_$r;Qit0rP$N!@HP"rrL_$_#FW:,JX8q+oD3;!S%2HNsO&2s)iSdrt=Yg +rsEmns8T5nh#-).XS`#.iDQWSs/nrKr8:JSs8NK#rr3#l%#Y&bh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcD,;s7-0eJcFU,"Ii!_8sfDS!!)rs!@.(0rrGTbqn<()r;QtGPlCa' +*\@ +ir9#7JcC<$S,WKEj8T,8JcD/<"8:-ppjrJ&rs&BG^]2.oqtpBn!;uj#'=0b*.AHhA!YXgKr,)M: +rVm8?4oYH]s6f1Hs8N)srrEN$rr3#l%/g,,ZSMOZrrEN$rr3#l%)DlDV)J>Q!BQtPrr<&pD?lu% +6MLN["T.fj!gH%Grr2t0rVut+rqufr!!-U.rr2t0rW!+/rr +ir9#7JcC<$S,WKEj8T,8JcD/<"8:-pq18S'rs&BG^]2.oqtpBn!;uj#'=0b*.AHhA!YXghr/Uim +rVm8?4oYH]s-SA`s8N)srrEN$rr3#l%/g,,ZSMOZrrEN$rr3#l%)DlDV)J>Q!BQtPrr<&pNsE4[ +6MLN["T.fj!gH%Grr2t0rVut+rqufr!!-U.rr2t0rW!+/rr +ir9#7JcC<$S,WKEj8T,8JcD/<"8C@#q18S'rs&BG^]2.oqtpBn!;uj#'=0b*.AHhA!YXhQ!BQtPrr<&p^'E5R +6MLN["T.fj!gH%Grr2t0rVut+rqufr!!-U.rr2t0rW!+/rr +ir9#7JcDkP!jm-]rVm)sM0=,iHFAD)rVllRj8T,8JcD/aT9 +/?JjN!ja?Tr;QfujECEY!;uiuMd#lSrs#VueG7fnVYpH*rng\Gs8T5oeG7fn +VZ6Z(pAY'moF6]X!8Zf;J,~> +ir9#7JcDkP!jm-]rVm)sM0=,iHFAD)rVllRj8T,8JcD/aT9 +/?JjN!ja?Tr;QfulBV7-!_u&Urr3!6k5G>Y!;uiuMd#lSrs#VueG7fnVYpH*rng\Gs8T5oeG7fn +VZ6Z(pAY'moF6]X!8Zf;J,~> +ir9#7JcDkP!jm-]rVm)sM0=,iHFAD)rVllRj8T,8JcD/aT9 +/?JjN!ja?Tr;Qfuo>1=Y!;uiuMd#lSrs#VueG7fnVYpH*rng\Gs8T5oeG7fn +VZ6Z(pAY'moF6]X!8Zf;J,~> +ir9#7JcDnQ"FXF5*i/f8#5Y +ir9#7JcDnQ"FXF5*i/f8#5Y&cO8T(YrrH,Yrr33's8S13hu<]SrrEN$rr3#k%K6;.hB)[prrEN$rr3#k%Di&E +Y5/+uXo/2$!<;>Lrf7A?1JNq9q#C@fUAFli!<3!"mp(_IrrFA0rr3#b,5V +ir9#7JcDnQ"FXF5*i/f8#5Y8i^AS'3rrH,Yrr33's8P)#`r?&:rrEN$rr3#k%K6;.hB)[prrEN$rr3#k%Di&E +Y5/+uXo/2$!<;Z,rk8]E7:s9^qu?[iUAFli!<3!"mp(_IrrFA0rr3#b,5V +ir9#7JcE1Y!K)[1rs$(hli3P6m/-ea].iN$s8Drth;eM8h1>Tqrr`,Te+TU;!;sM0!3Z.u!3Q2! +!!)cn#P/<&s%K0eM#;,l!<<)q!!RH9lL4`Qr;QdHg&D!PeL^\!!KV3trrFS%rr3#L/A_>e1nFRE +!MqUMrs/W)s5\?@BGO;@D?Ymjs0a0@r;R!!!<<)j1p[#Y!>t#!rrqO's8S;Vrr3/])uopTkPkJb +jr4:"AWm&m!KClPrrCm;s*t~> +ir9#7JcE1Y!K)[1rs$(hli3P6m/-ea].iN$s8Drth;eM8h1>Tqrr`,Te+TU;!;sM0!3Z.u!3Q2! +!!)cn#P/<&s%K0eU\p/S!<<)q!!RGZJY<#Cr;QdHg&D!PeL^\!!KV3trrFS%rr3#L/A_>e1nFRE +!MqUMrs/W)s6>l1L`L")Ns2?Ss0a0@r;R!!!<<)j1p[#Y!>t#!rrqO's8S;Vrr3/])uopTkPkJb +jr4:"AWm&m!KClPrrCm;s*t~> +ir9#7JcE1Y!K)[1rs$(hli3P6m/-ea].iN$s8Drth;eM8h1>Tqrr`/XfCu*@!<'S1!3Z.u!3Q2! +!!)cn#P/<&s%K0eb5AsT!<<)q!!RG(*`i:@r;QdHg&D!PeL^\!!KV3trrFS%rr3#L/A_>e1nFRE +!MqUMrs/W)s7=(@[3pY,^'2[Vs0a0@r;R!!!<<)j1p[#Y!>t#!rrqO's8S;Vrr3/])uopTkPkJb +jr4:"AWm&m!KClPrrCm;s*t~> +ir9#7JcFO*!W;cWq>pEiq#:H?B4J1Fs8Qp8rrV^.^\e$37#HQqr;QcQj8T,8JcD5>!rMKXV#LMm +n+XNq!ApAFrrJrPr;Q`sr;Qf]rr2p&_(boh[Nk7^rGD[Q!;?$sg-EHP1j.nG!s8Qr.qYq_3 +:YGNu;54*j +ir9#7JcFO*!Vl$Fm/cSIq#:H?B4J1Fs8Qp8rrV^.^\e$37#HQqr;QcQj8T,8JcD5>!rMKXV#LMm +nG']s!ApAFrrJrPr;Q`sr;Qf]rr2p&_(boh[Nk7krJq#>!;QHk#6=f(pP=Ch!;uitAWm&m!KCmn +rrG[&r;Qe/P5bI^NGHE2!k9?Kr;Qir-+NpR!!*#u"8JWS=o= +ir9#7JcFO*!VbjBl2g/Bq#:H?B4J1Fs8Qp8rrV^.^\e$37#HQqr;QcQj8T,8JcD5>!rVW\V#LMn +o(g!!!ApAFrrJrPr;Q`sr;Qf]rr2p&_(boh[Nk8'rOr?F!;lZn#6=f(n1,R>!;uitAWm&m!KCmn +rrG[&r;Qe/P5bI^NGHE2!k9?Kr;Qir-+NpR!!*#u"8g5 +ir9#7JcFR+!r1[+kh6*khY6dE$c[4#^].;Ks8VO+^AS!4cTpoLs8;lsh;eM8h1>TWs1A:4kgAV. +rrT\PqY^?pr$AlOrr<&srrtT+jS-S@UAk0!E$hDnCLK[I*m"6Y!!*#u"7tgK!;uj$dM]di],B6! +rrF)$r;QuL)8>[R):ub*!Bl_ErrJZRrVlitrVlol!W)j,>D_G@X?dC$),RL8s8N/t!!h!Qs0=9_ +0=(TW"n6CH"YR(YrrfV\#; +ir9#7JcFR+!omugkYD7SADR"[$c[4#^].;Ks8VO+^AS!4cTpoLs8;lsh;eM8h1>TWs1A:4kgAV. +rrT\PqY^?pr$AlOrr<&srrtT+jS-S@UAk0!E$hK9N.5(P-e8+o!!*#u"1Wod!;uj$dM]di],B6! +rrF)$r;QuL)8>[R):ub*!Bl_ErrJZRrVlitrVlon!W)j,G,4F'X?dC$),RL8s8N/t!!h!Qs0=9_ +0=(TW"n6CH"YR(YrrfV\#; +ir9#7JcFR+!oHg*kV*&i8D*\:$c[4#^].;Ks8VO+^AS!4cTpoLs8;lsh;eM8h1>TWs1A:4lIG16 +rrT\PqY^?pr$AlOrr<&srrtT+jS-S@UAk0!E$hQg\uC!%1ZnT7!!*#u"+MA3!;uj$dM]di],B6! +rrF)$r;QuL)8>[R):ub*!Bl_ErrJZRrVlitrVloq!W)j,S]^R(X?dC$),RL8s8N/t!!h!Qs0=9_ +0=(TW"n6CH"YR(YrrfV\#; +ir9#7MuNplI"$C@f`)!=e)o0]e*?W+$)&3a>AjK@o,>=?rrHVGJcGWI!8Z]8!8W5+JcE@^!oVJn +^Ae3sQ2:L]SNZrO!!)rs"m9,."XTi>rs5\l$3CSZ95U0qrr<&us7u`prrfYX"t[:^rrE?"qu6f* +.L%H6XT&=pOnrqrGN=>Tec,X*k5Tr~> +ir9#7MuNplI"$C@f`(uO/`o"n0:__8$)&3a>AjK@o,>=?rrHVGJcGWI!8Z]8!8W5+JcE@^!oVJn +^Ae3sQ2:L]SNZrO!!)rs"m9,."XTi>rs5\l$Ngkj@?.Virr<&us7u`prrfYX"t[:^rrE?"qu6f* +.L%H6XT&=rWqqbWQKj&$ec,X*k5Tr~> +ir9#7MuNplI"$C@f`(u@#j)g%$&eKV$)&3a>AjK@o,>=?rrHVGJcGWI!8Z]8!8W5+JcE@^!ohc! +^Ae3sQ2:L]SNZrO!!)rs"m9,."XTi>rs5\l%0R>,J\BM/rr<&us7u`prrfYX"t[:^rrE?"qu6f* +.L%H6XT&=ucMG6U_Xi?Yec,X*k5Tr~> +ir9#7MuNouAXSamf`(sAjk0[en+Zhie:1u0q2SPVs4T-brVlrO)UF!7qu6ZPj8T,8JcC<$]Dhrd +dIs+1!7C[]!:BO\!qPXKNW0!SqJH=XjFR?^rrCm;s*t~> +ir9#7MuNouAXSamf`)#i8P/, +ir9#7MuNouAXSamf`)#^-n+7-!@OuCrsR>+A$#Kd=9& +ir9#7PlCg\J"ll@!qo(3eGnV(!;uZm'ARn?T^`!]ga',q%#@=eITrrCm8rrCl+s+13^ +s8UK8rr@6?D?.HGrr`,_li)nD!2TI/!I)V9s4@8Nh<+`f~> +ir9#7PlCg\J"ll@!qo(3eGfR.hWNbsi;%#@=eITrrCm8rrCl+ +s+13^s8UK8rrA>^Nr[K"rr_/0M"co/!4_ld!LD8es4@8Nh<+`f~> +ir9#7PlCg\J"ll@!qo(3eGfR)f]^uif\62trtF16?D-ffs4em(o2T<#^S(W,@:=`eqYpQOj8T,8 +JcC<$]Dqo]Rf +ir9#7\c2^"lKRU8lLsuP"1hWQ_#F?:liLUpn$)fnK66earsQ/#=* +ir9#7\c2^"lKRU8lLsuP"1hWQ_#F?:liLUpn$)fnK66earsQ/#=* +ir9#7\c2^"lKRU8lLsuP"1hWQ_#F?:liLUpn$)fnK66earsQ/#=* +ir9#7\c2\7)X/4B)kQa&$FOJiciUKXf`(mRp$_qQiIV%)rrCm8rrCl+s.KAn +qXj]YrrW,mpR;*cjDJk#Sr`f*!hR'orVlrnlKjH/!6FtR!n#_gpP8jIl%/ltrrCm;s*t~> +ir9#7\c2\7)X/4B)kQa&$FOJiciUKXf`(mRp$_qQiIV%)rrCm8rrCl+s.KAn +qt9l[rrW,mpR;*clAq"%U6#5.!hR'orVlrFJWPfi!7gn+!o2LrpP8jIl%/ltrrCm;s*t~> +ir9#7\c2\7)X/4B)kQa&$FOJiciUKXf`(mRp$_qQiIV%)rrCm8rrCl+s.KAn +qtBu]rrW,npmV3do=hrNVN:Y2!hR'orVlr!*]f5Z!9X*k!peR,pP8jIl%/ltrrCm;s*t~> +ir9#7\c2Xmk5YL@oD\lE+6U"rr`2MhY)O#[Jp9:Q1g"7[J9b$!po4J +MuNduqecFbWq2#H`.@sPrrCm;s*t~> +ir9#7\c2Xmk5YL@oD\lE+6U"rr`2MhY)O#[Jp9DQM-+8[J9b$!g%ub +MuNe-qi:cIWq2#H`.@sPrrCm;s*t~> +ir9#7\c2Xmk5YL@oD\lE+6U"rr`2QiV.p'[Jp9QQM-+8[J9b$!]_=3 +MuNe>qn<*IX7M,I`.@sPrrCm;s*t~> +ir9#7\c2\(#O)Kp#F4u^"OV[2Xnr"r!ImLgs-EZbh;eM8h1>U"rrV<0g4B:3rrBt.L^&q)s8ViY +mu%,Gd<>M,!I't%L]Fi6s69O`h<+`f~> +ir9#7\c2\(#O)Kp#F4u^"OV[2Xnr"r!ImLgs-EZbh;eM8h1>U"rrV<0g4B:3rrBt.L^&q)s8UDr +TSiaMgm.l"!L0&CL]Fi6s69O`h<+`f~> +ir9#7\c2\(#O)Kp#F4u^"OV[2Xnr"r!ImLgs-EZbh;eM8h1>U"rrVE7h1>U6rrBt.L^&q)s8T)? + +ir9#7\c2]`b3@(Mb38U"%,>u5T_&3`lg4Z/0V*dpQN$s@j8T,8JcDJE"7X^cp4<7PrrBFrL^&q! +s8M?LqMP:UjE>EaR.#h2]Rg+JrrCm;s*t~> +ir9#7\c2]`b3@(Mb38U"%,>u5T_&3`lg4Z/0V*dpQN$s@j8T,8JcDJE"7X^cp4<7PrrBFrL^&q! +s7_>#hhqF:lBREqRdZ%4]Rg+JrrCm;s*t~> +ir9#7\c2]`b3@(Mb38U"%,>u5T_&3`lg4Z/0V*dpQN$s@j8T,8JcDJE"7aplpOW@QrrBFrL^&q! +s6qN[`esd!o>//WS*u.5]Rg+JrrCm;s*t~> +ir9#7PlCj^DLhHZrrfr$AO(fts-U$rr`5VdHZ;_[f6?Fmt_..l2UD@nqmAJjE@cp +L]HCbs6K[bh<+`f~> +ir9#7PlCj^DLhHZrrfr$AO(fts-U$rr`5VdHZ;_[f6?Fmt_..l2SPMY_iA]lBS[B +L]HCbs6K[bh<+`f~> +ir9#7PlCj^DLhHZrrfr$AO(fts-U$rr`5Xea.ke[f6?Fmt_..l2QbbEJa\so>.m& +L]HCbs6K[bh<+`f~> +ir9#7PQ(XOqYpWD`S76h!;ZBh!;V3Gr;QcQj8T,8JcDMF!r;6HJcE1Y!9*=$"ePbmlK\>)rrD9L +L]Ecms6K[bh<+`f~> +ir9#7PQ(XOqYpWD`S76h!;ZBh!;V3Gr;QcQj8T,8JcDMF!r;6HJcE1Y!9*=$"ePb_JV!9HrrD +ir9#7PQ(XOqYpWD`S76h!;ZBh!;V3Gr;QcQj8T,8JcDMF!rDBMJcE1Y!9*=$"ePbR*Zj +ir9#7JcDnQ"S%%AJFrd>"7;7YMLkg*rrCm8rrCl+s.]Moqu20H[f6?(m"bems75IHM>mR_l\GPh +JcG*:!8Zf;J,~> +ir9#7JcDnQ"S%%AJFrd>"7;7YMLkg*rrCm8rrCl+s.]Moqu20H[f6?(m"bems0.'aM>mR_l\GPh +JcG*:!8Zf;J,~> +ir9#7JcDnQ"S%%AJFrd>"7;7YMLkg*rrCm8rrCl+s.]Mor;M9I[f6?(m"bems)B*0M>mR_l\GPh +JcG*:!8Zf;J,~> +ir9#7JcE1Y!9TWs1SF6o_&0RrrD$DL]s.Fqs*MH +MZ3[;l\GPCJcG*:!8Zf;J,~> +ir9#7JcE1Y!9TWs1SF6p%J?TrrD$DL]s.FkCJH` +MZ3[;l\GPCJcG*:!8Zf;J,~> +ir9#7JcE1Y!9TWs1SI4pAk/_rrD$DL]s.Fe/g11 +MZ3[;l\GPCJcG*:!8Zf;J,~> +ir9#7JcE1Y!e=M5rVm)#5QCc#-f+e%!IJ[7s7uZph;eM8h1>TWs1SF6f@p1orrBFkL]luBn*9V) +rrD$BLk5TmrrCm;s*t~> +ir9#7JcE1Y!e=M5rVm)#5QCc#-f+e%!IJ[7s7uZph;eM8h1>TWs1SF6f@p1orrBFkL]luBTRk.A +rrD$BLk5TmrrCm;s*t~> +ir9#7JcE1Y!e=M5rVm)#5QCc#-f+e%!IJ[7s7uZph;eM8h1>TWs1SF6g>2^urrBFkL]luB +ir9#7JcFO*!<)'Xp\tuuRp1Kss8Q>Bs8V^.]`8$$.tM\L]Rg+\rrCm8rrCl+s+13arrW#De=?O= +QKj8/_uKSum#1lD_s)sWiIV$rrrCm;s*t~> +ir9#7JcFO*!W)TTq#L3artY'n>CtN-s'0LBs7@/@s8VR=JT5/3JcGZJ!8Z]8!8W5+JcEIa!r:6n +SGrSTlA,S\s5/BhMuNdpl%f>uJcG-;!8Zf;J,~> +ir9#7JcFO*!;G[L!;-$c(%IbtK%U,'>]9ZBoGG7@s6qOiEFQS3s8;lsh;eM8h1>TWs1\L7q:4,f +rrAAML]kWq`Z@1!rrBt$L]HCbs6]gdh<+`f~> +ir9#7JcFR+!Vu3HmK)hSp\troSn(rrBt$L]HCbs6]gdh<+`f~> +ir9#7JcFR+!TKa7SH>=^nFuqsm%.gHn5jB)s6^cDnD&Ob^ofmrrCm8rrCl+s+13arrV]; +h44N0L]sp\s,_fXN;imql%f>uJcG-;!8Zf;J,~> +ir9#7JcFR+!mFP=kYVCVC$,0i'^VE'MXX\^s8VL)^&S,>'5tLD*mB38rVllRj8T,8JcC<$^Ae9) +e_lttl%fMFs8P)#Wf6rX_s)sWiIV$rrrCm;s*t~> +ir9#7JcFR+!VP^>l2g/@p&>Jg+4O_=s8Va6_>jP'/,oPL;/UsbrVllRj8T,8JcD\K!WDh^rrVE3 +kah_RiTZ.%V>pSilL'W2!5n&W!9&M/mJd1Bk5Tr~> +ir9#7JcFR+!m#_?k^`eeHboCT%@A6e@<)>IocM$Ms-YD:rrGu7JcG]K!8Z]8!8W5+W;cnsq3h6a +kgAUbrrD$BL]sXTs3H7`N;imql%f>uJcG-;!8Zf;J,~> +ir9#7JcFR+!M'qe*WZq:p&>Jg+4O_=s8Va6_>jP'/,oPL;/UsbrVllRj8T,8JcD\K!WMq`rrVK9 +lCIqTiTZ.%V>pRq*_;7i!5n&W!9&M/mJd1Bk5Tr~> +ir9#7JcFR+!VbsClN-AIq#;*(Vdao*s/&6bs1^P]s8UA'nGiMUJ:[b!rrCm8rrCl+s/>r!jQ6-) +rrVE>nt#d\iTZ-uV>gJrlg">+rrBt$L]HCbs6]gdh<+`f~> +ir9#7JcFR+!nWHfk_K:qO5B[3(&4\9Gh`7q7KU)rrV9D +pmV3akhPa"rrD$BL]F:NrrS"-hi7X9_s)sWiIV$rrrCm;s*t~> +ir9#7JcFR+!k:'8kUHW]2oYRl(&4\9Gh`7q7KU)rrV?H +q3q +ir9#7JcFO*!;bjQ!;cKj"1D'MbPqMPkqRe73.CmpD?"9VgS6=YJcG]K!8Z]8!8W5+WW*(idFA&^ +rrVo`rLNrgnEG`/V>gJro]kq*rrC7,L]H[js6]gdh<+`f~> +ir9#7JcFO*!U8G(h>uHrq#:H);0L.^rt"?KK$?9(s-R['BOBMh/E)0[rVllRj8T,8JcD_L"7X^f +qjRNdp@/$OrrDQQL]F:NrrTueW/^fWbNXf_l%/m%rrCm;s*t~> +ir9#7JcFO*!SP?R_u[a,q#:H);0L.^rt"?KK$?9(s-R['BOBMh/E)0[rVllRj8T,8JcD_L"7apo +qjRNdp[\9RrrDQQL]F:NrrS3%@u^KgbNXf_l%/m%rrCm;s*t~> +ir9#7N;j%ETkn;FYl=`lWVc])iF#fgs8SF#s6+GsD:4"8r;QcQj8T,8JcDbM"8pWql@Ju?s65=> +]`.p5rp&eINrK+DlA,G$JcG*:!8Zf;J,~> +ir9#7N;j%ETkn;FYl=`lWVc])iF#fgs8SF#s6+GsD:4"8r;QcQj8T,8JcDbM"8pWql@Ju?s65=> +]`.p5pORnaNrK+DlA,G$JcG*:!8Zf;J,~> +ir9#7N;j%ETkn;FYl=`lWVc])iF#fgs8SF#s6+GsD:4"8r;QcQj8T,8JcDbM"8pd$m",2As65=> +]`.p5n/`Y1NrK+DlA,G$JcG*:!8Zf;J,~> +ir9#7PQ(XTqu6iSBsX0MXe,Omp4<8?rrCm8rrCl+s/Q)#i6gJ6s02M'V +ir9#7PQ(XTqu6iSBsX0MXe,Omp4<8?rrCm8rrCl+s/Q)#i6gJ6s02M'V +ir9#7PQ(XTqu6iSBsX0MXe,Omp4<8?rrCm8rrCl+s/Q)#j43.?s02M'V +ir9#7PlCj]EJ!u]rrII8JcD&9!8Z]8!8W5+X8`:tkM?&es02M'bNal`q#13prT`\INrK*sl\GQ" +JcG*:!8Zf;J,~> +ir9#7PlCj]EJ!u]rrII8JcD&9!8Z]8!8W5+X8`:tkM?&es02M'bNal`q#13pmt$&aNrK*sl\GQ" +JcG*:!8Zf;J,~> +ir9#7PlCj]EJ!u]rrII8JcD&9!8Z]8!8W5+X8`:ul/;Jjs02M'bNal`q#13piZ901NrK*sl\GQ" +JcG*:!8Zf;J,~> +ir9#7PQ(d7EFGd=qu6\<;1\b5rrCm8rrCl+s/Q)"p\BC?YQ"XuO6hZ&[/9k)nETY+rrMnUm>(b= +JcG'9!8Zf;J,~> +ir9#7PQ(d7EFGd=qu6\<;1\b5rrCm8rrCl+s/Q)"p\BC?YQ"XuO6hZ&[/9k)W.DaErrMnUm>(b= +JcG'9!8Zf;J,~> +ir9#7PQ(d7EFGd=qu6\<;1\b5rrCm8rrCl+s/Q)"q"fRAYQ"XuO6hZ&[/9k)@igYjrrMnUm>(b= +JcG'9!8Zf;J,~> +ir9#7OoGR1G\XM[rr3&R+M<:*QN$s@j8T,8JcC<$JcF:#!5n2[!KZaIrrW&^l](oEbO1/eO6M5q +li-t@k5Tr~> +ir9#7OoGR1G\XM[rr3&R+M<:*QN$s@j8T,8JcC<$JcF:#!5n2[!KZaIrrV)/LlME7bO1/eO6M5q +li-t@k5Tr~> +ir9#7OoGR1G\XM[rr3&R+M<:*QN$s@j8T,8JcC<$JcF:#!5n2[!KZaIrrU1]/<0Z0bO1/eO6M5q +li-t@k5Tr~> +ir9#7\c2Ylk@XgSq=O[gKHfOWrrGc!JcD#8!8Z]8!8W5+JcC<$eGfN?mYCkdq>UNalM$; +ir9#7\c2Ylk@XgSq=O[gKHfOWrrGc!JcD#8!8Z]8!8W5+JcC<$eGfN?mYCkdq>UM`J^9>U!4;3N +!7HGulMgk?k5Tr~> +ir9#7\c2Ylk@XgSq=O[gKHfOWrrGc!JcD#8!8Z]8!8W5+JcC<$eGfN?mYCkdq>ULd*ib5"!4;3N +!7HGulMgk?k5Tr~> +ir9#7\c2Y"k5kZKp\+Uh\S$$+rr3"D@Aa&*qV1oI"o733g"Z7Ps8Drth;eM8h1>TWs1nX9r:g&T +rrMVMn;%(Oq#:EilKjK0!4;9P!7HGul2Lb>k5Tr~> +ir9#7\c2Y"k5kZKp\+Uh\S$$+rr3"D@Aa&*qV1oI"o733g"Z7Ps8Drth;eM8h1>TWs1nX9r:p/V +rrMVMn;%(Oq#:EAJWPij!4;9P!7HGul2Lb>k5Tr~> +ir9#7\c2Y"k5kZKp\+Uh\S$$+rr3"D@Aa&*qV1oI"o733g"Z7Ps8Drth;eM8h1>TWs1nX9rV?>X +rrMVMn;%(Oq#:Dq*]f8[!4;9P!7HGul2Lb>k5Tr~> +ir9#7\c2^"lKRU8lL4KI"2J2Y^]+6:p23Oco(&d["OUOI9],gK"jT#+<*J:4s8Drth;eM8h1>TW +s1nX9mb[;srrMAMnq[:QpAY3\lM?J>!5nGb!KZ2js60I_h<+`f~> +ir9#7\c2^"lKRU8lL4KI"2J2Y^]+6:p23Oco(&d["OUOI9],gK"jT#+<*J:4s8Drth;eM8h1>TW +s1nX9mb[>trrMAMnq[:QpAY2UJ_uFd!5nGb!KZ2js60I_h<+`f~> +ir9#7\c2^"lKRU8lL4KI"2J2Y^]+6:p23Oco(&d["OUOI9],gK"jT#+<*J:4s8Drth;eM8h1>TW +s1nX9n)<]$rrMAMnq[:QpAY1S*la0=!5nGb!KZ2js60I_h<+`f~> +ir9#7PlCg\H^t$6"hGL@=&"UXrrL'ur;QrY2Poq=@K$3/[UoL=q18SDrrCm8rrCl+s0)G&qih$] +imI%WrrMnsonWX0bOtl:o]kn'rrMVrpkT!4_t\f_kPkP +ir9#7PlCg\H^t$6"hGL@=&"UXrrL'ur;QrY2Poq=@K$3/[UoL=q18SDrrCm8rrCl+s0)G&r0.-^ +imI%WrrMnsonWX0bOtl:^k&/:rrMVrpkT!4_t\f_kPkP +ir9#7PlCg\H^t$6"hGL@=&"UXrrL'ur;QrY2Poq=@K$3/[UoL=q18SDrrCm8rrCl+s0)G&r0.-^ +jji^`rrMnsonWX0bOtl:NZM5ZrrMVrpkT!4_t\f_kPkP +ir9#7N;j(ToBtl-n?MuqO$TlDrr31a;ZHdM*msue!c1EqJcGTH!8Z]8!8W5+Yl=dpmIukF!o;8q +PlCdCV>5oKO0nEKrr`8dlMHJ=$1QBMV4ON[][HS+s5j7\h<+`f~> +ir9#7N;j(ToBtl-n?MuqO$TlDrr31a;ZHdM*msue!c1EqJcGTH!8Z]8!8W5+Yl=dpmeE%H!o;8q +PlCdCV>5oKO0nEKrr`"OJ`hpj$1QBMV4ON[][HS+s5j7\h<+`f~> +ir9#7N;j(ToBtl-n?MuqO$TlDrr31a;ZHdM*msue!c1EqJcGTH!8Z]8!8W5+Yl=dqnG&7J!oVW$ +PlCdCV>5oKO0nEKrr_a@*n6)I$1QBMV4ON[][HS+s5j7\h<+`f~> +ir9#7JcE.X%*Wa%XT/<$Du]k0)8#nJ"H5*.@D[Tqr;QcQj8T,8JcE"T"8UEqp6>UWd?4G6nC"tG +V6.YhnG`R]lLKN+JcFg2!8Zf;J,~> +ir9#7JcE.X%*Wa%XT/<$Du]k0)8#nJ"H5*.@D[Tqr;QcQj8T,8JcE"T"8UEqp6>UWd?4G6nC"tG +V6.YhnG`R"JZs_*JcFg2!8Zf;J,~> +ir9#7JcE.X%*Wa%XT/<$Du]k0)8#nJ"H5*.@D[Tqr;QcQj8T,8JcE"T"8UR#pQY^XeWKk:nC"tG +V6.YhnG`Q>*cZc2JcFg2!8Zf;J,~> +ir9#7JcFR+!;kjM!;lKi$IO3"iE0mqs6gi=rVm#oi)_8mJcG]K!8Z]8!8W5+Z2Xm]dGU8h!r:L) +JcGNF"9%NMrIP!"s5j7\h<+`f~> +ir9#7JcFR+!V4b%dfAn2rsI/#<8gqps8VO*^&@s6p>B"!m=G<9rrCm8rrCl+s0;S*h9k/FrrW#K +h1>V$rr__@Ja\0iJcFj3!8Zf;J,~> +ir9#7JcFR+!nCmmk[Xa)ABjiJ$IO3"iE0mqs6gi=rVm#oi)_8mJcG]K!8Z]8!8W5+Z2Xm`e`)hn +!r:X1JcGNF"6(@Cidq,\s5j7\h<+`f~> +ir9#7JcFR+!;PXE!;?-d$Jg;'i,3B2s6h8Vqu6`Y%a9M(rVllRj8T,8JcE%U"6e.^r073_qXF$+ +s7cNpo'5jus+143rrCm;s*t~> +ir9#7JcFR+!TCZQ^&bk&pAYKUJk"[9D#aP(--H,b!osj8JcG]K!8Z]8!8W5+ZMt$jdFA)YrrW&d +nU^`7rrTEU^k)N:s5j7\h<+`f~> +ir9#7JcFR+!LjJZ(BFr'pAYKUJk"[9D#aP(--H,b!osj8JcG]K!8Z]8!8W5+ZMt$le_'earrW&e +o7?r9rrR0]Ne.4]s5j7\h<+`f~> +ir9#7JcFR+!Vu +ir9#7JcFR+!U[nh^B):=q#:iYG[I'=s0j`Rs.DRKq=FRb!kfc:JcG]K!8Z]8!8W5+Zi:.*j4 +ir9#7JcFR+!lHc2kSaL?/\1ZV%bl58T)/Jr1%P@;55"aCrVlr4+l\(QrVllRj8T,8JcE(V"8q97 +oR[$srr^7^/F\5jJcFm4!8Zf;J,~> +ir9#7JcFO*!;kpR!;lQk"-u6Lo`"k#pKCU`3iE")6LoW!OZAYWs8;lsh;eM8h1>U4rrW2knq$go +rrVZSpOW?qs5s=]h<+`f~> +ir9#7JcFO*!;5L;!;-'d"-u6Lo`"k#pKCU`3iE")6LoW!OZAYWs8;lsh;eM8h1>U4rrW2knq$go +rrSjEc[l+Is5s=]h<+`f~> +ir9#7JcFO*!oL)[lE(#d!8I;K"-u6Lo`"k#pKCU`3iE")6LoW!OZAYWs8;lsh;eM8h1>U4rrW2l +o7?pprrQ1AWe(2$s5s=]h<+`f~> +ir9#7JcE1Y!P$_Xrs\[aIb"Ju]:T%lG'(0Ds82frh;eM8h1>TWs+13VrrVr[m",1fs5s=]h<+`f~> +ir9#7JcE1Y!P$_Xrs\[aIb"Ju]:T%lG'(0Ds82frh;eM8h1>TWs+13VrrUMtOFdF_s5s=]h<+`f~> +ir9#7JcE1Y!P$_Xrs\[aIb"Ju]:T%lG'(0Ds82frh;eM8h1>TWs+13VrrT2A3e@<^s5s=]h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcE%U!po4HJcC<$kPkP +ir9#7JcC<$S,WKEj8T,8JcC<$JcE%U!g%uZJcC<$kPkP +ir9#7JcC<$S,WKEj8T,8JcC<$JcE%U!]_=%JcC<$kPkP +ir9#7N;j%WlbC:1JcD#8!8Z]8!8W5+JcC<$ZMt"#lL0<(JcFp5!8Zf;J,~> +ir9#7N;j%WlbC:1JcD#8!8Z]8!8W5+JcC<$ZMt!PJY7SoJcFp5!8Zf;J,~> +ir9#7N;j%WlbC:1JcD#8!8Z]8!8W5+JcC<$ZMt!+*`djlJcFp5!8Zf;J,~> +ir9#7N;j(4 +ir9#7N;j(4 +ir9#7N;j(4 +ir9#7\Gl^-q"aa\r;Z]jr;Qopq>'g^nc&mCVuQA1s7f<(JcD&9!8Z]8!8W5+mf*@^.eN]>p](?p +;u?Uq+8u3DWC.@(+'?_brrVLo!;ld!X=4?%XoA>(ol_Pc0=(QV"kuZX'4CG2rrfDP"t6UMs8VqH +s760ko]l!us+146rrCm;s*t~> +ir9#7\Gl^-q"aa\r;Z]jr;Qopq>'g^nc&mCVuQA1s7f<(JcD&9!8Z]8!8W5+mf*@^.eN]>p](?p +;u?Uq+8u3DWC.@(+'?_brrVLo!;ld!X=4?%XoA>(ol_Pc0=(QV"kuZX'4CG2rrfDP"t6UMrrN#n +JcG<@!l0AkJcC<$kl1Y=k5Tr~> +ir9#7\Gl^-q"aa\r;Z]jr;Qopq>'g^nc&mCVuQA1s7f<(JcD&9!8Z]8!8W5+mf*@^.eN]>p](?p +;u?Uq+8u3DWC.@(+'?_brrVLo!;ld!X=4?%XoA>(ol_Pc0=(QV"kuZX'4CG2rrfDP"t6UMs8VtI +s760kNZN1ks+146rrCm;s*t~> +ir9#7\c2m(5:\99/"?PUorrS?*N;k5Tr~> +ir9#7\c2m(5:\99/"?PUorrS?*N;k5Tr~> +ir9#7\c2m(5:\99/"?PUorrS?*N;k5Tr~> +ir9#7\c2^$:]fG/r6a#Fs7-*jo'5gts+147rrCm;s*t~> +ir9#7\c2^$:]fG/r6a#Fs7-*jY^s<8s+147rrCm;s*t~> +ir9#7\c2^$:]fG/r70GNs7-*jE?9U\s+147rrCm;s*t~> +ir9#7PlCjI6%._grrS3,lE(!jd\m,C;JI_urVm&D3.-%$ki2UDVCCu+rrCm8rrCl+s6osjRn?-JJJ!!S8g!rrVf>h1>Ur +rr`5bli)J8JcG$8!8Zf;J,~> +ir9#7PlCjI6%._grrS3,lE(!jd\m,C;JI_urVm&D3.-%$ki2UDVCCu+rrCm8rrCl+s6osjRn?-JJJ!!S8g!rrVf>h1>Ur +rr__@M"cK#JcG$8!8Zf;J,~> +ir9#7PlCjI6%._grrS3,lE(!jd\m,C;JI_urVm&D3.-%$ki2UDVCCu+rrCm8rrCl+s6osjRn?-JJJ!!S8g!rrViCi.:pu +rr_7%/F\5jJcG$8!8Zf;J,~> +ir9#7PlCjPC2UNXrrU.m]rh;Anr,MgcRI9AH:R].rrJj0q#:W#OOaC2aQK_Frr3kQbQ%Uq\c9Oo +acb?Ws/7O?s0'E1YiqjYq#::,qP9;3s6?T`s5pQ^s5CB5^tOsh^]+;ij8T,8JcG6>#5f^\s2#rV +qu6Wrr;Qp6ZTAC@UAk/n''o2i!!)rs!=SW#rr_NndI[;9$$CLmrt;^r#W:!.rrEN$rr3#l%&a+, +kgALCs7$$in*9Ors+148rrCm;s*t~> +ir9#7PlCjPC2UNXrrU.m]rh;Anr,MgcRI9AH:R].rrJj0q#:W#OOaC2aQK_Frr3kQbQ%Uq\c9Oo +acb?Ws/7O?s0'E1YiqjYq#::,qP9;3s6?T`s5pQ^s5CB5^tOsh^]+;ij8T,8JcG6>#5f^\s2#rV +qu6Wrr;Qp6ZTAC@UAk/n''o2i!!)rs!=SW#rr_NndI[;9$$CLmrt;^r#W:!.rrEN$rr3#l%&a+, +kgALCs7$$iTRjn0s+148rrCm;s*t~> +ir9#7PlCjPC2UNXrrU.m]rh;Anr,MgcRI9AH:R].rrJj0q#:W#OOaC2aQK_Frr3kQbQ%Uq\c9Oo +acb?Ws/7O?s0'E1YiqjYq#::,qP9;3s6?T`s5pQ^s5CB5^tOsh^]+;ij8T,8JcG6>#5f^\s2#rV +qu6Wrr;Qp6ZTAC@UAk/n''o2i!!)rs!=SW#rr_Qoeb&e>$$CLmrt;^r#W:!.rrEN$rr3#l%&a+, +lIG*Ls7$$i +ir9#7PQ(uYV/]kJq>^K98]n49%/??"Hf"dLA,lSn)9)UT"(j=(n,31mg/Dm6-)U]J/9Si/s"R>c +s8S6=q,JSrF=P!(W%Rpu4PSKq>E29NoDd*1F`8e=l6WV5W$pR'BO[&8H&+#2_#FDjj8T,8JcG6> +!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8"T.ik!!)rs#6Ol(s8LmXkktGkPX>-ErrY."p +ir9#7PQ(uXV/]kJq>^K98]n49%/??"Hf"dLA,lSn)9)UT"(j=(n,31mg/Dm6-)U]J/9Si/s"R>c +s8S6=q,JSrF=P!(W%Rpu4PSKq>E29NoDd*1F`8e=l6WV5W$pR'BO[&8H&+#2_#FDjj8T,8JcG6> +!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8"T.ik!!)rs#6Ol(s8LmXkktGkPX>-ErrY."p +ir9#7PQ(uXV/]kJq>^K98]n49%/??"Hf"dLA,lSn)9)UT"(j=(n,31mg/Dm6-)U]J/9Si/s"R>c +s8S6=q,JSrF=P!(W%Rpu4PSKq>E29NoDd*1F`8e=l6WV5W$pR'BO[&8H&+#2_#FDjj8T,8JcG6> +!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8"T.ik!!)rs#6Ol(s8M![lMUYmPX>-ErrY."p +ir9#7PQ)'";hUo2H2l/!6Bd&*f)GaCkk5&MqY:'mj["=Rrr31#D#aP*)SQ.M"Kc<<4.6'I#\[!5 +s+Muq>qc-U1/i)js-,M=<]U3[E_?A21qY3Os47UIs6V)6s&ES/s(sgsCj,ho7@O6;\X4#es/dF1 +_>aMkj8T,8JcG9?!raaPrr3&+.K98F!!)cn"ih_brtX\ps8;rqrr<&srrrl)s8W#Y%/g,,Md#lS +rrED6rr3/H3rf3fpAY'moF7_u!q5@KJcG3=!po4HJcC<$li-t@k5Tr~> +ir9#7PQ)'!;1kT.H2l/!6Bd&*f)GaCkk5&MqY:'mj["=Rrr31#D#aP*)SQ.M"Kc<<4.6'I#\[!5 +s+Muq>qc-U1/i)js-,M=<]U3[E_?A21qY3Os47UIs6V)6s&ES/s(sgsCj,ho7@O6;\X4#es/dF1 +_>aMkj8T,8JcG9?!raaPrr3&+.K98F!!)cn"ih_brtX\ps8;rqrr<&srrrl)s8W#Y%/g,,Md#lS +rrED6rr3/H3rf3fpAY'moF7_u!q5@KJcG3=!g%uZJcC<$li-t@k5Tr~> +ir9#7PQ)'!;1kT.H2l/!6Bd&*f)On+!;cKj"6DgsiVri];JcC5nJ]+?rrfH:=$)iKrs3:5s8Rd' +oNa-Js"[Mjs8SUrrrW0NXT&5$ZRPnOrr<&nrrpFbs8NhrrVufrr;Q`sr;Qs/pAb0jjp_1f!fL7Vrr3!) +[f6:1brYn)$hjT"!V?i!rrV`UqLS\8rrP2%We(2$s6K[bh<+`f~> +ir9#7P5bp^RS8p^s4!*qNet*prrVDmXQZbfXL@Tnrr_V&DR]WF#$5X@s7$rocA10&8ms-5Y@<-SBBQ8\cG&J&p^s48.Fs8P$GhA"`Es5"UKW'B?=HX,#SpQ%W?s3DM@ +_>aMkj8T,8JcG9?!3Z.u!3Q2!!!)cn"nN*$s%K0`rr<&srr<&srrFS%rr3#K/,oPMmp(_IrrFCi +rr3/p$NL,Tg&D!PeL[Tt!;h?Imf*@_lL'6'JcG'9!8Zf;J,~> +ir9#7P5bp^R7i^[s4!*qNet*prrVDnXlunhXgdcprr_V&DR]WF#$5X@s7$rocA10&8ms-5Y@<-SBBQ8\cG&J&p^s48.Fs8P$GhA"`Es5"UKW'B?=HX,#SpQ%W?s3DM@ +_>aMkj8T,8JcG9?!3Z.u!3Q2!!!)cn"nN*$s%K0`rr<&srr<&srrFS%rr3#K/,oPMmp(_IrrFCi +rr3/p$NL,Tg&D!PeL[Tt!;h?Imf*@7JXD#gJcG'9!8Zf;J,~> +ir9#7P5bp^R7i^[s4!*qNet*prrVK![-4n![(c&*rr_V&DR]WF#$5X@s7$rocA10&8ms-5Y@<-SBBQ8\cG&J&p^s48.Fs8P$GhA"`Es5"UKW'B?=HX,#SpQ%W?s3DM@ +_>aMkj8T,8JcG9?!3Z.u!3Q2!!!)cn"nN*$s%K0`rr<&srr<&srrFS%rr3#K/,oPMmp(_IrrFCi +rr3/p$NL,Tg&D!PeL[Tt!;qEJmf*?g*_:k^JcG'9!8Zf;J,~> +ir9#7OT,CILU,>-!S*_&U&gh4q#:bkV/]kJq1!&Ws62,dqu7/j&'P"Ql6"CQs6prF?YoZ?1/N)m +s-l(F<-80?OZWTF(4%@[s48+As7eLCh](eZs4\@DiC9hOfM&5`s,B5=s2c2?_>aMkj8T,8JcG9? +!ApAFrrJrPr;Q`sr;Qf]rr2p%_(boh[Nk8=rrN#tr;Q`sr;Qe/P5bIcNGJRoo/*cMrrHYhrr3/D +/-#W\P5bI^NGF+FOoGLKlM?)3JcG*:!8Zf;J,~> +ir9#7OT,CIL9]/+!S3h(UB-t6q#:bjV/]kJq1!&Ws62,dqu7/j&'P"Ql6"CQs6prF?YoZ?1/N)m +s-l(F<-80?OZWTF(4%@[s48+As7eLCh](eZs4\@DiC9hOfM&5`s,B5=s2c2?_>aMkj8T,8JcG9? +!ApAFrrJrPr;Q`sr;Qf]rr2p%_(boh[Nk8=rrN#tr;Q`sr;Qe/P5bIcNGJRoo/*cMrrHYhrr3/D +/-#W\P5bI^NGF+FOoGK=J_u%YJcG*:!8Zf;J,~> +ir9#7OT,CIL9]/+!SO@4Wr]-Kq#:bjV/]kJq1!&Ws62,dqu7/j&'P"Ql6"CQs6prF?YoZ?1/N)m +s-l(F<-80?OZWTF(4%@[s48+As7eLCh](eZs4\@DiC9hOfM&5`s,B5=s2c2?_>aMkj8T,8JcG9? +!ApAFrrJrPr;Q`sr;Qf]rr2p%_(boh[Nk8=rrN#tr;Q`sr;Qe/P5bIcNGJRoo/*cMrrHYhrr3/D +/-#W\P5bI^NGF+FOoGJ5*l`d2JcG*:!8Zf;J,~> +ir9#7JcFR+!TL*@WWB*Tq#;);;hUo2H-@;Ws)C^3h95ijs8SH@mJd+k?t009Gt.X4C&IudCet*2 +D)h>hEW?'#3WH'2s'J+mg(i<@pb\B<96pR;A6/a1?UL1[>>qI"N'-t:a; +ir9#7JcFR+!op;\kGnW`h>%!b[8DRN5^CQodf4;[s4tluo`+rY1%"u?#[h-As*7*1=D@^512Kbd +s(sak;K;a:O?*??0)o9Fs4S4@s7eFaMkj8T,8JcG<@ +!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EHP1j.nG!r;Q`sr;R,P)8>[R);"ogD4g\)&(VPt +o$9(\s8ULb^@JlRf7EsarrTueW.Fu"s6Tach<+`f~> +ir9#7JcFR+!p-_nkHb2oi;!aMkj8T,8JcG<@ +!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EHP1j.nG!r;Q`sr;R,P)8>[R);"ogD4g\)&(VPt +o$9(\s8ULb^@JlRf7EsarrS3%@tFZ2s6Tach<+`f~> +ir9#7JcFO*!:]+=pAYfuRS8p^s+s*Y;T\r[3::6qA37L'rs6n+>&,S%s&Ee2s"`7VW@IT*.rN]Lf`1_&QiFlO@Uh+9s8R`ch>`9md/T"cqZ"VPjMCirh;eM8h1>UsrrG9JqYpSe +4oPB\!;uj#k?Jl.-(t29$*6E("W:.>rr<#p!<3!$ZRQ/1\GlL.!rDs&e,TH]1']MHrVm#,.L%H6 +JcCi3"9.WOrIP!"s6]gdh<+`f~> +ir9#7JcFO*!:]+=pAYfuR7i^[s+s*Y;T\r[3::6qA37L'rs6n+>&,S%s&Ee2s"`7VW@IT*.rN]Lf`1_&QiFlO@Uh+9s8R`ch>`9md/T"cqZ"VPjMCirh;eM8h1>UsrrG9JqYpSe +4oPB\!;uj#k?Jl.-(t29$*6E("W:.>rr<#p!<3!$ZRQ/1\GlL.!rDs&e,TH]1']MHrVm#,.L%H6 +JcCi3"8@V&mt(Lis6]gdh<+`f~> +ir9#7JcFO*!:f4@!:fd_'D.\cP/@6U6YfTAs)U0f@W>p?^&@s:c8/X>.DPm_C&IudfdTsW5!/R; +EW?'"3<,s-p$!uEckb:6pbS9:_(&o(0[0RsKG32ALc`u`M`^e8a;3jQrrCm8rrCl+s760j4dGmD +!M)CPrr<&srrqRj)$M=Zr;R))5nF2;:p0fts7u`prrfYX"t[:`rr<,t!!h!Qs1L/m0YRGb"LBQ^ +/@^92OT,FP.j!]$s+14;rrCm;s*t~> +ir9#7JcE%U&F,%Vs8Tm7qZ$TQci;+WU?;@Q#P+aai;`i$dJNqcfUU+D_uIm/s8Uoms5^rjs4s[7 +](5n$_;G:mlD(*!8Z]8!8W5+JcC<$XT&@mlLKN+JcG-;!8Zf; +J,~> +ir9#7JcE%U&F,"Ts8Tm7qZ$TQci;+WU?;@Q#P+aai;`i$dJNqcfUU+D_uIm/s8Uoms5^rjs4s[7 +](5n$_;G:mlD(*!8Z]8!8W5+JcC<$XT&@+JZs_*JcG-;!8Zf; +J,~> +ir9#7JcE%U&F,"Ts8Tm7qZ$TQci;+WU?;@Q#P+aai;`i$dJNqcfUU+D_uIm/s8Uoms5^rjs4s[7 +](5n$_;G:mlD(*!8Z]8!8W5+JcC<$XT&?A*cZc2JcG-;!8Zf; +J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcDhO"9%NMrdk*#s6fmeh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcDhO"7LelpOW?qs6fmeh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcDhO"6(@Cn:CUjs6fmeh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEmm"mP$be)KkKrrW2srdk+7rrV]ToR[$ns6fmeh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEmm"mP$be)KkKrrW2srdk+7rrT-M^k)N:s6fmeh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcEmm"mP$be)KkKrrW2trdk+7rrQ[ONe.4]s6fmeh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcF!p!o^PJqhP +ir9#7JcC<$S,WKEj8T,8JcF!p!o^PJqhP +ir9#7JcC<$S,WKEj8T,8JcF!p!o^PJqhP +ir9#7JcC<$mJd=\qZ$9^[/U-^j8T,8JcF'r!V!5bL]NRTLAq>:dHH/]l2LhQlM#l0JcG3=!8Zf; +J,~> +ir9#7JcC<$mJd=\qZ$9^[/U-^j8T,8JcF'r!V!5bL]NRTLAq>:dHH/]l2LgPJ^8oIJcG3=!8Zf; +J,~> +ir9#7JcC<$mJd=\qZ$9^[/U-^j8T,8JcF'r!V!5bL]NRTLAq>=e`q_cl2LfT*iaekJcG3=!8Zf; +J,~> +ir9#7JcE1Y"n-eOB4Zk]rrVnFe_C*,6)=O"DRBEDh;eM8h1>UQrrMAFo8!FEpk\qOh9khFs69Ob +pZh*rs+14=rrCm;s*t~> +ir9#7JcE1Y"n-eOB4Zk]rrVnFe_C*,6)=O"DRBEDh;eM8h1>UQrrMAFo8!FEpk\qOh9khFs69Ob +c[h1/s+14=rrCm;s*t~> +ir9#7JcE1Y"n-eOB4Zk]rrVnFe_C*,6)=O"DRBEDh;eM8h1>UQrrMAFo8!FEpk\qOi77INs69Ob +WZF3Ps+14=rrCm;s*t~> +ir9#7JcE1Y"lBMrH$>M9rrVO=[H@JiaN+)U"=]c=?X0u +ir9#7JcE1Y"lBMrH$>M9rrVO=[H@JiaN+)U"=]c=?X0u +ir9#7JcE1Y"lBMrH$>M9rrVO=[H@JiaN+)U"=]c=?X0u +ir9#7JcE1Y!oFjYrr3#tl2L\fp$VhMs5DH'rVmSid.mY@p&4O?s7-!doDe()rVu'3r;RJgdJEnC +o_nU6n,NFU3bRXQs5hSirr30TS,Zr+r9jRa!W28rrrCm8rrCl+s3goJn;m$o!2bYR!r:6qJcFp5 +!qtpJJcC<$nG`LEk5Tr~> +ir9#7JcE1Y!oFjYrr3#tl2L\fp$VhMs5DH'rVmSid.mY@p&4O?s7-!doDe()rVu'3r;RJgdJEnC +o_nU6n,NFU3bRXQs5hSirr30TS,Zr+r9jRa!W28rrrCm8rrCl+s3goJn;m$o!2bYR!r:6qJcFp5 +!lokbJcC<$nG`LEk5Tr~> +ir9#7JcE1Y!oFjYrr3#tl2L\fp$VhMs5DH'rVmSid.mY@p&4O?s7-!doDe()rVu'3r;RJgdJEnC +o_nU6n,NFU3bRXQs5hSirr30TS,Zr+r9jRa!W28rrrCm8rrCl+s3goJn;m$o!2bYR!rCI$JcFp5 +!h:<4JcC<$nG`LEk5Tr~> +ir9#7JcE1Y!oFjRrr5al>B9c51:Za=JOqXQh#ID(3D;E]s-$nS<;f"ks&O/3.9!E@-;O76rc17p +38X[b?sl)>\,V-p,#7I;5>3Gks8O^@s'fR2.EMPhEbi;e!8Z]8!8W5+df0(bcMuNkRjm%Es +kPkY`lg"@us+14?rrCm;s*t~> +ir9#7JcE1Y!oFjRrr5al>B9c51:Za=JOqXQh#ID(3D;E]s-$nS<;f"ks&O/3.9!E@-;O76rc17p +38X[b?sl)>\,V-p,#7I;5>3Gks8O^@s'fR2.EMPhEbi;e!8Z]8!8W5+df0(bcMuNkRjm%Es +kPkYYLk4`?s+14?rrCm;s*t~> +ir9#7JcE1Y!oFjRrr5al>B9c51:Za=JOqXQh#ID(3D;E]s-$nS<;f"ks&O/3.9!E@-;O76rc17p +38X[b?sl)>\,V-p,#7I;5>3Gks8O^@s'fR2.EMPhEbi;e!8Z]8!8W5+df0(bcMuNkSkNmd" +kPkYR.j!2ks+14?rrCm;s*t~> +ir9#7JcE1Y<8eEK6U$S2f+H&@ +ir9#7JcE1Y<8eEK6U$S2f+H&@ +ir9#7JcE1Y<8eEK6U$S2f+H&@ +ir9#7JcFR+!:An3!:BR]5N!38VkhK8s.^;jnGh\ccN!pk%IRLiQ'#nps,f&9s8!tDs%8=Os%n=I +s&l\GPa +JcC<$mf*CflK\>!s+14@rrCm;s*t~> +ir9#7JcFR+!:f1l\GPa +JcC<$mf*CXJV!9@s+14@rrCm;s*t~> +ir9#7JcFR+!;GUJ!;H9g5N!38VkhK8s.^;jnGh\ccN!pk%IRLiQ'#nps,f&9s8!tDs%8=Os%n=I +s&l\GPa +JcC<$mf*CK*Zj +ir9#7JcFR+!2ek9!2fPk!oFjWr;TF@!(d.ikSi(Qs5OgV:J6=jK:;h"4obQY,Hq,?P5kP]M#[K\ +B)abfK7JWHs+E]oEs$qG9s*65kSJL;d/t;lM@/p'M\7BfprrCm8rrCl+s4%&KnEPf0Sq6om +s6]gfo'5jus+14@rrCm;s*t~> +ir9#7JcFR+!4q9g!4qt*!oFjWr;TF@!(d.ikSi(Qs5OgV:J6=jK:;h"4obQY,Hq,?P5kP]M#[K\ +B)abfK7JWHs+E]oEs$qG9s*65kSJL;d/t;lM@/p'M\7BfprrCm8rrCl+s4%&KnEPf0Sq6om +s6]gfY^sT@s+14@rrCm;s*t~> +ir9#7JcFR+!8$>U!8%#G!oFjWr;TF@!(d.ikSi(Qs5OgV:J6=jK:;h"4obQY,Hq,?P5kP]M#[K\ +B)abfK7JWHs+E]oEs$qG9s*65kSJL;d/t;lM@/p'M\7BfprrCm8rrCl+s4%&KnEPf0Sq6om +s6]gfE?:-ks+14@rrCm;s*t~> +ir9#7JcFR+!2ek9!1Wc`!oFjZrVmE(30>kYs6(!%s8S]4r+B%-rtLDRs8Vp?YQ%7Xs8Q#Qs8Q;9 +s&`t4ruH\Vs8U"Umf,Y%s7Qu>s5+FLs"9f@@UT69Jj29I])Mcdj8T,8JcF7"!7L+fJcC<$mJd:b +lKeG#s+14ArrCm;s*t~> +ir9#7JcFR+!4q9g!3u>!!oFjZrVmE(30>kYs6(!%s8S]4r+B%-rtLDRs8Vp?YQ%7Xs8Q#Qs8Q;9 +s&`t4ruH\Vs8U"Umf,Y%s7Qu>s5+FLs"9f@@UT69Jj29I])Mcdj8T,8JcF7"!7L+fJcC<$mJd:G +JVa&Os+14ArrCm;s*t~> +ir9#7JcFR+!8$>U!7LZB!oFjZrVmE(30>kYs6(!%s8S]4r+B%-rtLDRs8Vp?YQ%7Xs8Q#Qs8Q;9 +s&`t4ruH\Vs8U"Umf,Y%s7Qu>s5+FLs"9f@@UT69Jj29I])Mcdj8T,8JcF7"!7L+fJcC<$mJd:. +*\?f3s+14ArrCm;s*t~> +ir9#7JcFR+"1XtkR-9qshZI5,EI[Xq4o`,"eF=/3R>VWFs4ec(UkQ5VKeNK+qA-+25`5UA +8V$j@;-j4Q)J5dr^AiL:s8TkCmJh/HQM!CFYZq@erum[-=]bY'jpOnorrCm8rrCl+s4%&K_s)sW +iIV#[s6]gfn*9Uts+14ArrCm;s*t~> +ir9#7JcFR+!Q_\2Y5lK8s&._V?ZU4:ok?Sh]*QpV&ilA<&=WXS+^Usu[Jtq6s8Vp2WrG>As8PZ@ +s8Pr%s4/*#Uk-8[H8Ya&^^TW1E?1A<4^5-q"l0,$Q2augs8V3h9tC9(h;eM8h1>UUrrBt$L]HCb +s+14;rrSjEa+=8As7?6jh<+`f~> +ir9#7JcFR+!T2Dhd/_tss&._V?ZU4:ok?Sh]*QpV&ilA<&=WXS+^Usu[Jtq6s8Vp2WrG>As8PZ@ +s8Pr%s4/*#Uk-8[H8Ya&^^TW1E?1A<4^5-q"l0,$Q2augs8V3h9tC9(h;eM8h1>UUrrBt$L]HCb +s+14;rrQ1AS:U]ks7?6jh<+`f~> +ir9#7JcE1Y'(V*3H[:P8OPg* +ir9#7JcE1Y'(V*3H[:P8OPg* +ir9#7JcE1Y'(V*3H[:P8OPg* +ir9#7JcD_L!p:aON7C`?th;eM8h1>UUrrAn[L]HCorrE"Ks5 +ir9#7JcD_L!p:aON7C`?th;eM8h1>UUrrAn[L]HCorrE"Ks5 +ir9#7JcD_L!p:aON7C`?th;eM8h1>UUrrAn[L]HCorrE"Ks5 +ir9#7JcD_L!pCWP_Z'[D,2p'3!8Z]8!8W5+eGfNdl%f>uNrK1Mo_j@@ir9)SlL0<(JcGBB!8Zf; +J,~> +ir9#7JcD_L!pCWP_Z'[D,2p'3!8Z]8!8W5+eGfNdl%f>uNrK1Np&0IAir9)+JY7SoJcGBB!8Zf; +J,~> +ir9#7JcD_L!pCWP_Z'[D,2p'3!8Z]8!8W5+eGfNdl%f>uNrK1PpAKRBir9([*`djlJcGBB!8Zf; +J,~> +ir9#7JcDeN"O>s&g%W\i!T_H#rrKat\,QHaj8T,8JcF7"!6aV_!;MWT!rUHsJcF^/"9.WOqLSZt +s7QBlh<+`f~> +ir9#7JcDeN"O>s&g%W\i!T_H#rrKat\,QHaj8T,8JcF7"!6aV_!;MWT!rUHsJcF^/"8@V&hgtfY +s7QBlh<+`f~> +ir9#7JcDeN"O>s&g%W\i!T_H#rrKat\,QHaj8T,8JcF7"!6aV_!;MWT!rUU%JcF^/"7Rf^`e"/@ +s7QBlh<+`f~> +ir9#7JcDeN!BG_frrT8nq +ir9#7JcDeN!BG_frrT8nq +ir9#7JcDeN!BG_frrT8nq +ir9#7JcDeN!Bl)2rrLnrkl1_#G5L_-!L,@BrrCm8rrCl+s3puJQKs>,_mo^Jp+#_5s7cQps&8gq +!$D1>#,t!'#9R'kqYpn`!9O7\oPkuY-COi4"KX$V.' +ir9#7JcDeN!Bl)2rrLnrkl1_#G5L_-!L,@BrrCm8rrCl+s3puJQKs>,_mo^Jp+#_5s7cQps&8gq +!$D1>#,t!'#9R'kqYpn`!9O7\oPkuY-COi4"KX$V.' +ir9#7JcDeN!Bl)2rrLnrkl1_#G5L_-!L,@BrrCm8rrCl+s3puJQKs>,_mo^Jp+#_5s7cQps&8gq +!$D1>#,t!'#9R'kqYpna!9jI_oPkuY-COi4"KX$V.' +ir9#7JcDnQ0X?nh6\PL>ntDH-s64\:XPo$R'&V=ace +"6H#EmJd+gd$(l#26QrZh;eM8h1>UTrrC7.L]HqSrrS?*N; +ir9#7JcDnQ0X?nh6\PL>ntDH-s64\:XPo$R'&V=ace +"6H#EmJd+gd$(l#26QrZh;eM8h1>UTrrC7.L]HqSrrS?*N; +ir9#7JcDnQ0X?nh6\PL>ntDH-s64\:XPo$R'&V=ace +"6H#EmJd+gd$(l#26QrZh;eM8h1>UTrrC7.L]HqSrrS?*N; +ir9#7JcDtS62k:>EEa'8s5uFPE[B#^6P!P7s(XoG.tmr*.6gT*83UEV.s5#e+QNL2*<4J/ +ir9#7JcDtS62k:>EEa'8s5uFPE[B#^6P!P7s(XoG.tmr*.6gT*83UEV.s5#e+QNL2*<4J/ +ir9#7JcDtS62k:>EEa'8s5uFPE[B#^6P!P7s(XoG.tmr*.6gT*83UEV.s5#e+QNL2*<4J/ +ir9#7JcDtS6*V!as7[Ihs'faCs*[N>\L.@V\hF*`f,=/$!P&104\PhT.S]sC/;X>9+91'uYQ*u" +ZN!"Zs8P]Ap_TS&s'mgerrCm8rrCl+s3goIiU2L&T(ohq"Ii!_8sfDS!!)rs!@.(0rrGTmp&>,= +PkP1RrrqF8s8OG"rr3/R.f]N0bkh>?-JJJ!!S8fQrrVZSoR[$ns7cNnh<+`f~> +ir9#7JcDtS6*V!as7[Ihs'faCs*[N>\L.@V\hF*`f,=/$!P&104\PhT.S]sC/;X>9+91'uYQ*u" +ZN!"Zs8P]Ap_TS&s'mgerrCm8rrCl+s3goIiU2L&T(ohq"Ii!_8sfDS!!)rs!@.(0rrGTmp&>,= +PkP1RrrqF8s8OG"rr3/R.f]N0bkh>?-JJJ!!S8fQrrSjE^k)N:s7cNnh<+`f~> +ir9#7JcDtS6*V!as7[Ihs'faCs*[N>\L.@V\hF*`f,=/$!P&104\PhT.S]sC/;X>9+91'uYQ*u" +ZN!"Zs8P]Ap_TS&s'mgerrCm8rrCl+s3goIiU2L&T(ohq"Ii!_8sfDS!!)rs!@.(0rrGTmp&>,= +PkY7SrrqF8s8OG"rr3/R.f]N0bkh>?-JJJ!!S8fQrrQ1ANe.4]s7cNnh<+`f~> +ir9#7JcDtS!HLj4s#`T$s"coH>rsnCZ6]>IHQZa$ +SGO+">[8djg(a#Us-GOErrCm8rrCl+s3^iHddW%nO6O1S#5f^\s2#rVqu6Wrr;Qp6ZTAC@UAk/n +''o8k"M[,!rrDoq#2rIYs8NK#rr3;t%0->?[58.Hd/O%G$hjT"!VHkQrrW&^m",1fs7cNnh<+`f~> +ir9#7JcDtS!HLj4s#`T$s"coH>rsnCZ6]>IHQZa$ +SGO+">[8djg(a#Us-GOErrCm8rrCl+s3^iHddW%nO6O1S#5f^\s2#rVqu6Wrr;Qp6ZTAC@UAk/n +''o8k"M[,!rrDoq#2rIYs8NK#rr3;t%0->?[58.Hd/O%G$hjT"!VHkQrrV)/OFdF_s7cNnh<+`f~> +ir9#7JcDtS!HLj4s#`T$s"coH>rsnCZ6]>IHQZa$ +SGO+">[8djg(a#Us-GOErrCm8rrCl+s3^iHddW%nO6O1S#5f^\s2#rVqu6Wrr;Qp6ZTAC@UAk/n +''o8k"M[,!rrDoq#2rIYs8NK#rr3;t%0->?[58.Hd/O%G$hjT"!VHkQrrU1]3e@<^s7cNnh<+`f~> +ir9#7JcDtS!HCg4s#`N$s!iZ9]YW2!YU05IEBh@R]up)g)XdY*6&kpE8V7!B;/uWG+TL(1jo>?7 +TDBG#]tD8BbnT^Js-GOErrCm8rrCl+s3UcGddi1pQKbmY!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8 +"T.rn"n!Yfs8N)rs8N'&A,ZH-!r`,u%fHM0rrY."p +ir9#7JcDtS!HCg4s#`N$s!iZ9]YW2!YU05IEBh@R]up)g)XdY*6&kpE8V7!B;/uWG+TL(1jo>?7 +TDBG#]tD8BbnT^Js-GOErrCm8rrCl+s3UcGddi1pQKbmY!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8 +"T.rn"n!Yfs8N)rs8N'&A,ZH-!r`,u%fHM0rrY."p +ir9#7JcDtS!HCg4s#`N$s!iZ9]YW2!YU05IEBh@R]up)g)XdY*6&kpE8V7!B;/uWG+TL(1jo>?7 +TDBG#]tD8BbnT^Js-GOErrCm8rrCl+s3UcGddi1pQKbmY!Mq^RrrG0Tqu6Wrr;R*dNp-,I-(P#8 +"T.rn"n!Yfs8N)rs8N'&A,ZH-!r`,u%fHM0rrY."p +ir9#7JcDtS$*"Bks6LDOs&i:urs#YFrr9ADlM^`&_AVeAs$2PCs%%_@s%m\7\0(b'(?PSr0:`%u +LAh,WlOfNas&^iOYQ"UYj8T,8JcF'r!U5pCL]OmX\,QO//?JjN!ja?Tr;Q`sp\tE;+92?Uk5G>Y +!<<'"fGlL'6'JcGNF!8Zf; +J,~> +ir9#7JcDtS$*"Bks6LDOs&i:urs#YFrr9ADlM^`&_AVeAs$2PCs%%_@s%m\7\0(b'(?PSr0:`%u +LAh,WlOfNas&^iOYQ"UYj8T,8JcF'r!U5pCL]OmX\,QO//?JjN!ja?Tr;Q`sp\tE;+92?Uk5G>Y +!<<'"etJXD#gJcGNF!8Zf; +J,~> +ir9#7JcDtS$*"Bks6LDOs&i:urs#YFrr9ADlM^`&_AVeAs$2PCs%%_@s%m\7\0(b'(?PSr0:`%u +LAh,WlOfNas&^iOYQ"UYj8T,8JcF'r!U5pCL]OmX\,QO//?JjN!ja?Tr;Q`sp\tE;+92?Uk5G>Y +!<<'"eO*_:k^JcGNF!8Zf; +J,~> +ir9#7JcDtS6Msq,?ro7,s5c+#B1oc7i"eGcs(iuh'5E,XB7tCX>:N-9B*WOb+jo>?4 +RfCGT9k?uMs.U-,=AL^KYQ"UYj8T,8JcF!p!RdS8L]OmA[Jp60q>^Mtr;Q`sp\tEg$NL-"UAFlk +!<<)q!!%*;rrqj6s8OP$rr3/P/H>_qc2R_Hoa:a!.G=_#!S&`Prr`;elM?)3JcGQG!8Zf;J,~> +ir9#7JcDtS6Msq,?ro7,s5c+#B1oc7i"eGcs(iuh'5E,XB7tCX>:N-9B*WOb+jo>?4 +RfCGT9k?uMs.U-,=AL^KYQ"UYj8T,8JcF!p!RdS8L]OmA[Jp60q>^Mtr;Q`sp\tEg$NL-"UAFlk +!<<)q!!%*;rrqj6s8OP$rr3/P/H>_qc2R_Hoa:a!.G=_#!S&`Prr`:WJ_u%YJcGQG!8Zf;J,~> +ir9#7JcDtS6Msq,?ro7,s5c+#B1oc7i"eGcs(iuh'5E,XB7tCX>:N-9B*WOb+jo>?4 +RfCGT9k?uMs.U-,=AL^KYQ"UYj8T,8JcF!p!RdS8L]OmA[Jp60q>^Mtr;Q`sp\tEg$NL-"UAFlk +!<<)q!!%*;rrqj6s8OP$rr3/P/H>_qc2R_Hoa:a!.G=_#!S&`Prr`9O*l`d2JcGQG!8Zf;J,~> +ir9#7JcDnQ5e*-UHNk5Tr~> +ir9#7JcDnQ5e*-UHNk5Tr~> +ir9#7JcDnQ5e*-UHNk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$pAY3(+8Yp8!rO@SrVlitr;Qs`Eocu5.&-_@#]M,kmJ>k=1.D'> +!!*#u+]O +ir9#7JcC<$S,WKEj8T,8JcC<$pAY3(+8Yp8!rO@SrVlitr;Qs`Eocu5.&-_@#]M,kmJ>k=1.D'> +!!*#u+]O +ir9#7JcC<$S,WKEj8T,8JcC<$pAY3(+8Yp8!rO@SrVlitr;Qs`Eocu5.&-_@#]M,kmJ>k=1.D'> +!!*#u+]O +ir9#7JcC<$S,WKEj8T,8JcC<$pAY.VQ2:L]SNZrO!!)rs"m9,."XTi>rs,Vk&-WqJY5\:t!!*#u +"n6CH"YR(YrrfYX"t[:_rrg"j#;EjirrfYX"t[98s8N$"o'5dss+14HrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcC<$pAY.VQ2:L]SNZrO!!)rs"m9,."XTi>rs,Vk&-WqJY5\:t!!*#u +"n6CH"YR(YrrfYX"t[:_rrg"j#;EjirrfYX"t[98s8N$"Y^s$0s+14HrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcC<$pAY.VQ2:L]SNZrO!!)rs"m9,."XTi>rs,Vk&-WqJY5\:t!!*#u +"n6CH"YR(YrrfYX"t[:_rrg"j#;EjirrfYX"t[98s8N$"E?9+Ns+14HrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcDAB"9%NMrdk*#s82frh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcDAB"7LelpOW?qs82frh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcDAB"6(@Cn:CUjs82frh<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcD>A!q>LIJcC<$qu6ZPk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcD>A!iU[cJcC<$qu6ZPk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$JcD>A!b3:3JcC<$qu6ZPk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$c2Rn)io9`as472OqWdBts+14IrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcC<$c2Rn)io9`as472OhgpT7s+14IrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcC<$c2Rn)io9`as472O`Z?[^s+14IrrCm;s*t~> +ir9#7JcC<$S,WKEj8T,8JcC<$dJj:;`1Hm_!gg=RJcFC&!q,@JJcC<$r;QcQk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$dJj:;`1Hm_!gg=RJcFC&!gnPbJcC<$r;QcQk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$dJj:;`1Hm_!gg=RJcFC&!_4<3JcC<$r;QcQk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$e,KID]_7-^VWi[3gA_6KlKj*%JcGZJ!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$e,KID]_7-^VWi[3gA_6#JWPH_JcGZJ!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$e,KID]_7-^VWi[3gA_5S*]elPJcGZJ!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$eGfR6O7S/-bCT]IrrVQPq18Qss8Drth<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$eGfR6O7S/-bCT]IrrS:5f7EsQs8Drth<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$eGfR6O7S/-bCT]IrrP2%\:O[2s8Drth<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$ec,[7O7A#+[=SA4rrVoZmt(Lis8Drth<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$ec,[7O7A#+[=SA4rrU5lTRm,os8Drth<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$ec,[7O7A#+[=SA4rrS]3 +ir9#7JcC<$S,WKEj8T,8JcC<$f)Gd8O7.l)bCT]Krr`8dlMH/4JcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$f)Gd8O7.l)bCT]Krr`"OJ`hUaJcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$f)Gd8O7.l)bCT]Krr_a@*n5c@JcG`L!8Zf;J,~> +ir9#7JcC<$S,WKEj8T,8JcC<$f)G`Am>(c,JcFO*!qY^JJcC<$rr2uSk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$f)G`Am>(c,JcFO*!k +ir9#7JcC<$S,WKEj8T,8JcC<$f)G`Am>(c,JcFO*!e282JcC<$rr2uSk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$fDbj!m"bY=JcFO*"9%NMrIP!"s8W*!h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$fDbj!m"bY=JcFO*"7Lelmt(Lis8W*!h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$fDbj!m"bY=JcFO*"6(@Cidq,\s8W*!h<+`f~> +ir9#7JcC<$S,WKEj8T,8JcC<$fDbi:l\GQ*JcFO*!qPXKJcC<$s8N)Tk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$fDbi:l\GQ*JcFO*!jI6kJcC<$s8N)Tk5Tr~> +ir9#7JcC<$S,WKEj8T,8JcC<$fDbi:l\GQ*JcFO*!c]9AJcC<$s8N)Tk5Tr~> +ir=ScJ_caMj8T,8JcC<$f`(s9lA,GQJcFO*"8hBLrdk*#rrN/Uk5Tr~> +ir=ScJ_caMj8T,8JcC<$f`(s9lA,GQJcFO*"6Y5kpOW?qrrN/Uk5Tr~> +ir=ScJ_caMj8T,8JcC<$f`(s9lA,GQJcFO*"4SACn:CUjrrN/Uk5Tr~> +JcC<$JcFO*!8W5+JcFC&!5n)X!1ncAg]%?DlLof/Jc>cNh<+`f~> +JcC<$JcFO*!8W5+JcFC&!5n)X!1ncAg]%>JJ]E?AJc>cNh<+`f~> +JcC<$JcFO*!8W5+JcFC&!5n)X!1ncAg]%=T*h7f]Jc>cNh<+`f~> +JcC<$JcFO*!8W5+JcFC&!2\q9JcFL)!r;-JJcC<$!WV! +JcC<$JcFO*!8W5+JcFC&!2\q9JcFL)!nW!bJcC<$!WV! +JcC<$JcFO*!8W5+JcFC&!2\q9JcFL)!k9:4JcC<$!WV! +JcC<$JcFO*!8W5+JcFC&!2\q9!9o(7g]%?AlM#l0Jc>`+k5Tr~> +JcC<$JcFO*!8W5+JcFC&!2\q9!9o(7g]%>:J^8oIJc>`+k5Tr~> +JcC<$JcFO*!8W5+JcFC&!2\q9!9o(7g]%=8*iaekJc>`+k5Tr~> +JcC<$JcFO*!8W5+JcFC&!2\q9!9&M/g]%?LlL0<(Jc>`+k5Tr~> +JcC<$JcFO*!8W5+JcFC&!2\q9!9&M/g]%?$JY7SoJc>`+k5Tr~> +JcC<$JcFO*!8W5+JcFC&!2\q9!9&M/g]%>T*`djlJc>`+k5Tr~> +JcC<$JcFO*!8W5+JcFC&!2\q9JcFI("9.WOqLSZurrCm;s*t~> +JcC<$JcFO*!8W5+JcFC&!2\q9JcFI("8@V&hgtfZrrCm;s*t~> +JcC<$JcFO*!8W5+JcFC&!2\q9JcFI("7Rf^`e"/ArrCm;s*t~> +JcC<$JcFO*!8W5+JcFC&!4;!HJcG?A!qn,9rVuWm!WQ*r!"0nKs7GTL6kT_H=NgR@!Ls/hrrr%7 ++9s6]rVm#41C,hKrVlrb?i^*("KX$V.'8(#[Jp6_k5Tr~> +JcC<$JcFO*!8W5+JcFC&!4;!HJcG?A!qn,9rVuWm!WQ*r!"0nKs1j2-6kT_H=NgR@!Ls/hrrr%7 ++9s6]rVm#41C,hKrVlrb?i^*("KX$V.'8(#[Jp6_k5Tr~> +JcC<$JcFO*!8W5+JcFC&!4;!HJcG?A!qn,9rVuWm!WQ*r!"0nKs,J-m6kT_H=NgR@!Ls/hrrr%7 ++9s6]rVm#41C,hKrVlrb?i^*("KX$V.'8(#[Jp6_k5Tr~> +JcC<$JcFO*!8W5+JcFC&!7L.g!2Y8HoD\lT+,p$q!!)rs!CP?4rsA[22SJ_Re<^`Tr;QiO(BFI7 +'iL+]qUe?+s8Srqg@s +JcC<$JcFO*!8W5+JcFC&!7L.g!2Y8HoD\lT+,p$q!!)rs!CP?4rsAEU*jYD/e<^`Tr;QiO(BFI7 +'iL+]qUe?+s8Srqg@s +JcC<$JcFO*!8W5+JcFC&!7L.g!2Y8HoD\lT+,p$q!!)rs!CP?4rsA0'#H@=de<^`Tr;QiO(BFI7 +'iL+]qUe?+s8Srqg@s +JcC<$JcFO*!8W5+JcFC&!:]90!7HGuo`#'j+2JokqYpNqr;QdRiVNQVX>/f,rVlnG@K$3.qEhgp +rr3#.qu6U!jVImr(@1u"#O!!(s&%nX!;uit@$glm!L@8Is0hq-h<+`f~> +JcC<$JcFO*!8W5+JcFC&!:]90!7HGuo`#'j+2JokqYpNqr;QdRiVNQVX +JcC<$JcFO*!8W5+JcFC&!:]90!7HGuo`#'j+2JokqYpNqr;QdRiVNQVX;2grrVlnG@K$3.qEhgp +rr3#.qu6U!jVImr(@1u"#O!!(s&%nX!;uit@$glm!L@8Is0hq-h<+`f~> +JcC<$JcFO*!8W5+JcF@%!3PUD!K[#,s7H +JcC<$JcFO*!8W5+JcF@%!3PUD!K[#,s7H +JcC<$JcFO*!8W5+JcF@%!3PUD!K[#,s7H +JcC<$JcFO*!8W5+JcF@%!:]?2!5jBfo`#-n,JX8q+oD0:!!)rs"V\4(#:ZDHrr`u#n*9Q@rrg)" +rr2uprsRd`W;ln#8_j7%;QTfr!!)rs!=SW#rrMd$JcE1Y!8Zf;J,~> +JcC<$JcFO*!8W5+JcF@%!:]?2!5jBfo`#-n,JX8q+oD0:!!)rs"V\4(#:ZDHrr`u#TRjoSrrg)" +rr2uprsRd`W;ln#8_j7%;QTfr!!)rs!=SW#rrMd$JcE1Y!8Zf;J,~> +JcC<$JcFO*!8W5+JcF@%!:]?2!5jBfo`#-n,JX8q+oD0:!!)rs"V\4(#:ZDHrr`u# +JcC<$JcFO*!8W5+JcF=$!5n5\!1ncAoD\if2ZE^W3hlNO!!)rs%6T[7oXcE>s8N6!qWdGDrrqg9 +fDkjNqu?Zr!Fu*-rr?X0!!-I+r;Q`sr;Qd!rVlftr<%WN[f6?`k5Tr~> +JcC<$JcFO*!8W5+JcF=$!5n5\!1ncAoD\if2ZE^W3hlNO!!)rs%6T[7oXcE>s8N6!hgpmcrrqg9 +fDkjNqu?Zr!Fu*-rr?X0!!-I+r;Q`sr;Qd!rVlftr<%WN[f6?`k5Tr~> +JcC<$JcFO*!8W5+JcF=$!5n5\!1ncAoD\if2ZE^W3hlNO!!)rs%6T[7oXcE>s8N6!`Z@2;rrqg9 +fDkjNqu?Zr!Fu*-rr?X0!!-I+r;Q`sr;Qd!rVlftr<%WN[f6?`k5Tr~> +JcC<$JcFO*!8W5+JcF:#!3PaH!KZ`$s7HP_lM(5Ws8N+" +N;ihW!;ld)rng\Gs8T5oeG7fnVYpGo!;uit$hjT"!V?hPs0hq-h<+`f~> +JcC<$JcFO*!8W5+JcF:#!3PaH!KZ`$s7HOXJ^=8ps8N+" +N;ihW!;ld)rng\Gs8T5oeG7fnVYpGo!;uit$hjT"!V?hPs0hq-h<+`f~> +JcC<$JcFO*!8W5+JcF:#!3PaH!KZ`$s7HNV*if/=s8N+" +N;ihW!;ld)rng\Gs8T5oeG7fnVYpGo!;uit$hjT"!V?hPs0hq-h<+`f~> +JcC<$JcFO*!8W5+JcF:#!ViefL]NS$JcG?A!3Z.u!3Q2!!!)cn$1eN(s%K0epZh,ErrN3#s7u]q +F8Pt@mi_Z1,O5:.!UCs-rr<&srrFS%rr3#L/:mi0rrCm;s*t~> +JcC<$JcFO*!8W5+JcF:#!ViefL]NS$JcG?A!3Z.u!3Q2!!!)cn$1eN(s%K0ec[h2WrrN3#s7u]q +F8Pt@mi_Z1,O5:.!UCs-rr<&srrFS%rr3#L/:mi0rrCm;s*t~> +JcC<$JcFO*!8W5+JcF:#!ViefL]NS$JcG?A!3Z.u!3Q2!!!)cn$1eN(s%K0eWZF5#rrN3#s7u]q +F8Pt@mi_Z1,O5:.!UCs-rr<&srrFS%rr3#L/:mi0rrCm;s*t~> +JcC<$JcFO*!8W5+JcF4!!5nGb!N#RBs760j1nFRE!MqUMrr<&srrM?_rr3GD0`V0],Ob[!lMCPY +!;c]q!<3!!PP5"U"l^L$rtsqurrM7#r;Q`sr;Qe/P5bI^NGF+F[f6?`k5Tr~> +JcC<$JcFO*!8W5+JcF4!!5nGb!N#RBs760j1nFRE!MqUMrr<&srrM?_rr3GD0`V0],ObYoJ`$M* +!;c]q!<3!!PP5"U"l^L$rtsqurrM7#r;Q`sr;Qe/P5bI^NGF+F[f6?`k5Tr~> +JcC<$JcFO*!8W5+JcF4!!5nGb!N#RBs760j1nFRE!MqUMrr<&srrM?_rr3GD0`V0],ObXm*le6X +!;c]q!<3!!PP5"U"l^L$rtsqurrM7#r;Q`sr;Qe/P5bI^NGF+F[f6?`k5Tr~> +JcC<$JcFO*!8W5+JcF0u!V!JkL]O@+JcG9?!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EH.f +e>+igqYpNqrr3L.M;n<`8YQ1aTMO89gejgDrr<&srs$mh^@JlRf7Et1rrCm;s*t~> +JcC<$JcFO*!8W5+JcF0u!V!JkL]O@+JcG9?!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EFG$ +NheF!qYpNqrr3L.M;n<`8YQ1aTMO89gejgDrr<&srs$mh^@JlRf7Et1rrCm;s*t~> +JcC<$JcFO*!8W5+JcF0u!V!JkL]O@+JcG9?!k9?Kr;Qir-+NpR!!)rs#!?qepV\JSrr37C-EDb> +9VaF4qYpNqrr3L.M;n<`8YQ1aTMO89gejgDrr<&srs$mh^@JlRf7Et1rrCm;s*t~> +JcC<$JcFO*!8W5+JcF*s!r13]rhT\'bOC)_n,EDOQ2:L]SNZrO!!)rs"m9,."XTi>rs,Vk%g +JcC<$JcFO*!8W5+JcF*s!r13]rhT\'bOC)_n,EDOQ2:L]SNZrO!!)rs"m9,."XTi>rs,Vk%g!25 +Y5\:t!!*#u"n6CH"YR(YrrfV\#; +JcC<$JcFO*!8W5+JcF*s!r13]rhT\'bOC)_n,EDOQ2:L]SNZrO!!)rs"m9,."XTi>rs,Vk%fc]$ +Y5\:t!!*#u"n6CH"YR(YrrfV\#; +JcC<$JcFO*!8W5+JcC<$P5bUSlLKN+L]7A1k5Tr~> +JcC<$JcFO*!8W5+JcC<$P5bTfJZs_*L]7A1k5Tr~> +JcC<$JcFO*!8W5+JcC<$P5bT'*cZc2L]7A1k5Tr~> +JcC<$JcFO*!8W5+JcC<$P5bX_lK\A"s+p[Th<+`f~> +JcC<$JcFO*!8W5+JcC<$P5bXQJV!QHs+p[Th<+`f~> +JcC<$JcFO*!8W5+JcC<$P5bXD*Zjg%s+p[Th<+`f~> +JcC<$JcFO*!8W5+JcC<$OoGLPlL]Z-M#RJ2k5Tr~> +JcC<$JcFO*!8W5+JcC<$OoGK]J\Zj:M#RJ2k5Tr~> +JcC<$JcFO*!8W5+JcC<$OoGJm*fbgOM#RJ2k5Tr~> +JcC<$JcFO*!8W5+JcC<$OoGU]lKdo^[Jm$)][QY,s,m<]h<+`f~> +JcC<$JcFO*!8W5+JcC<$OoGUBJV`R6[Jm$)][QY,s,m<]h<+`f~> +JcC<$JcFO*!8W5+JcC<$OoGU)*\? +JcC<$JcFO*!8W5+JcC<$OT,@6V>,iI[IAbIPQ(X=k5Tr~> +JcC<$JcFO*!8W5+JcC<$OT,?dT_O +JcC<$JcFO*!8W5+JcC<$OT,??S+qd?[IAbIPQ(X=k5Tr~> +JcC<$JcFO*!8W5+JcC<$P5bRXVY#ZE`.@rQrrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$P5bRXVY#ZE`.@rQrrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$P5bRXVY#ZE`.@rQrrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$PQ([JO7J)-Xn[JIQN$s@k5Tr~> +JcC<$JcFO*!8W5+JcC<$PQ([JO7J)-Xn[JIQN$s@k5Tr~> +JcC<$JcFO*!8W5+JcC<$PQ([JO7J)-Xn[JIQN$s@k5Tr~> +JcC<$JcFO*!8W5+JcC<$PlCdRO77r*Xb$M +JcC<$JcFO*!8W5+JcC<$PlCdRO77r*Xb$M +JcC<$JcFO*!8W5+JcC<$PlCdRO77r*Xb$M +JcC<$JcFO*!8W5+JcC<$PlC`TmYCk\JcD):!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$PlC`TmYCk\JcD):!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$PlC`TmYCk\JcD):!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^j%m"bZ+JcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^j%m"bZ+JcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^j%m"bZ+JcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$QN%!\O6hZ&["87ErrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$QN%!\O6hZ&["87ErrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$QN%!\O6hZ&["87ErrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$QN$s5lA,H0JcD/ +JcC<$JcFO*!8W5+JcC<$QN$s5lA,H0JcD/ +JcC<$JcFO*!8W5+JcC<$QN$s5lA,H0JcD/ +JcC<$JcFO*!8W5+JcC<$QN$relA,G`JcD/ +JcC<$JcFO*!8W5+JcC<$QN$relA,G`JcD/ +JcC<$JcFO*!8W5+JcC<$QN$relA,G`JcD/ +JcC<$JcFO*!8W5+JcC<$QN$rGlA,GIJcD/ +JcC<$JcFO*!8W5+JcC<$QN$rGlA,GIJcD/ +JcC<$JcFO*!8W5+JcC<$QN$rGlA,GIJcD/ +JcC<$JcFO*!8W5+JcC<$QN-3*!2Y8HRK!9Ck5Tr~> +JcC<$JcFO*!8W5+JcC<$QN-3*!2Y8HRK!9Ck5Tr~> +JcC<$JcFO*!8W5+JcC<$QN-3*!2Y8HRK!9Ck5Tr~> +JcC<$JcFO*!8W5+JcC<$Qi@'El%f>9JcD/ +JcC<$JcFO*!8W5+JcC<$Qi@'El%f>9JcD/ +JcC<$JcFO*!8W5+JcC<$Qi@'El%f>9JcD/ +JcC<$JcFO*!8W5+JcC<$Qi@'Tl%f>9JcD/ +JcC<$JcFO*!8W5+JcC<$Qi@'Tl%f>9JcD/ +JcC<$JcFO*!8W5+JcC<$Qi@'Tl%f>9JcD/ +JcC<$JcFO*!8W5+JcC<$QN-3*!2Y8HRK!9Ck5Tr~> +JcC<$JcFO*!8W5+JcC<$QN-3*!2Y8HRK!9Ck5Tr~> +JcC<$JcFO*!8W5+JcC<$QN-3*!2Y8HRK!9Ck5Tr~> +JcC<$JcFO*!8W5+JcC<$QN$rVlA,GXJcD/ +JcC<$JcFO*!8W5+JcC<$QN$rVlA,GXJcD/ +JcC<$JcFO*!8W5+JcC<$QN$rVlA,GXJcD/ +JcC<$JcFO*!8W5+JcC<$QN$rtlA,H!JcD/ +JcC<$JcFO*!8W5+JcC<$QN$rtlA,H!JcD/ +JcC<$JcFO*!8W5+JcC<$QN$rtlA,H!JcD/ +JcC<$JcFO*!8W5+JcC<$QN$sLl\GP,JcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$QN$sLl\GP,JcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$QN$sLl\GP,JcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^i\m"bYiJcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^i\m"bYiJcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^i\m"bYiJcD,;!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^jKm>(b6JcD):!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^jKm>(b6JcD):!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$Q2^jKm>(b6JcD):!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$PlCa3mt_"*l%/l$rrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$PlCa3mt_"*l%/l$rrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$PlCa3mt_"*l%/l$rrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$PQ(WinV@4,iIV#prrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$PQ(WinV@4,iIV#prrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$PQ(WinV@4,iIV#prrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$P5bO*o8!F.l%/l"rrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$P5bO*o8!F.l%/l"rrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$P5bO*o8!F.l%/l"rrCm;s*t~> +JcC<$JcFO*!8W5+JcC<$OoGIHV=o]G[.o4PPlCa>k5Tr~> +JcC<$JcFO*!8W5+JcC<$OoGIHV=o]G[.o4PPlCa>k5Tr~> +JcC<$JcFO*!8W5+JcC<$OoGIHV=o]G[.o4PPlCa>k5Tr~> +JcC<$JcFO*!8W5+JcC<$O8f:?[$LWG!hR'oJcCo5!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$O8f:?[$LWG!hR'oJcCo5!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$O8f:?[$LWG!hR'oJcCo5!8Zf;J,~> +JcC<$JcFO*!8W5+JcC<$N;j"TiSj$Ps,R*Zh<+`f~> +JcC<$JcFO*!8W5+JcC<$N;j"TiSj$Ps,R*Zh<+`f~> +JcC<$JcFO*!8W5+JcC<$N;j"TiSj$Ps,R*Zh<+`f~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*!8W5+JcC<$JcC<$Q2^j?k5Tr~> +JcC<$JcFO*J_bn5J_bn5J_cOGk5Tr~> +JcC<$JcFO*J_bn5J_bn5J_cOGk5Tr~> +JcC<$JcFO*J_bn5J_bn5J_cOGk5Tr~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +JcC<$JcC<$JcC<$JcC<$JcF4!J,~> +%%EndData +showpage +%%Trailer +end +%%EOF diff --git a/lessons/misc/REST/Araport.eps b/lessons/misc/REST/Araport.eps new file mode 100644 index 000000000..44e009348 --- /dev/null +++ b/lessons/misc/REST/Araport.eps @@ -0,0 +1,20268 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner +%%Title: Araport.eps +%%CreationDate: Fri Apr 17 13:46:28 2015 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 14 14 699 616 +%%EndComments +%%BeginProlog +% Use own dictionary to avoid conflicts +10 dict begin +%%EndProlog +%%Page: 1 1 +% Translate for offset +14.173228346456694 14.173228346456694 translate +% Translate to begin of first scanline +0 601.5 translate +683.99999999999989 -601.5 scale +% Image geometry +912 802 8 +% Transformation matrix +[ 912 0 0 802 0 0 ] +% Strings to hold RGB-samples per scanline +/rstr 912 string def +/gstr 912 string def +/bstr 912 string def +{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} +true 3 +%%BeginData: 1456417 ASCII Bytes +colorimage +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#JrrW3"s7?3is8;its8N#,rrW3"s7ZEns8N#b +s8W&us8N#trrE&jrrW3"s7uWqs8N#8s8W)us8N!!s8N"Ks/>sJ~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#Ts8W&us7uZorrE&_rrW3"s7ZEos8N#trVclu +rr2]ms8E*"rr1=Fs8E#um/@"brr2rtp&>!k!<0G,s8N&urr*!!rr.KKW;hA~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N"drrW3"s7uWqs8N#9rrW3"s7uWqs8N"ts8W)u +s8N!!s8N"Ks/>sJ~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#JrrW3"s7?3is8;its8N#,rrW3"s7ZEns8N#b +s8W&us8N#trrE&jrrW3"s7uWqs8N#8s8W)us8N!!s8N"Ks/>sJ~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#Ts8W&us7uZorrE&_rrW3"s7ZEos8N#trVclu +rr2]ms8E*"rr1=Fs8E#um/@"brr2rtp&>!k!<0G,s8N&urr*!!rr.KKW;hA~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N"drrW3"s7uWqs8N#9rrW3"s7uWqs8N"ts8W)u +s8N!!s8N"Ks/>sJ~> +JcC<$JcGWIs8E*"rr2`n!ri6"oDSgkrr1IJ!<2UEo!<2lqs8N&uqu-Zsrr2iq!ri6" +oDSgkrr2Hf!ri6"rr*!!rr2Tjs8N&u!<2uts8E*"rr1(?!ri6"oDSaiq>UEo#QFc'rr<#trdk*D +s*t~> +JcC<$JcGWIs8E*"rr2`n!ri6"oDSgkrr0J.!<2rs!ri6"qYg]trr<#ts8W)t!rr9!r;Qits8V]i +!rr9!pAY3ns8W)ts8N)um/I(b_Z']:s8V]i!<;los8N?'s8W)us8N"Ks.]OD~> +JcC<$JcGWIs8E*"rr2`n!ri6"oDSgkrr0Y3s8E#unbrUirr2Hf!ri6"oDSgkrr2iq!ri6"oDSgk +rr2Tjs8Ke5!ri6"oDSaiq>UEo#QFc'rr<#trdk*Ds*t~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#JrrW3"s7?3is8;its8N#ms8W)urr`9#s8L+> +!ri6"pAP-nrr2os!ri6"rr2rtrr)otrr2rts8E#urr2rt!<2Wj!ri6"q>LHqrr0q;s8E0$rr2rt +qu-Zsrr.KKX8d\~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#Ts8W&us7uZorrE&rrrW3"s82fqrrE&prrW3" +s7ZEos8N#trVclsrr2cm!W;oormCcGrW)ubrW)utrr<#krr;uurji(/rWN9#rr<#qrW<-!rdk*M +s*t~> +JcC<$LB%;Q!<<&t!<<#ss8N9%s8W)us8;its8N#9rrW3"s7lTnrrE&\rrW3"s7uWqs8N#9rrW3" +s7uWqs8N#"s8W'$s8N#ts82css8N"Ks/Z0M~> +JcC<$LB%;Q!<<&t'`\12r;Q`rrr<#ts8W)srVlfrrr1IJ"oeQ%rr)fkrX8](rr;usrVlfrrr2]m +s8N&u"9/?#rlG*Crr<#trVc]os8Dus!rr9!rr3'!s8W)ts8W)t!<<&ts8W,u!<<&ts8N)uo`#C" +s8W)trVlfprr2rsrl5! +JcC<$LB%;Q!<<&t'`\12r;Q`rrr<#ts8W)srVlfrrr1gTs8EE+rr2lqrr)iqs8W)rrrW3"s82fq +rrE&prrrE%s8Muqr;I$$rr2rsrr;usrV$6jrVZZBs8W'#s8N#roD\dgs8E#urr2rt!ri/squ6Wo +"9/?#rji(/rWN9#rr<#qrW<-!rdk*Ms*t~> +JcC<$LB%;Q!<<&t'`\12r;Q`rrr<#ts8W)srVlfrrr0k9!ri6"q#: +JcC<$L]7JUrVc`prVuitrVZZo"o\H!rVlfqrVQTorV?ErrVlfrrr2'["o\K$rVZTerVlfqrD2rr;usrVlfprVlis +rr<#trVc`prquourr%EJW;hA~> +JcC<$L]7JUrVc`prVuitrVZZo"o\H!rVlfqrVQTorV?ErrVlfrrr2Ees8 +JcC<$L]7JUrVc`prVuitrVZZo"o\H!rVlfqrVQTorV?ErrVlfrrr1OLs8E*"rr2]ms8N#t!<2or +s8E-#rr2lgrXJi*rr)ckr;?EhrVuipr;Qs"s8W)srV?EmrU^$grV?EmrV?HmrrE&rs8Dp'rVQNj +qu$EmrVcZo!ri6"oDSgkrr1sX"oeQ%rr)fkrY>D2rr;usrVlfprVlisrr<#trVc`prquourr%EJ +W;hA~> +JcC<$LB%;P&c_k/rVuosrr;rprVlcos8W)srrrE%s8Muqq>LQrrr2rsrp]sfrW)uorr +JcC<$LB%;P&c_k/rVuosrr;rprVlcos8W)srrrE%s8Muqq>LQrrr2rsrp]sfrX/])rr)iqrVlfr +s8Muts8N#ts82fqrrE&srrW3"s8DrsrVlfrr;uuus8N!&rVlcprVcZlqYgHls8<'!rVlcnrqud" +rr<#trVcQk"o\H"s8N#krsSi+s8N#rrr2lqrr;us"98B!rVlcrrVld)rVlisrr<#ts8W)srVQTo +r<*'!s8LUL"oeQ%rr)fkrWrK%rr;usrVlfqrVultrVlfrrVuisrVlfrr +JcC<$LB%;P&c_k/rVuosrr;rprVlcos8W)srrrE%s8Muqq>LQrrr2rsrmh#Mrr<#nrr;uurqZTl +rW)ohrXJi*rr)clr;?Hirr;usr;Qs"s8W)srV?ErrVlfrrr2iq"oeQ%rr)fkrWW9"rr;usrr<#t +!<;ur"onT$s8W&sr!33"s8N#ts8N#ts8LIH"oeQ%rr)fkrWrK%rr;usrVlfqrVultrVlfrrVuis +rVlfrr +JcC<$LB%;P#ljo&rVuosrr;urs8E-!s8W)srrW3"s7?3ks8N#es8W&us7uZos7ZEls8N#ts8N!! +s8N#ms8W)urso&,rVlfprVlforr2rtrVQWprVum'rr)fprVccqrquctrr<#irWrQ'rr<#ts8W)t +rVuctrVlfprVcfqrr2rr"TJB!s8W)t!<<#squ$]rrVccprVZWrs8N#srrW3"s7uWqs8N#XrrW3" +s7?3is8)]srVuorrr2rrs8E)urr2oq!rr9!JcDeNJ,~> +JcC<$LB%;P#ljo&rVuosrr;urs8E-!s8W)srrW3"s7?3ks8N#es8W&us7uZos8Muts8N#ts8W)t +r<*'!s8Mus!ri6"p&>!kir8lU!ri6"oDSgkrr2Wk!ri6"q>LBorr)otp&>!k"oeQ%rr<#krr;uu +rmq)Nrr<#irW)uprWE-!s8Drrs8Dus!r`,trquourr.KKX8d\~> +JcC<$LB%;P#ljo&rVuosrr;urs8E-!s8W)srrW3"s7?3ks8N#Jrso&.s8Doqrr)iqrVccrrqZTS +rW<-!rquctrr<#irW<-!rquctrr<#irW<-!rr2rtrW)uorr<#qrWW?$rr<#trr<#tdf0CJs8V]i +!<;op"9&9"rVlfrrVuiurVlfqr +JcC<$L]@>P!<)lqs8Doqs8W)t!<;loaSu8>rr<#to)Jags8Vcjq#: +JcC<$L]@>P!<)lqs8Doqs8W)t!<;lod/O:Ks8W&srqlZlrkAF4rW)ulrr;uurq-3jrr2otrq6UNqs8V]i!rr9!b5VPAs8W)s!ri/srr2rts8<'!s8N"Ks/Z0M~> +JcC<$L]@>P!<)lqs8Doqs8W)t!<;loa8c):s8;oq"T85sr;?Qms8N)ub5_M@!<;Zis8N)up\t^KooD\mks8V]i!rr9!b5VPAs8W)s!ri/srr2rts8<'!s8N"Ks/Z0M~> +JcC<$L]7GTs8W)t&HDb.qu$Hnrr)iqs8Dorrr2oqs8N)to_nplrr2Ees8E#uq>UEopAP'lrr2rt +rr*!!rr2]ms8N&urr2rr#6+Msr;QWmrr2oqs8E#srVcfqr;Hctrr2iq!ri6"q#: +JcC<$L]7GTs8W)t&HDb.qu$Hnrr)iqs8Dorrr2oqs8N)to_nplrr2Ees8E#uq>UEorr)orrr2rq +r;Q]o#QOf&s8W)us760hrrN-!nGWFfrr2rt!<2ip!ri6"q#:^9i!r`,trVcTl"o\H"s8N#XrrW3"s7?3is7uZos8DrsrVufordk*Hs*t~> +JcC<$L]7GTs8W)t&HDb.qu$Hnrr)iqs8Dorrr2oqs8N)to_nplrr1OLs8<3&rVZQkr;?Nmr!*,t +r;Q`rrqcWrrr<#^rW<-!rquctrr<#nrr;osrqu`mrr)fqrW)okrWrK%rr)cnrr2llrr<#qrXJo, +rr<#ts8W&srr)cmq>CKprVccprT!nZrr<#irW)uorr<#srr;rsr;HVGs/,gH~> +JcC<$L]7GTs8W)t"TSK#rVc`ps82uus8DoErWE,urr(FI$N9u'r;?NmrVc`prVccq!<(UM$2sl& +rVZTlrr2lTrW)orrr;rprr)fqrW)o-rr<#nrr;uurdk*Ks*t~> +JcC<$L]7GTs8W)t"TSK#rVc`ps82uus8DoUEmqu6WoqYgKpnGWFf +]`%p2rVcp!rr2qrrr<#nrr;uurdk*Ks*t~> +JcC<$L]7GTs8W)t"TSK#rVc`ps82uus8Do1rr;p!rr)clqY^UEos8E*"rVa;+$2sf#rVZQj +rVcZlr +JcC<$LB%;Q!<<&ts8W)ts8Duq"9&5trR_&Kr +JcC<$LB%;Q!<<&ts8W)ts8Duq"9&5trQYtrr)fnrWW9"rr)cmqu-QmrVccq +!<)Hes8;rsrr)lr!<)0]!<;urs8U:As8TV.s8Drrs8N)urr<#t!rr9!JcDeNJ,~> +JcC<$LB%;Q!<<&ts8W)ts8Duq"9&5trP&:2r<*&tr;6Eis8)oss8W&lrWrK%rqu]mrr)fGrW)uo +rr<#nrr;ourr)clqZ?]mqY^3oqY^ +JcC<$LB%;Q!<<&trVulq$NC#'rVZTlrr2lph#@?P$i^,'r;HTlrVc`prR:`PrVlfpr;?Nmrr(OL +$2sl&rVZTlrr2lTrWW9"rr)cmqu-Qm"9&5urOr1 +JcC<$LB%;Q!<<&trVulq$NC#'rVZTlrr2lpdf'FKrr2lor;6Hmqucosrr)Tj!r`,trVccor;?fs +rVc`orV$4"rVlfprVZWmr;HTnrVa\6%K6;*rVcZmrVZWmrr)f#rX8](rquWir;HTns8N#ts8E*" +rr.KKX8d\~> +JcC<$LB%;Q!<<&trVulq$NC#'rVZTlrr2lp_uB]7"9/8squ$BlqZHfrrr)Zls8<6&rVZQjrVlco +^]"E8rr2lnqu6Kpqtg-fqZ$?rqY^6grVlcoq>LQrrr2imqtBpkqu$ElrVan<$iU)(r;- +JcC<$L]7JUrVc`prVulsr<)rprr.KKJcFI(!<2uqrVlis!<.QLXT*e~> +JcC<$L]7JUrVc`prVulsr<)rprr.KKJcFI(!<2uqrVlis!<.QLXT*e~> +JcC<$L]7JUrVc`prVulsr<)rprr.KKaSu8>rr<#ti;WfV]Dhm1rqu`os8N)uJcDhOJ,~> +JcC<$LB%;Q&HDb/rVuoqqu$ElqY0[TnaQPJs7-0[rpo^O!qPmOo^`%Ps763Zrpg$Ws6p?bnF?#= +oCMPEoD\:[ncJ=Ln+H2Mn,;bUnHJFPo'u8@rpg$X"S)!Nn*g5Es6fsWr:'s]oCMMBnEKHCo)8(Y +o)A1Zo)A.Zo)8(\nF?&>rUC'\o'l/;n,;eVn,i.Nnc&(_oCV\Go'lSJs7-!W!:fRLs7,gRrpfOL +"nD0SnaZ,Jnc/+XnGr.VnIG-^o_/.Yrr;rpr;HZqrIP!Js*t~> +JcC<$LB%;Q&HDb/rVuoqqu$ElqY0[TnaQPJs7-0[rpo^O!qPmOo^`%PrpgQhnFH/Ao'u>Bo'l5? +n*g8F"S)'RnaZSKqXXdZoCMhLs7-!Wrpg$Z&+K/[oCMMCo'u;AnaZ2?nc&"]n*oi:nF5c6!:p*Y +!:p-Zs76'Ws6pEdnF5o9nF?# +JcC<$LB%;Q&HDb/rVuoqqu$ElqY0[TnaQPJs7-0[rpo^O!qPmOo^`%Prpp*ZrUL*]o()>@rpg'Z +lLOrEs6pfoo^qbIoCV\HnF,c3mdKT4mdBT7naQPJqXWbdPrq$Bcnac5> +n,)VSmfN"KoD\@boC;;;meH8Nn.Y9[nF,i8n*TK/mdKT5mdK]:naQ8CrpfOL"nD0SnaZ,Jnc/+X +nGr.VnIG-^o_/.Yrr;rpr;HZqrIP!Js*t~> +JcC<$LB%;Q&HDb/rVuorr;HWnn`&*GcHH40#L(B7bg">Rana'_ai_cLb0'4ss2k_mb0%iKb/qfK +bKA$,bQ,icb5]WgaiDKDa2e(us2P5_aiVX'aoBEeai_fLb0.rMrlG;caiMNCrQ,#Y!6G)\rlb>a +!6OTM"j+p0bKA!*b6?&3bK@rKr5oJjb0%oMb0.rMbK@uLans3gbKS/Rbfe5UcHFDRr6,,_!R&Xa +b5f]Yb5fcAb6?&4bf\)Mr5oo!b0/#Ob0.uNb0.oLcIq@Lq>UEmrVlisrIP!Js*t~> +JcC<$LB%;Q&HDb/rVuorr;HWnn`&*GcHH40#L(B7bg">Rana'_ai_cLb0'.q$d-Z9bfe2RbKJ&O +b5TN_b5TT`bl>igbg"DVrQPDfc-?73rlkMgbKKn/s2tkqbKJ&ObKA#Obfn8Qb5TQcb0/!-b5]Qe +aN;QHaiWtn"j+p0bKA!*b6?&3bK@rKrlY8_%a)o8aN;QIai_`Jb0.uPrlb>c!mAa1rlY/\qo\r^ +rlY5`!6Y8`#Kk65bfe2PbhUAFb08)Pb/sS()9L%Ebf\)ObK@uNai_o^k4&3Gs8Doqs8W%Ks/H$K~> +JcC<$LB%;Q&HDb/rVuorr;HWnn`&*GcHH40#L(B7bg">Rana'_ai_cLb0&2Vr65)^s2l;&aN;TK +bfe5Rbfn8Pa2Q'=aiMTEa2uKHai_d'bN?qNai_cLb0'Y*"j5$3b/qd&b5]Qbb0800cPOmObfe/P +b0.rLaihiMbg"AUc-4>Oa2e(us2Y,\'?J;;aN2NGa2Z0@aiMTFai_fMb2^YKb08)Pb/sS()9L%E +bf\)ObK@uNai_o^k4&3Gs8Doqs8W%Ks/H$K~> +JcC<$Jc?Yfs8W)trVuiWaM#-lYcb14XfS\1ZEC71YHRr.#d(84Xfeh1Y-.c-s02@'rNQ=*s02L* +s0)I*%Bm%>Y->18YHP+3XfSW'WrT1!W;`drWrK!tWVrmrWW9+!X9,N*X8T+&X/`2!WW&pmWrfE+ +YPt^$YPPL&YPt^)YP5:$Y6;#3YHG&-Y5kg+YQ(j)YQ(d)XoGO-XfJM)Y-%]+!jAi4r3-+(s/uR0 +YHG"1qQKn$s0)I*ric@)!O/j'YPk^*Y5ka"Y6(l1YPbO,Xfeh/Y-.`*s/m-BZ`pR5X09.PcK4cs +r;6Ejrr)irs8ITLXT*e~> +JcC<$Jc?Yfs8W)trVuiWaM#-lYcb14XfS\1ZEC71YHRr.#d(84Xfeh1Y-.c-s02@'rNH:*ril@) +#dCM8Yct=6YHRr.ric:)!O&a*Z2Cp-YlqA=Za-k3YQ:r4ricI-Yd"#0s02L+s/uC*s/lC+Y5,9t +Yl:j*Y5b^"YlCm0Y-5%3Y5YX)Y5bX(Y5bX%XphM +JcC<$Jc?Yfs8W)trVuiWaM#-lYcb14XfS\1ZEC71YHRr.#d(84Xfeh1Y-.c-s02@'rNH:*ril@) +#dCM8Yd(C7Yd",1'sOmFY-5%3Y-5"2Xfee/YHP(1Y-+o+X9bl/XfSV)Xf\Z&WrK+"WrB%)Xfeh/ +Y-+n.Xo>F%Xo>L!YPPL&YPt^)YP5:$Y6;#3YHG&+YQ(a.YHkOD[f3Z8Za0S8s0)U/Y-,#.YQ(g/ +Z*LU:riH+$s/Z@*XK8J(rN6(##-4c(X0&J(rN-.)Yd!l*rNQ=*!3Z("!j8`1r2p4*Y-+n0Y5PL& +Xqn:KYcY"-YIhZsjnATLqu$ElrVlisrdk*Ns*t~> +JcC<$LB%;Q.KBDHs8N#ts8;lrg:=u9]!JQCY,\G$Z*LI/XKSh1Xf\\,Xfek2Yck8.YQD#4Yl1a1 +Yd(I;YHY::riZ[5Z*1=8ZELF8Z*=52!NrO%Wrf<"W;`\&W2ZbpVl6VqX/`.ur2U+)XfJJ&XK&>$ +rMfdr$EUA2X/W%qVl6Sqri?+%riZ:'s/l@*ricj8Yck44XfSS)Xfek2Y5PO;Y-5%3XfJS.Y,nb/ +Yd(F9YHbC2/YPt[4YHY13YHY45 +Y-G::r3-.)s/uX2Z*LX +JcC<$LB%;Q.KBDHs8N#ts8;lrg:=u9]!JQCY,\G$Z*LI/XKSh1Xf\\,Xfek2Yck8.YQD#4Yl1a1 +Yd(I;YHY::riZa7Z*1=8ZELF8Z*:F8rilF+33]ZlZ*L[AZEggD['R*EZa@-IZa-pDZ*COYHG"0Y-+t2Xf_T*s/l=(!3cC+%Bm">Y-+n.X/rG+YHP,-Y77Y +JcC<$LB%;Q.KBDHs8N#ts8;lrg:=u9]!JQCY,\G$Z*LI/XKSh1Xf\\,Xfek2Yck8.YQD#4Yl1a1 +Yd(I;YHY::ri[EJZ*1=8ZELF8Z*:F8Yck75Y-5"2YHG"/XfSY-Y-"f(XV\(>WiN2#Wi2nsW2Zet +WiN/!WiN2&YHRr.!j/N(ri,pt"08N)Xo>L'XoGO(YPta8YHY45Y-"e+XKAY/YHIi-/Zu:\Y-"b, +Ycb(0YHY77Y-,"8[^`iV[^NTNZa@'EZ*:F8Yct=7Yd(L>Ycb,+Y5bUBY-"h,X0&P,XfSV)WiE,$ +Y,n\+Y-"h0Z*LV3YQ(j,Y6M59ZE^U:Y4o+'Y-5%3Xf_N(!3Q7')m-3CY-51?ZE1(-[`6/!h=C75 +q"jsfr;Q`rrIP!Ms*t~> +JcC<$LB%;Q.KBDHs8N#ts8;lrf=]VjeB5\D]XbM_^VIIj]=u"m]Y(kh]t_D#_ns:i_uIRU_o0L2 +r5/HL!5e]PrkoJf_Sa:.^qmk)_ns7+^V7Fq^:q8Z]DoDA]D]AB]DfJC],SDt^V7Fq^V@Iq^:h.j +]Xthg]=kql^VIUt]".gK&@JsV\[f5\\[],X\@B,^]=e-T$+d[W\$rlW\[oBO]DfDA],8,i\%92_ +\@T>d^:h4o^r"%/`5T[3_SO%e^&YqI_(*=<_Sa7-_o0I1`5KX5_o'F2_o'@-_8=+,_Sa:0_SX.+ +_ns:.`59=*_Z%FV_SEt'_o)Jj"2i'o_Yq@P_YV/"_Sa:._83q&_8*k&^q[\%_8*k&`5fj4^;8+O +c+DHimdp2Kr;QZos8W%Ks/c6N~> +JcC<$LB%;Q.KBDHs8N#ts8;lrf=]VjeB5\D]XbM_^VIIj]=u"m]Y(kh]t_D#_ns:i_uIRU_o0L2 +r5/HL!5e]Prko&Z_8F1-^qmkd_Zdur_ns7-rl"iU'un53`lH-@aN)<@`l5p:a2c3=`5T^p`!F?% +`l5p:`Pojq`tub5^q[Op]=PSc]",>]\[],X\@B,^]=e-T$+d[W\$rlW\[oBO]DfDA],\Dm\%92_ +\@T>d]Xteg^;%Fu^V@S#_8=%*_o'@j_uIRQ_?n&o^qmh$^;%FsrOi3FrkAKL_>_:Q_o0On_uIX[ +_ns=0_SEt(rkeoV^qde(_u@LT_o0F/rPJWPqSOf"_o'@-_8*k&^qde%^VI_&^qde)a2Pj._9Uo^ +]@6'5oCr(Yrr)irs8@NKXT*e~> +JcC<$LB%;Q.KBDHs8N#ts8;lrf=]VjeB5\D]XbM_^VIIj]=u"m]Y(kh]t_D#_ns:i_uIRU_o0L2 +r5/HL!5e]Prko/]_8F1-^qmk)`5DSk!PuSN_$e,r_8!_!^V7Iu^q]l_#/%R[]tM(jrODs?]`#MH +]Y;(m_#;+X_8!Xp\@B#V[^WcVrj`SerjrKJ\[],X\@B)\])K>@])TA\]",;]]=PM` +]Y2"k]Y2(taNDWIaiDKC`l?!s`!+&q_ns=/rk]Gg_83q'_8*h#^qd_#^qROt^qmk&^q]l_$,= +JcC<$Jc@"ps8W)trVulK^u4Y?e]YnG]Xkem_nN^r_83q%^VI_)a3)ZOr652a!mJp6rlbbpbfe/O +bKS5TbKS61bQ,icbQuD7bKS2RbK@p*a8a3f`lH->`5KX7`lH1"`t680`Q--DaiVWGaiMNC`l5pr +`ZE(;`lH0BbK7cA^Uq"a[C!\$c1A"1>SG\,No:\,WrX\$i]Q\$i`T +]=bhj^;.V+cdL1fd*Bq]bf\&Lb5TTabQZ; +JcC<$Jc@"ps8W)trVulK^u4Y?e]YnG]Xkem_nN^r_83q%^VI_)a3)ZOr652a!mJp6rlb_obfe/O +bKS5TbKK_*s2t\jbg+MYbfn8QrlbAerm(Pg"O>?>dF%s?$I@#Cd*^7fc-=PZrlkGgr6PAf)pcmZ +da64[`PK:"\[],W[^ENO['R-I[CEcZ\c0)>\$c1A"1>SG\,No:\,WrP\$i]Q\$i`T]=bbe]Y;2! +a3)KEao0E^bk]Egb/qcJaiDEAa2\(s!64uY!6P5`#L(H +JcC<$Jc@"ps8W)trVulK^u4Y?e]YnG]Xkem_nN^r_83q%^VI_)a3)ZOr652a!mJp6rlb_obfe/O +bKS5TbKKk.!6bAc$d6]8bg"AUbKJ&Mb5TQdb/q]DrQ"r[$HU9-`Pf[4`l5m6rkKnt_SsR8`lQ3@ +`l6$AbK\>UaMl!/]!o)SZa@-K[C3HK['d +JcC<$Jc?Serr2rtr;ZfJ^YS53cbd2tYH>%9[]up=rNlp>\%98g`5fs=`l7eo%`QH-a2Z-<`Q#s= +`Pfa8rl"oX`W!j``Q#m8`5T[3_86,f"2Vjk_>_7M_>hCO_Zdon_8=..rk\fU`5BF-rkSQM!5STK +-,@C9`l,[*\$<'8WMcPfVPg8fV5:&eW2m&(XfJM&WMl_mVPgBlWW&nKWN)u!X/`.tVl-JmX0&P. +Z*LdI^WOjGbfe/OaiMNB`l,d4`5Td`Q#p:`Q#j5`5T[6rl"iUrko#[`5KX7 +a2\+t6Gpd`a2Z0?`l?!;`l,g7`Pf^6`5KR2`5BL2`Pod5_ns:,_SX.)^VRh)_8F45cH +JcC<$Jc?Serr2rtr;ZfJ^YS53cbd2tYH>%9[]up=rNlp>\%98g`5fs=`l7eo'?.u2a2Z-<`Q#s= +`Pf^4`5KX7`W!mW`;mpWa8a0Z`='])`Q#s=`l5saN)?BaN)]=+uGWi5ln'W%\'V5C/hX0&S-X/i8"W2HPjVl9Tori-F,WiE,#Wi;qpVl6SqXo>I/ +Yd:aJ^r+")_u7RR`WF)r_u@US_Zn&s_SX.)^])%I^BVKi_SO(*`;RXY`lH->`Pqhp"3&:#`r`l5s;`5KX6`5KX5`5BL2_o'F3`Pf[3_SX.+_SO%&_8F.+_o0[Bb.tX)g% +JcC<$Jc?Serr2rtr;ZfJ^YS53cbd2tYH>%9[]up=rNlp>\%98g`5fs=`l7eo'?.u2a2Z-<`Q#s= +`Pf^6`5KX7`W!mW`_^VR_$_83q% +^;.V(a2c08]stDNWMcSfUSarcVPU,dVl6YuYH=k+Wi;qpVl$Ajri,ms(9+=6X/i8"W2HPlWN3/( +Y->1<\%]r+rQ#JjaN)?@`59@-_8!e#^VKi`s1i3^_o'@-_8=(*_Sa7-_o'@/_SO(*_SO(*_ns:. +`5T[3`5T[6aN)<@a2Z-<`l>s8`Pod6`Pf^4_o0I1`5T^6_o'@._8=(*^q[_'_SO..aj/&E]>3+l +fWMs=gu[hip&"^ds8DqJs/uBP~> +JcC<$Jc?Serr2rtr;ZfJ^YA#,aLSOVWi2r#YcFY$riHR2YHbID]"Z&"_83qb_>h:Q_8*n'rP8EL +s1nZP'#MH#`507*_8*n&^;%J!^VIY"rkABHs1eWLrOr9IrkSTMrkC5&]tM.p_8![s]Xteg]tM(j +]"Gbl^V7=hZ`gI/Vl$8cV5C&bUnjiaVl?`!XfSY+Wi>urs/H!tri?$uri?(!.]B8DWN3,'Y->1< +\A#r'aN)<@a2Z*:_ns7+^r""-_o0O7`lH*=`5BO2rPAKM(;[f&_SO('^V7M"^V7Iu^V@S$_ns1& +rkAcT^V7Iu_83q'_Yq=M_#M7M^]2"Q^qmk&^V@Ltrk0>b]tM.p]tD(o`6#p,ZaeHTfrMX-eDB +JcC<$Jc?Serr2rtr;ZfJ^YA#,aLSOVWi2r#YcFY$riHR2YHbID]"Z&"_83qb_>h:Q_8*n'rP8EL +s1f#Y^qd_$_nj.)_8*kc_>_=O_[42r_8*k&_8=(,rPBo"`Q#s<`l5j4^q[\%`59=,_SO(*_SO%& +^;%M%_SEjq['6[3W2BNi&#?%tUnsrdWN3/'XKAS(WW&jrWW&psX8]-uX8f1&W2HSnX8T.0YHkOE +]">Pb]Y;+p^;'W^s2"`N"i%jg^V7D\]`,VC]F_cj^V7Cq_8=%(^r!t+_SEtd^BMEi_ns1&rkAcT +^V7Iu_83q'_Yq=M_#M7M^]2"Q^qmk&^V@Ltrk0>b]tM.p]tD(o`6#p,ZaeHTfrMX-eDB +JcC<$Jc?Serr2rtr;ZfJ^YA#,aLSOVWi2r#YcFY$riHR2YHbID]"Z&"_83qb_>h:Q_8*n'rP8EL +s1erW_SO"'`507*_>M+G_>h:P^:_,X]0Es?]=PVe]tV1m]=GDZ[Bm6K\@&cV]Xk\d]Y(kf]"Gbl +^:h+dZ*(+)V50fZV5C&bUnjiaVl?`!XfSY+Wi>urs/H!tri?$uri?(!&ZDV+WN3,'Xfnt8[CX,g +^:qA]^]_Ef^V.;Z]`bsY\[f +JcC<$Jc?SerVccrqu?]H^YS/,`3leOXfJM+ZE0t)rN6C/Z*LaF\\#NK]*#^W\[h^L%_B?e]=P\k +_8!Xr_7dImrji?H\[oAa]=bfT]DoPL^;%Fs]=PP`r4;j;s0ruX]=kkg\@8oT\%&uY\@9&^]=GJ^ +[C!6EYHIf*s/Z4$ri?X4YHb@Yck44YHG),Yl:j*Yl:j*XoP^*Z2_-H[CEod`5KR0_Sa4* +^V@Ls^V7J!^V7Furke]N"2;I_^&>SA]`5VD]G\>l\%'#]\[]5^\@K2`]XbGY\\#G_\@8uYrji*A +rO`3F]Y+0SrOW$@#eIRW\@K/Z\%)CI)S!8e]"Z"nZ`gdao%9qG_TUNfl1=cMrr2rrJcDhOJ,~> +JcC<$Jc?SerVccrqu?]H^YS/,`3leOXfJM+ZE0t)rN6C/Z*LaF\\#NK]*#^W\[h^L&\>Zh]=PYh +^:h.l^qI@l]",EO]DfH"]tD"i]=PVe^;%Cr]Y(he]Y2%o^:h1k]=PSc]tV4n]=YYb]">Pa\@K2_ +]XbP]['Hp>Xo,7&XfSV)ri?X4YHb@Yck44YHG),Yl:j*Yl:j*XoP[(YTU3W['d?LZaI6O +\@K/]]=Y_i^:h1l]=YYb\[],X\@K0I\.?0_]",Db]Xtbc]"G_h]"@sP%D'3b\[AlV]=PM^\%'!J +\cBA@]E5dZ]_oD?])TAJ]",A]\[f2Y\G`rV\@9#[^;7IgYI2dKfVu*lbLYS8oD8Fbrr;qJs/c6N~> +JcC<$Jc?SerVccrqu?]H^YS/,`3leOXfJM+ZE0t)rN6C/Z*LaF\\#NK]*#^W\[h^L%_B?e]=P\j +^qRIq_7dImrjr!=s1SHEs1/HG]",D`\[JpFZjsOR\$`WMZE^XZE^[=YHG%3Y-7c-ric=*ric=(s0*'>Yd(L@[C3TS[C*HP +\@K,[rjW3D\@8oS['R.=ZN[bG]">ScrOF)_]=bef]=bef[^@]*Q!Y\[]2\\$rmG\Jhue\[oMk]X+fLdIPqhYenT7hs'b/rVlfrrIP!M +s*t~> +JcC<$Jc?nnrVccrqu?]H^YnG0_R6\W[^39I\[A]K[^ENM[C!9H[/RN3\,Ni9[i;ic[C! +JcC<$Jc?nnrVccrqu?]H^YnG0_R6\W[^39I\[A]K[^ENM[C!9H[/RN3\,Ni9[iW&f[C!Se]=YV`\[oGd]taQ^#JnYH]tV8\_#D.`^q[Y"^q[\#^V7Fs^:q:o^:h4ork08b]tV7r_83diYdi6Tf;>IS +_9^lunFuk[rr;qJs/c6N~> +JcC<$Jc?nnrVccrqu?]H^YnG0_R6\W[^39I\[A]K[^ENM[C!9H[/RN3\,Ni9[k"ts[C!a\[JrW]"5D\Z`pgG +]"GS]\%KGi^:h5Y^&l!^^])%J_%XW!^VIY"^qd_!^;%Cr]tM.n]tXKZ)ns#"^V@V$]X"cOeaqCi +VmaFfgZJ#"r;Q]qrIP!Ms*t~> +JcC<$Jc?tprr2rtr;ZfI^u=V/^9Y)W^:Lhc^:q:p^V7Fq]XkS\[C*OC\eqrd[C*BK[C<]W]">Pd +_8aI/]>)A/cHXW5c3M\@cI11id*M[8*73-`f@\d/e^`1!e'ljrdEg+`cdLCqeC)[gd*hpBrmD;+ +e^i:&f@\d2gY1?6g=lPZ$J3kZf%8O)f%&@&qpbi#e^`7%rRLr!%+Wq[e^i=%e^i7!f%9oP%+j%\ +f%&:$g"Y?=gtMb[#hRVVe(*%"f%0iN!S?!'f`^'`f\"gSf(mo.f$_ple'upqahPF$`QZf\rQu)( +f@JO)f\"g+f%8R+fDX@qfDX8#fDO5"f,*#if@A?q_mHSVf(%=iUp7VWg?.ktqu-HlJcDnQJ,~> +JcC<$Jc?tprr2rtr;ZfI^u=V/^9Y)W^:Lhc^:q:p^V7Fq]XkS\[C*OC\ehlc[C*BK[C<]W]">Pd +_8aI/]YDD-bfp%2&C8YJdaQXkc-+;Qb/qfMc-QC9&C8YJd*gCldEp7ge(37-g"-/Os47D(eC2jn +qU5Dm'@P@ZeC2pse^`1"e^i@(f%/C&f)*u#f%&=%f)=/!ee?Tbf%&@&e^`7#e(*($e^N!se("BG +!R]0kbQH,9cd;X="k;/Uf%&:Le,Ri'e(*(&f@\^+f%&=Mf)4,1f$_sneCE-ub/(^)`QZf\rQu)( +f@JO)f\"g+f%8R+fDX@qfDX8#fDO5"f,*#if@A?q_mHSVf(%=iUp7VWg?.ktqu-HlJcDnQJ,~> +JcC<$Jc?tprr2rtr;ZfI^u=V/^9Y)W^:Lhc^:q:p^V7Fq]XkS\[C*OC\eV`a[C*BK[C<]W]">Pd +_8aI/]YDG/rltGf#g^fBdaQXkcHQ:2#gCQ>dF6Rld*VdgAfk+fDaG%fd#/$f$VadcHst``OiRk`6-KU +cd1"deCW:&f@\a-e^i@)f@TuRp=K8o!8%/"s48( +])Vg0!<;Eb!rr9!JcG?As8E#ur;Hctrr2Wks8E#ur;Hctrr/8as8E#uqYk7-s8UZbhWN4pXKT4M +]=5;^^VRe(_83q$]=>;V[CEfY\[]&RYck44YHtaL]Y1tl`QQHB]Y;J8g"Y65g>(TEj6#Odj5JhM +hVR2Nk3D9ukiLj`i8ESQhqcu9eCE:1iS`JCf\>n,D_[mHa!!kNV3prosjVmI0Q6naQ&: +n*^/A-gpBhmdBK1md99%kN_C#jj_/Z_9L]tmd')tiT'+akj.X(mHa0-n,2SVn*]W2mIT`hmI'E2 +md9H3mHWZV\urHfm*qu/Ye804k3r$Ar;HTorV_ +g&M*O!<;los8N)upAb0l!<;ur!rr9!JcF4!!ri6"pAP-nrr/&[s8E#uqYk7-s8UZbhWN4pXKT4M +]=5;^^VRe(_83q$]=>;V[CEfY\[]&RYck44YHtaL]Y1tl`QQHB]tVM5f@ns2g>(TEio]FciSN;A +f\"g.g>(TDi83;EgtgoIhqd&>g"bTLkiUp_i8a%emHjiNll#-SlKda%lg*j#jlGOajlbgjlK[X!lg=--rTjpZm-O--nF5o9 +nF,iFmf2\Smf2Ysmd99%kj.U&jjh;^_Tgfumd')tiT'+akj.X(mHa0-n,2SVn*]W2mIT`hmI'E2 +md9H3mHWZV\urHfm*qu/Ye804k3r$Ar;HTorV_ +JcC<$LB%;Q!<;opC&J#2f"^))ca^'[]"bkd\@]Ml_SX.*^qRFj[^$6hr3SWkN1^\gtLH7g=tKBj5o@]i83ALioAtRhV?lAioo[kjP]"Yl0Rg: +m/-)PlKRX$m-FN7!pf.:rTaUQlg4!(rp'OL!po7=oBcMC!po7=rp2#um-O'(mHj3)ki:RYiSrkW +jlPXdk3(skkih3mki_*kkj.a/nac5Kn,W"Vn0.8gmHN`njlbjdd([!(bh2(El0%-dj6,Uhlg=-- +lg=-/r9a^VmdBK0oBmdhmdBQ3mI'K2lJ^(#Y-lXCe>T.H]Z]!jn+Q\WrVccprIP!Os*t~> +])Vg0!<;Eb!rr9!JcG?As8E#ur;Hctrr2Wks8E#ur;Hctrr/8as8E#uqYhf=s8UZbgZ6PbVQ.&8 +['6a>\%B;d]tCtg\$N?DZ*:L=Z*14,V>d53V5^W'['d3G]Z%q*[^X*"gYpu?g"t`NlL"!)l/q$c +ro50`l0[s.mHN`kgtUQ9f[eEl`Pp$IeC;mmdb!C?oCr(WqYg3iqYp@#qYU-bq>0p`q>'g[p\sjf +p\=O_p](!ip\+=Up]'pop\=OXp@e7Tp@n=\p'^Wip\=OZq"X[]r;HWms8>RfqtTjUnaQ)>oCMVJ +q"agbqtKdWp%@tLp%J+Pp%J(NpA"CSo()MKq!HYH[(afAnG)\Eki:[ajll.'o_%kLp@n@Wp\=OX +p@eCXs7Qfoq"XUYq"OOXp\4[\)u0=-q!QkPZE_O6dA

    ]?/XamIgDTrVccprIP!Os*t~> +g&M*O!<;los8N)upAb0l!<;ur!rr9!JcF4!!ri6"pAP-nrr/&[s8E#uqYhf=s8UZbgZ6PbVQ.&8 +['6a>\%B;d]tCtg\$N?DZ*:L=Z*14,V>d5TV5^W'['d3G]Z%q*[^Nurg#1]1`KjPo+Qg"G*6g=Y!(c-Y"qhqm2EhrX4qq#1$rp\"1Np%7kHnaZ2JoE4d[p\4X[!r)Kb +rqHHf!r)E^q"Og^$MX>jp\+=Tp\+@UrV$9as7ZHdrUq0&p@nCZqu$?fqtg0dqtg3fqu$EjrVZNf +q"Xjas7e8Ap@e7Sp%J1To^_VHp@dk)^pUo$hXL=5mc`]jjlP^oo(;VIp%J.Tq"ORYp\+=Xp]'po +p\=OXq"XUXq"OO^p)Ef(qtTU5_6U>fk0^$!Y.Mg,j6cO;r;HTorV_ +JcC<$LB%;Q!<;op-2dfCf"]u#bI".H[CW`LYHkXL]Y2"k]=PJXZ*:L;Z*LXU0gp]'pjp\=LXq"apas7cNd!r)KbrqHHf!r)E^q"Og^$MX>jp\+=Tp\+@Urq6Khp@e7T +rqI-"o^q_EoCVbOq>'g]qYBp\q"jsbs7crsqYBs`qYC!br;?Qk!;cZh"8DEVnG_u$kgI&H]?B!t +p@I_9j5T1^kjJ$6p%7qNp\=OXq"XUWpA=Uap'UQhq"ORYp\4IWp\sk*q"ss`mb5L_Z,u.UV4k'( +ak#M>p&+adrVuipJcDnQJ,~> +JcC<$JcAXJrVccrqu?]H^Ye;&\Z2a=\Zr37X0]@J]=YYb\@&QDY-5"3Yct7.UnF74qY0XQo(;VIp%S7Wqu-Kmq>g?jq>pKkrr)lr!<)os!WN&rrt>(eah,UIlhpe^p@%;0kj%X2 +rn7;bq;]N'[Ee-fUS"^#aOK8;p&+ddrVhBJY5a"~> +JcC<$JcA^LrVccrqu?]H^Ye;&\Z2a=\Zr37X0]@J]=YYb\@&QDY-5"3Yct7.UnF%db.PgLlhpe^p@%;0kj%X2rn7;bq;]N'[Ee-fUS"^#aOK8; +p&+ddrVhBJY5a"~> +JcC<$JcB<]rVccrqu?]H^Ye;&\Z2a=\Zr37X0]@J]=YYb\@&QDY-5"3Yct7.UnF +])Vg0!<7WLe,B@IrVcfsrr2rt"oeQ%rr2rqrW<-!rg3ZbrW)uprY#//s4"jDm*`DAVQR2(U7\*W +Y5YY3YHG"-Vkp2cVPgAkVP0TMR$sS=TqnTdW1BBS[Cj#TYd_^-iRlDucdLCuh;7#Dg=b',e^W.% +g=b02e^W$mc-=Ydg"P'*c-"/L`l,d5ajJi&l0Rs0n*olc.kN(X\i8N\Sir7snjQ>XilKRQu +m-O--n*f]7nF,o?p@\(Np\=IMi5`@EeDfrioBbZ%j5]7cn+QMMp@\+Dp*9>*p%J+Rp@e1PoC;%p +]WJKenCFA-YIhm+j6u^>rVZZprr.KKY5a"~> +g&M*O!<;los8N)upAb0l!<;ur!rr9!q>UNqs8Vuqs8N)uJcG3=!ri6"qu6WqpAP-nrr/&[s8E#u +qYh-*s8UTaip>+'Vl$W%WhQ,YW36-(@BZi9Wi)\hV5C/hW2?8[R[BP7TV80ZWi2JWVR=(HZEL[U +f\kE,c-k+pgtpoCg!n?mb/q`Hb0A;]e'uptdaH\#iTBChk2YF[io&\KhrO(ko_/%Sp@IhDn+#o: +n*oiGnc/1Zo*+d[p\+:QqtC'_rq6?br:^0`!;?Ebrq?<`!;?Eb"SVT`o^r.Ss7@)uo'c&:nF?/E +p\4IWq"ORYq>0s`q=ss`rq?Bd"nq]bq"XR[ocNo&p@\+Qq"=%3`js%;ipZR2m,mEij5oOop@n=T +p%@VD,PUp)p@e7Sp@\+Mn`\N9Xg6@Det\nA]?&O_n+Q\Xr;Q`qrdk*Ps*t~> +JcC<$LB%;Q!<;op')_e0eA1)1d^Z3PY-G"$T:i-crig%=Y-"_%V50rbVl6PkTq7^?R[p+FUo15k +SXQF`]XY8N[`@+[g!.afe(<@1hV?i9e'QCbbg"J_f%A[1gtUN8hW4"loCMM=lK[Wtl0%9to_J@\ +q=sd\q"OOXq"OOVp%7qMp@e1Yo`"Rap&"I_p&=Xbp&+O`o`k-_p%7qNpAOXapAXaapAag_oEXjM +l0Rj.p%SI\s8)Ker;-Eg!;cZirqI]3p@e=Vp@S"Mo^V2#_mI/*i9p4+lf[Bjj5oOop@n=Tp%@VD +,PUp)p@e7Sp@\+Mn`\N9Xg6@Det\nA]?&O_n+Q\Xr;Q`qrdk*Ps*t~> +])Vg0"TSK#rVc?e!<%KJl2Ce`rr2rrrW)utrr+QC.Z>.$p3^OcPWfPEhH"UT:,ZVRF7S]!o;meC`6ob/qZH +dF-OpeCE'td*M^8-dBr]bfe/L^pp_X\\>kn]!o,V[C*BIZ*UmO`5fp<`lZBGbKeM`d/MAic3VbC +dEp7fd*L&;d/VGjd/VK#d*^7fd*L(bd*L&;c32J?d*L&;cj8%Gd*^:hdF-MCdLOXLcHsq`bK%K7 +^:h1m]`#JB]E#YE].Ue2^qmn+`Q$!AaN)?CaN)BIe'l^id+$Uk^T=0.Zb49%dEK_XcHXPUcI("a +cMl2jchu/gdJhMmd/_Mkcm7&ge'ZRkda?Omd*9\JZ_X+ga6V9OTrtuJe`,uhr;HQms8N"Ks/uBP~> +g&M*O$ig5*rVlfprr2rtrq?BlrWrQ'rr)iqs8N#nrrW3"s82fqrrE%Ls6oshrr<#qrrR$X)(R/WL7Q^*_rO-,Th +Q'R`2X.l,][_KSg\%9Q,f@.sgbf\8^e^W$pccaGN`P]R2a3)WOd*^1\_SF+5e(E@Qf`0Y=g"=j+ +f@\g5h:^B.dE]tYbfn8RrlkDe"O>9;cd2U;psK,grmC_lrmCbm"jt]Dcd:&dJhMm +ci)-"bfRrLcHjh`d*^@pg"bHAro!h638NBDf[n[(f@JL'f%AX*e'c[lcd1%kf@&!le'u[WX.cGs +]>Vq>b/hfPc-+;UdEp1ad*^7fd*M[;rR(Vks3UhmrQlh +JcC<$LB%;Q!<;op*rQ'5jl>>!h#Z +])Vg/"TSH!r;?SY2j]XJr(pXKJRsQ&UlkS>)p_Wi<5/Z*+), +&#uS,WiN/#XKAS*X/`2#X8]1#X8].!XT,=HXKAY-XKAP(Xf\\)W2-#MOIj>Nc_-i0\B*7]n+ZbY +rVlirrdk*Ps*t~> +g&M*N$ig2(r;HTlrVccrrV$9krrQ'@MuQ'@Jq +OcbfjQ'M<4r/qnZPEV&qTTtJ$UTCPqVP^H$['R$CYH4t8rj"&ZYct=7XfA=uWiiV5ZaI3HY,ne3 +[C +JcC<$LB%;P!<<&ss8W)ss8O(h^YRtjV3$b&R[]S*PEhDtPa.MuPEM&jP*;/rrKR5C)3L,HO-uZ+ +N0U0>XJi"qYdV$KZa$[6Y-5#-Y8smRZ*CUN(ri,pr"fJ;uWi;ueWrK%?Wi;nnVl6VqX0&M)Xf\V%Wi;qpW2Q\oW2HMiW2m/0 +rjN-B]u%h:f%8OPeh#:scHF8E^V@Lq]=YYa[Bd!;Wi<&&Z`pI)USb#dRZ3&ZOdM`:X/`5*['?e5 +WroB#W2fitrN$.&WiE,#ri?+#ri6""s/REHXfee-XfJM)XfSP$Un3j5T#0U8TUi-naO]D?p\b!g +rr;usJcDnQJ,~> +^Ae96s8W)t"TSK#rVcTls8;uts8Muts+118rqZTorW)utrr<#trr;uurf@*ZrW)uprY,50s4"jA +kg$N0U8FumWN*&#W2KWls.opqUSOccWN#lq!NE$sW>DM2WMlPfV4!I5UT15fUSF]aV5:&aTV)4W +!i2cpri6[6XJr(kTV8-SSt2IFSt)12MM(nX"bD;ZKnkQaM[52uNffWuT:hnWUC*irVkp;hVP^8i +WW>Vl$?gVtm:iVZE`oq5F=krhogprM]aq!3#mr6Dpc`YHG"-URI='L4Xu1M2-hALPUeCL4t;6 +L5M"QOHG`lQBdc&QC")5U8Ff`U84`eVl-5YS=l^VVl6MlXg#"/qPX\!W2Zi!X/i8"rhogrri-@* +W2ZhtWMlbpWiN0!WW/psWYhh>WhQ#^bNdEFS#X!>f&Z;or;HTns8N"Ks/uBP~> +g&M*O$ig5*rVlfprr2rtrquctrr<#orXf&-rr;uss8W)us8N&urr<#qrr;uurdk+ZT]GJ)`Y-+n0YH=k)W2HJgVl-JkVl6SnW2KTmrM]jsWN#Ti!i`,sqPjFl!iMuqrhh*BW2QVk +W2Z_mVlQu(Z*LX:Wi2nuYd_<\^VIY"^:_"b[Bcs;YHRl,*iuB@W2?MnXKAP#U8"K]UnjZQS"HLQ +V5C)dWirV+qPXCori61'X/i8"rhogrri-@*W2ZhtWMlbpWiN0!WW/psWYhh>WhQ#^bNdEFS#X!> +f&Z;or;HTns8N"Ks/uBP~> +_#OH6!<;ur!rr9!JcC<$df9@H!<;op'E%n1eA0u*cEj:?VQ6etWiW8"VuERnV$<`jUo()iWW&gs +WMofq4K,0WW1p,bR? +^Ae96s8W)t!<;Zi!<;ops8@NJoD\dg"9/?#rqufrrW)utrr<#trr;uurf@*ZrW)upr[7XDs4"jE +n_hd9bg+P]cdC:iaiMTHbfn8QaiV`Nd*U(_bg"DXcHZ@6)pHLOd)sDPeCN'ocd:"^aj&5Wa2cQ`5'+"]=+f7QAtm$!/pi8(64H:NfAsSN0Ba.ZFdrlai_fOcHa\[rQkJi +rm1Sho[!Q_!mf0VaN)BGrlt\lcHOPYci2;kcMu/gc2l8Un4^"ak#M>pAFmfrr;usJcDnQJ,~> +g&M*O"98B"rVZZprrE&rrrW3"s7ZF&s8N#ts8N&urr<#ts8W)srVlis!<.QLn,ELhs8W)trVuls +rrW3"s7ZGSs8W&us8)^Br;ZfH^uOtCd)jMWcd:"ce^2FZai_iObK@rKbK\D\cHXSXc-FVZrltho +bKnPXa32u`df.QXc-",Pe'H7]bg">Tcd'eZbg"AVc-FbeeC)^id*pIlc,RN0\\,\n`5Ta:ai_]D +^q."b]Yr">d*^:hd*L(cdJhJqdEp4bd/MAid.#B\ciDDkd.bikd*L%`cHjk`rlu##dF$=a`P9't +^Ve(5bKKk/%*HW/_SF"*`Q$!BcHuR=+48Nbe'l[hc-+5Obfe,Obf\)OcHXJNa32`QbfIiGbl5lj +c-FSYcMc,icMu/gc2l8Un4^"ak#M>pAFmfrr;usJcDnQ +J,~> +_#OH6!<;ur!rr9!JcC<$df9@H!<;op-iF#EeA1,7i6]TicHjk`dFHUcaN;TKbfe/NaihrUd*Bn[ +c-=PZc2Q!/bfe>Zb/_]Tf$_mjdEp.\c-jn[bK@rJbg4Y^cHcC71XX_(g=k34gYUoKhUp6#c-Xng +e^i@)g=t<4e'6"WcILV(hVHoCrOjo4EOk2YFWg!nBocd1"feGe"ue-saOdEp.[a2Gm5`59@h`!sc0 +bfe&Jc-Xe\aN)BGrltYkcHXVZrQtSis3:Pg!RK-kcMl&ec2Z!/cHj_Xc-4GXbf%33h=oTuSuoTG +f&Q/kr;HTns8N"Ks/uBP~> +WW)ttrr30#s8W&qr.4hFs7$!Ws7$'WrpUNgmH:cIjlPIYio]Llmd06*n+#i5nF5c+jlksmk2YI^kNV6rqs"+G +s6BXK"mbF +g&M*N#ljl%r;HTorVbjXs8E3%rr2lqrqlZkrdk+Bs82fpr<3&srVuosrql`qrW)urrW<-!rg3Zb +rW)utrr<#urZV7?s4+mDoBPDsl0.9kk3DF"iSihZkNM-kjQ#=_kih0kroO1B)Wg,DjQ#Fglg!d& +o'u,5m-j?+kNqd-lKRQurp0UNrou!!n+$#Dq=s^VnEoQ*j4i&-bg"M_eC;sqe(*("d)s>E`6-Zj +lL=E;oCMbJ!qGdLrpg!Ys7--Xp@/@VnaZ2?naH,?!:]jT:@R`>mdBH*iRlN$b08/XdF-Loe^i=$ +da-.\bK\Gbg#2&\nauJHp@n:PmHNiulKdd"k321!m-O61l/^sil0.9iioB4dl0@Ntkih9qrp0UL +s60^Ql0@U$lMKfjlKRKok3D9sl0@Kqki:@EdH(2ZUn=d#ak,S?pAFmfrr;usJcDnQJ,~> +JcC<$LB%;Q!<<&ts8W,u+oVH@e\C,8lK%!ikiV!hlL3uriT'(`kih-hj5f=ckiV%,jo=HkjlY^d +j6,^nlK[d-na5Z/o'u&/lgaB,ki_*mlg4*.m-F!)nFH;JqYpC +^Ae96s8W)t!<;Zi!<;ops8@NJoD\dg"9/?#rr)iurVuorrVucqrVlcss8J)Zs8E#urr2rts8E`2 +s8UW`h'g]q>0p_qtg?g!;c]j8bi&Rp@n:Sp%.Vf&Z;or;HWos8N"K +s/uBP~> +g&M*O"98B"rVZZprrE&rrrW3"s82fqrrE&ts8W)urr`9!rVl`nr;HltrVccprIP"?s8W$,s8Doo +rr2lqrr<#ts8W)t!<;urs8<-!rVccprKmQarW)utrr<#urY5>2s4+j>mcis$naPo1m-sW9m-X6> +n,VnUm98rHn*]W4mdBK0m-X6,lgO9,lg=-0md'0*nac,7mI9W4m-69f$MRY`6$QhmIpGTqtp6eqtp6iq#gEfq>1*fs8)ckpA,!hqYL*c +qYBd[!r;]hrql`l6M^ENq"XOMjOqu,bfn8Sc-FY_dF-Lld*BkYa2lKOeD00Qo(MkTqYU6foBtu4 +n*f]1kj%X+mdKc=n*93(mdKT2rp0pXm-X6/n*f]4rpTmTrU'XO!pf4>rU(rum-X-(lKdd$m-a3, +n)`6ReDg5RT:;jjaO]G@p\b!hrr;usJcDnQJ,~> +_#OH6!<;ur!rr9!JcC<$df9@H!<<&ts8W,u'`J(3e\9l-l0.I'nEfH,nFQ/9mI'rB!:KjR1%+N! +mdBQ3md9E.mI'<+n*]K,mI'K3lfmg/o^M56n*fZ0l07R%md]l:m-O68qYgEmr?2+k2>"Jh<4A+rr2rsr;uooqYp?mqYB@Os7m'!q=s^Zq>0sbr;?Hfr;ZZmrVum- +rr<#ro^:r)jlbmpmdKZCnIP-Uki:FMg>:fNm.0lFqY^?i)#3Uak3(skjl57Zl0Ra&nal89lgF93 +md:#?#jq!GmdBQ4mdC)Cs6fjQs6KgQm-O]=,jjsclg!d$lg!j)lg=0&g"+[4pXYt+Wjp.$jR;j@ +rVlfrrr.KKY5a"~> +^Ae96s8W)t!<;Zi!<7WLkPkM]!<2rs!r`0!rVccn!;uiq!WW.[s8W&us8N#ts8W'-rVuoJ^>A;B +l0n?>o'u_N%e]Sjp@\(Knac>Gp\4IWrq9Xlp@\(Lo_%nOq"!b4R$3J_JqFbki_0olK[^%m-X<2m-3]sm.']?p@\%Jo(2MHp@e1Q +p%@tJnaZ)9mHa''m-jQ:naGi2mI'H2lfdNsmHX*1khFhFkPNo)SZKBDf&Q2lr;HTns8N"Ks/uBP~> +g&M*O!<;los8Vflrr!$"s8W)us82fqr;ciprVZX!r;Q]qrVcbIrq67%s8Dorrr2iprr)iqs8W)u +s8Muts8;lrr<<,trVuipQiI*b!<<&ts8W,u%K6>,e\9o.l07[1p@@bQo+(Hfp\+:Po'u;Cp@n=V +p\skdp\+:PoCV_Kp\==FmIBc=na>i7o(2A=m-X<5n*KH2o(;YJn*0'&oD8Fbr:osUlfI']g=4Ks +f%f6Fk2bLYhrEhYhq68q_oC*\lh:>Xrr2lrs8Dlps8<-!rVccqrr2rtrr)lsrW<-!rr2lrrW)ut +rr2rtrW2usrVZcrrV6@Jr;6Hkq![7seC)dmdEg(`d*g@keC)alcd'h_dF$Cogu@J^n+-)ErVu`e +o'u2:mHWourTO:K$L6g:l0Rs5p\4CSrq$-]s7J>Ep%@tJnaZ)9mHa''m-jQ:naGi2mI'H2lfdNs +mHX*1khFhFkPNo)SZKBDf&Q2lr;HTns8N"Ks/uBP~> +_#OH6#ljo&r;HWprr.KKJcF0us8E#urr2rts8EK+s8UW`hX9Xmn+QJGnc&+ip%S4Sp%7hFo(;YM +p\=L^p-/6Ep%7kJp%A(So'>]5o(2D>mI9`>na>`0n+#l6mI9`@q"O@GlL4HEs8W&oqYBgSm-Eio +iT0:oq>C3hr;QR#r;69Zkhk+LjR;pDrsJc*s8DoorVc`prVZZfs8W'-s8N#rrVlcorr)`jr;HWo +s8N)umf*[no^D,2m-a?3nalDOo`b!ZnEfB#ro,-^jQ>aqnFQDLqu6TkoC))4kiLjaiT'"[k3MF$ +kih@#nauhS5kO[=oCV\Jp@\.Pp%7hFnaGo5lg!g&n+6,?n*KE.mdKT0ki_6ulL"3,gY1BEqq.R4 +XLZI(j6lX=rVc`qrr.KKY5a"~> +^Ae95s8W)s#QOc$s8W)us7ZEns8N"Ks6]jdrW)usrW<&trr)fpqu?WprrE"Ys8W&us8N#ts8W'A +rVuoI^YnVHlL4E;md06#hra@pm-*Qkj65n$p%J+Ona?DC=6o/9lK[a)nEJusn+-)?n*]]7o'ku) +gu.5LgY1HEn+?>Fm-*a&na>Sm`O;h=P`1BKH[0pcL6%UfR[KP0R@9M-P)kHSNL6ZVcJI[HmIBf? +pA"I\r;QWurr)fprVc`ps8;rsrr)lp"o\Asqtp +m-3ER]<.p'Sskk(Mi*@GLPUccM>rA3MuJb:N%9sQR\Hmk]#<%Phqm2Ef[e^/gtUN6g"Y<9g"=m. +i9Bb)q>:!_q"ad`qtg9g/c#/7oC(u-j58bPj6#LbiSWVVm-a,rg=Y6@iT]ssg>:]Nr7Ia8Y.;X( +j6lU>qucrurr.KKY5a"~> +`r?5@s8W&rr;QZmrrts8W&qs8;lprVZY]s8W&u +s8N#ts8W'ArVuoI^YnVHlL4E;md06#hra@pm-*Qkj65n$p%J+Ona?DC +_#OH5#ljl$qu$EmrV_C(Jq=s^WoCVVBlfR0_h;7/Slg=6=p&=jkrr;usJcDnQJ,~> +^Ae95s8W)s#QOc$s8W)us7?5@s6]jdrW)usrWW9"rr)cmrr!#urVccrrK%!YrW)utrr<#urZ_=@ +s4"gBna#K.nET&if[.X`g"P',cd'qkiTTXrmcrigf`'J%ec43)f@\m3f\u/co'bu4mdTf:kh42( +b/(Ws\]34[mIKc6mI0N.hTrj9Srnk]IX60[G'ek#Od25sOcbimP`_&jN/!7UUUA4tioTIooCVbP +qYU3hrr)iprVZQiq#(0h"oS8pqYL*gqYpNbg+JT`lQ9C`l5s:aO8u4o_JIar;?Nm +rr)cnr@S$HqXs:=hUp6!bKS8XcHaefhrs=`eBH(_g"PQZjk/GHk5*]'SZ]NDeDoujrqllts8N"K +s/uBP~> +`r?5@s8W&rr;QZmrrjQ#4UgY1KBiSN;@cc*lH +eDTcjrVZWnrWiE"r;HTlqtg9gs82loq>C9i!rVrmrqcZl!;uinrqufn$2XPqq>'m_q>1!fq?$Tn +rVl^)rVH'Ef$Ddthrdg?%qff\YKIqU_F3 +Y.;U&j6lX?qucrurr.KKY5a"~> +_#OH5#ljl$qu$EmrV_9LnFH&8m-aB6nEJZObf[c4[(!s$hWs_$n+-5IoC))3kMt@NgYUoJ +jQPt&r;Q`qqt^*drVufioBG,ch;dkqrr2loqtp6er;6Kk"o\H#rquZer;ZWqr;6BjqZ$F+q=saZ +p\Odar;HQms8W)srVlcoq#1X#r:B+1k4&6Hrr)Zls8=SLrVcWgoBP8ff%&L5kND+$q"F7Bhpp*! +bf[r@^V[q,`5T^8bLGM +_uKc9!<;]j!<;urJc4R+qYpNpp\k0mqu-Zsrr/8as8E#urr2rts8F5@s8UWai:?:$m-E]ef@.s^ +ajSYcccjV\g#;2^mdKK$f[BcF,L4W^dEp7jf%AsIn*o`1lKms.mcN0E`4r[\WNqJbnalDHq"ad`r;HWnr;HQiqY:!g +qZZopqtg0dq>(6iqYL*dqt_9-p\+@Up@\(Ko'l,4grZt&VQ$VpTq.[>QBd^4PsL_$PEM&hMhd%B +NL6NG\&$>>f[nX#bfS#PccsPL`lQ-:_8=(.cJJ!^q>:$cqu$Ekrr2cjr;HWnqtBF;g="*ZrkBhr +_T'jOhrs=af$;Oigt_#]imZW:kPEf(T<>]Ee`6)jr;HTns8N"Ks/uBP~> +g&M*O!<;ur#QOf&s8W)srV?EsrVlforVccqrVc`pr;lipqY^?krqh9EnGE[mr;6BirVlcprr<#q +rXJi+s8Doorr2iorVuipQiI*b!<<&ts8W,u,5qQAe\C&5mHa-)j4r88bf%WOe'ZLcbgG,&l0Rj, +lf-RFrm+6_cd:(dd+-_"iTot%mHa'(mdTZ,fuq=K[&g.)\]ijln*fZ2n*oc2kiLaWe^DpqeCE+$ +g"tcMinrPFg>1]GiSE/4a2cBQi9pI?rVuj,rVQKir;6?dqYU-dr;?Eer;ZWor;HKrqYU0fqtpBj +!<)oo%/fttq>:$bqu$BjrVZWm%/g)#nD`!DdG*[BjQ-=%s5X+>ro69'iSreLeBQ(SaNiAniof_# +na5Msf@&$nccO)>_8F+*^V@V(cf"]Ee`6)jr;HTns8N"Ks/uBP~> +_uKc9!<<&ts8;urrVQQos8;kIrS[YOrr;uurr2rtrW)umrW<-!rg3ZbrW)utrr<#urZ_=@s4+mB +o'Pc0lf6dPe',bPdaQUibfnJfiT]^sn*Aucdf.QlcHjkbd*U=of\u/bnEoQ,m-aB2k1Rnq^U1)? +Wk-L3lgs]:nFH2?mHj-$inW;DhVmMWl0e9BrVlckq"agbrr)]bkMFtLj6ZLV8]n+QSNnEAf]d*9hY`P0"$_nc8f$H's4i:$C9r;6?frqm<*r;-9frVlcm +p?gnod`K?)^F-h6`m*)lkiq*XcHXkogu\(ce(WU?qU_F5Y.2O&j6lU +aT);>"onT$s8W)ls8N"Ks475KrqQKnrf7$YrW)utrr<#ur\XTRs4+j@oBtr1l/UXVgt:*,h;-l? +g"G-=kjJ!4o^M&$gY(94f@\d1g"G0:hrjJ!na>]@kX=Oif?M@P]ZbFK- +g>ClIi832=f\5*5e^;jte^FHC8'oiInb2bQp@e7Uq=sjaq"ORYq>0mZmc<-Obf.E6_8F:9dFmI? +kMb.FeD99GjmM'SfA#Ncf:ek>\]E@_me-MVr;Q`qrdk*Ps*t~> +ci41Is8W&qr;$9trr)fnrr2rsrqu]mrr.KKg]%JPMlg*fqhVHu>e(3@2gtLH7gYqAanalDBkMP%Ig"=p/g"P-4gtglNn+-#:lM]orjkn\7 +a25HpYdD9qhWF+ejlYjsnac2:l/^dZh:gN5f@\d4ioB(Xhr!Aki=Y)+f$2=[ce.=LrVulqrVuos +rVZ]m#Q">qqu$Ekr:9djr;HTnrVc`mr<3&qqYL*frDrpts8Muqrr)cor:B%&d*^M&hV?i>gY1?6 +gY:H7g"=p.f\"^%d*U1jg>V8_oChtQoC(r'hV?rAeBcCcda?Ccbg+Vfk4ABEqY9gZq"XUZq=s^Z +pb_gCq"=(9gXFBc_8*n)`llc_i9'4]g==^/k2GFii6g02kk`o)TWPcGf&Z8lr;HQms8N"Ks/uBP~> +bQ%VA!<;urs8W)t#ljo%qu$EmrVc]oJcF@%rr*!!rr2os!<2`m!'dYp\sqKq>0m\q"X[]q"=(9 +gXFBc_8*n)`llc_i9'4]g==^/k2GFii6g02kk`o)TWPcGf&Z8lr;HQms8N"Ks/uBP~> +aT);>"onT$s8W)rrrE&ss8MutrVZZls8N"Ks60L_rr2lrrW)olrr`9#s8J/\s8E#urr2rts8FJG +s8UW`i:HC&lg!]rkN_0ek3hX%kiUsfkj7g1p%7b>kN:sjk2k^ek5OOLOcYTdQ^aVBV50iYSXPn1P`_,tV6Rh`iTTRpo(MhR +qtpBj"o\H"rVcWiqulurr;HTmr;ZX"rVQKgqtp6equ6Nmqu6Hlqulonqtg-fp_!8noCDA3e\\Yo +W2,rHO-#?[rJb`VOH5E_O-,TkR@^:Z\%g#2fA>TQlg*s(kiM!kl0.6gjlu$kiS`YQjQZ1+p%@tL +p%@tKo_/%Qo^h\Ho^hP7i7ZZ.cHX\_daZn%gu.)Df@AI2lf@0php^96k5!T%T<5ZFf&c>mr;HQm +s8N"Ks/uBP~> +ci41Is8W&qr;HTorr2lrrWW6!rr;usrqu]mJcFL)qYpEm"9&9"rr2isr;HQmQiI*b!<<&ts8W,u +.K0;He\9u5md'3(kiV'njl#:hmHWotjQ5UlnFQ>FnE]9"kND!hjlY_)k>17'mIKuDnET/shqd#: +e'Q@_ahu!8bgY;&hV?lDlLO]GqYBjSmHj)uhqZu>f\>6=i8N\Uj5T"RgtL9'bg=tul1P#SrVZWo +s8Momr;?Qj"oJ5qqu-Kkqulurr;HTmr;Z^"r;HQlr;HWor;Z^*r;6?eq>1!drVZTlrVlcor'LD] +p?LJ`e(*$tcHjqfdaQ[pe'ujpd*U1ge'lh!gu7AZn+?ANqtp6cp[[\7kND!ghqm>Rjl>:Vi8Wka +oChqQpAX_Io^_SFp@e.MoCV\Hn)rW^e^;[ecdC1jf@es;hqH]4f&>rUjmCsSg"b`cetJ_<\]E@` +me-MVr;Q`qrdk*Ps*t~> +bQ%VA!<;urs8W)t%KHG*qu$EmrVc`prVc_Hs4dSKrr2otrqHEmrg!N`rW)utrr<#ur[IgGs4+jA +oBtr1lKIBnlK-sdmd9<'k2bXfm-sW>o^M20k3(pijlPXeroZ'!kO%j6p$h8/jPSeIe^MmibK7]> +aN`5hi8NSNjmVm=r;HTkp\+:Po'Yl2mdBW;q"t'i*<6!8q"F7Cj5/eXm.C2Rs8DoqrVc`or;6Bh +qu$Hl!rMrpr;6]rr;?NlrVZZnrqm'!qYC!br;Q]orr*$"rr2rsrr;p:r;HWmr;HWnqsrn/j65jq +kNhX-o(;PEnaGo6li-/fl0.C6jrVlcnq"!b5jPo.UgtU`cj9ac%iT01fnb)YMrUi;F +oCMYKp@RtJo^qbDkMY%DdE^"_dF-Org"bNCg=Om+iToRdmGHCGgueF`TqAHtaO]J@p&+ddrr;us +JcDnQJ,~> +_uKc9$ig5*rVlfrrr)cnrr)j#r:opTmcj`6"m"_(jQ5P&kCMh!ki_0nroa=FroXXNkih9rmdg)I +qu6Tprr)iq!<<&t"98?!s8N!!s8N"as8W&us8N#ts8W':rVuoI^Z+nRm-jK5mI0];lL4H>o^hS= +lg=6?ncJ=LnGVnVnG_rNn*orCq=sRKkiCXVg=Y'2g=b*-e_&U1gtLH6gYqGfp%In=i7ZQ&`4WL[ +V4X3ES=cOPVPU&]Ssbn/Q'\#<[)1,BkN_C&o_81YqY^Bl!W;ikquHWlr;Z]qr;?ElqYpBkru +qu$Bhq>:-ir##D1qt^*cqtTjTnEA]S_76YDQ]$fbO,f8"N>7M9P*D9"SYE$a[D9o2f%f9Il0[s/ +r:(3ep%@tJn+$&Co^_P@rpBgVo(qqoo(2JFo'u>BnF?)?mcifki8NYPhqm8IrnS^PgY(99jm2'o +o&.sLgZJ=_Tq8Bsa498>pAFjerr;usJcDnQJ,~> +ci41Js8W)srVc`qrVlfor;uusrVl]prr2p+rVQB^na>f2lg*j$l[e?plMp,JlMp,Kl3HYAmIBoI +rVlcq%K?>)rr)iqrVcZnr;?Njrg3ZbrW)utrr<#urYkb8s4"gCo^;)7naGl6o^V58p@\(LnEfK. +nbhqZnF,lFnc&%WnKIAjoCr(UoBkc&hV6c:f\,$5f[eX*f\5$2f@S^6l1+KCrqe,>p\"(Dl/ggV +e^W1%g"Y?>h;$c;eC2dhcdq(@o(i:ar;?QmrVZQiqt^?jr;QTkquHWlr;Z^Jr;6Egqu$Ejr;HWn +r;6BfqYBp\qY^6fr;?Njr;6HjrVccqqt'(2gt0us_T1"#cMl&tcHjkadFHq+j6?%(pA"Ua#5e5k +p%.\BrpL!Xlg4$.r:0dT!V5m^p&=S#o'u5?o^hVEo'l2?o'Yc'iS`\Rhr!;JhYu=RgtUN8h +_uKc9!<;oo!<2urr;R!!q=aFKmHa`9s6G7$pZ_bCrTaCH#O:XAmIBoHrVZ]mrW`E%rVc`orVc]s +s8N"as8W&us8N#ts8W':rVuoI^Z+nRm-jK5mI0];lL4H>o^hS=lg=6?ncJ=LnGVnVnG_r$n*orC +q=sRKkiCUUg=Y'2g=b*.f%A^1gY1B7h;dnpqYgEn*rc-9rVQEao'Yf.mI9]>p@e1OoC(u,iS`YU +me6PUrVd!#rr)lrrV$-dquHWlr;Z]qr;?Elr;QTnr;ccpr\ONQrr)iqrVccrrVH?er;HWnrr2lk +na5Z,ki1FYm-O--mHj-%kj%HtkiqC!n+?ANr;HWprr*E*qY0XNmHj0)lKIL!n*p;Hs7$0[nalbP +!V>s]o+^ifnal>@nac8=l/^g]iSi\OhV[2hh&tM-g"G3ClfRL'i6p<5k5!T%SuoQDe`?2mr;?Nm +s8N"Ks/uBP~> +aT);>"TSK#rVc`p*rQ!8rr2los8Mumo^:hsf$MOV^q[Ur]=Y_h^;%CrJ\V6"!kuFarkABHrk8cT +^qdh/ce..:m.L;TrW<,urVlcurVl`mrqurus8Dn_s8W&us8N#ts8W'ArVuoJ^u=nPmdp/DnFHAL +nFQJLp%J%Jn+$&CoCDMFp%A=XrqHHd%/9Jgo_%qRqYL!YnE^&:5j%7nk2PC^jQ5L_i8ESTkNhX/ +o^M54ki:OOe'?%KZ`C"%VPU)aU7S!KS!oh;UT:iAdbEgImI'T>q"jmcr;6'_#Q+Gsqtg3fr;QRF +qYU0dqtpC3gr;Q`qr;6Eks8;W_na#;ld`B)'T9GM,Q'D61+-W"\U8Fut]>;P5 +fA>NLlL"'0nac8Bo(;\Pqu$Bhq>U-gq>^9pq"F@Oo(2bN4SAFBp@\"Jp\+.Kp@n7Mmd0E4nEfH) +lKIEok2tjgjm)7"lLOc2db3C +ci4+Hs8W)qrVufqrVc`pr;QZprtGA.q"!_0gXXZoaiVWE`l?'=`l3MKrPeoX`lA"srl4rVs2Gbn +aj8W!kNh[5r;Q]orVl`mrVcZlr;HQmQiI*b!<<&ts8W,u+oVH@e\L/8mI'T>oC2>Gq!dnNp@\.O +naH#?p%.bGo_%nVpAXgdp)!Jsp%7qNq>0s_oC2).k3(sjkN_9ljlcX)(ZF6-hr'pcr;-6dr;QZns8Munp$_/(fZhCXdEg+^bPoWlbgFqkf@o3H +lgOK@rql`ns8!-!p@RnFo(;MEo^hYQo*P*bq>0p]p%7qMrq??a4S8==o_%hIp\+.Kp@n7Mmd0E4 +nEfH)lKIEok2tjgjm)7"lLOc2db3C +bQ%VA!<;urs8DrrrqmH.s8W)us8Dikp?gtuf[J*faN) +aT);>"TSK"r;HWo!<)op)ZK^7rql0AcbmB$XJi"mUnji_USFQYV5C)cJYrFDs.q0AVl-DhVl6Mk +VP^/aUoCT+]>i@]n+ck]rr)cnrr;uqrVZNhrr2rrrKmQarW)utrr<#urZ_=@s4+mAnEfW9p@IbC +p@e"KqXa1FnaZ,>oCV_JoCDPGp&=Y'p\+7Pp@\%InF6#Ap\=LTo'c/Bp@\%Imd'oC2/6mHj-#jPo"Gbf%6+['$F.V4jTXV5UK%]#)\@gYq8Wlg=-0oCV_Mp\+U\s7cWhq#:$e +q#C'mp@n=Tp%J(Wp&k'_p@\CXs7ZTip\+RY*;B1"p\FX[p\=R\qt]mRmHWfkf[.[OYGInaS!j5A +*h/h$Y-u0hdFR%/jQPjpmI'H4nF?&>o(DkWrVZNgrqHQhp@eFY+SGBk5*`)SZK?Bf&H,kr;HTns8N"Ks/uBP~> +ci4+Hs8W)qr;ccprVc^4r;6EjrVliqo&J9D`4E=\Yck::ZEpjAY^s(TZ2_$2Z*L[?Z2LsIZ*:F6 +YdV3[`m3?%o(r:`rqlQhrVcZlrVcZmr;N&_s8E#urr2rts8F5@s8UWahsg"$o_.nFnb2\Gp%n:K +nF?& +bQ%VA!<<#s!r`&qrr*K-r;6EkrVuoso]=]M`P&aerilX4Za$^:Xo>JQYHY77Yct=8Yck:8YHP16 +YHY46Yck77Yck:8YHY77Yct=8Yck77YHP16YHY46Yct=8Yck:8YHY77Yct=7Yck77YHP16YHY77 +Yct=8Yck:8YHY77YHY46Yck77YHP17YHY77Yct=8Yck:8YHP16YHY46Yck77Yck:8*Nu]OYHY77 +Yd1L;Z*:L=Z*1C7XK]+D^rF[RkO\TMrX/T#r;Zcpr;HTkr;?P\s8W&us8N#ts8W'BrVuoJ^YePI +n+?>Fn+$,FnFcYLn*ol;nFH2Cp%7kHo^qhUp/^q]o_%qNoC;>>o(DbPp[n%EnauPJoCDA;n+-&> +n*]Z8oCDG@nFH2DpA"Rbs8N#trr)]dna5T%iSreNhVdDTkih@%q>L +bQ%VA-3*rBrr)clr;HWorVcZns8;WXgrQq*Vkg/dVlHo(Z*U^=YctD2Z@T@]Zi@<1ZPg'RZ*UjH +\$rcPZ)t+.WMli#\]N[qq#:fA>NIjl5.UjPo1\k3)!nki_*kk32!kk5+6@k5OQD +joXZ,k5OQCjpL;8ki_-ml0.Z=7iT&tZroO.?#3bIDnaGi3rp0aQkiV%,jTal2l07Ktkl0`[kiq +e,TII!<;urs8<*"r;?Nlrqml:s8W&rr;Q`pq!R(c]sY/MZ*^sL]YMD%_ns7+_SX-?_Yh:N_>_:p +^qmn+`Q#p:_nj("\[T#U\\ZYNn+m"`rVQQlr;?Qnr;HQmQiI*b!<<&ts8W,u(B+:5f"To*lL"06 +mHmIKrEq>U-tq>0mZ +naQ&=oCVbNp\sq*q=jRSo'kr,iS<5Af%/R4jlu'uoCr+Wp@/(H%cud4jlGObk2tadk3(mhq<%b? +roa=D$K^F4kNM*mkNV3nroO.B#j171k3(gcjlZO's5jRJk2tjklKRR4l4rOBhV-T0d*9_R`PosE +eCWF4jll!prp'RKroa=F$g6[5ioB+`l07?lkPj`Gkl9fEjT4N-rTb?cki_-mki_-nki_0ljQZ.% +lfI-fl07BnkPj`FkTK-Tl0.EskjeZPkgeDBkPEi*Su]EDfAl8kr;HQms8N"Ks/uBP~> +bQ%VA-ia/Drr)clr;HZqrr)cos8Mlbim>KMZ`paC[^a&e_Sa4)^:qCt^4F)u_#M4k^qmn'^VIY& +`Pod6_S3ar\@AuT\A?SQnbW:crVZZn"T88ur;?KlQiI*b!<<&ts8W,u(B+:5f"To*lL"06mHu6lg!`tjlQL%+QDGCk32'qmdg#Co'l/8l07Bkhqm5K +jm2@)p%\@Xp\+UZ(\7+dn*TK-l0%0ikNM*jjQ,FbkNM0okl0cEl2U#Ll0/-0!9jCH&Er<@k2bdq +n*B)pjlu$mk3)a.robKhlKRNtl0.[:s6/"egunOdU7SErak,S?p&+ddrr;usJcDnQJ,~> +aoDA>"onPur;HWor#>Y6rVGm9agJ"@W3/,AmI0H#eBuan +cI(.gc-O_]c2PrdapQ>9bg"J\cd0taci22ibl,Zuc-FSVaNMlYgZ7V^jQGn#o_A@]qYpC"rVQNl +rr)ckp\+:Yo-X%una>W#h:U6(bfnD^f%Jg:kj.U#k1\&'ccaJTc-OeacHOJTb59?tb0.uPbfe5S +c-=JUbfn>VbK@uNc-FZ7c3)>8bKKk,&Bi>Dcd0tce'upsdE]kP_SH/c._N9uYc=UsU7RmFSti3b +Z+%Kda2l?Db0.rNc-FY]cHOGPaNDlZe^DgkrQtkqbfRoF`Q$("cMu5jc2c,gc4\CIc-+>QaNi>d +d*'MRcdC+bd/MHpAFmfrr;usJcDnQJ,~> +ci4+Hs8W)rrVulsquH]orYtn:s82?GcFg?_[D'T)f@em7iSrnXio/qYj5PXMr8[h:,NIeBi8EST +k3;0rlg!Nef?VCK['7!TdGaWns8Mupr;Q]os8Mrus8Dn_s8W&us8N#ts8W'8rVuoJ^>/,AmI0H# +eBuancI(.gc-O_]c2PrdapQ>9bg"J\cd0taci22ibl,[Qc-FSVaN;ZTgZ7Y`k3;@.q#(*fq>0s` +q=aLSpA"O_qtg-`q"aa^r;HTkq"4(DlfdQun+?;Fp\b$iq"*RqdF$.ZaiaV+s2tA`"3Sg0b5TR' +b0.uPbfe5Sc-=JUbfn>Xc-4DWcHXSXbg"AUrl\$[c-+;Sc-4DTbKS/PbK\>Xc-=P]dacptda6:_ +aMbp0]Xtnpa3)WOdF6Okcd'e[bg"G[dEg(Za2c +aT);>"TSGur;HWo*<#m9s8DTOdCulh[_B]+f\,!9i8N\Rhr!DPiS]:Gpu*7NhV[8Njlbjll0.-^ +f$;4GZ`pmVeDp-!s8Muoqu6R!s8Dlos8Dn_s8W&us8N#ts8W'8rVuoJ^>/,AmI0H#eBuancI(.g +c-O_]c2PrdapQ>9bg"J\cd0taci22ibl,[$c-FSVaNDcWgZ7V^jll1+p\Ojcq>:'cqYp6sq>1!c +qYC!drr<#srd"PCr:fmTnF6&Dqu$ +aoDA>#64Z!qu$HlrqdK-p#aQ1Xf/>2`R3Dsh:^<*d*^=le^aWLJ_0hOs4/XNf%/C$eCE.'g>1]E +g=b'%`l,j3[&^13bNAKqrVZWnrVccoqu-QnrKmQarW)utrr<#ur^Hecs4+mCo^D8:jNkKGZ*144 +['6a=Yck12Y-"b)Wi<&"Xfnt5Z*LX>YHG(3Xfeh/YHY42WN0p]p@n@Wp\"+GmcrrrjQ#@cki_0pmIBc;m,l[&YdCX +ci4+Hs8W)rr;ciqr>u"YHG(3Xfeh/YHY43WN322`Ra#-ip$%1r;Q]nqYBs^ +q"F^[1\^_AqYBp[p@n@YqYU3hrVZQhq"X[^r;-6drVuorp$UGBZEgU5X0&S1Yck75YHY:9Z2Us/ +YHY81YmdqCZa6sBZEggDZ*:J1ZN%30YQ(a*YPk^*Z4O7DYck:7Y-G=?ZEUO:['mOD\dQ!SZa$[9 +XfSY.Z*XD9!jf/8riRZRZ*LdG['6X1W2m/.Ycb(/Y->19YHFt-WMunuX/rG+Y-5%5YHP(2rNA&Y +Wj91FZE:15]"Peh]"Gbm^V7=h[^36GZbPQ#rohqbg#`"\Tq/6oaO]D=pAFmfrr;usJcDnQJ,~> +aT);>*WQ*9r;HZprVQQlqWuhO\?rlhfAuDnp$qD5kNM41lN6G=l[eF"m/QDOll,3Tl0@U$n*orA +p$hD9inE#8d)!2t]@-'Arr2j&rr)fqr;6HmrV`)_s8E#urr2rts8GIcs8UWaiUlU-mc;^,['?g8 +YdCX:0jr;?Bip_!8o +p@n:Tq"jjbrr2lqrr<#trr!H,qu$Ems8N#trr2`agV1/.[f3ZG[^`fRZEUO9Y-5(6YHY47Yl:m2 +ZE^aBZEaD7H*a`YYHkOC\%&oX]=Y_h^V@Lq]">M]['Hs>XK/J+XfSP&XL#FM_8XI9a2Q!7_SEq% +^qmn,`Pf[2_7mOl\@8uY]">Pa[^*$:Y->4:XfJJ&Y->48Ycb+/X/rA&XK8J(Y-5(6Z*CO;Y-5%0 +Wj91FZE:15]"Pd*]=PYh^q[Uq\$iWJ['RO-s8M65f@f9\f:eb9\B*7]mIpJVrVlirrdk*Ps*t~> +bQ%VA*WQ*:rr2inrVZQjrVGp4]WA0A]uJFPhrrVlcnrr)cnrg3ZbrW)utrr<#urYPP5s4+mDo^M>9i5W"!US40p_p@.G6m-X3>mO7Vso'c&;nalDFna+`.VQ-PjVl?c#XfA=tW2HMjW2HJgVPg>jVPpKj +W%=pHVl$;dUna]ZTV%gGS"#k7R@'D3S=Z@IUo'ucWiN.sUS+9RTq@sHR@0E@PS'1HQ^F2/R\$1H +Uo(&eVPgAkrMg4(W2?>^T;&6_WM]ZirMBIg"/_umUA^iOUna]\Unsl_USXf\T;\rrVkKf_Z*q-K +ZEq*W`lZ9:\?N!5VmYL_r8lGXf&ZSVU7SHqa4KD?p&+derr;usJcDnQJ,~> +e,TII!<;urrr)Zl*W?!;rUJX[['d`oe`#ogqY0[So'l,:mdBQ4naQ!unG)MQnc/+YmiLlan+$&B +o'u8I-Xfeb*Wi;oqW;`[o +W#)>-Unsi\USO]_VPg>jVkp,ZT;&6`W2BQi"/VllV>[1mVPg8aUAUbdV#6uHUnso]T;\rrVkKf_ +Z*q-KZEq*W`lZ9:\?N!5VmYL_r8lGXf&ZSVU7SHqa4KD?p&+derr;usJcDnQJ,~> +bQ%VA*WQ*:rr2lprr)fps8DNE`jW@nbh(qEpA4UYoC25JmK;kCm-]Glp?hnJs6]jQ*pW(Xmd]i9 +mdBB*mdTMpa1/Ical)jls8N&sr;QZmrVi/`s8E#urr2rts8Ei5s8UWaiq2a/m,5mfVk]rXVlZ_g +USOacU][BdU8.^^#G\,mVl6SmVuEM0UnXTWU84W^U7e9ZYe\cJiS`nhqu?Zoqu6F0q=sUQna5Z/ +mdTf>p%A+VqYBpZp%S:[rVl`ps8N#r+9)-/g9n#cXK/>$Y->+2WMcViUnsueVPU/fVl6JkWVi^n +WBmJ\VPgAlWiN5(Z*UjI\$i`OZEpd:Wi;qlTUqmSV5'`XUSt8uZa@0N\@8rW\$i`S[C!?M[Bd$? +YH=k+Wi<#!ri?[3WMZGbUSk)jUnOKVUSaobrMBXpWMTTgs.MZOUSO]^VPU)`V59lXW3 +bQ%V@"TSH!rr2oq+o;$2qX)_:T;&pFg"+^(d`]YNbL5"qf[eKue(*!tda?HndeqMudF-IleC2jm +rluD-d*KqZcICIse^Da`]rIm9e*Hf*rr)cnrVZY]s8W&us8N#ts8W(JrVuoJ^Y\JJmH`]MYc4Ou +W3Wn6V5C5nXK/A#WiWA+XK/G*Yd1UAZE^X=YH4\!UnsugWi2hqXgQ$ohV?lHn+cn[qYL*frr)W^ +lK$gWi8`tcmHj6.n*]K$gXk*6io]OooCVbKoCVYHpA"CTgpX8eXK&;'ZF.*HZ*:F7s/l=(riQ4' +"L"u3Yd",10sIjbYctC:Xf/%iTUq^GT:_[CR$X/*Q^=).S=cLLU8=lnZa6p?YHY45X/DeiUna^a +UAq"gU+i@=VP^;lX0&S/Yct=6XJr+qW2HMiWj&kE9aLea]W3t[cq;TcIeE$>RUS"Zta4KD?p&+derr;usJcDnQ +J,~> +e,TII"onT$rVc`nrVlfrs8Dm;n^k@OXiKGflK[d(l/h'no(VqQoC25hWNED/YHG"0XKAV+X/i>'WMcYoYdV!IZa@0M\$iZM +['R$BYH=q.X/W%qW2QSiV5C/iWN)ttW2QSjVl6MjW3!;5\$WHIZa-j?YHP18Za@-HYck:7Y,n\' +rhqiTVPgDmV516#ZE'h!X0T:H[Bd-Ob1GM-f#YJ/YGekhs7t[$cd_%LeYAb=\&[+]me-MVrVlir +rdk*Ps*t~> +bQ%V@!rr5tr;If8r;HWcg:XJiaPuRQmI0H+k32.#p@n:Pmd9H4naGmsn+uJXmdKW6naGo4rp(3` +mHj*#lL4<5m-*H_cFU9qg[kFD"9&/rrVZY]s8W&us8N#ts8W(/rVuoJ^Y\JJmH`]MYc4OuW3Wn6 +V5C5nXK/A#WiWA+XK/G*Yd1UAZE^X=YH4\!UnsugWi2hqXgQ$ohV?lHnG3+_qtpY,eP%X/rM2\@oYm^:h4m]"#2SYHG"+UnX]cXf\Y*Y-PIE\@/lX]DfAA\c0&< +[/RB7ZELC4XSo7&XK/B"W;rstW>VbA[C3BEYct=8YHP19ZaI6N['?m>XfSS(ri%rYWMcYnWMQDm +['Ha/VQ7#5\[A`L]ZSj_hq#l\ZEL47j8\r7d*L5&p=5q1Xgc@&jR2^=rVc`qrr.KKY5a"~> +bQ%D;)uTL,qtK=#[]HdLcIgn*f@/$ea2lBHd*g@idJM;jc[jICcj%hCd*L"_d/MDrd*Bn]c-?42 +(]Y(ql +^V7:aWi)VaStVpST9te'OHGWdOd)6'StMgTX0fRU^:h7q]tCn`['[0DXfSM"Vl'Hh#,\;uX/rJ0 +rO!HIYH=e%W2chqWNNY?]tD"l^:h4l]">WR^&G`4]tCte['-R3WMl_nWiN(rYI:g?Vl6c+]XtSR +Xgc=#h;-T#]!AQ>[c[VaimlQ1k4mQ)U9:uFf&Z;nqu$Els8N"Ks/uBP~> +e,TIH"TJB!r;?QmrVlis%0$2's8204^:(f%hsC@4&F]#PlKdm.o(2JDnaQ#9nF;)#qssdYrp^$[ +o`"G&naQ#:n*TN/mI'N:p@[q@jOV/O[*S=CrVZWkrVuiqQiI*b!<<&ts8W,u)u]g:e\9r3nF5l* +`j)SDWN[c[VaimlQ1k4mQ)U9:uFf&cAor;?Nms8N"Ks/uBP~> +bl@P=s8NN+qu$Kjm+&n^^s:j(rppZjmcs*(mI0W;oC;>'WN#ltri-+&YdM$Rrk1G+]"#)KWi)bnWiN/!WiNA5^radHi:6aEqt^'brr;lck1\%q\[AcO +]"G\h_T0g@_n*.YZb4E7mJHq_rV[6*rVZNdhR]koXfJP/\%M^S"hhR\]",EJ])]MC])fUZrk/KL +^VIUq[/R96Z*h9_a2l:"_CEC:]XkS[Za$X4WiWJ7\@/oY]YD7s^VI_'^qRFj['?g:XK/J*XJr.u +XSo:8XK&4rW2Q_qX/rP7]Y;(m^V@Irrk&6FrkCq<^:_.k\[T#SYH=n-Wi2krX/Mr"[^<07W33P@ +]="cC\&QtSh:0HUZEU=:k5Y28e^W45pt)@:Y.)F%jR;g?r;HWprr.KKY5a"~> +f)PdL!<;op!<;urrr!c5q"sjK`2p/Wd+d:'e(3'scHab\bf\,Qc-?77s3Cemcd'geci;;kcMl/i +c2Q#fcl:jOcYZcOHYusR@KqFXLZ'X]=Y_f +]"#3J[j8AdY,eLtUna]\Vl?_tWi`P5[C!Ve]",>_]Y2"m +]t:_XXJr(oV5C2kVl-Z(ZE'h!XgPdPZ`:"1^<4gKa1S^[YH,1rrq5@)f\,H`fVP=F\B!4_n+HVW +rVlirrdk*Ps*t~> +e,TIH!<<#r!ri,qrr)orrr+,>rql!'[(+<:m-O!&nFQ/?nG_tWoD\;#naQ,?mHX*1p@Re@nFGSSWjL7FrVuioqY^%+VPU,dW3*A7]"G_i]=GATXfA=tVuEV7 +Vl6MkWN3;6`ng7crqlNeqYgEkp?^_ba1f!h\,NoO]"c;/bK7N+Yd;$dhspUCrquWjrr!T/p@I%K +XK/1mV5pl/\@K2_]Y(kf]D9)j]=PSd^:h7o]tV:u^Ug_RY,n\+[CsDk]=58Z]",;X['R'BY-"n4 +\%]Yl^AbnI^+I%4^V7=iZ`gC,V5'c[Uo(&eUnt#kXfSV)Wi2emW2Z_pWirhB^;7Y&_SEq#rk(h7 +]"#8\\[oDd]XkPVXJr(oV5C2kVl-Z(ZE'h!XgPdPZ`:"1^WOpLa1S^[YH,1rrq5@)f\,H`fVP=F +\B!4_me-MVrVlirrdk*Ps*t~> +e,TII!<<#s+92?>s8N#rrr2lnrqkp$[(4E%+VPU,dW3*A7]"G_i]=GATXfA=tVuEV(Vl6MkW2m25`ng7c +rVHNg2#I4Jo'+rT_R["WZF76N\%KW"a2#-aVl6o3rr)fps8W)pp@I(MXf\S$Wj0%F^VBc^ +"22@Z]D9)W]=PSd^;%Cp]Y2(q^:CPPYHP1=^ramJbfTk,HcX.@]XbGTXJr8$Xg>F@['mKU]=P\j +^qmh"\?rKAWMcVkWN)trV5L>pX/rD'WMZPjVl6MkWNrVc`q +rr.KKY5a"~> +f)PdL!<;op!<;urs8;oq')VFb`MK?Fe( +c-4E2cMZ!-cHF8H`Q66Fair8jfYt7uUVQ3dXK\k=kPk)5f[ng@q:DI:Y.2O( +jmVm?rVc`qrr.KKY5a"~> +e,TIH#QOc$r;?Qlr;QZqr;Q[4rVPj%Xf]e*kO7j(mIBc9me$/Bo^hYFo)A.^nF?#r;HHer;Z`irrZa6sAXfJK$W>2A0 +Vl6SqWhuSdV6@bjoD\^bq=sd`rr+PGo'GDmgY1H>i8ESSlL+*+iRui;j6QC8r;HTnrVlcor;$$W +h7U"sWMZSoYd485#-b;7Y-,"6rilF-s02L+-a9k[Z*LX?Za6s?WMZSmWirkG`5]d7`Q$!>`50*r +['6^8XfS\3Zi76/YSFFKZEq!K[BZg4Vl$8dVl?\rW2?Jmr2gO3X/`5%X/MqpWiiY8\[\uOrj2X1 +9!PV'XfS\0Z*UjH[Bcs8Vkp8gVl6VoVld8/WhlSnZadNNXf\qC`5p$8[B?U8Y.EfqoAeKTg$/=a +V4k'%aOfPAp&+derr;usJcDnQJ,~> +e,TII!<<#s"onQ"s8N#srVuj:qWQ#$XNTScnF,Z0o(;JBo^q_GoCDJBnaQ#9n:C'(n,MhTmfMqE +mJcSQn/1`fn*B0$mHs0#l1"E8gW$e-aRfE/rqcKfrr2rsrr;uurhKMnrW)utrr<#urYth9s4"gA +o'Pc-h8-1jU7e6ZXJi(tWMcVlWiH#ss/6@*X0/_5['R*EYcXt+ri%'>Vl-JmX/VqjU8>'2h":UE +q=s^Xq"jpbp$Uqtf[nd/g]#tZhW3n`i7?2tcI_%Ao_A:^rr)irs8MieoA70cYcFb'YdV'N[^^ZaN)*(Y-"q2]''(aj4Mu:l1rr-TrtoGfB)Jor;HTn +s8N"Ks/uBP~> +bQ%M>)#X:.rV>]sTrH,cgXt64e^MsnbfS#LaN4>&"j>-8cd:!hcLK3[blQ,7rltPgb5TH]a:?2- +aNiAkf@.U1V9nT)s8Mrus8N"as8W&us8N#ts8W'9rVuoI^Yn\Mlg!BFYH+OqV6-r#VPpDiV5F3h +#,nGsVPU2gri,pr$E'_rUnsufW2HJhrhh?FUnj`^Z,GGirr2fkq=jUXq>'dXo^qhOqYU3gqYBm] +qtp$RlK@F#oCr+VqYgEnr"8o'o^gqPYHFh#VPpSuXJr+qr2BRls/>sq#,\5oV5C,frMCjC.f\>`getet@\&d4`me$DUr;Q`qrdk*Ps*t~> +e,T@Fq>L?m%K6>)n&qZ8e)p#_mdT]EnGhtVo)J:eo(2GBnaQ&!o^gqPYHFh"Uo(,kW2BQjrh]^oW;`^pW;ib$VPU/dVP^;k +WW&h2\\,M\Y,J5"WjUsgoB+i\g["^eUnFj!a4TPCp&"^drr;usJcDnQJ,~> +bl@Y@rV[i9s8DE/Vm4\4m-O31n+#r=naZ2@nac;Bo'u5=naZ+"n*ocimd9K2n*olL6^rFUKg>(N@h:pW4cH*l7[^hVkp8iVkpGuY,J(j +WNWV4XfAG*[CNu^['$=(XK/eks7>C.f\>`gf;,(A\&[.`me$GVr;Q`qrdk*Ps*t~> +f)PdL!<;op)uop:rVulrrVQHWaJ56ElJ^1hl]"#;`^;.S!]"#/U]"#WBrq5O5g=togeteq> +\&[+]mIU2QrVlirrdk*Ps*t~> +g&M*O!<<&ts8N-!s8N#tr>,D1r;HZqrr;Q:Y,B\BoB5<(oCVP?nGVkWoD\:dnaQ)>naZ);n:C-- +nH/4Mnc&"`nac8@nF,f5nc&"noCVYGo'l,:md9N9o_@k&[^=NTrVuiprW)uorrB\\$i`Q[^EQP[C! +e,TII!<<#s"TA?!rVc`ps8NT"dB0:nq"*_5mITu@nF6GJ"7bsQoD\7anF?)>nF,gsnGMbWn*oiG +mg&@PnaQ#8n*^2D(@^kanF>u8mHa'#lL+-4lHZ`BddmA:rr2rtrr2osqu3Ajs8E#urr2rts8El6 +s8UWai:?='n)r'6^:Und_8Epp\%&rWrjEHK\@B#V[^EQO[^NTN['R'EZaKbAs0r!;9"2=@\@TT) +iqeM +rO)[441;Z.[^ +f)PdL!rr9!rr)lr"TSK#rVulr'`.:HTTZe?k17MhcI^Ukaj&)RbK9V'!mT$8rQ]u?rQbPjcd2U9 +rQbMic2Q#gbSeRHcdU7bbK\DZbK%WBbL4qKPcWL+r;HWnrr)orrVlis$NC)*rr)fprr;usWrN+u +!<<&ts8W,u(&e14e\C&4mI'N4jP8MDf\53@hqZubh#H+Z.Lg=Y6BmJ-_\rVcWiqYBp\p@n@Wq>0p]p\+:RpA"X_1&(A7p\=R]rVcZnrr<#squ$Bep[@%n +f[n^,g=tB9f%/I-h;6uDhVI#Ehr!;Ih;$fbh>Z1dh;7#Cg"+^&ccgY1E:g=Os/g=k<9h#?.0h#H+8gtgiDh;-l?f[p,U"5)5Vec+&6e'c^pf%Jm; +hqd)Dh;$fBh;$`fg?81\ +UnFj!a4929oD8Farr;usJcDnQJ,~> +g&M*O!<<&ts8N-!s8N#tr>,D2r;HWps7tKQU<)d!mbcpfp@[k?nGVqXoD\=Ync&$/nbhnYnF?&J +nGVnWnGhtWnJLcao(D_KnEo`:oBu#4lL"-2bbho/pAY$grr;p3rr)ipr;HZqrr<#trr;usrVlfr +rr0/%s8E#urr2rts8Ec3s8UWai:64&na>JngY1<6hVmAIg\oq-gC;roh;$iBgtUT;g=b-2rRq/( +s4pi4gtplAgYCQ9gu\##s8W)tr;6EirVQHgr;HZqrr)ipr;?Nmrr<#squ$Bgr;HWorVcZlrVcZm +r;-6XiS3)=f@\g4gY16/f@o';h;-rDh;7&HhVR)Dh#?./g^r;uhqd&@h;7&Ghqcr4cdC,=cMu*" +c-4DTbL"nuj5SqLg"P37gA]e*g*#"tf%8R-g=k<:gYCTh;@2Oio/eoi)AOi +hV[2Hi8W\NgYL`BhVd5Eg=Y!-f\,!6hVHu@g=b3Bf\PKChVI#Ehr!8Fg=b'1gtgiLpAO^M +hqHfIp=?%3XLZF(k4&-CrVZZprr.KKY5a"~> +e,TII"onT#r;?Nmr#>V6rr<#oh5mJngY1<6 +hVmAIg\oq-gC;roh;$iBgtUT;g=b-2rRq/(s4nIFgtgf@gYCQ9guRo!s8W)srVlcnqu$Hi*;fR- +p$qYFnF?/Dp@n=So_%qPq"jmcrVlcps8N#q+8P^#i7cl9f@\g3gY191f\>6=h;6rCh;7&HhVR)D +h#?./g`YG0hqZr=h;[MXkih*ci8`kWjPo(RgtUK3eCNF8kN(Iug&Kb+g\fb.g"+[(gA]_.g"Y98 +gY;_]!8IJ-(#.Hrg"YECi8EMLh;7#Dg=b-4gu%)ii(2hdhqm8Hg=Op+e^i@*gY1?4f@\d2i8`eO +g=b9;gY(?9gtprHi832 +f)PdK!ri/srqufp*<6!9rr2lpqXN4ISZ0ush9NjRb1"e_air&RaiXP)s2k;`#0Y67c-FVZJ^3`0 +s32J-bKA,Vc-+>XeCDsh`P]X +e,TII#QOf%s8W)rrVl^.rVZHO`NHl7q=X"0i9U%-md9N7rpg$Z"nD3UnaZ,Jnc/'/nEfWanaQ#; +o'l#3nb;hOna5T)mePqUY/TW%rVlcprr)d0r;HQjr;Zfqs8W&rs8DoorVccprNQ>%rW)utrr<#u +rYGJ4s4+jAnEfW8p@@_Do'u;Dq"XRUp&=[bo`4^bpB(-ap\jdco`"O`o)SF]p(I/pp%7tOp%7tO +o(;\QrVcWjrVld+rVZQjrVcZmrVl`nrVZWlrWN/rr;HNjr;ZZmr>5J3qtg-^p%7qLo_%tQp@RtL +p\FUYq"Xj^!r)KbqtC-dp\sk!p\=ITo_%kJnF,`(f$DXfdb*=Qg,7R7e^r^Cnb)\No^qhKo^h\H +p%@nGnalAEp%A%Qp@e1NoC_bKp%S1Rp\4CRp%\C\qYBp]rqR0$p\=LWq>C-ap%\@Wp\O[YoD\:o +oCVbOq"OOVp@\(Qq"=:No(DeQrq?Niq=jR]o,mMqq=jX\rr2ZVgt13>o[Tb0Xh)X*jm`'CrVc`q +rr.KKY5a"~> +e,TIH$30u%qtpo'l5@nacAJq"FCRrq?Bb!;?Ed!r2NarUp6`rq6<_!;-6`');4oo_/%Po_/"L +o_/(YrVQKkrr3T0rVZTlrVQEao'c);mdTi?pAOaaqZ$Enr;HWm!<)los8!W.p%7kIo^qhMp\+7N +p%S7Vp\=ISp@n=Vq"sddq"Od]2Y["?o^heOp\=OXnE&Whj6,q%n*]T0kiCa^l14WGq"OLUp\4@Q +o_%qOoC;;>o^hYFo^qbGrq-6aqtL-a#PI`aqYL$_q#0q!p%._Fp%\I^qYC'dq=sd[p%&+P4nJ== +p%._CnalAGq>0p]p%7qMo'u>Dp%J1Vq=jONnalAEq#10bkhXnCiptNlSZ9- +f)PdK!<<&s"T85trr;rrs8=&2hn,_mcdpe"ccXDRcHje[bKS,La2uHEaiMTHai_g+bQ?&5b^n%/ +blc28ccuI3(s'hAcI:@occaGObL+h\VkM)kp&"XarVcZns8NH*s8W)srVlfrrr/qts8E#urr2rt +s8Eu9s8UT`iUQ4$p%nFXr;?Efqu-Hiq>'m`qtg0_qZH]lqtg0s`qYgBir;?Eg +q=XFUqu-Hiq"XU[r;63[rUKs[rq$Kip\4L]r;QZlrqcWk5Pk3Nq>'g[p\=R\q>'maqYU6hqtg6h +rVQHgqt^'_q>'m_qYU3eqYU3fqYBs`q>1$dp$_,"cFKU-KnPANS,ScaQ^*f%TWc5]j7L6fq>:'gq>^:Wqu-Nn +r;6?cp\=R]rVZNirr)`jq>:*eq=sd^qYC!aq>'pcrVQBcr;?9Ogt:3;o$aA,XguO'iU$78rVc`q +rr.KKY5a"~> +g&M*O!<<&ts8N-!s8DpGrVZTlqu-'m`qtg0_qZH]lqtg0s` +qYgBirr2ioqtKg[r;QZmq=sjcrqu]mrr2rt4oYEYrr)fnrVc`pr;-6aq>'maqtg3eqYBs`qu$?h +qtg0drVZQhr;HTkqYU0cq=sd]qYC!br;-9er;6?iq'c+;rr2imqY9^Ig!.^bf&PrSjQ#7Wg"+a1 +l1+NGr;$-`q"XUXq>0pdp]UEhq>0seqZ-Klq>^:%qtg3dqYU3fq=sgarVcZlrql`ns8=#:qYU6h +qYC'eqYC!cqY9m_qYC!brVZQir;HNfqYL3d"8DWhr;QTnr$;19q>'m`r;HNgqu-Kfl.jnAiptQn +TWGZEf&Z;oqu$Hms8N"Ks/uBP~> +e,TII/H>_Jr;?Nkr;Q]nrqYd"[E7LrnF,`.l0Rm/naQ#;naGu=oCDD?naQ)AoCMYKpA"L`s8MolqYC!aqtg0bqYL$_q"ad`qYL*cqYU6hqtg6hrVQEeq=j[`q$d,qqYU3e +qYU3fqYBsdqDeHRs8N&urqG^;ioTS)s8Donq"!b4jQlI8rr2imqu$?eq"X^_qY9g[q"aa\q"a^Y +pA"I[r;?Nlr!NE#r;-3br;HQjqu6F#r;6?p\b!grr;usJcDnQJ,~> +f)PdK#ljl%r;?Nmrr;rr')h^maekfOhpTWhdalghb08/UrlP5_rlG&[$-LH6bKJ,Rc-4C_c10%# +bg"DVbfe/MaiV]NdF$:aaN;]Me_@g4WQaf+qu$Ekr;Q`r$NC)*rr)fprr;usWrN+u!<<&ts8W,u +)#aL7eA(#5l0\->q>1-iq=s^Xp@\(Mp%A=XrUg3_o`"I[oFLWhq"FCQp%@tKo_/(Qo_&4Xs7uZh +&,,Vdo_/"Qp@n7Qp\=FRo)81[o`+J1o_8.VqYU0cp\4CUq"a^Yp%@tLp%7hIo^_PDo^_PCo'u5? +oCVVEoD\@hp%7kIo(;YMoCDPQp&=Rpp%\C\p[d_/e%_cCM2..[S,SclQ'7;mR]*mGi9^")o^qhL +o_&"Tq"ORYp\sjcoE=aTnFH/LnH/:Onc&%Tn,MnVmf`(ImdKfIo`4abq$?`foC;>?o(D_UpC$]f +oCDMEp%J%Kp%SFY"nhN[oC;AMng!bup%A%Qp@RtLp@n4Ch:gK>n^F;-Y.;U'j6lX=rVc`qrr.KK +Y5a"~> +g&M*O!<<&ts8N-!s8DrsrVud:qu-*8[C+iclf@:!o^_G:n+#r9n+#l8naZ,;n*oiGmfW(Jn*Ybq +n*_7`n*ol9mHj-%l0Rm1p\4:Jn+#`6o@(%Rf(]1Crr)lrrqmE-r;HZqrr<#trr;usrVlfrrr0/% +s8E#urr2rts8El6s8UT`ipl:#o_SC[s8Dcgp\+=Ro^qhLrq?<`!V>s_oDJ4kp%S7Tp%7qMo^h_K +q"=:Prq?EhrqQipp[n(Lp@e7SrV%'%q>1$frVlfpqYBs`r;?Egr;6 +e,TII,QIcAr;?Nkr;HWlrUSIH[+kq>1-iq=s^X +p@\(Mp%A=XrUg3_o`"I[oFLWhq"FCQp%@tKo_/(Qo_&4Xs7uZh#57`_p@n@Wr:q*&p[n"Ho^q_G +oC;ABp@n@ZrVZNfq>U..qYBm[q"FFVp%J.QoCDPGo()DDo'u>Dp%._Frq$Qjo^h\Fo_/%No(;qS +rq$?dpA4aerVm*"n)i`qnbrIe&,l=slf6sfoDAOap@S%OpAFRfo^h_IoCDJOnc/%cmdTc;o^qhK +o^h\Hr::'ap@\.Qrq.H.q>:0iqYBm[q"OOVp@RtKp%@tMp\4@Ro^hYDo(;SGpAO^fp%7kHrpU-^ +o(;SKq"Od\s770'q"j^LhV6Z>n'Ri#X164$jmi-DrVc`qrr.KKY5a"~> +f)P[Ir;HZps8=AGr:\sPSZU2kaM,[Eh:Bfjb0A/Pai_cJa2c9CaN;WLb08#ObKS/QJ^!Z.%*d#> +bKeDXbfe,Ka2n8&'ZeD<`R!>i[@O__o_eXcrVuorrVulrs8N?'rVc`ps8N"ts8W&us8N#ts8W'3 +rVuoJ^uP%Om.:#FpA=XUnac;Cr:0dWrp^'\nF-AEs6osV,OtF!o^_PCo'l,Ao^qhL +p@e.Kn*ff;p%J%Ko)&"eo'u8>md9H4o_%kKp&=[bo`+UaoF:E^n*or>nF?)>nF?#9rTsaSmI'K6 +rpUoCMVIoC2;>mdBQ3n*ol=o_%qMo()DCo^h;%g">?Ve>8nC]#`I`n+Z_Wrr2rsrdk*P +s*t~> +g&M*N!<<&sp\t3k(]=-l_6:`>p>t)joDA:Ll0Rp/mI'K5n,DhVn,DhVmK;qGmd5Snm-Y&HnaQ#8 +li--!m-sT9nF5l/mIfecWkdlprr)fps8Muqr;HTns8W)us8N#trr2lqrr;usYlFb&!<<&ts8W,u +'E.t2e\L5:lKn-;p%J:Xo'u;BoDJ.Xo)A.\o'l,Imf2bTn.,!\p%7hFo();=nalDCnc&(ZoD\A' +p%J+OnaGr:oC_hMo()DGq>:0irVH?`o^h\Jq"OL\ob@,moCMVIp%J(Mo_8%Op@RtIoCDDLmh>-Y +nac;BnF6#?o^hYDnac>FoC2_Lrp_0&o_%qNpA"FUm,$7>d+7(1g=tH;f$DI[dGO?_o^_PBo)8+X +o)8+Yo)J7Zn,D_TmJcSSmf2Ysmd9E1nF?)@o_%nLoCVbPr;QZgo(2GDoCVYEn*]Z6nc&"Xo)8(i +nF,i6m-X<6o'u;Bo'l/=o)A1Xo)J;&o^hVDoCMYIl/1:Lj7CcrTrkiFe`6)kr;HTns8N"Ks/uBP~> +e,TIH+ohN=qtpSr_;t1Ig#DT"p$Co.nF5i6naZ,Jn,MqXmfMqGmt'uqnGVeomdTc: +nF#]0lK[d*nF,c3lf@=$l,KaoCMVGo'u8@ +o_%hFrUTpW/+W?*p\Ojerr)NWlgFEBr;6Bfq"!V)gZ%\tr;$$Wo_%kKp%@tKoCDMEnbqnTmJlMY +mI0T8o'u8=n,DeVo)A4po_%qOp%7qNq>L?lq"41Lo_%kJo)A1ZnfI>loCVVEnaQ#8mdKW6o_.tM +o^hYDnF,f4mdKZ9oDS>&o^_VIp%S1Fh:pT@nC"&%XLZF&k4/6ErVc`qrr.KKY5a"~> +eGfgQs8W)rrVlfrrr*T2qWZ(qTY&Os`4s@@g==Beb0.s+aUlP6a2lEFb0/#Pbfe5Sc-4C_c1B3[ +b6-#4b00e/s3DJ*aMYm4`Q-0B_o0^IhT;Xnam&[#rqu]ns8NH*s8W)srVlfrrr/qts8E#urr2rt +s8E]1s8UWaj7DR%nFQ/>p\"%Fo_A4\p]'sdpAjpdpDru#o_%kLp%J.Sp@e7Up\4IZp\+@Up@e7U +p\+:Rrq-]np%J(LnF?,Dp\+4Kr9s^Trp9^Rrp:*]oC_\Eo_/%Rp@\+XoFUWanF?/Cp%S:YqY9dV +oCV\Soa:EfqYBmZq"X[[q#:*gqZ$?kq#0pdoaCE^mHNisi75fOU72%G(QslCP`h#aO.Wo+i:?^? +qu$?fq>1'hrVl]pqYg3gpB(']p&=[ap&=U`p&4Ueq"ad^rqHHf$hsGkp%A+Wrr2rqq#:!dobdDs +q"aa\p\+:Qp@\+Sqt^'aqYBm[p@\+Xp*9>,q>:-hqY9j[o'u84gY(?FpXZ17Y.Mg-jm`!ArVc`q +rr.KKY5a"~> +g&M*O-ia2Fr;HTorVccrrVlfprqu65ZaJ9Ln)WBhoD8.Hl0Rj+mI'K5mf)\TnG2MQmXaipmfW"F +n+$DH)"6hVki_6tn+?,7l0@^/gpON:!_p@\+NoCDMHp[n%Jp%J.Rp%.eJp%J(Np%\=Xqu6Ks +qY9dWp@eL[$MaJqqtKgZq"a^[rqZQis7lZirV$6`,P(?lnFZJKn)W6Tf%A[/f\,$5f$;=Ucen0c +rVcTgqYBp\q#:'jq"OO^q#C'mp@n=Tp%A%Xp]'sdp&Faap_ +e,TII+TMH>r;?Nkr;HZpnC+\Kd-0cRguS#$o]t`,mdBK0nF6GGr:'^S!:YR.mdL2D"7P[Fn,2\n +md'*"l0Rm.m-!Kmlgrl=ZdS=@rr2iprr;fnU]:An!<<&ts8W,u'E.t2e\C/9lKds2nF?8GnF6)F +q#:$fpAXddpAXe,p@\(No_%nNp\4CTp\=LWq"jaYp\4CTp\=LVp%J=Vs7[Z/o(2PLq=sXSnaZ,< +o'u29mI'B.mI0]Ap%A+VqYBp\rq6Wjo^qbIp\4IZrqclpp\"1Op&=Xlp\F^_p\+CWq=saaq>U6j +q#L3gp*98&oC;;;oD8Idrqc9Xo_A=]qYC$boB>)dipcjFs8DlnrVZWks8)`j!;HHb#5%T]o^qhN +rqZThrqHHfrV@?-r;HQiq>1!drVl`goC_bLq"a^Zq>0pbq#C-nq"OOVp%A=X!W)`nq@i]"p\4CR +o_%nOq"X[]r;?Bcq>($^(?jQ-gZJ.XURnU!a4BDBp\b!hrr;usJcDnQJ,~> +eGfjRs8W)srVlfrrVld0pXZL>XMWHXgp\k*hrVc`qrsJc*s8Muqrr2rsri6"urW)utrr<#urYb\7s4+mD +o',B)n*KN1!cr;Z`nrqlQhr;?HhrqZNfrqQlp +p@e:Wq"=4Jmf)PPkSEOSo(2PIoChqNo_A7Wq"jd[p@n=Tp&=Xmp\=R\qtg*^p%8"SrqZWlrVZ]m +"8_iiqYgqY9g[p\+:Pn*9&sk2Y1<\#>siS=>t7Q^O;/OcGU!\Bj4,qu$Hl%fH5$r;HTl +rVcWiqtg0brqcZjrqZWjrV-TmqYL*cqYC-e!VuHgoa(3_p\+7Qqtp?jrr`9!r;6Hg'DhV'r;?Hi +rVuimr;HQkrr2ilqYp:;qYU-cqu-KmrVHBfq!d\=kMP.Sm.o5.TWYoKfB2Srr;HTns8N"Ks/uBP~> +g&M*O$NL,)r;HTorVccrrV[l=qVJlj_qskPm-!X&oC;56mdKT2n*of6nF5o9nF,i6r9jXRJa`-t +r9bHknEoW2nF5i0kNVC(oC)#5mcs9'b-etCqYpKkr=Su+s8W)us8N#trr2lqrr;usYlFb&!<<&t +s8W,u)?'U8e\C,7l0.L&m-j`DnauVRr;?Nlr;?HiquZclqYpZ7Ihr3MKe&oe\iUQjG +rqlTkqtg-aqYU0crqcQgs8!)uqYL-er;6?eqtpBh!;lZi./ET/oCVbOq=jFKoC;DHr;Q`rrVcWi +qYBs^q>'mar;?NmqtU$bq>1*f#l4>mqYL*dr;-Bh*r5R(q"O7Dn)rTci9^9jUnFj#a40,8p&+dd +rr;usJcDnQJ,~> +e,TII!<;urs8C3hqu-HgrqHNgq#:*hq>gHmr<<)op\+CXrqc]nrr)lp"T/&kqYL0fs8)cn!;ZTes7?`j +n*90*q#::!Zo(;JCp\F^bs8N#rr=Su)qtg3grr2rrq>:*er;HTlrqZQg-2I?1q"aa^ +q=j[\q!d_?kMP1TlhK&+SuoTEe`QDsr;HWos8N"Ks/uBP~> +f)PdL+oVH@rVZTlrVlfprql-$T;]HDcHskX`lZEHbK\>Ub0.s,a9'N+b5KNcc-4B.c%4++bSnXG +aj&2ZccX8Ga3)HBaj88ScHsP1W6Xl0rr2lorX/W(s8DlnrVccprMontrW)utrr<#urZ(n:s4+pF +oBPQ)mHa9'mdq#^?eq#0peq#:($p\+@Xp\+=RpA4RYq>0sbrVc`m#Q4Jq +qu-Nnr;QO2q"4+GmH'mdqu6Ksqtg-bqYC-b!;6?_%drN=hr +g&M*O"98B!rV?F/rVZZoo?FJPf&cDooBtr2mHs?1nF,f5rp]mTs7$'W!:B^P!:PL,na?GG+RSXd +nF#T+m.'`Qf(AtArVc`n'E7t-r;Zfrs8W)ts8N#rrr2rsrilG&rW)ut +rr<#urZ(n:s4+pFoBPQ)mHa9'mdq#^?eq#0peq#:($p\+@Xp\+=RpA+OX +p\=LXqYL0d#5J#iqu$BfrqIE*o'c&8m-3ZmkjnKBo_/+Xq"44Pq"=4IoCr7X#PI`]p\FX^qu6Bj +q%*5ko()GIq"ad^q"FIXq>1*frqlrsqYC!aq>U*gp&=P6n*/ornG)hMk1eG=hr3SRj5]+SeBZ:d +hWsb(naQ2Hqtp6cqYU0dqtp6bq#:-iqZ6Wnr;Hitr;Q]orqufn0)GD>p\+.Fm-nF,l:o_81VoBku:pA4adrqucms8<-#rVZZmq>U+-qY0=;kiLmfk3r/uUS"Wt +aOT;:p&+ddrr;usJcDnQJ,~> +cN!qD&-)Y-s8MW7Y.N0Am.'W4kl0fKm-a?1rpL*[mI'N7nF#`DnGhnYnF#]1JaMpn.dZQknF#W- +mdp/Dn*B<.na>`1nEf2rjO^oIf(Aq@rr)cnrVulrrVuorU]:An!<<&ts8W,u*<#p;e\L5:lKIO# +lgXcDmI9`@p\=U]q>'d\q>1*d!r2TdrV$Kq=jX[r;-0\q>0m]p\".LpA"FZqYp6hp^d)hnaZ5Ep\=RZp\+@W +q>1*frqlrsqYC!aq#9pdoD\7imH3EjnG<.^p[R_FrVuosrY5;+n)`Nknb;kSo^__Qrr2lpr;-'dYnaGl2mIU)EmI'N/jm2='p&=[cq#0peo`"Cg +oCi"WqXj4EoCr.]rVl`oqZ?]kp\jk.p@n@Yp[%&+jlGRdn+tY2SufKDf&cDqr;HTns8N"Ks/uBP~> +f)PdL(]FC6rVZTlrVlfprq>9XS[H\bcHj\S`r='gc-O\Yb0.oIa2lBDao0Edc-+;Sbl,e;bjEXS +b8ACGd*^.]`l6$?`lH1`Ll0.-cjlu'mi;VRB +iT01ckN([clgjfJrVc]m0`CkBq"XRWp%.\Bo'PPmf%A[.bdX=4R%L%CS!fY0QBdZ$SuK*6ce%"8 +nG<._rVZTl!rVrnrql`ns8Duqs8Drps8+tWrr2lor;6?dq"=.ClK7:!o^hG=o]P&fh;$rIhqZr> +gYL`@g">!3gu%,Kf@&=3mJ6_Xqu$ +g&M*O"98B!rV?F/rVZZlkeXCEkN_U0o'br4m-O32nF#`5rpU!Wn*g8Fs6g0ZmdBQ3mdG_pna?GG ++RSXenEoN*lgaT:md0?2o'l2Bo^M,-k2*nYb3Jm'rVc`n'E7t-r;Zfrs8W)ts8N#rrr2rsrilG& +rW)utrr<#ur]L/Zs4+pHp?q53m-='4lJ:7Qj5oIgl0.?okih3nkiqBtl0.XjlYajme$ATq>L.Xr;HTkqYBpXmHX*-lf-RJipug0hV7,Zlf.!ilK7!Zip#^ml/ps]iT9=k +m,mEomI'9#iSWSRk3;0qkN1mlo(W(\rVcXJrVH9`q"FIToC28?mcWK`jmVj0iR5org"bB:gY1<0 +d*9bYeC`L0gYM#]qY^6fqY^3uqYBs`qYU3grVlirrr6R/rVuosrVcZkqtg*^p@I_;k2G@goBt`' +lJ0e;e^rX9i8 +cN!qD*<6$:s8;&qXNBPdmI9T2l0@KrmdT]5mdKW3mI'uCs6fmUs6g'Zn*TImmI0Elm-X<4md09, +oC__EmHsE4mdBW9mHi7m,QdOjmi3Bn`]'"pA4X]q=jOPlf?s]jQ5I]hV[Pgr;ZcqrVHEi +r;?Qk$MsSoqYL*er;QWlr;@W5rVcZkqtg-`p[mq?kMkRko^Co*leKn=f%8d=roF+@s5lK(hVI#E +i8s+]g==m:meQhZrVlfprr2lpqtg-`q=sa\qYU'Qi8 +eGoLHs8Duqs82 +s4"gCp$_/-jl>OgfYt_Haihs*cQg]Yb0%uScHOJRa2c9Bb08,^hq6/l_8OI=ai_fRh!4Y0qY^c.:LobJqH:`5g'H +cHOJYg#VVrqtp6dqu-Nnqu$BhqtTgQnFH&0f?hppe]YCoPEhT(QB[PoOHGcnR[p.LYe7s"g$&/. +rr)`lr;HWo!WDrnr;uusrVl`jrAFTPr;6?cp@Rh>kMY@gp$_)1nCu12`l,s=_na%&_o9U2^:h7q +_8O@2]=Gl1jn8NGp\4@SrqHHfrqR]6rVlcps82*:gZ%Pfm.(#*U7J?pa495 +g&M*O#64]#rVc`qqu-j!s7kH_ZdnOBm0`=On*fc:md9E0mf)YUmdL/Cs6TpVn*f[qn*]ZAmMt]_ +m-X91md0<.mdKf?nF#c6k2tdJZbG8is8N#sr"K).r;HZqrr<#trr;usrVlfrrr0/%s8E#urr2rt +s8E`2s8UT`iq;d)k2kXdl.Etl`Q?'serqufpA,Q6%r;-!LkNqd.hp9O&n*euH\]3+F`Q6?Pbf%B?d*pOqdDs)=_oU'F`lQN[g=4Eh +`5K[;c-Xh_c-Y,(n+Z_VqYL*frr2fmr;6Bdo^VJBn)iBVhWXCmhTj-adF$Cici22hbl5cmai;?A +cJ%LUrVcZnq>gEhr;HTlrW)oqr]0rVrr)]iq=s[Uo'PZ#gYV8cl/(C\d)!W8^W+@7`Pfg=aiMH< +^V7M%ai_Z?^;egkq>L9iqu$?frVIi;qu-Nmr;HToqWZbfiT]drnbh"6SufKDf&Z8mr;HTns8N"K +s/uBP~> +e,TII!<;ur)u]^6ptWHce*QAbl07O#m-/grr2rr!WN,urr;uurhKMnrW)utrr<#urY5>2s4"gCp$_/-jl>OgfYt_H +aihs*cRR2`b0%uScHOJRa2c9Bb08,^hq6/l_8OI=ai_fRh!4Y0q>C6jr;HWorVleCr:KCAn+H2- +c-"f.mF]1``7!)Wc-t4jai2ENe^r?ta2#I,a32WEa3WDke'5qN_o9^@cd0k[d+IFJp\XjaqYU6j +rqu]kq>'aSmHs?.imc?/kk+N5hV-oQm-X0)kiV!fiSE8?e'H:^ceId\rr;upqYU3hrVZWmr;?Hj +r;IZ5rr2lnqtg-_p%.V9j4rPYn`nujjjM&c_o0^rc4\INe'cL_aMu9Dcd'\M^rY3nq#:6ls8;iu +rVZQgrqIN0qYU!Lg=YBMn*KWDfVG+>\B!+YmIgDUr;Q`qrdk*Ps*t~> +fDbjMrr<#s!rr9!rqm<*r;>m%Vl%>\c,diAa32^*c2c&db5TTaaU?88bf\,Pbg+PZbfbR]n]_$V +rlbVjc-FY[bfe--a8a'hbK@fDbgO_]e\J#\b3o0)rVlcts8N"is8W&us8N#ts8W'4rVuoJ^>JPN +l/UaZioA=o[^j#a_#;/r`5BF+]=>A`^;%@o\[],Y\\,Ykc.g^d]XYPe]t(Y^^!5U2qYC'frr;ut +s8;fns8DZ[md]r.8[(4#qbJh<0[^ENQ]YMG$ +_8t']lh(#Lq>'mbrVlcprV\SNqtBRNo^V(rcd:1mbdjL9R[]P'O,f6_PF.l5Uo12q\A65np +]!euR[^`lX\?iNWdGj]jp@RtIoD\;,oCV\Kp\Ojdqu$HileC(Pn+#`5qq.[8X1-*uipHF:rVZZp +rr.KKY5a"~> +g&M*O)?9^7rVlfrrr2rtrVc`po@(1Zg@4Oql0Id9nHSLOmHs?0mJcMXmI'B.m-X3>mJuX*md'9^ +mHj6/n*]W2mHj3,n*TT:o^1u6o'#?*e$ZO0o)AXdr=]&,rr<#ts8W&rs8DoorVccprNQ>%rW)ut +rr<#urY5>2s4+j@oC(r(iSNSScFC_8!Ul\@fPj]tCnc\%&u]^;%qIe&Au0]"Ykg +\@9/rj7`?Fr;?MBr;-9er;60Rkj@s0hTX*sn*JN3XL>pZ[^Nic^UU_c_oKsFaM>[_'H$ +c,[`8\@8rY^;@k,_oU9_lh(#Lq>'mbrVlcprVcZkp[e"Kn`STTgZ@heh9X-cccX>M`l?-Ec-=S[ +bfI`>_TCEmpAY'gq>1!dqtp?lrXJi*rVlforVccprVZWnr;@u?qtp6cp\".Hl/ULRm-j&hi9/M( +`4in$_S +ci4(Fs8W)s)?03S[C=cTlf[Bnm-a<.mI0N1m-F$*n*f]DmJlVYmHj3,mHfDkm-P,GmHs?2naZ,< +n,D_dn*KH5n`oB+n)`]sd^6=-oD\^crW<-!rhBGmrW)utrr<#urY5>2s4+j@oC(r(iSNSScFC_8!Ul\@fPj]tCnc\%&u]^;%qIe&Au0]"Ykg\@9/rj7`?Fr;HWprC?earVulknEo`< +n__O2g[=FV[B$[L^q77ra2>R"]uA(:bf@K-Ycb48ZF.9\b07lB]XP>X\\5ht_SXCBhWsh0qYBs` +r;HWo0)YSBq!mb>n*T)^c.1nEn`\`Yh;dDLhqd,FhVd>Kgt0rra2ZjP/PXn)`<_l.3ns`l?6Jrlc,&e(3'qb/_K@b0.lG_8+7Lm/$b^rVlfrrVlfrrVl[8 +q=sa]p?1)YiU-.$oD[I@T<,QCe)BZer;?Nms8N"Ks/uBP~> +fDbjMrr<#s!rr9!rqmT2r;#BcU8l8acH4/Kai_cMcHOJTb08'-b5]Njb08)PbKA&RcHXSVJ^!K) +#g1B9c-+;Qb/sY(&]_l1aMuEMbg>(`VOtTep\OjfrW<-!rh'5jrW)utrr<#urYGJ4s4+j@o^_;/ +inrh]e\T)>`Q--Gbl5j8bf[uD_8=15b/q`E`Pfa9aiVTSk2+G)a32`L_n`t%cfY'$q>1$gs8N"I +r;-9frqZ6Wo(),"b/rE+mb,Ig]tqY)^V\.8`PT[>cdgXqcH3l4['R6W`lcQPc,mr@^qde)aNMcN +e(`sNo_J@Zq>0p_q"aa\p\=LTnFH8Ck1J)1f\=lkYGS7sSX>_/R%9tKWire?]YMJ-dG=0brr)]h +r;Q]orr)cms8<&trVcZnqu?QorVcWrrVZQjrr+PKqtg*[mc`QfoChJ+l1Eo\eB>hRai2-5`QHKM +a2,L(^q[Ut^V%8"e)0BVmdC)ArTkfsmdTiAq=s[Xq=a./f&Q;jlgXi)Un4Wr`REf4p&+ddrr;us +JcDnQJ,~> +g&M*O,QIcArVlfrrr2rtrVc`olGg*Chsp.$mI0Q6n*fc7m-O-.n,;\Sm/ZSQm=F]gmK2eBmf)Si +md9E.mdKZ8naGr9mdTc2mIT)AWl=?#rr!T0rVcZmrr<#ts8W&rs8DoorVccprNQ>%rW)utrr<#u +rYGJ4s4+j@o^_;/inrh]e\T)>`Q--Gbl5j6bf[uD_8=15b/q`E`Pfa9aiVTSk2+G)a32`L_n`t% +cfY'$q>1!dr."Sa3;l[f[S9l_Rd1`\\cG3cdC+_ +a2Gm4_oBjEc-FemjR)U8qYBs`q>'g]q=s^Zq"=4Lo^_1ue(a'Tm,?I>e^r*faN;TMdF?^ug"Fs) +ccjemm.pYZqY9pcrVQKirV[E-rVZWmr;?NmrVcZmrVZTlr;?Hkr$)"5q"F:Fk1nh]nDi0]nD2C= +cHFS^ccsb`f\G64d*9h\cMl'FbK\VumeHb[rVZWnrVQHfq"ajes8W&pqu-?VgXb?On*9H?fVG.B +]?8aenG3"\rr2rsrdk*Ps*t~> +ci4(Fs8W&r$0oL6^"i&AkihC4m/lYAmJcJOmJcPRm0N.Kn*]Q/mHs7kmHj3Am-X6?mfi4LnF,f6 +rpUNgmI'E.mI9<)o%UXS`pNU!rVQQqs8N"ls8W&us8N#ts8W'6rVuoJ^>JSRlK.$_jQY42_8F74 +b0A00c$%=Ra2>a1`Q?9EaMu3;`Q-*Ba4BD0cc=)Lc,ml=]tr%Wq>C'br;HWnr;HQjqu-Qlp$qVE +m+fk.g[FUc_n3Y"`l5j9cHXDJaN`)^f@/'h_7?t\\A?5/cHskZ`l#X/_SsX@bg"VkjR)U8qYBs` +q>'g]q&B)$p@[qAmdTT$dEC)%naYo%gZ7STg=tB;i8agt''802f[A'phsUC@rquTgrr2inr;?]p +rVc`n!r`&prr)lp!<)oprr"JIqYBmWmH<<_mI0)ikP"#jhqQlDio&bRjm):$ki(=Oh;-l@g=Fj2 +lLk)Srr)Tjs8=&=qtTs`q!-VbipZC'oD[LBT<,QCe)9Tdr;?Nms8N"Ks/uBP~> +f)PXHs81!cqYU0dq"FL\qY'LO +n`STOc.h[Yle^:Igu7;Mh;I5JhW!VYm-j6'k2"P4bgP>,j5T.]io&\KgYCZEj5]4bm.'fFqYp@O +qYC!_q"jmaq=jUUp\41;e^E+,in_u!]t_4^WN)u!YdM'W`6-ETe_/^8kjnWMqtKdXq>0sbqu$1!brqZTj"SqokqYL3g./ +g&M*O#64]%rVc`qrVdZ3rquTN]<]T=mHsB3n*f]3mI'E/mI'H3rU'XOJaMIaqWoTsm-O0/mdT`7 +mdKT3n*9B8jM@k/j7`HNrr)iorVZWos8N&urr2rqrW<-!rilG&rW)utrr<#urXo,/s4+mCo^:u+ +j5K7mj4)Z5rnIP3i;MU[h:pN/eCrd;hqm2Eh;-lDiSWhflepOQhr*AFf@AL2meHYSq>U4Yq>0s` +p\":Xq=O1Gn)rBMc.qd\m,-LMh;[JOgu%&HhW!VYm-j9)kMFb8c-tP0jQ#@aj5JkNgtglIj5f=d +m.'fFqYp@JqYC!_q"jmaq=s[Vp@[q8f$iF=oCM;-i8s%QeC<%"f\GEEjQ>[ijl,%RkjnWMqtKaV +rV6Wnqtg-bqYU0fqZ$BhqZ$BkqC277oBteui9p-tg?A@qgZ.2Ij5](Wj5oLjmHN]kiSreRhqd)E +j6Q7/rV6Bdrq6<`,5([)qYBs^r;,a7f\u2clgXi*V4b!'b1GeGq#(*hrr;usJcDnQJ,~> +ci="D&H2V+q;JoiakuCKm-X3,lg+N9!:0FHrpBaP!:,4&l0JK;m-Xf?!:TmSs6gWhn*fZ3mcs0, +kjA*)^oP00p\k*irVlfrr;chls8W&us8N#ts8W'1rVuoJ^Z"hQl/q$bl1*f`f%L&X!T2i6i?[76 +f$`(%hVd;Jh;$iBgu%)JkO@fqgYC]EhV-Q1fAQ&kq=sdbqu-@@q"FL\qtBUPn`SWQc.h[YlJ:+H +h;dVUi8`hTi8Wh[m-a3(k2"S5c-tMJitCJ9j5AeMgt^fGj5]4bm.'fFqYp@PqYC!_q"jj^p\"+I +o()/'ccar(p%S%DlgjT,i8WbVkNqX)nF?&'d] +)u'!nkhb7bo',&urpf=Kp$qhPp\4I[rVulpq>U*fo`k'YmdBZArp]q/rVQHiqs<.lip?.#o)7:= +TWGWAdbsHar;HTns8N"Ks/uBP~> +fDc`fs8W&srr)iqs8N#trUSF;VnpU&cHOGPao9EibKA&OaiMQFaN2O'bQ#ZibKS5TbKS/Pao9H_ +bPTH^bN6nHbPTE^bG!'$ai_iPbf\&Nb/qcG`l5j6a2c-:aihlTgXNa,Yh&FFr;QZtrVuosT`>&k +!<<&ts8W,uDuK_9eA'u4kiUsciU$=-jll+"mHj90nF?&Dna#E( +m-O0-l07R(oCV_Lp\=OXp@n=Vp@@kOq"4+Ko'5)\c.;(Hn*/rql1"?7m-3`tlL+*-nFQ2=mHETf +hcf()m-X0-nF#Z.ki_*ll0@X&mdBT7naGu;oC;AAnaZ5Do^VD?o(2Gd`onZc,n,Na2c9C`l,a1_Sa@2^q[e*`lZEIb0%iG`lS/"rlH>+cI:J'j6Z3nf@]$H +na>rFfVG.?[`$VQlgt#Pr;Q`qrdk*Ps*t~> +g&M*N*<6!9r;HTorVlisrVcWdfsS9=jQc+#n*KE.m-O`=!:KjR"mk[Fm-F!.m/QJMm/QJ7m/QJM +li?FJm/QAVmHa*'lg*s(rTk6cmd9H4nEfQ1n*9?7m)uN>g@YCCrr*-#r;HWps8Jens8E#urr2rt +s8I*M;dm-sr* +Un=d#aO]JBp\Xpgrr;usJcDnQJ,~> +cN!qC%fZM*p"?[ZeDfWUmd9B-rp'dTmHs9+lK\*/!:9LHs6TXKs6Sk5s6TXK!:6EF#jUaBmI'B1 +mHso@s6UclmI0N0lKmp&mIfbeY.*0Zs8N#rrr)iqs8N"ls8W&us8N#ts8W(:rVuoI^Z"_Hk2bO\ +m.]u1kj@g*m-a?3naZ,9lf[6elL+01md9B-mHj<4nalDClfdX#m-a<,lL"-6p%J.Tq=s^Xp\4IV +o(;bQo^MGBlJC"7f&lAckN(ahnb2P@lg!d%mdBK2naZ,9ki:RX53(nomHj91md06&kN;!mlKmp+ +mdTc:n*ol=naZ2?nalDDn*KE.md92kc-4i)q#1*bqYg6ZmdBK0nb)\Qrq[K-p[dnBnFlbWq"+"F +oC_hOq"XUWp@n@WrqRr:p@n@Wp\+=Tq"ORXp@S+Sq"=:Kkhk@dp$h&1rp]=Rr:p6irVc`orVc^$ +rVliqp\+CXqu-Emrqu^Ar;6EhqYBmZp@nC]qsE:riTp"#nGCk6TWGT?e)K`er;HTns8N"Ks/uBP~> +fDbpOs8W&rs8F)>rr2rrm`hZ.`6ZfUbK7iJbK@uNb0.rMaN2KEaNFM*s2bPibg"AUc-4ARqTJl\ +hol#AT$%YebKS5TbK7rMaiMNB`l,gp`=9i0bfeAbe@_NVdI@)3rr*#us8W(ks8W&us8N#ts8W'A +rVuoI^YnSDjl51TlhU2?o(MbKoC_eMp@\(LnF,`2nFHSM&+K&UnalDDo(2MEmHa32o)A4^o(;VS +pAae;p@\(Mp@\.PoCVeMoCDPHnDr-AbLG"gdE]nVe(`O)dEg4ie^Mjjd*^7hdEhg;)UHdXd*pOp +e'ZF`ai_fOdF6OkdEg+_cHjnermE^Se^i6tdF?_"iT&eFe(NdKnE]/pj5\qHf%/I,hW!\^lg4$/ +p\4CTq#(!^o'Yu +g&M*N'`\.1r;HTorVlisrVcW_d]p=7kNi-6''noOm-O-,m-X3.md0B0mHa*)n*U,@hsLF0T^DdF +#OUjClKdd&li-5cmI'E0mdT]4mdKW0me#qoXg?UKrVc`p#6"Jurr<#tU]:An!<<&ts8W,u+oVH@ +eA'r1kN1^\hs:+1mIKuDo^hbKp@e1OoC258mI9]Go+gc`md]o@o()DEo'Pc2o()DFo_%qPrqJ/@ +q"OIRo_.tOp%.hMp@@_CoC1hkaii2_dF$7^aj]"seBuUieCE$ocd:(eda?G@c5P$UdEp@meC2gi +bK7oMcI(+idF$:cc-FY_e,IcReCE."dF$Fmf\k`AdEpS0p&+^]p\Xm^o()>?nalJKp\+=Rp%\=U +pA"R^p@@\@oCV\Jp@\.Yp&=[bpBC6^p%S7Urq9amo_/%OoC_hMoC_bBioBP$le^XbcGS#P`QQHH +b/q`Ic-XkbcHX\`d*0VUda?@abKePad*9eYai;<=`59F2aj8Z#n+,\sg#;>gmI:&+US"^#aOfPC +p\Xpgrr;usJcDnQJ,~> +cN!qC&cVh-n^=VLfB)8`lg*p)mHa*9m.Tc8m/H>.m/H=Blj2qDm-X6.n*TN?mf2Yln*]Q0mdBB. +oBX])Ze+gKrr2lqrVlfrrr/Yls8E#urr2rts8F2?s8UT`i:#jjinrYZq=O(Fp@\(Lp%A%Pp%7kF +n*KH2o)A4qnF,f8oCVVEoCVV@lgF?7oC_bIp%JCZ0D>/7p%7nMp%J(Mo_8(NnalDBjOMAre'cRf +c-"2ZhV-Q0dF-Ope'6+^dF$Cici23.cd:(de()ssdETkVb0/&We'cXkcd'e\cdC5@dM(-]e^Ddi +d*U:sh:Bipf]`)0rr)iq+8l!0pA"L^rr2lqrqlQhq=XIVqtg$WmdKc>o_%qNpAXa_p'(-]p%J1T +rq7N.o_/%OoC_hLo(DV?ioKY)n`TB:k25Xrm-sW;nF#]3nGMi;oChkHlL"35md0<.o(;PEo'u5: +lKRHkio&\OkOA +fDkgKs8gs8E#urr2rts8EZ0s8UWai:6-s +iniMUq=a=Nq"am`s7l`kp\4X[rV%*&p@\(Oq"XUWq"XUSnFZMNq=saYp@nR]rq7<*p@e1Op@n7Q +p[n(Lp%Iq;e&8r-U6h42NJ`ntRgYRNSXl48Q'Rc(R@F2G<195BR$jA3SXl:>Q^*c!Q^XD4R[KJ, +QC!u,S!oY.R[]h:R$aA5W5@3Cf$rI7mdor4k3;7!kiV!hkj%R)o()GGq"sp_p\Fa`q"=7Np@n=V +q"Od_$MX>jp\=OXp@n@XrV6Ees7eGEp\FUWo(2G;hVRSbhp9ThUQM"/N00 +g&M*O#64]%rVlfrrVdE,rqu-,Y.30Km-O$%l0Rg(lhp,ImJcGPmI0E@mGI:0m@3GElg4!*rTkfs +mdBK2n*]T3nF5c1n*ST,YgW"-R$jD5S=>t5P`q;sR@BY5 +R$O#'Q^F21R[05-S",q7R$sMB_:7)_c.:qFq=sUTqu?Zlq=ss_s7d?'p@e1RqYL!]q>C*ap%.hL +p\4IXp\sphp\=O^p]'pfp\Fd_@/'Biq"OOYqY0[Vp$Lf#nFPr%i82/N]!SWK\$`QHY-51@\@8oT +\@T2Y['dHRZa$dA[^`iT['d6FYcb"&U8+]p_:%<+k2"_Mmd]Z5r7@^8XguO(jR2a>rVc`qrr.KK +Y5a"~> +e,TII!<<&ts8hs::.T'HOElg=--qsG-bmdBK0 +md9B/n*fT/mcr3'Z-r1L*g +q#^?cp\jgapCR,np%7tQq"OLWq"O@Ko_A4\q>^0hq#:*ep]'q7p%J.Qp%S.NoC_hIjj_5^[%WeN +P)Y<^SXc7AR[Tb;RZru"QC"#.rgZ$R^h;@5MgtUW@i8j%]j5f4X +h:pK)aMl3DfB)PpnDrEenF>f1q:;=4XLH7"ipQL=qucrurr.KKY5a"~> +f)PdK)#sU7rVlfrrr)lok.dOfajAA[bK7oMbK9b)#Kb'.aiV`Jao0B]aTou4b0%rNaiOJ's2b5^ +rlP;aaN3Jbs2Y2^rlY8_!6CbR#Kk01b/qcHa8Nso`5T[5b0A/Rbg"MOV5D;uqu$BjrVuiprh0;k +rW)utrr<#urYth9s4"jEp@.J3i83bqq"+7WrVZQgq>0s`qYL0hs8Nr8rVlisrr)fps8N&trVH?e +rVc`oqt^!^rqcWis8"5@p\+CYq"X[Yp@n@Vmc)X.Xd![+>?Y'+=C5KH@Tcf=??kH??XWh> +"^PA=>[:b:@Rsj3>?b?$>09?!UfC[;EFc.gdthWF;#oBki2o(2JDnF,o< +p%S4Uqu-Nmqt^'brVcZjq>1!dqu$?iqucior;6Kks8)forVQTl?MjQoqu6Qip%@qAhV@;VfuqLP +Q$n:5H%Uj(IsH-WFa&%NE-$2IH?sg\H$=CRG'.hKH$4CXH@($aF)5E#F+]d\_9^`ae`#rclgar, +V4k'&aO]JBp\b!grr;usJcDnQJ,~> +ci4[Xs8Vupqrl&"\(g-4mHa$$lKdd8l36M=lKdd&rp0UO"RPI?lK\-0s6BXMrp0^PlK[Kss69UM +rp9[N!:$?Fs6LKcm-O-*lg4$+lg*p)m-a?1m-O00mf)J`ldi>Cc0YE-r;HWnr;HWps8Jens8E#u +rr2rts8Eu9s8UTaj7`!0k2>+]qY9[Vqu-Hiq>'m`q>0sdrVum7rr)irs8Muqrr;utrr)]hqu-Km +rVcWhqu6Nmqu?RBqt^$`r;-6bp@e7Up[7%g^9*W:>$G02;cmC8@q&SC?!^f@>$G07>l@qp>[:Q; +>?Y6;?XI2H>?P*4>$G6:>?Y38>[:WB>uaj,>[Lc?=Bf$MT?,R,ajo>:p%7eGq#13krVQEbp\=OW +p%A(Wq$[)urVZNfqYU3fr;6Hj#5e>qr;6BfrqZTjs8+2Aqtp +ci4[Ws8Mrqqru,![bKs/mHWp$m-O$:klpA:l0@R"rp'LKs6BXKpZheCs6BUL!p]%7jm)m1!:'RL +s69UKU$;jHlKmp)mHjZ9&+8iNlgO<0lKRNreZu@&mf*4brVlfrrM'>lrW)utrr<#urYth9s4"jE +p@.J3i83bqq"+7WrVZQgq>0s`qYL0hs8Nr8rVlisrr)fps8N&trVH?erVc`oqtg*arql]ks8+5@ +q"OU]q=sdZp@n@Vmc)X-X-.7#=]eX#?kB;?iFIb??b?< +?!LQ:>[1Q??X6Z2=^>?<=B8R.E1Y,$cd(8.pAb-ir;HWorVZ]qr=o;2rVccpqt^'brVcZjq>1!d +qu$?ir!iQ$r;6Eiqtg0dqYL*drqp+"qYL-is8;Zep?gl#oD/%Hp@["WeC<%+inrPCe'Z[ug=b06 +h;6uBg"P35f%/L*f%T!8gtpf>f[S-^\[B#dcee!ZoBG5tn*]B)pXGn,X1?=&jR;g?rVc`qrr.KK +Y5a"~> +f)PdK,QIcBrVlfrrr)loj1V"_aO&;[bKA#OaiMNDa2lBDaiV]Iao0B^aU$&4bfe2RbK@p*b5KH\ +b5TN]aoKQUaoKQZb5TN\aoKPWapZ>6b/qfKaiMNBa2\%r!lW(#rlbqra3MW$V8VQoqu$Eks8Doq +T`>&k!<<&ts8W,u'`J(3eA1/?oC(o&i9^F>p\b!fqtg1!bq!mFm\=e4A1He,p7S-?P:I[/m1,UpG0et^M +3B/oS2)[ER2`EWR3&iiT2)I,g1d!WR2` +ci4d[s8VupqW>\o\D6<5mHa$%l0.Bsl0834s6BaQlg+N9rTj4ErTjFKrp0OL!:0:D!:0IIrp0LK +!:-?F!:0XNs6BaQmHso>*pr=^n*]Q/mdKN-kiCs[[B7U;rVcZmrr)cnrr<#tU]:An!<<&ts8W,u +'`J(3eA1/?oC(o&i9^F>p\b!fqtg1!bq!mFm\=e4A1He,p7S-?P:I[/m1,UpG0etUF2Dm>j1H76M1c.!G +2)[9J1,1L=1,1RA2)I'D2)I-J3]SrL1cIEQ1,(RD;2`9@b/i/nn+c\Np%eO`rVZNkq$-]kp\"4Q +q#1'nr;Q]orVZZnrqu`n!;ucnrqucm3;iaQrVccpqYL-gr;-?go&J`un`SfgfWgpATq\ZoXfJCr +USk,mWi2krXK&1oVld)&X/i8"X0)B&-`Nr9S!B"kMNOL6_UIE'hqI/[mcj3;f;,%@\B!.Zm.C2R +rVlirrdk*Ps*t~> +ci4dZs8MrqqW>\m\(g'0mHWs%m-:f'\@0/>C@1+t@@3B/oS1c.'J2`:-gq>:$YjQ6%0o^V_Kd_a>Xe_oKFh:^?.fA,6=h;7)L +iSN>HjPo(ri%?p]#2nPme?G@iTTduk3MckTq&0oa49;@p\b!grr;usJcDnQ +J,~> +fDkgKr;HZp#Q4Stik:q`ao9TtbKA&PaN)<@`lH0@aN2KEaSO!^b0.rMbK>CXlH(0iaiVWE`l5s: +`5KX7`Pfa;bKA#M`66-"VSVElr;HWnrViJis8E#urr2rts8E]1s8UWaiUu^,jknnZr;HHjrquZm +q@!,op\=R]r;?Nlr;?Qmr;73)qY9m^qtpLVhcodbjB`qu-Efq"XRXq"a^]rVZZtrr<#trVQcpqYU-eqZ-KkqZ-Kjqu?Qorr2iq +qu?LSqu-Hdp%\CZp\O^Shq[ATf?;4ENHT\oG'eRZG&qVAEccAADf9WL +g&M*O!<;ur!<<#ss83T,jhn(.hUBkqu6F"q=s^Z +q>:*frVcZlrr)cm'`7b%q>'pbr;?HgqYU3fr;HWnr;?Qk3rT*YrVlirr;?NmqtKU?d(#Zi5V"um +>@V8WBOjsr+sS?[-mpAj.Olhm+sJ6X-mp>h.46Dd,UFccr[K'maqtg-`rqHHf#5@f`pA"RbrVQcpqYU-eqZ-KkqZ-KjqZ?Wlr;QTnr%e-G +qu6Qip\Ojequ6Naj5KItl/LaUZ(@khU8b)dUnaZZV5U>iUnjibUS"'NX0&J(W;`\FV5C,cTq.U; +P`_#hR&7C:h<=(Zg#MMilgXi)US"WuaOK27oD8Fbrr;usJcDnQJ,~> +e,TII!<<#ss8UBk +qu6F"q=s^Zq>:*frVcZlrr)cm$iBeqq>'pbr;?HgqYg:Zr;QZmqu$mq>C3hrVHZmqtg6f!;cZk!;cZk-2RQ +f)PdL!rr9!rr)lr)>sL1j1M"cbKnJ[b/qlNaN)<>`Q$!>aiVWoaT0D5amR:Ja8s?$rl#\l_o9X7 +_o9a?aihfDb/LH[^ukOlrVlcorh0;krW)utrr<#urY,81s4+j>na5Pug=bW`r;-Emrr2oqs8F)< +r;?NmrVZNfqu-HiqYC$dr;6?cp\=X`r;6?dqYL3gs82lorV?Zmr;Zcorr)lo+oVE;p$CV_]:sR? +1.P\qM2I(GLN#g;-R:&i/hJM#.OcbD,n_RR-RgMo-RL5k/2&_41,:R=0`EXC.OHMq0.8.r/MJe- +/MSnNLVVTndbX*Vq"jdZrUg-]"S23ZqYU6h#5e8mq"OIQrpg`oo^h_Jp%7qMo^qbIo_%kIoChnW +ojd^goCDMHp@7\Gq>'d\p[-hmkN:LEb.O'oMM?Y3HZjXYG'A4XH?XOUG^=XYF*;qZI=?TkH$4@T +GBS1UH[U?mItNfRYf55Ri7HE6mIKZ6r7Ig:Xh2[*kOSHIrqucqrr.KKY5a"~> +e,TII!<<&t)ZBU3q;oMo]AMo?n*K?+l0%9pkND'ol0I[#Ja;(Vrotcqlg3s'm-X3.mHs9-md06( +ki(UT]!'*:*fqtg*^q"t!eqtg-bqY^6frVZQkqCDC>s8W&qrVcZmrr2iim,64%U3T3` +7pgIsMMI(EE(MZ0,UY)p/L`(t.4>'?&go(T.4Qbo-7C>p0/51:1+t:5r[fiS-7:E".OQYt0.\S& +/Ls;C][P-IeDTW_p@e.Np%J%KnaPu7n*ol:nFH5Hq=s^WoD\:ooCVYHp%@tMp%7nJo^qhKo(2SK +rq/>Gp%.bGp@e+Lp\Xj`qtTU=ipZI(jQ,(+WNr_-WMQ;aV5C/iWiDtnV5C,cTq7sUW2Q\nVPg8c +Undp_-(ps+Tq7pV[D^YZn*8c^iU6:(nbh%7T<,TEe`#icqYgEms8N"Ks/uBP~> +e,TIH!<<&s)ZK[5q;oJl\_cN5md'0)m-3`skN:slkj%HtJa2+W!U8nKlN?M>m-O`=s6LWjmd9B- +md03'kMP7M]!'->s8N#qrr)iqs8N#tquH]orW<-!riQ5#rW)utrr<#urY,81s4+j>na5Pug=bW` +r;-Emrr2oqs8F;Br;?NmrVZNfqu-HiqYC$dr;6?cp\=X`r;6?dqYL-equ-HirVA&?r;Zfpr;HTl +r;HZnp?^_`]:sR=0L]>mM2R4LM/l6B-R:&g.k<%t.OcbD,n_RR-RgMo-RL5k/2&_41,:O;0E*OC +.OHMq0.A4s/h\e+.P<8BK"KLXc.V:Pr;Q`rqu6C>p\+:Qp@n=So^hVDp@n:RoC;AAo(2MFo_%nL +p%@tLoCV\Jo^_VIpAX_=p@\%JoChnKo(MqVq"jaPj5ot2p[n4LeB-:neCDsldF-Imf\5'4f\,!3 +f@83tgA]k\g=b-0eC2dgbKJ&ObK@lGce.@Prr)TTh;[hklKe2oTq/9sb1GeGq#(*irr;usJcDnQ +J,~> +g&M*O)uom8rr)fnrVc`prVlTN]Uu:LdE^"XaNMfMaSj0Xa8j9XaT':$frqlThr;HZqrquZmqAK)&q>1$cq>:*fqYU3fp[n.R +qYBmZp\=LWrqHiop%A%Rq>'g_rr)imEr#V1rV?*Pi6f66I7uRi@Xsi5PF7km>sC(q/MJt;1GLR: +0/,+70/#"60eb=:0JP:;1G^d@0.nq50JP@@2VQ$]"XJr2%[(ac=jP\Y>hsBt& +nGCh4SufNFfB;`#rVl`os8N"Ks/uBP~> +g&M*O!<;fms8*?%jMS%3iU#pulKRU!l07F2l2BlIl20cGl2U#[lg!d$lK[^#lKda#l07Ktl2KrJ +l2BlIl1F6@l1aHCl'U`9l2L#Il2^/Lm/H;fm-Ep!lfmEkg:OT-kl(GXrr2lorVlisrhKMnrW)ut +rr<#urYth9s4+mBo^D&(h;%5iqtgNt%qY^3cqu$Bgqu$?co_&"Uq=jUW +q"OO^pjVr0p%J1Vq=sgcrVHBfqu6WqqtBC7dCl?(9K,INJ=)^fR@8e75;FcA0JbOA0eb:70JP77 +0/,+80JP:90ekF>1GU[/h]":0.SM)0i*\Cf[J-rhs'UulK$sdlKREjiS`\S +ioB%Wj5oIgl0.^8a2c3>a8X.Eai_`E_o0R8aN)-3^V7J%a2l?B`Q-! +g&M*O!<;ur!<<#s&cMY&jMRt.i99Fll07R%lfdO2kl'`GkkjWEkl9lYlKRQul07Ktl0@Ntkih9p +kl0fHkl'`Gkk+*>kkF(50eb760JP:90ek@:0etO@1,1F6/het61GLL71Gga:0/GC=/M&P2:l3!>eBln1 +o(r1Smcj!'m-*Qmk3(pijQ#7Zj5f@ck2bR`s5a7DroX4Cs60LG#j1=6ki_'jlKS<1s6)#rjlYag +jlYjto'uAClJq($qt0@KoAA6`lg4',mdT`7nauMIo^h_Ko^hYCrpL-_p%@qIn*]W2rTb`qmH`ur +j5oY#rquBKgu@\jm-XSuUS"[#b1PeDpA=ddrr;usJcDnQJ,~> +f)PdL)?9^8rVlfrrr)fii4GS]bL+SWa2c?Gb/_O$aSj-ZaS3aRaT'B\aR[@R`lH-Arl>&\!lrF) +oZ%-Ta2cLX!rr2rtrr<#trW<-!rilG& +rW)utrr<#urd+PCs4"gDp[[\6jQ#V(qt^3hqtp6er;HTjp[n%Gn*TN2n*]W7q>L*Vlg='&jQ5Uk +kiV'mlg4$,md00#kNVC%md9WDrqZBdqY^[1]LI&PELf@/L9nFPu%dE9_`eBlXp +guIS^lg!a!kiCdbjlGI_roF:Dj5T(YroF(=,NRtIj5f@cjl57YjlYXajQ>R`hVR5Sm.0]4j5oat +hpBj'_#1A=ZaR3DXSo.]WN*)*[^ilOX/DnqXg>ON_oU$FcI(+kf%&=#da-%UcJ%77g"> +ci4^Ys8Mroq;]>m^#AAElKRTulg!d!rp'IH!:'=CrTaFKrT`t<"6f"6li-/KlN6>:lh'EFkiq?t +l04c)rTaFIqs,'`l0@U"kiV0qj6,1.YJo]&rVlfprVZTgrr;uuri?)!rW)utrr<#ur\sfUs4"gD +p[[\6jQ#V(qt^3hqtp6er;HTjp[n%Gn*TN2n*]W7q>L*Vlg='&jQ5UkkiV'mlg4W<"mbC7kNV@4 +m0<1[rqZBdr;Q[Hr:fU:eAJVZF_#99P,"nOY-=XTE+WQg@:E_X@p`MK@qB1\@:EeX@:NeV@fBd: +?sik$>6@GbiR;e'?S(m-j/ndE9_aeBu[lf%]*?io/hSio9"ZjlGI_ +roF:Dj5T(YroF(=DWKp?j5fCejl57YjlYXajQ>R_h;72Ulgs`6ioT_$khbFefZMC^cHk"lf$r-q +dF-@bb0/2`g=OWla2Q*De(EL:l0Rg+nF?&;m-3Zlh:C$,io]7Sf\u2dmIL5/V4Xj"aOT>=p&"^d +rr;usJcDnQJ,~> +e,TCG'`J%0r;HBM_Pt-(kih9pkj.X&l0/-2rTF7GpZVS?s6BRIo&p2=kih=2kl9oLkj%I*kQU/5 +kj%BqT]upLlK[^#lg*j$lg*j6lOiFJlfmQslf7*[\urs7rVc`orVcfqrr2rqs8<-#rVlirriQ5# +rW)utrr<#ur_!.hs4"gDp[[\6jQ#V(qt^3hqtp6er;HTjp[n%Gn*TN2n*]W7q>L*Vlg='&jQ5Uk +kiV'mlg4$,md00#kNVC%mHsNCrqZBdqu6OKqtBF9eAJSYFCJs3P,"nQYd1']EbT#l@UNVT@p`MK +@qB1\@:EbW@:E_U@UWYQ?sin=5@.]'?t3YR?t3_U?XR;N?<^W?@X4cmg!e3tjn&9;jOhi,f@JBs +eCi[9iS`SKh;7#HioB%Xj5f:_jQ#7Zj8S-=j$;\ejQ#=`kN1^^ioT=`j5f@aiSNGNkj7m2lf71$ +q=*Y=q +f)PdL!<;ur('":3rV,6^SuToZbK%WBaN;QE`lQ7#a8X0Ua8a-Za8!aU`qIIQa90H&a3">$s2bDb +aiVWFrQ"rZ!lrC'r5T#_a2c9CaiNqm!6G/]s2b,[!6F9Ds2aoU!6F]Ps2Y2^r5]r$aN2B?`5BL0 +_o0I0_o9[;a2uTOb0S)/UqG^]q#'se#QOf&s8W)us8N!!s8N#%s8W&us8N#ts8W'0rVuoI^Z"kU +mHE]omJ?\Rr;QWpr;QX:r:faJkiUdVf@SR%f&?)jlIXA/cHOAPc-OVVbg4bjrnBWgda-7ff%/C+ +l1t;SqYU3irVZThmGQO>b/M''[C3TU^W+LCah>*h[^EHHZ*U^;X0&\8[C!6F['R'EZa0S8!42[3% +(3RQZ`gR;Z*L^C['Tb;I^?>c[(*TZcemR*bh(qFn`A38\$ir_]u/(GiTfn&o'u5 +ci4d[s8MropuB5l]\i,Al0.Eslg!`ulK\B5rp'=Ds6'IIq!.nCp?DVB"6f"6li-/KlN6A;lh'EG +kiq?sl07L/li68Mli68Mli68LlN$5Lli68JlN$4hlN$5Jli$,Kl2U#flg!d$lKRU"lKIBqlK%-^ +\ZWm6r;HZprr)cmq#:L0dqu$Hmr;?BXi76)p`P&ag +[^`l_`lu]K]sY5U[Bm-CZa$X5Xg5@B['R-I[C!?KrNcg<[^NTO\$`NFYPtd0ZaR?NZi791YS"1J +ZF\65g!@jljRDX#eASr0rkD1FajSu)l0I^&mHj-'lg*j%m-X6-lK@ +e,TCG!<)op&,l7__Pt*%ki_0mkj.X&lM]uIkl0iBkl9fGkkOEBkP"->kl^,4kj&02s69[MlK\$* +#3Y46l0.?qqus8N#"s8W&us8N#ts8W'0rVuoI^Z"kUmHE]omJ?\Rr;QWp +r;QX:r:faJkiUdVf@SR%f&?)jlIXA/cHOAPc-OVVbg4birn9NddE^%be^`1(l1t;SqYU3irqu]i +n)DpDb/M'&[C3TU^rXdJc+pfs[^EKIZ*U^;X0&\8[C!6G[C!9IZi.09['d +`5MYm'#_])`5p'AaNMfMd)E#\^#Jh`rV[$%rr2rtrr<#tVZ6\q!<<&ts8W,uDZ0V8e\9u6nE]<$ +jmDg;pAFpgrVZZorVH0RkN1[Sbf.?/]"cVPl.Nk^]t:_WZF.-HYd1[I^V[n+^UgeX[CWoY`o-Uj +r;?Nls8Dflqs`OlbgG82m,QaB_nj@8cI("cdacmteC`R4gYC]Hro?6$i8N\Sio/hRiS`\Rhr!8C +f$r*pe_8m=Yk3M9ni83GQh:L-,hsC+3mG[*rp?'fWmGZ7%\[f/[]sk8MZF7

    +g&M*O!<;inrr!K*ik_Y+h!F@klKda#lg!d"l0A63qWe%DrTaFKrTa@Gq!.kCq<@tEr9F:Fs69UJ +rTXUNlK[^"l0J01s6K^Mrp'XNlg+Q8!:0XLs6KUJ!:.Vh!:0XLs6B[Lrp0UKr9G$_lg!d%lfmTq +kiM$]\?3a5qu$Hmr<<3!rVuorU]:An!<<&ts8W,u?iC$)e\9u6nE]<$jmDg;pAFpgrVZZorVH0R +kN1[Sbf.?/]"cVPl.Nk^]t:_WZF.-HYd1[I]YD7u]sk8NZadKP`8UIir;?Nls8Dflqs`OlbgG82 +m,QaB_nj@8c2Q&tdacmteC`R4gYC]Hro=(>r8\XRio9"YjQ#4Vh:^?-dF$LthVdANiSXUj2rETS +ioB1`h9jL!k48')e]#23]Y(kk`m32mj5f@bkiq9mjQ,@^jlbjijPf"Rj6,Ufj5T+]k5OHAk@`i5 +iTBIjjl#"Sj5/A7eD9E_p?UVpn+#JhiqVonc-+;PcI'nW`lcTQahu!7c.:Uuahkj.^;%V1g$8A1 +r;6Bfq"FL[rVcQRf%]9HiS)oBm-sH8s4X?DY.Da,jR2a>rVZZprr.KKY5a"~> +g&M*O!<;ur!rr5srqd0'pu9,g\(^$.kiqBum/H>NlMTlBl2BiEl2U&Il2Bi@l2KoBklBrFl2KlG +klBoFkm$>8l0@KrlM9]ElMp,Jl2p58lMg#JlMg&JlMTlHlGDdBlKRQsl0@U!lg4!(lK[^$lKdg' +l0%9ojQ5"'Xi0E#rr;rprVulrs8W)qqu$Bhr;HZorN6,"rW)utrr<#urbh]7s4+jAo^M21kN2+* +q"FXbrVcZnrr)]cmH74\@oM_Yd1[FZEUXB\\5eq_S3OcZ*_'O\&RA#rqu]m +rVuimr;6'Ge]uRul0RH_beh6=bgFqhdaZn"eC<.+gtUWAj8S-=ir7ssio/kUiT&qUhqco5d*U1j +g"tZFhr*AIh;7&IioT7^kN:OCa3s&?oBP#O^Uq.i\@ol+e_B!=rnSCIiT&qWiSrkXjlPR^hr!JW +kN:gaj6#M'jT"@*j5AnYlfmNhhVmMNf@&4+lh:&=i8X7tjjrMioAJ3Mf\#*AhqQrEk3D-iiT0:m +na5AlgYCQ:guRr"rVZTj,l7E:rVuoehrO(cj4Vo;l0[j0s4aEEY.;U&i9Kq2rr)irrr.KKY5a"~> +g&M*O!rr5trr*T0rr2rsrVcHI]:Pt@cHF;LaiVU!aT'4bL>2%i8Wk\ +k3(sjjlQI's5d2Bk2kX\h:^,saN)HMg#;&Sj5f7\jQ>[jlL"*2o'PGdcdq1GmGumA_7m[u]th\4 +dam((g=tH>gXt*-eCE.'gY:E4eCE7-gtUN7g>(K:f@/7Kf,iW#hqcu7d*L+ed*^D$mJ-JEioBV& +jjW&Xn)2mSi;VRDg!nO(hW!DGg>:lPlf[*VrRW^Rg>VAfo'u;Bo_%nPr;6?fmGR0qm- +g&M*O!<<&ts8Nc3s8N&tr;??M_Q(0%lg*j%lg!a1lMp,FlMp,JlMp)Ylg!d$l07O!lKIHrl0@R3 +l2TrKlKdd7lMp/QlKdd$lM]uIl2^)IlMg&HlM9cGlMp2Ll2p;:lMg)LlMg,LlMTrJlG`&hlMg,C +lMp2OmHji<''e`FkNCsifXJ$'kkb2Trr)irp\t3m!<0&!s8E#urr2rts8EZ0s8UWaiUu[)kN1ag +p%J(VrVQTl1B%4Lp$V&*hpK6BTUVOM]@#:cIjlY^gki_j,s5t$YkNCsbh:^,ra2c?L +f\trRj5g4"4lthhkiqI%n*Ar_dFm^Qo'"iSaMl-:_8OC(K:f@8CNf0.gBhqcu7d*L+ecd("rlh:&=i8X4pimZi\o]P5rlfma%ki:^emI'9"hr+FhsBq&o`!R@TWPfIf&Z;mqu-Kms8N"Ks/uBP~> +g&M*O!rr5tr;H]prqmB,pZ',g\(^!-l0@U"lg!d$lM]uIkkaQDkl0iHkRQnBl0@KrlKRQrkNM-o +l29cFk5so5lM]uIl3-A:lKRR3kl9lIkl'cFkl'cAlMp,KlMg#LlKRR4l2^)JlMp,Hl2^(cl3HS= +lKRU"lK\?6s6BXNrTbTkki_-ik17#E`T[:!rr)corr)irs8MrorVcZmrr;usXoJG#!<<&ts8W,u +')hk1e\C)9n*9)tj6?71p&+dcrqnPMrqlBVkiL^L^oj?"Su0-IfuL.iY-"\#Vl?YkTVA9]WiWA* +WM?)ZVQ$Df\CgBLqu-Nn./`r>qsrdqb0T#;qX2%i8Wk\k3(skk2uX* +s5nLfk2ta_h:^)p`Q--Kf\trRj5f7\jQ5Rgkj%R'n*AiWbgkhFo'>/\aMc!3]tq\1cHstccd:+j +f%/@"daQ^ug"P-1eCE7-gtUN7g>(K:f@/:&f@S^2hqcu7d*L+ed*U;"m.^8AiSs7mi6^?Tp$1`, +oCEOdp[mtFp\k-kq=j^`s8W)lrUBjU!qQ3err<#ts82rqrVlfp*pqkIm-!H`dbF!SmdpG3V4as# +`m`i0o(r=`rr;usJcDnQJ,~> +g&M*O*<6!9rr2lprr2rsrVcHI]:Q%EcH=;OaiMNDaN+5"s2XuWs2Y/\rl5PkaN2KDa2uED`l?*A +b/hX%aT'6]aN;U'aSs9]b5TK_aSEsXa9'K)a8O*ZaTT],ai_d*aoBN`ao9H]aT0E]aoBEcai_cJ +aiNScs2YSib0%iKb/qcJb/q`paoBEoaiMQDaN)EDa2c0;_o'@-^qp#f"3&=&ao9Hhd);oY^>o%c +rVc`qrVZZprrW3"s8N!!s8N#%s8W&us8N#ts8W(+rVuoJ^Z+qRlK@6ekOeK@qtp6grVHEjrV?'O +jOqVWOaM>$Mkn,2\t54ZU8=cfWi;edSt`*[W2QPbR\$CXWhH/qeEll&rVulqqtp]e^i:!d*^7hdF$=geCN0tc,e#O +db!.'e^N$trR1_l'%>b)q"aC0md9ZBrq/YLmHa-0p@Ib@mI9cCp$M8EqY9aWq"ajd +qu$HmrVZZps8)Qjp$(f0lKdNbi9g(#n+tS-S>s'=e`?2mr;HTns8N"Ks/uBP~> +g&M*O!<<&ts8Nl6s8N&tr;??M_Q(0&l07L!lg!a"lKS63s69CFs69RKrojsZlK[^"l0IX"kih9q +lK[U3l2TrKlKdg8lMTuJlM]uIl2^)IlMg&HlM9cGlMp2Ll2p;:lMg)LlMg,Ll36M?m-F!&`TmNh +rp0:Cs6BmVm-O'(lKS<3#j(:&\$!a7qYU9k!WE&prr;p!rr<#tX8i5!!<<&ts8W,u?iC$)e\C,: +mHWlqiTKk,p&"X_rVcTirr)Zam,Zj@Y*"*TIZ(#:bIX:2St`'ZWiE%oT:VdSVl6PjSsl4IXK%tg +[FFR9p\k-krVQKiqXNLkbL5A@qX`t-c,.31_YqAn^qRLuaO/VngY1?6h;@,KiS`YOiS`YQi8EMI +f[S-a_84(4dbEdBj5T(Yj5oIfl07U)na5>edb] +e^i:!d*^7hdF$=geCN0tc,n)Pdb!.'e^N$trR+orcI:\;q"X=:iU?3lf&cf(n*]oIqtp +g&M*O!rr5tqYgm$r;HBM_Pap!jlYh,l3$A;l0/'0s60=Ds60LIroamXl07Kskj%EskND'ml07C0 +kl9fIl0@U5l29iHl2BiGklBrGl2KoFl1sWEl2U&JklU/7l2KrJl2KuJklpALHqrr0&"s8E#urr2rts8HC(s8UWa +iq;^(kN(Ubo_.tTqtg9iqYU9jq=Et6fuU=YI!0ssUqb*aSsGtBV5L>nWMH/XU8FieW26,TSYiKg +Tq]!Fm.L,Os8Muoqu$<\iR5otiUcp;l.sV$^;.Va_[aJs]tqehu;R6hZD`nhu;P: +hqQf5bf%<5`QZiej6#IbjQ5Oekiq?qlgO?/hpTg%jm_g*hpouoaMu0 +f)PdL#64Z"r;HWprr*H&i4P\_b0J/PaiMNDa2c3ta8a3\a8X0[a8X0[`s'K(aN;KCrQ,#Zs2GPj +b0.oJaiVTD`l?'?aiOJ%rlG,]s2k>`q9&`Z%Ecf6a2l?BaN2ECai_d*aoBN`aTBZ.ao09\a8X0[ +`s'Q+aiMQDjiIJB"3AX-ao'9_aN)?kaT':+aN)?@a2l?BaN)<>`5BI.^q[_&_SjF7aihoPdD`&Y +^?#(br;Q^!rVZTlrVc]ts8DutrquourV`u#s8E#urr2rts8EQ-s8UWbiq2U%k2YF`pA"C]q`"KN +p\FacqY'C?fYO>7Bjtq-S%[(]VOXE^Zb!lb]="lFYdV*R\$W9 +ci4FQs8VunpZ05k]%uT6rosXNlKRQsr9=7H!9sLJs69OJs60^NlK[^"l2BoFl2KrKkir*3s6'RL +lKda7l2U#Mlg!d7l20cGl2KuJkQC)7lKS-0s69RKs60XOlKRO3l2^)JlMp)PlKdd$lKQ:Q!pT"8 +rp'RLrosIJ!pT"9rp9[P&FA]Iki_0nk3(@+Y/ff(qYg3gs8Duq"9&9"rN#turW)utrr<#urX\u- +s4+pEo^(i)j5K1pq"Odb2uWXJq>C3fp@%.r_4uTr@VpO_^!43-k]"Ynj[BQd;[^s&Z['$L9 +]YD"^Zc(\jq"XacrVl^BrV>sAdEBnmn+cSGl.se4bfe/Obg+GTaNDodjlkphhqm5IiSi_Qro*n8 +s5=FHiS`SHe^)LbdFHt.j8S0?j"ofZkiqF!mIB]3i7--+k4836jP/55da?Ije_&O*e'ZRle^`!i +bfe/Obg4_deC;mmd*M^9E6cq`e^;U^aNW,dg!n +f)PdL!<<&srr3B*rVcHN_l1*#jQ5V)kl^5:ki_m-s60OIrosIHrosIH"m>.7lKII1l29cEklKu2 +rosIG"6f"7l2KoHklU/7l2KoDl2TuHl2ToKkiq?qq<@qCs69RI"7#.7kPj]Gkl0iHkQU59lKRQs +_W_Hll0I[#lKRX"lg*j7lN-AC3fp@%.r_4uTr@VpO_^!43-k]"Ynj[BQd;[^s&Z['$I8 +]>(n]Zc(\jq"XacrVl^BrV>sAdEBnmn+cSGl.se3bKJ&Nbg+GSaNDrgkj%Bmhqm5IiSi_Qro*n8 +s5?H,iS`PGe^2Ree(i7ul=lgX<4rRdm:X1-*t +i9Kq2rr)irrr.KKY5a"~> +g&M*O!<<#ss8Dus'EA(1rV5?`SuTlXbfRrH`lH0Aa8F$Ya81'grr;p' +rqu`ps8Duss8W)t!rr9!YlFb&!<<&ts8W,u&,lP.e\C)7lf[?hip-@9q>L7Lq=XR\r;-0Yl.NeB +IUuhuH()V$bdFLV\\cG3c-!r<]Y22)b/_K<_T'^;^::i$k5,,UqY^bgZ@r!p?geto(D5%jR_]nf@\_FeCrg:h;ID^o_%eClg!d%m-4!2m,6^WiSWDAe_&dA +k2bIYiT'(ejkf+_jlYIQipQ@)o)749SZKBBe`?2mr;HTns8N"Ks/uBP~> +g&M*O!<<&ts8NT.s8N&tr;?9K_Q(3&kNDd-s69UKr9F=Hqs"1GrTXCIr9=@Jlg+Q7rp'OJrp'FG +#3tI;kiq?sr9=7H#3kFL7Lq=XR\r;-0Yl.NeBIUuhuH()V$bdFLV\\cG3c-!r<]Y22(b/_K<_T'^;^::i$ +k5,,UqY^XhlKn!/mdBQ4nFH5Dp@n1DhU9^#jmr*5jP&,3e(*%%gu$uBe^Djme'cLccd'eYb0/&V +e^r@#da6:`bg4hng=Xp%c-OtrgX=9lg?%\mo]t>bgZ@r!p?gesmd]AhhsTXZe'umqf\PE?hW!hi +n3$$uiS`YRinNAOgsOO"g"G!,dF6h,iSWDEhV[;Ng!SI/h;?r9hX'e$oD[F=T<,QCf&Z;nr;HTn +s8N"Ks/uBP~> +g&M*O!<;in')hb,pZ',h\(g!)kNM3qlK[Wtr9=7Fqrn+ErTO=Gr94:HlK\B4rosIHros@E#3k@8 +kNM-or941F#3b=9kiq?qr9=7F!9s%;!pAh3roX=Gl2KiIki_.,kQ'kakTf9SlK[WulKdd&m-F$) +lKmm&lKIEok2k[df=7s%kl(JZrVc]os8Voo!rr9!XoJG#!<<&ts8W,u&,lP.e\C)7lf[?hip-@9 +q>L7Lq=XR\r;-0Yl.NeBIUuhuH()V$bdFLV\\cG3c-!r<]Y22)b/_K<_T'^;^::i$k5,,UqY^(NCg!SI/hVd)9hsL"&oD[F=T<,NAeDfifr;HQrrr;usJcDnQJ,~> +g&M*O!<<#ss8Dus'EA(1rV5?`SuTlXbK7iHa2c9Ba8F$Ya8 +a2la2Z'8_SO+*_8=+/a2lEIbg=;-U:oU_qYgBls8<9' +r;HZqrVulss8N!!s8N#%s8W&us8N#ts8W'krVuoJ^Z"bKk2YL]lh^PUrVlcoqY'a_r;6?am+K+F +J8/M)G+$2!cb$Nn]u%b.a2Pj,\\#Yq`Pfa7`lQ-0Xf8SHiqNKPqu$Ekrqn#9nDVg>dbsftrV5g> +e^)Rif%A[,d)jDUg?7ttp@7D.j5fA%j94T*j5T+uirA$PjQ5UhkMtR\iSs"fp\Fa`q>'m_rqh-? +p$1>Zc.(b@na#)^c-"5SdF[13hV$B(c-4GVb0/)VccaAIa3<&eg"+X!bK7lNeD&j:g=4Eof%o-1 +bg>24p&+a[kMY@anFlM>hr4/"leUObhp06Y^q@M'`507+aN`&Uai;<=a2uQYj4ho'aiD?7]=bu& +daZ[hbp(K^g>h,GjQYdghq-iTna5oGfV>%>\]<7]n+Q\XrVlirrdk*Ps*t~> +g&M*O!<<&ts8Nl6s8N&tr;?9K_Q(3&kND'olKRQulKS63s69FG!9sII!9s:Ds69OJs60UMlg"E4 +"7#.8kksZKkiq?slKS63!9s@FrojFJr9=4Gs69RK"6o%7l2KoHlMfuNl0.?rl0834s69.?!9s4B +s69OJs69OJrTX@I!9s(>rosFI+mJ4SlKda#lg4$+lg=**lKd]ukNCsjfXS*(kkt>UrVccqrVum' +rVZTlrVlisri?)!rW)utrr<#ur_*4is4+mCo'5Atj5TD$r;-BkrVcTdq>C0fqY':/^7Tpj@:j\N +_:[)GZad]c`Q#s;^q@4i^r441`Poj<`OW+MZ,kr!s8MonrVc`n,P^ced`g.tp&=pbmbu^BcdLCs +g"+Nlaj8](nFZGEl/^mck5OEEjlGI]j8S';is"Q/lKI?jro8Ljn+Z\UqYBp^qYU0fr:fR7da-M+ +nau8/f?hgidad%-io&P?cd'e[bf\,Scd0eT`5g*Og=b'+d*'PQc.(M)hV-K*cdpq-e'-1pm.L;S +o]P/ll1"E=lJCIeo&eT[kM"%p^:_%l`5BC*^r=F;`PB-u]YD4qaOJGM^r!r?_7mOo^rXjMccaJW +e(EO1e(ip>iS2l=m.'N8rn4*>XLQ=%jR;g?rVc`qrr.KKY5a"~> +g&M*O!<;in')hb,pZ',h\D-**kNV9rlK[Wtr9=7Fqrn+ErTO=Gq!%hBrosIH!pT"7r9+7Ikih4- +kR6S;kiq?ql07Erl0/'0s60IH!pJn5r9+FNkih9qki_3oroX=Gl2KiLki_-nkii$1s6/Y1s60IH +s60IH!9i\3,O"CWlKRQulg*p(lg4!'m-O$%ki_-kjlGUV\?3a6rVc`orVc`qs7uWqs8N#"s8W&u +s8N#ts8W'krVuoJ^Z"bKk2YL]lh^PUrVlcoqY'a_r;6?am+K+FJ8/M)G+$2!cb$Nn]u%b.a2Pj, +\\#Yq`Pfa7`lQ-0Xf8SHiqNKPqu$Ekrqn#9nDVg>dbsftrV5g>e^)Rif%A[,d)jDTg?A,$p@7D- +j5fA%j94T*j5T+uiXY#1jlYdkkiLgajQ5XrqYpD5qtg3erVl`lp$1A^dFdLJoBb>`cHXY]eCrg? +iS2l/cHOMUb0/)VccaAI`lurdg"+X!bK7lNeD&j:g=4Eof%o-1bg>24p&+a[kMY@anFlM?h;7Jb +iR?H>f>k_A]tD2%`PK@-a3)TG^q@7g]"G[4a4&2F]Y;1p\[Ju[`6?NL`l?0GeD8d+gZ%/NgXY6M +o'Z,Kfqb7A\B!.[me-MVrVlirrdk*Ps*t~> +f)PdL#64]$rVlfrrr*H&i4P\_aj8,OaN)aN+;"s2Y2\rl4uY!m&F& +rl4QM#fap*`l?!;a2mnnrl,,^aiDB@aSEmVaQLVDaSgmN,fdpE`Q#p<`lH-@aN)6: +_ns=._Sa=3`lQSSHjl5:YlhgYXrVZQkr:p-erVZWknD;0bNdGbdI@\=2eAJu8^qRIm]=YV^[(!WY]tV>#`l5Tl +SsuXng$SS4qtpBjqu-Nin)2[>e)C!!r:]L6d)jGVe(<7&cH+&Ng#_Ynp$h2+jQGdkkiqEtkih9p +kl0]JkiqI$lfe<0"mPUSr;HTnqu?MBq>0s\m,-:=fAuGllJ0b,`Q-*Fe(NU7f[7pbaN2B?a3;oW +b/:s.`mEGme'Q=Y_SaF?f%f-9e'#q_g=k'%dG=*Xp%S1Kl0.L(p%.D(iUQ[/hW!kXbf7Q9]YMP* +^qIIu`Q?3A`P]U3`lZlqhp]fj`4rmn]>Db +ci4^Ys8W#ppZ05l]%uQ4kiq?qkiq?qo]ZA@n`g)="mP77lK[X5kRHeAl0.?okihqu-HirVZHe +rVcZmqs`I^WfDFGEdaLsgXO-S^qd[s]">Sb[^l +hV-H%bL5+ueBZItlLFQAp@%80m.'c?l.t7ao&n``kh=1r^V%.m`59:'^;.V'_S3Uns1L>'^!#*W +a2Gm3^:Utj`66QVcHFDXdFdF7g>hDYjP8;ClgX<4rRdm;X1?=&jR;g?rVc`qrr.KKY5a"~> +f)PdL!<<&trr3W1rVcKO_l1-$j5fCel0.Brki_U%!9s%;s60^NkND*okl0cFklBrFk6:,6kiV'k +r9+7Ikih:'kl0iAkl9lQki_-mlKIBol1sQCl0%:1l1sNCl07C5kNM10l3HYAm-F!&m-O]:%dN +f)PdL#64]$rVlfrrr*`/iOke_aNhrLa2Z*;`l?!;`l5s;aN2C#aSs6[`rF$Q`WF-!`r*j_aMu9? +a2c9B`r`Pq5as2>Pha2c3=`Q#p:`l?'=`Pfa7r5J`Uq8WHR#faj&`5T^6`Q%ks#K=Wu +_o0I1`;[aVa8X0dcGQWU^#]"crVlg*rr)fprVlisrr;uts8N!!s8N#%s8W&us8N#ts8W'(rVuoJ +^Yn_Kjo46Im/?nZr:fm\qtU!arV^7!k0q#BS!/quXjH+bdEKq[`kfF*_8![r^V[n,`Q--Gbep`` +VR4FtjRE'Dr;Z]kr;QT_iRH0#hXLC;q"!S%e'catgY^uHg=P'=n+Z_Wp[IM7mI'E0n+#o9nF5u< +n*TN?mf2[!nFH).ep$1Gto]Xu[g"=g+h;$]9 +g"YBCjQ>Raj#?)\j6cX4ki(=KdEKeZf%o6>g=Os1fA#KMiTfmtk1nSImdfiXLZF'j6lU< +rVc`qrr.KKY5a"~> +ci5!as8W#ppZ05l]%lH1l0.?okNM-mkih3nkj%Hsrp'LIs60LGpuheBkihs/$gQs?kiq?slfdNp +kl0iGkl9iGkQ:&5kl'fHl2U#^l0%6nl07Erl0.Brkih3nki_0nrok0]kND'ol/q3okih3nki_-m +l07EpkO%L5k7QqBl0.$`5Td>c-4)2VP^`Ag#VZ"qu$KlqY^?i +nDVmBdGFBhq=sOCgXFU#fA#3AhV-T8j6ua>r:f^Hlg=-.mI0T7n*oi:naGl4mdBK2nEoZ7o'u;G +r;6?fqtg-aGk^n)q"=+9f$N%0nF>_qbf.TDb0&&\g"P'*bK.`D`PfgAdaH@X^:qP3f[\6ha25R) +_9('Tg"+Kkb0JMgf$i1(iT97goC_SLuKgtUW@h;RY]ip6+"kMFhKm-j91rRdm:XLZF'jR;g?rVc`qrr.KKY5a"~> +f)PdL!<<&trr3B*rVcKO_l1*"j5];$kPs`PkN:sjk3(pll0&'1rojCFs5s+>!p8\/r9+FNkNM*m +kiqBqroX7D!9jFFs5s@E!pSq3roj[OkND*okN:q+k5sf/kPj]Fk6:#2kN:sjrob*[k2tjkkN1mj +kND!jkN:pikih3lk3_@3jq6e?ki_*jkND!jkNM*lk3(pirT=1Co]H;==m-O`;'("oK +m-Ep"ki_*ikL[5G`Td@"rr)otrr2rt!TeCW:#e_B'EkNha4n*BB3p[dS)i9g$sh<+=mgXt32eCi^7gtUQ;h;7&GgXt'+da6_0 +iRlZ-c,muGbgY8"g"4d*f\#$DkN)%$mHNN]ipZI+oD[F=T<,TEf&Z;nr;HTns8N"Ks/uBP~> +f)PdL#64]$rVlfrrr*H'iOke_aNhrLa2Z*;`l?!r`WO9&aN"5#rPo)]`Q#p:`V[XV`Q#pn`s'K' +a2l`59F1_o'Fk`XBl1aj.f' +U:oX`qYgEn!<2rq#QFc'rr;uts8N!!s8N#%s8W&us8N#ts8W'8rVuoJ^Yn_Kk2YI\mJ["ZqXX(H +p@S(Squ6F(p?gec`k]=!\]Wt#khY%PhV.t\("q0ddad%*gY(64gtp`.`5gHgk3):6r@.dEqYL-d +nD`!EdbX9BYU+me?\V +qYU0fqYKsZp%S+IimlH1kOeK8hpfrtdaHIifA,3:f?qmgbfe2Te(<4#c,[lJe(`Esb/qZ@_SaLB +e^rC"cHjnfg&0W4hV@,\p@.D8oD%q?h;Rkpl/Ct(n`T3,na5c9o'c#5m-X93o_.tNq"a[[s8;Zb +nE]5phrF"hmHNiskNM!flK.!in*8ugfAZ/gmdpG2Un=a!aO]D=p&+derr;usJcDnQJ,~> +ci4FQs8W#ppZ05l]%lH1rojCFs6'IGrTF@JlK[U4lM]rNki_0nkNDa+!pAe2q<8(Hl07L!kl0cE +l2TrYl0.?ql0@KrlKda#l07Kul20]EklU)5l29`FkPOHJkN;!nl/q3orojCHs60FGs60@Er9+.D +q<7kA!9jFHs60LG!pJn5roaIKkih4.kQ'f?kl0cEkl0iGlMg&Jl3?S>lKdj&l2KlTkN^d2Y/]`( +qu-Nns8N#trrE&sr<*'!s8K)!s8E#urr2rts8El6s8UWai:H6rj5T(crVcQgo'Z/Do_/+Xrq[6# +mGQC3^qR@ib2_pRh;$rFgA]\=g"+U"e_/^3g">!5hV$,ka4B84kOJQM.KB>BqY^3ZimlB'h(E5d*9eXb0/)Zf@SKra2cBPgXXNjai;68_o^9Uf@J?pcdC7q +r7kZ9gu@ktnE]K5q"*_)i9p*si9^@3kj%U)lL"-4o'u;?mdBT5md9K4nEoZ6nF#]1lf[Bkl1"<7 +md0?0nEoW6m-*s2mH< +f)PdL!<<&trr3B*rVcKO_l1*"j5];$kPs`HkN;a+"6f"6kPj`EkQU/3kND!iqr\%CkND[)"m>+5 +l07C1k5OQDjpL;6k3(pkki_0ol2KoHklBoGk5XTEk5=EBjoFTDk54El0%-fio&hZl07U.qtg-bq>:-eq"OR[q=E^ud+7:H +nEATOaN;cTcdUV*iS`JAe'ZLdbg+\hf@/!ba32rde]c1X`l#[2ajASif$VdhdF?kIggApnipla3 +lg=<=oB4rgn+,]%mJQYDmdfu +f)PdL#64]$rVlfrrr*W,iOke^a3D`Ha2Q!8`Pod7`Q#s\\LkN([` +melqSo]tT$kih@%oC;8:n*AraeCN:&e(a-SjP&JRk2YI]jlPO[h;IDXk2P7Ri8`eLe_B?TjPK.s +r;6Hkqt^-cn`/3IeDK`jqYgBeo^hYBmd9K6o'Yi0n+QVSq"*k9k2kb)jSn0>jSn6BjQ#;"j9t)1 +i8E_\l0\6Er;HWps8E#rrqU*tmbu[Bg#r&(oB>)dhW!MLgu%,PjPenIg"=s2h;7,KhV?f;g>:fC +e'upue'ZOkg"bE=gYCT=gY_,Vk2P:Uh;e%un*9?7qXj"-iplU%hrsb#k3MU0mI'Q9nEoN)kN;!p +rpUKkq"F@TrVuopp[RV:mdp&@rpV0&nEoQ-jP]4fkMb(EiU-1'o`*XATWPcGf&H&gr;HTns8N"K +s/uBP~> +ci4FQs8W#ppZ05l]%c?.roa=Ds5sRJkND'nkks]ElMp&Ll0.@+k6U55kNV6rkih=1l2KrKl0&!. +s5sOKkND'mrojLLlg"K6rosOKkl0cEkQU/5ki_-mroXgUkN:pil0.6ll07Boki_.(kl9oEkl9fG +kk=3>joFTDkl9iGjoX`0kl0`FkkaHBkkF6GkiV$jl0%9qkl0iGkl9l_lKRU"m-Ep"l07BsgUOE* +kkk8Urr2rsrr;uurr)ctrr<#tX8i5!!<<&ts8W,uErH%Pg""jAm,[$fq>C-grVQEfqXNUsd+$tA +q>1'gp[n(Jn*]T3o()57lgOQDqY9[KkiV!hroF(=!9F.@&`i!4jQ5F`jP\nUkNM=,rVQNls8W&u +qu6C.p$^hdbgb\Bo^Chpf@f!9g=b9>ioAtOf`'KPg>1WEi838Bg"P +gY:WIkiUm^hqd>_p$_26pA4FFh;Rhljl#M&oBP`6na#Q2o(2JDmcs'$lK[Wum-a3'lL=K?q"OFP +oCi%Xq=jUYqYKs[p[IP?p$Uttf\u5em.(#*U7JBraO]D>pAFmf"9/?"rdk*Ps*t~> +f)PdL!<<&trr3B*rVcKO_l1&uio9)!k5XTKk2kafkNM+,kl0iHk5sl1kP40FjlY^hkiq9nl2BfJ +l0.?nroO.As5aUMjlPXekNM-ol0/-0roaFHk2lF$s5a7CroF[Rk2k^eki_$gkN:jek2k^^jpL54 +k2k^cjQ5Odjo"6@kPaNCkOdm`m_d`g2!md]W%f@/=+ +h:gZAjQGahinrVlgje/:iS`SJg"G*9iS2i2e^`-rd*p\'h;$c?gtUT@jlkjdhr!8Mnb)A9me6ML +khY7ip#tE'r:TIIp@n+Jp@\(Kn*9&qjQ5RdiT01`j6,h#o^q_Blg408q"OOXqYU0bq"aLKo_7n? +hqI/[oC)APgSU[I]?8dgnbE%\rr*!!rr.KKY5a"~> +f)PdL#64]$rVlfrrr*E&iOke^a3D`Ia2Z'9`Pqhp!li:#qoA`X"inX'`l>sq`>$80`5T[6`Q-$? +`l?*?a2ld`Q#m8`5BI-_Sa=0_Z%Fh_SO11`Pf[5a2Z$8`PfX1 +`5BL2_o'F1o>CgM`5KX5`;.CN`;RR`_SjC3`5KO1`5]a6`Pojm`W*pl`5]g9`Pf[1_Sa=2`l?!9 +`5T[5`Vm^_`lH-E_5

    j7rKLrr3E+r;HWnrr<#ts8N&urr*!!rr0/%s8E#urr2rts8IEEs8UW` +iUcF"jl>CgqY0IGj4Mr6f\PQKiniMMi7QK,f%Ja-f\bT^KoqXj@Lnal;@o()DEo'bu3j59"bk2=k@i9g('p&EdCTWPcGf&H&g +r;HTns8N"Ks/uBP~> +ci4FQs8W#ppZ05l]%c?.rojCEs6'CD!pJn4qs".G"mP78kih1.kPsZPkN:sikND*olKIHsr9=7F +"6o"4kl0cFkl0cFkQ:#4l2KuIkmcqBlKRNpkND'lkN:siroa=D%Hls!5hVHl7dact"dEgD%h9jI%nb;hTr;6?gqXNRqd+..JrVZTf +n*B<,n*of6n*TB&kjA!9q=jLJlKIHrkih0s`q"ada +qtp6dqu$Bgq=sLIo(MP6gt:TQnEf]BetS_:\]E@^me6SWrVlirrdk*Ps*t~> +f)PdL!<<&trr3f6rVcKO_l1&uio9+`k2tjik2kaekNM++kl9lNki_0mkN2^*s5agSjlY[ek32$n +kND*nkiq#it.1kNM-okii$/"mG.5kN:n'joOT)roO1@%HZd8jlGRfkN(afk2bV& +jmM72jo4EBjn7d9jT"jTXi/jlY^go]?YFk3(slkNV9slg*j%lg"K8''e]DkN:mekL[2F +`T[:!rr2lrrr)ls!<&\ms8E#urr2rts8IKGs8UW`iUcF"jl>CgqY0IGj4Mr6f\PQKiniMMi7QK, +f%Ja-f\bT +f)PdL#64]$rVlfrrr*2ui4GV]a3D`HrPefVqo/TT!6>)Ys2Pko`Poj9`Q#p9`Q#s<`l5s;`Poj; +a8X'[a2Q!r_u@UR_YV.M`;IRZ_o0L4`5T[3r5&EMs24lT&Al9#`Q-!9_T'^=_o'L6`5MYmrkniT +`;RUR_YM(N_Sa=k`rF*Y` +ci4FQs8W#ppZ',j]%c?.r9++Dqre"C!9sLHs60dPkND'lkNM./k6gG9ki_0nkND'nl2KlSl0.#jCO9l0@Nul0/-0s60LG'^4fH +lKRQskiV-_\?HqXs=Fo(`+Ul/1LinD`0ZkMb%@d)s8Ea3;uag=F]tbfe/Pai;37 +`REuAq>L +f)PdL!<<&trr3Z2rVcKN_PjuuioB._kND'mkN:t+k5XTEkl0cFkQg;5k3(mhkNDj,$KpR7k3(pi +k3(slr9".CjQ6C'!9O4@qW._>roXaQkN1jgkN:sijlGObk5OK@jqHh9j6#Rgj5]=fl/^phkN1gf +jlQL(!TiJBjo=E;jT=N)jo4BKkN:pgjlbdgjlcF$!9a@Cr9"%B!9Wq:"6Se1l2KoHl2U#Ml0@R5 +kn!(DkN:pgjQ#CR[]RO5rVcTls8N)uU]:An!<<&ts8W,u1&_.Pe\C,:mHN`mip-:2mHWQSaii&] +f%8I#dF6Uod*L%cdEg1if$i((ki:CGc-=W7e,RiWe'uglcHab[aiM`Ud`]kkoD8@_rVZNiqXEFj +bgGGDs8Diel/^pglKmj%lfdEfhW*tno^hS;kN:t,kQ'oHlj<"ClKRQulKRQsro\7^jQ5LflKRR" +mI'N1$fq!R%cajAl/o()26lL+35nF#c:p\Oa^qYU-cq"OIRoCMYLq"OFMn*fi>p\4@Ro_%qM +oCVbNo^MDDq=sUPo(;\Qp$_>>q"sdLi8sY)k2#"]jP/88dE9SUcI(.k&C8M=`Pf[2^qI:i^ +f)PdL#64]$rVlfrrr*2uiOkb]aNhrJrP\`T!6"lVs2=rV!65#Ws2P)X!lW'trP_IMa2lkiCa`jQ,Fbkj%L!l0%3jjQ$a2k3D:!mHs6+lg*s)rTY`rnFQ>Iq>0gPi7??/jRW3I +r;6?grr2lmq"agbqtg-aqYL$aqYC-c$N'f#qtKgZqYU6ir;:C-q"agbqY9j]qu$9bqY^g7a2uWRcH=5MbK\A]c,drPi:-UBrr)]hp\+=Tp@n=Ro'l2 +ci4@Os8W#ppZ05k\_R&Ds5sCErojCEs5sCGroa=Fs5sLHkNM+,kR-M:kNM*lk2tjjkl0a-ki_'g +jlksmjlGRekih9pkiV$jkiqCk3qp5n*&ilj5f:_k32*rlKRKo +jQ,G&jT"BAkPsZGkNM./kPs`hl0Rs4o_/%NlJ9n7eD]llq=jUUq"jm_p@\4VqYL$`qYU6f!;ZWh +$N'f#qtKgZqYU6ir;:C-q"agbqY9j]qu$9bqY^0a25^4b0nu" +gXag"cHFDR`P&n#e)^)qrVlcnrVlcnr;HTkqY9m^p?h/6p%%>%f\u5em.1,-U7Ap&+de +rr;usJcDnQJ,~> +f)PdL!<<&trr3o9rVcHN_l'uuj5T.]k2tjik2kagkN1gfk3)a+s6'FE"6J\.k5=Btk3(mik2tde +k3(pikND!hj5T+]kNCpdjQ5OdkN:pfjQ5Oek2k^cjlPXekN:pgjQ>Y)k5XWEjq$S6j6#Ugio9+c +lK.'hkN2[)roY!XkN1dejQ#:]k2tdek2k[ajQ>XfrT=7EjlZR(s5jUMkih3mki_-kroNM/$g$O7 +ki_0mkih9qkl0iHkS*4Ek2k^cj5T1N\#mX5rVc`ps8AMgs8E#urr2rts8IKGs8UWbiq;^'jPo+] +p\""BhTa*bf%JU%daQ[ldF?[mbfnAWcI:G%jmDU*j4DJqbL"_geC2pte^W'rdE]tZc-OeegZnV4 +r;Zcpqu$<[hp9Eji:[*IqXs1;k3)!ol0@Tuj4r>Ck3qp5n*&ilj5f:_k32*rlKRNrkNDm-s5YWf +i8`kUi8NVQiS`VPj5oLlo(DhUq!d:kbL,,0nal8>n+$&CoCDPKqu6QorWW?$r;-9crqHitrVcWf +pA"L]rVcZl8G`,Wqu$ +f)PdL#64]$rVlfrrr*2uiOkb]aNhrJrP\`T"iSF#`Podp`W!gU`W3sQ`>ch;aN)9<`Pod6`Q#p: +`l>s5^:qD$`lH$7_ScAl/]>QD_Sa=3`59=+_ns@1`PfX.^r""+_SO+,`PfX0_8OC5^qdn1ai)'8 +`Pfap`;[^_`5TX2`59@,_o0Il`;d^V_SaCm`sp,1`l,g5`5KR3`5T[5rl+oTrk\fU`5BO3rl"lU +pVd?T`Pod5_nl>fs2"rW`5Td;`rj7rKLrr<#t$N9o$rr<#ts8N&urr*!! +rr0/%s8E#urr2rts8F5@s8UWbiq2U$j5AhZq=sRPjO2?+jlYFNg"tT>f\5*4e'n=Kp%nL[r;HWnrVH$?d*0qso_n^bq"*tAm-X0*m-X0%iSWVX +nFlYKlK.$bj8S*Pk3;3ulfdNnjQ,FbkiqC!m-F$;m1ejLkj%L#n+65Gq>0jTjOhr6j7)pErWW9" +s8N&trqulsr;QR8qYC!crVcWhq>:-jrqlQiqu$Hmr;?QorqcHfrVlfpr;Q`ps8FnSr;HWmq"XRN +iSa(hhpp?9jPSP9d*L.jeC<+&f$i$qf@o$9g""U,kjeHGr:f^LnF,l;o)A5*o'l2p&+derr;usJcDnQJ,~> +ci4@Os8W#ppZ05k\_R&Ds5sRJkih3mk5OQCk5XWFk5=E?kQ0l1rTF4C,Nn:SkNM*ljl>@]kj%Ep +jQ>[jl0@Kqk2tjjlKIBljlbgjkl0iHkS`XMl07Ktl0.?ojlP[ikMtRblg*]okNM'jroj@Hs60aN +k31shjlcR*s6'FD!TrVFkPscGk5OHEk3;*prTjaSlK[WtkNDd,oB6/9!9a:Ds60^NkN:pikPjTF +kj%C2k7-Y:kh*DJ`T[3rrVlfrrr2rt!<2rq"9/?#ri?)!rW)utrr<#urZ_=@s4+pEo^(f%i8VAkqtp6\j4;W+f\PHAhVdAMhVI#CgAT\Xg>D2gqYBsb +rVlcoqXE@gbgPJBrVZQfoC))5mHj0*mHiuohr3egpA"7Ejl5:[ro=^Sl0I^%ki_'gjlGI_j5]4^ +kNDj/*p2SGkNM0rn+#r?p@IV-e^;t,n+lkWqtg3frVH?drVQZlrql`l*;od6qt^'brVuloqY^6g +rr2inrr;uoq>:-irr)cos8Dus1]@7MrquQdp?pnunFGf$ip6$shU^*"dFHk(iofF]hVHr>f[nQp +a3NH&nFubQp%8"Rq#0q4q"FCUq"!\3me-28gtCZRnEofFf:ne:\]E@^mIgDUrVlirrdk*Ps*t~> +f)PdL!<<&trr3f6rVcHN_l'uuj5T.]k2tjik2kagk2te)k5OKBk5aWAk5=BCk3)^*s5ajTkND!j +kN:g`i8Wn^kiLjcjo4Epk2k[bjlYdhjPo4]jQ>Ufk2tddk3(mhjlbghk2bR_k3;$fiTBFjjlGRe +jlQL(%I!!VAkqtp6\j4;W+f\PHAhVdAMhVI#CgAT\Xg>D2gqYBsbrVlco +qXE@gbgPJBrVZQfoC))5mHj0*mHiuohr3egpA"7Ejl5:[ro==Hl0I^%l07C1jt#NOhVI,Li8N\S +i8*2Ei8`q_m.'cEqt]gEf?_n#l1+E;o'u;Ep\"7TqYgEm"98B#rr)d5qt^'brVuloqY^6grr2in +rr;uoq>:-irr)cos8Dus2?!IOrquQdp?pr$oCV>-j6Q4#i7c`1e^rC*h;I,@eC2jnccsJG^W"[Z +l1+E9mHsE7p%J.Zp`oP.qtp*SlLFZAlegFWn+#f:rn4*=Xh2a/kjnNHrVlfrrr.KKY5a"~> +f)PdL#64]$rVlfrrr*6!i4P_``m)WG`r`Pf^4 +_o0O5`5T^5^qd_"_T'X9`Pf^n`WsK$`59F1_nuDj!Q;nT_>qCL_>_@P`"Bo*_o'L8`5'1.aiD99 +a2l9?rPefVrl+iRs2#/]`5]g7_SX40`lH*t`<"!!rl+iS"N&'q`Phbn$H0j#_o0L4`5]g9pVmKX +`l?!9_SO%'rkSZQ_oD\ss2P\j`P]O-^qmn0^o!j>j7rKLrr2utrV[!#s8W)urr<#trW<-!rilG& +rW)utrr<#ur]C)Ys4+mCo',8qi8C6krVlfprr2rs +rVZZl$i9\oq>:0jr:p!Zp\agdpBpWgp\Fadrqu]mrqZTora,X'r;HZqrV?6]mG[!gmGljPj6Gjf +hqm5KjQ,:Whqd&@hW3kam-O$%lgaZCq"*k8kNV3plg*s,naPu8mcWE\j6Q!jg!nmEnEofFfqb7A +\]E@_n+Q\Xr;Q`qrdk*Ps*t~> +ci4FQs8W#ppZ'/l]%c?.r9++D!9a=E$0UO9kN:pikih4.kl0`Fkl0`Xki_0lk2k^ekNM'kkiUpc +io0"ul2ToHkl'cGkQU/2k3(mgqrRnAroOOMkiq+j6GpmjQ5Obi8C0fq=3S&hW=%fkih1$grV5gC6kr;?Nmq>^Ko?N:!%rVuorq=sXMio9Ctlf.!op%%A,h:piJk32*sm-pAFmfrr;usJcDnQ +J,~> +f)PdL!<<&trr3W1rVcKN_l:0"ioB._kND'mkN;a+$0LF6k2k^ekND"+kPjTDkPjTYkN:shjlGLa +k3(jgk2kU]i8E\Zkii$.r9"4FjlGLaro=1CjQ5M&j8n<%r8mq?r8eFOkiC[[k3;*ij6,[ik2uU) +roOgSjQ5LajQ5OekN([ajlPXejo4<@jo4EBjo=KAkPscHkl0cFjosl/k3(mhn`L2?kND'lkNM0p +roj:E&*iEBjlGI]iT/S!Xi9N&rVHNnrrE%ns8W&us8N#ts8W'[rVuoJ^Z"bJjl54UlhgSTqC6k +r;?Nmq>^Ko?N:!%rVuorq=sXMioBP#m,[9rp@RY4j5At[jlPRcj5AeNi8NSMgY(65i9'ComHNcs +lgF61nFH5Fo^qnQo]tc5q=O%3g#DGglgk#,UReHraOfSEp\b!grr;usJcDnQJ,~> +f)PdL#64]$rVlfrrr*?$hn,S``QQ?C`l5p8pVm*Ns2=uXrP\r[`Pod7`W!mV`W*jV_u.I]_nj4+ +^VRn/a2c3=rl"fT$cKs#_Sa=3`l,g5_>_4l_SO%&^r"%/`Pf[5`l?-B`PKF4bJqB:b0.lH`l5p8 +rl#eo`l5m8`Pf[4`5T^4_Sa@4`Q#p9_o0O7aN+;"s2>&V^qp#es1o)[_o0O3`5BO3`Podi`1$gs8W)tr:$aq>C0fp?^Y`cd^kCr;6<`nEK&tl0%6nlKms/o_8.Vq=sXO +mI0T6mHj-'md]`2l0% +ci4FQs8W#ppYs&k]@u?,rT=1CpZMM=s5sCGrT=:Hk2tk+joOZ/roa=D!TiJBk6g>2jQ#4ZkNM0p +kl0]Ejo4ECk5F?Bk32%,jW3FBjQ>Ufk2tjkl0.?okihlKRQuki_*k +jQ#>#jT+KBkmlq>k3C[1Y/]`(qu-Nns8N#trrE&sr<*'!s8K)!s8E#urr2rts8I3?s8UW`i:6'n +j5T%arVl`nmGHplp[mb2jm;C"kih9qkN:sklKdg(mdKZ9p@dk6jmDU)lKRU$mH`-kNV=! +lg!g&lg*p*n*fc6mHj3)lKn!.oChnMn`o#_e(E^Mq>C0hrVliqr;HWnr#G\5r;6?dqu6Qho'GW( +k3(somd03%l0\$8r;HZhrr;q'rr)cmrVcWiq=O"3j6lL(hr*kmoBto+jlc"!nF5o:naGr;o'l/; +md9<)md]f4kiqI%n*]N+lL"'.m-jH2jPoRun*/][iU6:*o`!O>T<#NDf&Q2kr;HTns8N"Ks/uBP~> +f)PdL!<<&trr3W1rVcNN_Q(0"iSrt]kND'lk2lI%rTF4C!9a=C"6\e-k5OHCk3)a+s5a:Bjo+:$aq>C0f +p?^Y`cd^kCr;6<`nEK&tl0%6nlKms/o_8.Vq=sXOmI0T6mHj-'md]`2l0/B;mI'?+l2KlHl2KlJ +l0.:.jV-kFnFc\Wr;6*Ig!eU6me->Jp@\FYs7dc5qtpmlLXZ9m-Ns%n*fZ/lKRKokN_C4lMp2Mkq_Vpmc`cp +l0Rj+mHsB5o^hVFp@IS5o_J+Fhq-fQn*9E>etJS5\B!.]nG)q[rr2rsrdk*Ps*t~> +f)PdL#64]$rVlfrrr*H'hn,S``QQ?C`Pf[4`Pod^`='W'`Q#p:`5T^6`5DSn(rjP4_8=(*_SjF5 +`lH*:_SF")`5BR5`5MYp&&Z?(_o'@._83q$^;.Y*`r`W!gU_?.Wl_u7Rba2Z'9`Q#m:`Pop=`Po^l_#M.O^;%V*rkncSs2=uVpVeDr`Pod5_ns7+ +^qde'`5]m>aiMNA_nj.'^qmn/^8@U;jSAZMrr<#trr!*$s8W)urr<#trW<-!rilG&rW)utrr<#u +rcJ,=s4+jAna#B!j5TG(rVHBSg>M8akhatJjQGU_hr*JQj6#Ril0%0gi8Nken*&cllKdNjiSikX +i8NeXj65mul/LRWlM(,NrVlclqtB@3dEg>"nbi:[p@.;,jQ>UdjlYjso_/.[rV?3\na>f1l0.C1 +kSr[GjQ#@bkNV9sm-jB0mI'B.l/gpajQ5[pnauhS$M<`Df?r.-me?VVqY_f@rVcZlrqu]kqYC$f +qXWh*f$_pme(`j;f[nj7kjnQJrr)irrr2rqrr;p6rr)cmrVl`kq=O"2ipH0mdEUD+l07U*oD\AK +na#H'kiV*qmdKc>p%J"Io(2D:jQ#=_kj%O$mI0Q6nauJ@iSNhflf?aIh +ci4LSs8W#ppYs&k]@u?,kNDj,s5sCEmcXW4!9a@Ds5sCErT>$Zk3(pkkN1abjQ#=`kNM-okiLg` +j5]4^roO=Ek32%-jo=KCj@SLqjQ5Lcl0@QtkNM3slK7'akN_0ej6>jml0%0hjQ>Udk3(plkN:pg +jlGI^jQ5Oek2k[cjQ,FbjlPXflKd^!kih3lkNM0prTO:E"R,%3k2u@"s5jsWkiqBsl0@KrkNCse +jQ,Fak32g/%d<';lIrbN`p*EurVlfrrr2rt!<2rq"9/?#ri?)!rW)utrr<#urcJ,=s4+jAna#B! +j5TG(rVHBSg>M8akhatJjQGU_hr*JQj6#Ril0%0gi8Nken*&cllKdNjiSikXi8NeXj65mul/LRW +lM(,NrVlclqtB@3dEg>"nbi:[p@.;,jQ>UdjlYjso_/.[rV?3\na>f1l0.C1kR?V8jQ#@bkNV3p +l0I[7llGEWkiLjbjlPdqnalJHo'u&(f@8I4meQeZrr)irrVccor;@`8qt^-gqXWh*f$_pme(`j; +f[nj7kjnQJrr)irrr2rqrr;p2rr)cmrVl`kq=O"3j6uR$g">BQn,D]DmdKZ:p%J+Rp\"7Sp@IkG +naPu5md]i8m-X92o();;m-X90m-sT6jPoRun*/][iU?C,oD[C;T<#NDf&Q/jr;HTns8N"Ks/uBP~> +f)PdL!<<&trr3W1rVcNN_Q(0"iSrt]jlYahk2l$ns5a7CroO1B!9O1A(Za]?k3(mfioB(Yj5oFd +kNM*iiSieUj8J'CjQ5RfjlQI%1ZRKTj5K"XjlbjkkN:sllKI?giTKIei8X"ckNM'hj5]7_jQ5Oe +kiV!gjQ,@\ioB+]k5OHDjQ#;!j9Of0l07Bok2lU's5j7@s5s@CmcFW5k32(-kl9lbkiq?ql07Ep +k2k^aiSrtM\#mX6rVc`ps8JShs8E#urr2rts8I-=s8UW`i:6-rjQ#7drVcThkh=t[mc`N[h;mb[ +iSWSPioB1bl07Bmj5AnZmdKB!jQc'lio/kWj5AnXj5]@jmci`fhs0t3qYgElqYU!Ph9jQuhspXA +q=a=AjQ,IcjlPXin+?>MrVcQdp$qJ;lfmWtrTF7DroF@Il07Ksl0/-2)<^/Ejl>7Rh;@5UmIBoI +r;?H`kM4Y@j6lU>q#L3hp]("9q>:*grVuiqrr)]jrqc3Kh:C$$dF6k/h:U?5hrsY,rVlcps8N#t +r;Q`p*<,p7r;HWmqYBdLiSs:qjk88Elg='+n*oi;oCMqN4n%n1o'l,:nF>r6n+6,;lg=01oCVYE +nac>Dnb2bLl0%X3o'>/`hsBgtnGCe1S#X$?e`QDsr;HWos8N"Ks/uBP~> +f)PdL#64]$rVlfrrr*H'i4P_``lc?A`5BI0`5KR[`!4,t`5T^6_tq=O`@JmD_8F1-`5]j`l,g8`lQ3=_SO((^VI_'_o2Pn(WX\?`l,j>c,mlBbKIuJ`PTL0`5]g9`r=!Y +`r1$dp\+4JmHa$!jQ,Ib +jQ#:^k3(mgjQ>XfkN_=2kl9fPjl>@Zj5oUroCW%T%eK&Gf[A:+lh1,Or;HWnrqlirr;?Kk+8l$5 +rVcNZi7#li`Q-*Lg==Npe(a$Uq>L9irVlcorr)lqrr;p=qu6Woq=sXLiT'@pi6]g*kjIs4q"jg_ +q=a@HmHj*&rpKgU&G#JbnF?)?mcj!"l0\!1nalbQ,51j.o&ersnE]2ie)'EZlgal(URnQtaO]JB +p\b!hrr;usJcDnQJ,~> +ci4^Ys8W#ppZ'/l]%c9*k2tddjlY^emcOQ2roO=Ek2te'k5FHVk2bRajlGOdkiqBulfdHkjQ#:_ +rojCEs5ssTk2tjllK.*gjlGOajQ>XgrT5Qml/q!bkN_3gip#^ikN:jcj5oCbkN:slkiLsgjQ#7Z +jlYagjlGI_j8J'=ir\?+l2KlNkN:mgkNV71kQC#1k3)^*!9Nq:s5aXNkNM0plKRKpk2tb(j8\0@ +jlcX,s5sgQl.NSL`T[3rrVlfrrr2rt!<2rq"9/?#ri?)!rW)utrr<#ur\XTRs4+mAna,K$io05# +qXsI=eCia:g!Ishe_/U*e(!"%f\,$:iSiSDeCNF7inN/Bi8<8ff14KEe^iF)f&#NOiRZ<%iUQ[< +rVcWiqtKI5dE^5!o)8L_p@.;,jQ>[hjl>RnpA+R_qtKgUnEoQ+k2bUcjlGI^jlYagjlHC&s6'II +rojCF)Wp/BjQ5^soCVbJnaPi&f[SR4mJ-YZs8N&urVl`ns8F,=r;6Hkq!R(hbK%TBaj\tocd("o +k48?HrVZWnrVc`os8DrsrEK0us8Dcgp$CVrn*o>ff&Q/fnaQ)=oC_nTqu$?gqYU0cp@\(LoCDGB +p%\:Tp\4IYq=jRRoCDGAo_%\7j6Z='khXkLn+5u>s4O3?XLZF'ip?=8rVc`qrr.KKY5a"~> +f)PdL!<<&trr3W1rVcKN_l:0"i8NbYjQ5OdjlGjks5a1@"6AS*jS\-ioK1\jQ>Xhl0IWt +jQ#7Zj5oIfk2lU)#3=n-k3;*jrSn(@j5f:_k5OHgk3(siioB:gk2G@bl/q0jj5T(ZjlPXdk31sh +jQ,@\iSikZjlZO&!9=(>ro+RPkNCshjlGI]j5f=`jQ,FajQ-7#!9Ee6!p&J+roj@Es6(?`kih3n +ki_*ijQ,=ZioSb#Xi9N&rVlfrrgj)hrW)utrr<#ur\XTRs4+mAna,K$io05#qXsI=eCia:g!Ish +e_/U*e(!"%f\,$:iSiSDeCNF7inN/Bi8<8ff14KEe^iF)f&#NOiRZ<%iUQ[[hjl>RnpA+R_qtKgUnEoQ+k2bUcjlGI^jlbmlkN;a++R&"OjlGL_j5JqRiTBLt +pA"O_r;6-Nhq6WDn+Z_XrVHKg"8_omrVlfrr?)(=r;HThmblR;a2Q*@e(W?ucI:P1o(i7_r;HWn +rVlcqrVliq)Z0O6rV?6]m,6pmn);gHhs0\"nFH5EpA"IYrqZTg48AXGo^h_Kp@\.Tq=jUWq"X^_ +qY9g[q"=7Rq=Nt9nb)D9h::BJn*KTBf:ne8\B!.]nFukZrVlirrdk*Ps*t~> +f)PdL#64]$rVlfrrr*<#i4Pbb`llHD_ns:S_Z7XK_uIRR_u7Fc`5T[8bKS8Ye'cRgc,n#Ib0J;S +rPoYl`lZELc,dlA_SX4._8!e&`5]^3`W!mbb0\P[`lHBMb/_O#`;djW`s0Q&a2l9=`;R[T`r3p` +aN)<<_Sa7,_#;+\`59:'^;.V%^qmt._ns7,rke`Qo>;]f_8*h#^;%Fu_SjL8aMu3;_SO%'^VI_- +^S[a=jSAZNrr<#trr!*$s8W)urr<#trW<-!rilG&rW)utrr<#urau-/s4+mBo'PZ%iSNhpp[IS* +cdULqccO2Gaj/8Zc-=S[bfS#Sf\>$+d*pLsf[8'sf[eNud*^7ec-FYZc.1\0gWI@UgZeA-r;$0d +r:o^:dEU+toDSU_o^1i'k32-skMkRhp&=aop\+7Klfm["l/q(*jot#9n*fZ0rTXCIrp'OJ!:'RL +)=6YRm.'cBp@n7Ona#/cdF@%=o_A7Yqu$Bkqu$?lqu6L6qu-Kkp[@.reBlOgdFm=,daHb,m.UAV +rVZWorVcWns8<`5rr)`ns8Dfip$CVrn+#Ggf&ZArqY^?l70!8`p%%S;kj%R&m-X3/oCVSAnF5i2 +lfma(o(2MKqu$?grVcHUk3VX)jkJ>Cm-s?0qU_I4XLZF'jm`$BrVlfrrr.KKY5a"~> +ci4RUs8W#ppZ'/m]A)E-kN1dclK/$-s5a7Cr8mt>"6Se0k5FB@ju;Aalg4'/naZ)8m-3ZplL!s& +jlPXejQGamnF,T&k2tjhjl57Yj5f=^i8WkZjQ>grki1Xfl/hp*"lnV'jQ5P'jo=HIjl>@\jQ#=u +jUUG7jPf(Wio/nXjlYagjo4BCkNMm/$L$[8jlbdfjlGRdp#Z59$KpX;ki_*ijl>@[ro4%Akl0iH +kR?V;g:4<*l2:GWrr2rsrr;uurr)ctrr<#tX8i5!!<<&ts8W,uB)Vc0e\C&5mHEWihWak1nEo#W +e(<*qai;b/)9Ul1FlNq>'sd +q!R"dc-kPArVZK`mHL9jrr2itrr)fpr;Z`qr;Z^6r:f[?g=4Kqd*^P%f@&+!ip?C: +rr)cns8Dons8W$Ns8Muorr;rnq=X+4j6uKtf@]6Up@n7PoC_qXrr2rsrr)iqrVQEcq"aa\q>:0k +rr2rt.K98Aq>0m[p%S1MkN(pslfHmPi9g('p&EaBTWPcGf&H&gr;HTns8N"Ks/uBP~> +f)PdL!<<&trr3W1rVcNO_lC9$iSrt[jQ5OcjQ#[hroO1@!9O.>s5O4BjlPS%j8\3Qj6#XmmI0T8 +md9?(k2tppm-+E0,NIqLlL40(jQ5IajQ,=YiSrnXio&hXjQ,Lkmcicmlg*`qjSe*?jQ5M&j94T, +jl>A!j8\3=jV-emp@\.Rq>:-grr;p'rr;upqYU9lrr2fps8FJIrr)fq +rV?3_q"=";nFQ&1gt(BJmd'B>etJY6[`-bVme-MVr;Q`qrdk*Ps*t~> +f)PdL#64]$rVlfrrr*H'i4Pbb`llHD_ns:.`5KRZ`;@IP`;d^T_Z%CO_Z.OR`=g26d*pS!gY193 +f$MXbd+-Ug`r=!a`Q$$Ff%&!ca8Nn%_SO+-`l>s6_SsX@dFd'uai`&ZbK%WBa2Q!:`lH0@`Q$$? +`Pqeqs2Pnpa32]NbK%Q=`5BI/^r"(/`5BF+^;'Z_"i8-r_ns:g_tV+J_uIRp_8!b!^;%J"`5fs? +`l5m4_8*k$^r"1-VP:cbq>1'hs8W)trbL+__aiDB=_SX=;eCN1"e'QOncd("ieBuUgd*U(_cHaVVd+?mt +a26$Niq36Lqtp?kqX31dbL,5;qYBjRl/^pekN_?oiS`hbo(MkRp@IV1i8a(flKRQulg=34p%8Ua +p%J.Rp%7qMrq%?)o^hYDo(2MJq=sa\p%._?i763)i9^.2q"ad_qt^*brqufn!;c]ms8*c5qY9aP +mHWlqj5T1]hq[&JmIgASrVZTls8Dons8W%(s8Muorr;rnq=X+4ipcR%g=bTZqu6Wps8N&tqt0@B +k2PC]jQ#@bkj.[&kiLpdio/nXl0Rm0q#16lrr;unmcj33m,d!PhsBgtnb^q4S?09Bf&cDqr;HWo +s8N"Ks/uBP~> +ci4^Ys8W#ppZ'/m]A)E-kN1dcjlY^elfS*+s5s@B!p/S,roA1_k3(pilgXK;p\FUWo^_G7l0n34 +lK%!ejl>LfmIp8?kND!ijlPO^j5f=`j58bQjQGk"o'>Atlg!TmjQ5I_j5T+\jlGI_k2k[`j5f7] +jlGLbl0IX!jl57Yj5].YjQPgjk2tdfjlbgjkiq@[ro4%@ +kl'`TkiV*_\?mpl07L!mI9]>o`b'^p@n@VrV6?c +rqI-#p@nF]qYL$\oC(r#eBle+nG3(^!ri/trr"2CrVcWkr;HTlqtpVnf]DSqq"XUWpA+[drr!B*qYL*dqYBm\qYU-a +q>C6kr%%dHrVQHhrVQB`p%It@jm2C#j4`)Bm.'Q:s4X +f)PdL!<<&trr3W1rVcNO_lC9$iSrt[jQ5OcjlGahqrIe=ro=+?jSn1%jQ5Odjm)=)o_81Vp%@qE +lK[g.n`o5sjlPOakO%s7lfRBljlGL^iSrnZjPo+TioTCjoCM>0jmDEtjo+9?is=`-jlGF_k2k\& +irJ0=jTar7lKREiiVqj:i<\N-k2k[bj5T(tj9Of/k2k[ajlQL&o]6/8jlQL(r9"s[kND'kk3(mh +jlPO^ioSb#Xi9Q'rVlfrrgj)hrW)utrr<#urcS2>s4+mBo'PZ%iSE_mp$V+tb0\V_bf[uE`QQZV +cH4,G`59C2c.(=peC2dme^)Oie^W!mcd:%ac-FVXbL"kmd`95Jf&H?$rqlTkrqc'=d*'honbW(T +n*/oojlbpojl,.ZmIKuGq"F=Fj5At^lg!a!%-m0GnFH8Hq"ORZqYL3es7lTerq-Beq"agcrr;p4 +qt0.1g>1rar;Q]qrVZTjr;HWprr2rsrZ;%8qu$bk:rVQTorVH?_m,@!mnDi0Rj6cI3q"XUYqu6Worr2p!rr;ues8W'Ds8Dfhp\!n9n+5o-gt(BJ +md'B>etJV5[`-bVme-MVr;Q`qrdk*Ps*t~> +f)PdL#64]$rVlfrrr*?$i4P_``QH6@`5BI1kemG;!6"lRs24lT:Vsra^r""-`lH*>d+-e%gYU`= +g=Xj!cdgb%cH!uF`l,j=dG*C$b/qZA_SX72a2c9@`Pod8bg=qsgsjKje^Vd`a2uKF`Q#s=aiVTD +b5TN]`sBf0a2lTTdEfu6`C`kj7a.o_81Y +rVcWiqtp6cq"OLSo'l2@o_84XqYKpXo'>2_cdq+EpA"X_rqQNh"T/,oqYL0fs8)`j&Gl;%qXa(7 +iT'"Vgu7Miqu-Nl!<)lqr;Z`ps8:W;e'l_Dcn!T!hrO+qqu-Hjrr2f`lLFN6k1nPGmI9K5rRdm9XLZF'jR;g?rVc`qrr.KKY5a"~> +ci4UVs8W#ppZ'/l]%Z3)k2tddk31q,j8e?AjSe0JjQ5L`jQ5Oeki_-trq.6*qt]sYoC(u1o(VbA +j5T.[ioTClq>0ODlK@:.j;m@EkN:jbi8mH!?plfI0fk2taaiSrq[ro=aSk2tacj5T1_ +jl>LinF#Z,jQ#;"j9Xc-l07EpkN:n*j9Oi1l0.9ljlZ'o'BJ9;kND!kkN:jdio/kUjQ,IflM]rU +k3:U0Y/]`(qu-Nns8N#trrE&sr<*'!s8K)!s8E#urr2rts8F/>s8UWaiUZ?uj5JkYq"F4DfZVap +dEp:ebKJ;bf[\9irlG,Y>fY+p$_2/lKdj*mHWlskO%j7qYU-`n)`KcjQ5Iaj5]:cm-aH:p\F^cs8Mus)?0U4qtg*^ +pA"I\rquZip@Rh;h:'a%j7)mDr!*,trVc`prVHEnqtg0gq%3E"r;-$OjPf.[hq[2To_\UdquH]o +rqufprr;pIr;Q]nqYBgNiSs:pjOi#?kjS0=p\+7QqY^6dp\+7Op%J(LnF6&Co^VG@rpq]3o_.tN +p\Xpdp\"4Qo]tZ+nE]/if&5rcmdpG2Un=a!aO]D=p&+derr;usJcDnQJ,~> +f)PdL!<<&trr3W1rVcKN_l:0!i8NbYjQ5RejQ#Res5O+@ro=%>s5b`jioB%YjQ5Oek2u+(p%J1Y +q=aOSnE]K5p[mh5j5f:\jQGt,qk!n*K9!ir.mCiT9:dk2k^cj8S!Aj5f@bjQ,@ij94N(k3(k$k5ONWki_*i +jl>@[jjpoC`Td@"rr2rsScA`h!<<&ts8W,u+T;??e\C)6m-!EfhWXb.nEefNe(2pndEg"ZdF[%$ +cH?.-s2A-]c-t7nc,RrXeC3%&f[\I"e^i3sdaQUidam""daHb*mJ-\\rr)iqqX*+cbL,8'aNk3hg+ +jP/5BlgO31r7@[6Wjg!ujR;g?rVc`qrr.KKY5a"~> +f)PdL#64]$rVlfrrr*<#i4P_``QH6@`5BIk_Z7R?_u@LQ`;[XP__/gB_8*q*`Q6-?aj\qre^`=( +f%AU%cdCA#g<[j\a2Z*;b0o/&d)sMO`P]U4ao9H_a:cV;bK\JfhVH](bh:OiaiV`Nc2Pj'aihlM +b0.uQcHOGSbKS8Sb0nkjda#tUa2e2!s2Ynp`Pf^4_7dIo^VIe+_SX.+_Sa:.oYVih_o'@,^q[Rt +^qmt0aN2EA`5'1'^V7J!aM4UG^#]"crVlisrr2j$rr<#ts8N&urr*!!rr0/%s8E#urr2rts8INH +s8UWaiUZ9rio/h\qY9XMgs=U*eCE4)e'QY"hV?`3e'ujlaMu:fLkO\]Lq#(*irVZHWhU0Qqi9p4+lf[?il0e'/lKIEokj%X-oCMVGmcE<\gtLE5f%&@( +gu7D\mI0QDnc&"dn*TH+l0.U7.p\"+Ci766,j7)g=qYU*_p\FUZq>0p`qYg:.qYBp^ +qY^BmpZgS_c-t=pdb3dSqu6Njr;?Qls8DrsrEK4!rquWgp$C\umdK5jfAGfar;ZcqqY'XQk1e8& +^qde(_SEgs^r+%(]=YVa]",GkbLGM=p\FU\rVl`algj]8kM=_ImI9K5rn+!;XLZF'jR;g?rVc`q +rr.KKY5a"~> +ci4RUs8W#ppZ'/l]%Z3)k2tddroF.@m,e6-!9X:ArT4%>7,m:hkNM-mkOJ<>naZ8Cnac5;l0S'; +p$C_tio8qXkO/6Fmcj'$jl>C^kNM-ljQ#:]jlYjtp@[e3j6l9qj5oIfkN;d*roX7B&Ei9@kN:mh +kih*in+,u9lKA-.)X$>LlKRNski_'fj5f=bl0.9ljlY[ek2k[bp>mR\jlYaikNM*kjQ5F]iSrqZ +k3;0qkiq?ol.WYM`p*EurVlfrrr2rt!<2rq"9/?#ri?)!rW)utrr<#urcJ,=s4+mCo'5AsiSa"t +q"!n/ce$k"e_&R(d+-n-gt1$(eC2^a`lQEOcc!B2eCW@.hqcr8f%Jd/daQareCE1)hVmPYoD\U] +r;HWnr:oX8dEL%smdor6kN(^gmdTZ0ki_-mlL4<8oCVYBjkeeJg=Y%Yf%&@(gu7D\mI0Q8oCV_L +p@\%InF,f4m-1Un=a!aO]D>p&+derr;usJcDnQJ,~> +f)PdL!<<&trr3W1rVcKN_l:0!i8NbYjQ5RejQ#Ufro4"?ro=%>s5cc2io8qWjQ>Xgk3):/p@@eI +o^_VEmcs34q=a4:ioB(YjQH"/qsN_5k2bO]jQGajkN1dcjlYamo(_tIjQ?"#k2b[gl0.=0k5OQD +jq6hAl0.1$hrqG^6d`p7neC*%4 +oDAObqu$Bkr;Z`ps8=DErr2ilq=X+6ip5pee'Q_)kj\<@q"FI[s8;]bnaQ/Gr;?B`pA=mhqu6CD +q"FCRp@nC]rr2rsr;?Hem,ma,lf?gNhs9ato)749Su]BAe`?/lr;HTns8N"Ks/uBP~> +f)PdL#64]$rVlfrrr*?$hn5Y``6$$<_ns:,ked88#Jn9o`5KR1_Z%@d_oB^:bgtS$ccj\\d+-[o +cHt5"gA`_8!b!]Y2%p_oBa;`l5j2 +^V7Cp^;@t*V4tZaq>1'hs8W)trVc]ts8N&urr*!!rr0/%s8E#urr2rts8I$:s8UWaiUQ0oj5T(c +r;-$Si7$9.dam:4f?r+&i8<8?f\>-0b/D0;bK[r3]?\sZgu7/De(!(*f?hjle(*%#g#2,aoDJX_ +nb2eVs8Mi_iR5lnf%o-2bf@`FdG3X6e'H@gdaQk'gtUT9eBQ.[dJhQpd*BkYcICP'gtLE3f@ej0 +f@JF!dF$Cke(!%-lLarNrV?0YmGlmMg#MPqqu$Bgq>'gZp\=RZqYU3grVZQiqYU3hrV,U2bJM!5 +bfRrSiUH^BrVZWlrqufprY5>/rVlcmqY9^LiSs=sl/:F[mIpMXr^H\Xo^(DX\u_^'VlH_nTV/*Y +VPBl\USO`^Vm*YIf&uYup\Fdeqs`qAp$V&"fAZ/fm.1,.Un=a!aO]G@pAFmerr;usJcDnQJ,~> +ci4UVs8W#ppZ'/m\_6!%jlPR`j65S%jT=K'jSn6Aj5g4"!9F.A.-gI#oBYT(lK[j-m-*a+q"3n5 +j5f:]ioTS*qs3D/kN:mfjQ>[jlK\B7($XoFmITl3i8sOsjQ5Ujm-a?1m-3a5k6'r4lgFc@,OXpa +kNVU3oC;;:lg!a"mIB`7mHj0)lK@6gjQGdkkN1dcjo4BDjQ#:oj:UG6jlYagkN:mfjPo.ViT&t[ +rTFXRkiV-_\#m[7r;6Hfrr)ctrr<#tX8i5!!<<&ts8W,uEW,q;e\C)5l/gsbipH[?oC1\ef%/:# +hVZr4eD&p=g=P!3g=49`_T0jE_mI&$e_&[9hq?K.g"Y-*cdL:mf%/O4l1"C9lq=!:j +b0AMngsjQg`lZW`hqQW+cdL7jf\>39gXt$#b0894dP&tmbfe;]g"kH;f[ng4hqm/Cg"=p.f\+s1 +gZ.YnqY^6bo^M,&f$i70meH\WrVlfps8N#r!WN&srYb\4qtg3frVcKUg<7@I`luQGdc']lrVcZm +r;QWorVe5Dr;HWnqtg*[m,?smo&ni_i9'J$qYBp\q>:$YkhO_9e_/g8f$M[grmW[Oe_&R-f@JX/ +hs0n3qY'XXq=Nq5m.'E(h:LWRna,lHfqY.>\]E@^n+HVWr;Q`qrdk*Ps*t~> +f)PdL!<<&trr3W1rVcNO_lC9"hr*PUj5f=_j5TCbr8\"?j5]4]ro=";!9=(?+R8Xro^(f,lg+'0 +mHNs/q=X+8jQ5Laj6#e-qsiop(*kND*qmI0Q5mHXZ6"6o+; +n,Dean*KE)lLaiCo'l&5rok*_nF5i4lfmWrjl54Wj6#Lcj5T(eire<$jlZL&s5s=BroOmWk2k[c +io/nXe[M["l2CS[rr;tgs8W&us8N#ts8W(@[mJQhPnDMdHf$`.+hq-9*gYguC +f@\j3eB5_Ha32`F[(FW6f\GHCg!eI(gXjfudaQatf%K!GnFQSXp[RtQr;Zcln);^;c.:_+eBGtQ +ajJo$gXFKpdaHUsgYCQ*Imd'HCfV>%=\B!.\n+Q\XrVlirrdk*Ps*t~> +f)PdL#64]$rVlfrrr*?$i4P__`QH6>_SO((l,!G:'grVl`or>5># +jOMAk`QQQNbgtkGqYg?hqYU6krVcWns8=SMrr)cnrquTfp$CYtnau,+iTK\(rVlcnq=jFAeA&&S +Pa7i5Tq.R%nFcMNr;HH[lL=H7khXnNn*o`9rn+!;XLZF'j6lUUBnrr)otrVcfsrr2rtp&>!k!<1FHs8E#ur;Q`r! +ci4UVs8W#ppZ'/l]%Z3)jQ,@]ip#M(jnn-=jo=HCjo45kN;!nlg=99p\4:J +m-3j/q=aLQnaQ#8n+6>Ko^hS>m-5>#jOMAk`QQQNbgtkGqYg?hqYU6k +rVcWns8?:(rr)cnrquTfp$:Ssnau,(gu@Peq#(!aqYgEhmGZO:aNiAnhUp6$d*gCleC`O2g!nUBnrr)otrVcfs +rr2rtp&>!k!<1FHs8E#ur;Q`r! +f)PdL!<<&trr3B*rVcKN_l:0!i8F5l00sbqYL$_q>:'cq>'m`q=j[^rV[Q/n`86B`Pp$GbfnZ! +o(r=_qtg3gs8Doqrr2rtrEfO'rVZWnr;$0]lepajn`ANYhrX;"qtp6fs8W&llJC1Gi99Y"n*B9+ +nF5o9o(2JClJgdZiUQjFs8MuqqX`q3lgF#tg!nmFn*KZFfqb7A\]E@_me6SWrVlirrpg!irr<#o +rr2rsrW)usrW)utrr<#krr;uurmLiHrW)urrr;uurhKLD~> +f)PdL#64]$rVlfrrr*H'i4P__`663>_SO%(_SX.N_>qLQ_J[9._Sa7,_oKmBdb`s8cGmc@bgP"h +d*^M$f[%^`bKS/Pb0o8+bf.WA`5]pAbgG"qh;@,Gf[.srhqc]$dcKE8e(31*gt^Z;f@A9pd+$Y! +g>(QAgtL?+db`59:&]Xthj_90TkTtTO_qYgEns8EB(r;?Nns8Duss8W)t!rr9!YlFb&!<<&ts8W,uJ,TEI +e\9r2l/gsai9^@:na+uNaiMNKf%A?lbLPD%dE'GWgY:,n^rk?hgs=0ke(*+,gXFEldF-@ccd^Ot +e^)@[e_f98db&q"jm_n*0?6n*&W\ipZC(oD[C +ci4LSs8W#ppZ'/l\_6$'jQ-=#s5X1?kiDd(/EGpSk2tddjQ5I_jQG^in,!"Rkht7PjQc*skiqU/ +n`SrnjlY[cjm;pAk2?7!2!!c\l0Ij2p@n=RmH*Eoo'k_pjS/6-lgO?7o^qbFn*TB&kj7a,oCVbM +o^_G7m.U;Oq"=UV'D2%pq=aINmHNfrjlY^cjQ>RbjS\*@jQ#:njT"6NjQ5Oek2k[aiS`YRj5T._ +rojCH%-?^,\?'^LiT0M!jkA>Bip6=7q=sgcrqYs>e'-(fiTomoi84Fi1#_9X +kN(:>b/hc^nGN7\q"a^WlK.C$lK-dNhsBguo)749SufKDf&Z;nr;HTns8N#frrW3"s7uZns8Mut +s8Doss8N#ts7QBkrrE&Hs8W&us8;lrrrE%ns*t~> +f)PdL!<<&trr3B*rVcKN_l:/ui8kiLpdjQ,:ZjQ#7Zmc+K1j5f=_jS\*@jQ5M%jppM6 +j5f4YiT8Y"Xi9Q'rVHNnrrE%ns8W&us8N#ts8W(JrVuoJ^>JJFjl>=Xm/-VKm+TP&aN)WXf[.da +e_Jm+aN;iagX3pSb1Yb/cca_be_&^4e'6.bda-1aeCN7%ccO>[hr!#5g?.bknb2hUo&A$;bh(_, +d`]\Pce7CEjkeV?f@ep9iS`VMh:U6/i9BUljPS_Be(*10ioB"V!94":+Q)#1g=b',dE]t_f%oKW +p%J.OnEoDqeBuk+mI^2Jq"Xja%JTYnqt^$]q"XUXq>:-irYPG(mGm$Xi8W\Pi9'M'r;QQfpA"Rb +rVc`prr<#s/-#VIr;HWmq>'^Li8O.mi7?E3i9Bk.q>1$hs8;WXiS<;Sp&+ggqtg3fqu6Nnr[n!5 +hV6W5l1t>YrquWeo&o&umHET`eDBQ\mI^D3V4as%ak,VApAFmfrr;usnc&[is8Voorr;us!<<#s +!<<&ts8Vcks8N)udf9@H!<;urs8N)uU]5i~> +f)PdL#64]$rVlfrrr*<#iOke_`QH3>_ns:i_Z7R;_uIUQ_u%:M^i765aii)dh:'Qga2lEJc-4G] +gu$f1b0/#Rbfe/Vio&"u`l,a1`lurdg""R$fA,-0e(s*Cd`9bqh9aX&g"Fs)dF6_"e^;dqgtpf9 +dF6e*gsOI#hqm/?d*L.ie^D^ecHOGN_7m_%`lH!4_8=%e_Z.FS_Sa:.pVS5m_o'F0^:h:q^VRk/ +ai_]E_S=mdBH-m-sT?r;Q]qrVQ?Yjk85@l1P&Tqtg-bq>U6iq#pTkr;HQmrVlfrr=f)' +p%.hLp[n+NpA+[drVZQhqu- +ci4RUs8W#ppZ'/l]%Z3(jlPRaroF.@k2cU(rT4UNj5f:\iT01bkj8$=mcFH,@cHM2jQ,Xup@7;) +j6#RfjlG_(qW6Snio/eRkj\69md'6.o'ki*n+ZG8g#Mboj6H+'na>]+lgOB2lK[g0p@@S7lL=N= +lKRp:qY9XKm-sW=o'Pi4m-EioiSs"blK@6ir8n1Ek2tddjRqX7j:UM:kiq6>gt:0,e^DafdF[%)gXacudb*C6i8Nnjp@n@ZqXECe +`mC-er;HTorr2oss8E#urVcfqrr2rr'DqRtoCVbNo^qhMq>L,D2rr)lsrVH?`m,I'pn);pMh;dntrVl^'rVl]_imc5teDBBPj8Rmlh:gZCkNM!bf?_X\ +b2)XerqcKhqtKI?mdTQ(gXY3Jn*BNAf;,%?\]E@`nFukZrr2rsroX7[rr2otrr)isrr2otrq-6j +rm^uJrr2otrgWq<~> +f)PdL!<<&trr3W1rVcHL_l:0!hr*PUjQ5OcjQ#C`"QSV*jQ-:"$K9q'kND*sq"jIAro.DJkND!j +mIg;HkiCjgki_*ilhgP@hrE_Shr6>gt:0,e^DafdF[%)gXacudb*C6i8Nnjp@n@ZqXECe`mD;p@n4Pp%S7Wq"X[\p\+@Tp%7qOqYgEmrVcWgp%.hLp[n+NpA+[drVZQhqu-Qorr2rtrZ(t: +rVlcprr<#sqYKpPiSj1igsaa+iTp16r;HTnr^$AJin`JSoD8@\q>0s_pA"Rbrql?QhqQZ2kP+rT +rquZgo'#-!mHET`eDT``me-V7VP10)b1PeBpAFmfrr;usk5YG[rr2utrVllsrr2uto`+sjeGoRJ +rr2utS,\!~> +f)PdL#64]$rVlfrrr*<#i4P_^`6--?`5BLY_uR^S_u[corkefU_nuDhs2+fNDns?6aN;`Zf?VCT +aihcIaN2NQhVm27ai_iQbf\)Uinqnsa2Z!1_p6rlfZ_CVbgtIpe)0BKdDXAlh9jm2h:pN-cdUS' +gt's*h;I#3`Q?Wdh9a1'hs8Muprr +ci4IRs8W#ppZ'/k\_6$'k5OK*k5XQBk5=??j)ljR)U5oBti*mI^/Gna5c=qXN\(iU-@3l/_:+ +p@Rb7k3_d5na#K,lfd?ah;RM]lfe?1s6'FE!9O4Bs5it:%HQ[6kNM0ql0.9J +nb`@cs8N#tr:/gtbf\;bhr!2efJD+4hrWqVg"+["bKf& +f)PdL!<<&trr3W1rVcKN_l1&si8NbXjlYagjlGRcroF+>FQ2??iSWPPk2tjmo_.Y3iT0+[j5T(Z +meH\Ol/Ujfl0%0im/6\@i8itWgu7SnqX`q0iTBV!lKe0DqWQYpqXj"@p@n7LlKR^/q"F:GnG)kP +kMP=fq"O+9n+ZSLmcWg$oC_Ve\C,9m-!?ah0p_q"ad^qtp6bp\4CRoCMJ>m,cmD +aO/u9q>($_&,5kop\4IWp%7nJo()DHqu-Nbs8Muts8Muts8N#rs8W'!s8N#r,6%N:q=X(3ipH'e +daR"4n+lt_s8N&ss823AgY:`So_.nIrq&#;o_A@]p$Lu'h:C3Aq#: +f)PdL#64]$rVlfrrr*<#i4P_^`6--?`5BIc_uR^S`;daQ_uR^S`-fJ@_o'@/_ns7+_o'@-_8+"1 +aNDl]f?V=M`Q6-BaiMWQgu$i4aN2NKbK.iUin_\oaiME:`m<>me&fPHajAJZc._@>cG.Wgj4<,L +jl5+Lg>1ZGi7lc2f\4lu_oL3ZfZhI^e^i6paNW,dhVHo=g=OZj^;%S(_SX.g_uI[P_uIXW_o0L2 +r5ANN*l5Y.^qROt_8OF;aMu6;^qRLp]t_D*^S[a>jSAZNrr;urr;Q`r!ri6"rr*!!rr0/%s8E#u +rr2rts8F2?s8UWaiUcF!jP\q[qY9XLfuqjte'QCab/hWEaiV]Lbl5irbg"GXc-4GXcd:(geC=KH +.FHGaai_iUf%A[-eC)[lh<=:roD&1Wp%S7OiQoQkk4nrQq=s^ZqYBscp]^KiqYBp^rqQBerqQTl +qYp'gWn*/ZNZC?c,LlRU]P*2&pQ^O;4SXGb*O,f +ci4RUs8W#ppZ'/k\Cop&k2k[bp>uA:roX7Bpu_G7!9F(i7m/JiT&qWjQuR8 +o]bAojQGXbjm`9FjP]4`j5Atbp\4.Ufkih9pkN:me +j5].ZjQ>^kkl0`Qjlk=*Xi9Q&qYpNpp&>!k!<0&!s8E#urr2rts8F2?s8UWaiUcF!jP\q[qY9XL +fuqjte'QCab/hWEaiV]Lbl5irbg"GXc-4GXcd:(geC=KH.FHGaai_iUf%A[-eC)[lh<=:roD&1W +p%S7OiQoQkk4nrQq=s^ZqYBscp]UEhqYBpaq>U6jq>^6iq?-Wkq>'sb#l+/iqu-Norr2oss8N#q +!;lck%/08]n*&QRc.1tLrVlco!WN,urrBOo)&Fcr=&]*r:/drc-4Ylj5f.th)+!HjQGdjj5&GAeBcS'p&>!hrVuikmcj34n*&TZiU-1& +o)749SZKBCf&Z;nr;HTns8N#hs82d"rVlcmrVlfqs8N!$s8Muqrr;us!<;urrVccqs8Dut!<1II +rr*0&rr2lprr<#trW<-!ri#jI~> +f)PdL!<<&trr3W1rVcKN_l1&si8NbXjlYagjlH:"!9F.@s5`k7rT!t=ro.qXio&bPio]Ffme-8> +iSU?kq=O=S +r;HQgnF-&En)`HdmI^#6ioon&n*&fon+Z_Uq"ORVmcE9]ioT7]j8S-=jo=E;jT+B>jo41$eqtg-ap\+=Qo(2JGp@nCX +p\4O^r;$*^p@IqJnEo]5khFD)e)^,trVH<`q"a^Yp@\(Knc&"_nauSRrr<#tnc/Xg$NL,(r;HTl +rVlisrr+DIrr)]gqYU*aoB>)mnF5DbdG&&jPSVB +l1t>Yrr)cko]bH%n*8ufeDKW^mIU>1Un=a!aO]G?pAFmfrr;usoDe^e#6"Q"qu-Nnrr;us"onT# +rVlirrW)urrr)fqrr;rsrrE&Is8N!&s8N#rrVlisrr*!!rr/krJ,~> +f)PdL#64]$rVlfrrr*6!iOkh^_op-@`;ILS`5BL_`)smp`Po^4_SX4/_SO%'`5KR1_SO+/aNMub +gbfS#SfA,!'`P]X7`l#mIinMMkaiVQ?aNrMkdE'5DaNr2RajoD.cG7`himZW=hqm&9 +e^rD.f[eHrdacpraMZ'Ff@A*bbgY(hai2?Jf\G<1crVuorrrop\k'grqcWls82imrqclsqtp6equ6NkrVucqqu6Ej +qZHfrs8Mus%0$+up@e1Qp\+=Wr;Q]q&,Z4unDVpFf]Mi'qtTpYp&=[mq"jpfrVcWkrr;rnr;QTn +quHW]r;ZZor;ZWmqZ-QnrDiX\j5ok&j3l<0jQlL6q"OFMkhF.^R>Q]TO->ioPa7]*SXuIFR[0+t +NKBBt\'a:&mdp2Io&o#tn*/oeeDKZ`mIL5/V4as$aO]G@pAFmfrr;usnc&pps8W)srr)corr2ln +rqlZorWE3"rVZHhrr1LKrr*!!rVc`ps8<'!s8W(ns*t~> +ci4LSs8W#ppZ'/j\(Ka%k2cI%!p8V+mH4H0rT8:aj5T(ZjQ#7ZiSik[kjSChmd&ojiTg"/q>'g^qtBC:iT0.^io0msroO1@s5a7CroO.As5j:A!p/S,roFFJki_0m +kN1dbro+RNjQ>^jkN:sjjQP7)XMjB$qu-Nn"o\Ats8W%ms8W&us8N#ts8W'ArVuoI^>SPIkiUsc +lhU;Io]FrhkMtR\iSNAFh;6uEhr"=hs5=4@iS`\TjQ,G%js9$Iio&_Oi8j(cl0.6ijQPsunFcVS +qXsFQqXWUk`mElBrVcZnqYpEmqu?Kmqu6Nnqu6Ksqu$Bhqu$Hjs8;lms8*#uqtp6dr;QQm*rc-: +qtg9iqu-Kip%.b>h9jO"kk=uSrVl`nrVlcorVd$"qYU-er;6Bhrql`n!;l?bs82fn!r`&orqlls +r;-?jrDiX[io]t1lIsqRm.:,RrVcZnrqc'?d`ftbgZ%;PhVI&Hj5oLgk2Y@Qf$r*sjRiEMr;Q`p +q=*_?p$h5&f&5rcmIU>/U7Ap&+ddrr;usnc&pps8W)srr)corr2lnrqlZorWE3"rVZHh +rr1LKrr*!!rVc`ps8<'!s8W(ns*t~> +f)PdL!<<&trr3W1rVcKO_l'rpiSrtZjlY^ejlG[fro?T2j5T%Vj5T(WiS`YTk3;@0p[7"ph;RDW +kN1jloCqh?iSNMQio0%irqPU5ki_'ek3hs:n)`Kcj6GmgipQ^=k1Jbnq!@YPq(MF1nFH5Eo'Yl4 +o(280i8a1pnE8cnmdKN'i8X(pq>0s`qtg!Oio&kYjPf%VioC%!s5X.?!9O4@roO1@s5OCGjlPO` +jlYahqr[n@s5k!YkN1daiSi_Ue[DQul2CS[rr)lrrVultrM0DmrW)utrr<#urZV7?s4"d@na#E$ +jPoM$p[n+?guISXio/kQgt^`Bh;7&Hqr%M5#N4S!iT'"[jo4BfjPo1Whr!AQkNV6pjlGLdm-aB9 +q>:$]o(MqNiQoNjk4eiQr;QQlr;ZZoq?m,tr;6EirVQNiq#:'kq"jmcrr!9'qtg0`p@\%Jp%J.T +rqZTh)#O:2qYC!`pA"FUo(2M@hU0Nsk4\cRrVc`l!Vc6coDeC]nc/.^p%S:Zr;?Qks82lop&"mg +q>($d!;lcnrVH]pqY9mcq_.[/i8a:qimH-.jQuU;rVlcprquHPg=P$:lh1)Ip@nC[rr;urr:odG +iSE,=kP+rS+oV?3l/V$rl/^RIhWsXso)749Su]BAe`?2mr;HTns8N#frsA])s8MurrVZZorr)`n +qu-Qo"98B!r:p6irmq,KrW<,urVlfrr<*'!s8JenJ,~> +f)PdL#64]$rVlfrrr*<#iOkh_`6-->_ns=j_?.Wl_XGDB`;d^^_Sa:0_nj.)_Sj@k_AL,,a3)ca +h:'B[_T'aFccXATeCiBq_na(e_HY%.i7l>ja2l9=a3N8fd`TPJb0\MXajT##dDaMph9=3oe^`$h +aND]LaMc3Je^`$e_oL*Tf?MC_f%/00aMYs:a25X,^VI_'`5BL0_ScAirkncQ +s1oJf_ns=/_8*h#^:h:s^r476aN)9;^qTf]%DKX"_5O0DjS/EIs8W&ss8W''s8N#ts8N&urr*!! +rr0/%s8E#urr2rts8EH*s8UWahs]gnkNCsmrqIB/p$VPMq=sa\p\+@Vq=sd^qYU-cqtp6equ6Hl +qZ-Kjr;ZU=qtg*^p\F[_r;6?dr;HQhq>:0kqXsITr:/Xe_p@K;qYgBjrVcZoqu6NnqZZopqtg3e +rqufp"oS>tr;-9hq>U4Lqu$Ejr;HQiq=aFMnF?)Ao()JKqY^9gq"OILiR?*'jRN!1^!qtp6dqt^*bq=sd]q"OU`q]Gb7rVlW\iSs7niR-$, +iTp46qYBjTkhF1aT95%lP*Z*62OU#'SXuIFS!TA%Od2B4]$f[+n+?GOoB5,un*&fbe_of`m.:50 +Un=a!aO]D>p&+derr;usoDeji!<<&ts8W)t"o\H!rVlfqr=/c+rr2iorr;rrrVcZmrVuop!WE&t +rmh&HrWE,urr)TjW;hA~> +ci4RUs8W#ppZ'/k\Com%jlGObro=.BjQ,Ufs5s@Cro="=HK3uDi8Nb]n+uqOjkenSk3D6ojll4* +n*&Z_gtprHjR3!Ck2PRfk2b^no_%_9iSik_l/L[ep%.>"k54].l0n02lfRUEo!<0&!s8E#urr2rts8EH*s8UWahs]gn +kNCsmrqIB/p$VPMq=sa\p\+@Vq=sd^qYU-cqtp6equ6HlqZ-Kjr;ZU=qtg*^p\F[_r;6?dr;HQh +q>:0kqXsITr:/Xe_p@K;qYgBjrVcZoqtpg$/50r=&](rr2lqrr;uss8W&squ6Hkqu?Nmp]C9gqu6Hfqu6F%qtg-` +qYL*eqtg3dqu-Nmr>u"9mbm*pp#t/bkNqd;s8N#rrquQYhpfuueCrgZ.cgtprIj5T"Pf[eU% +fB2c(rVQQmrql3Nnb)A7h:CNNnEf`EfV>"=\]E@_n+Q\XrVlirrq$0irW)utrr<#trWW9"rVc`p +rr!<*s8N#qrVliqrr)fnrVccrqZ6Zqrr1IJr;Hfsrr2ljri#jI~> +f)PdL!<<&trr3W1rVcKN_l1&si8NbWjQ5LajQ#Lc!TW;@j9"?"ir7taio&eQiT9=lqYTgEhV[AV +lg*`rl1+E8l/:=Phr!AQn,<(EiTB=aj6#b$p$h/(ioTLljQ#V$p?CDsrq,:9nFH)8kN:pjkiLdc +n+-&;jl#4eoCD,*lLFE4jk\eTm-sN5n+HMPn`Solk2t^^hr*JRj5o@_j5]5"j8S->j8\*=j8S*C +jlGOck2lR("6J\-kl0`Tk2bR_iS`\Vf!VQtl2CSWrr;uurhKMnrW)utrr<#urXAc*s4+mAn*0'! +kN2%/p_j#&me6MQq"X[Zp@n@Xq"ad_qtg0dqtg3erqcZl!;cWks8"#1!dqtg-drVZKe +qu6Wlp%.tVn_VI,cfXlrrVcZmrVZ]mr;6QlrqmT0r;6 +f)PdL#64]$rVlfrrr*6!iOkh__og$=_u@OI_Z7RQ_uIUO_Z7RO_[=8u_o0I/^qmn*_u@Ms_8=47 +ce@7,bf@cIcd^@caj&>hf?VFS_Sa=1aO/kuaMZ$:_nsC:eCE!kaiM]PccaM[gtU9!e)f?,cI(.l +dEKbVbK@lEajJVfd)X&Ece$dmaj]&#fZqISaNi/Wb0AJkgt']i`lZU6jq\B&+qYL*erVcQbpA=gYgr[FYiT][qrpKdP!q#@@rpBaP"mt[Clg4!; +mJlSVmI'E0qWnUWm-O-,m-P\$hqtp?dlJ(+ZmbuR?guI_oqYBs\oBY>\ +^9=?(SXuOKTV80XUnsobV4sWSSXu[X[Dpn_mI9iGq=Eh1lL3uug=>*InEfcGfqb7A\]E@^me-MV +rVlirrq$0irW)utrW`E%rVQNkrVc]sr;6EjrW)orrXA`%rVlfprr2rtqtp +ci4IRs8W#ppZ'/k\Cfg$jo+97jT+B@jo=E8jT+B?jT=K%j8S+cj5T(WiT9@mqYg'OjlP^nn*]H% +kjeB;lf6jZioB+_n,3%Gj6#OcjQ>h#p$h8/k3)$pjQ,Y"oBG2ur:At4n+-#:l0.?qkiLgemd]i7 +jl,=goCD,,me-5Ak2+qRkj%Bnl1+QFo]kQ#l0.3ehr3SUjlY[dj5]8#jT"?;jT"^9_qYpHkr;HNhqu$Ekr;QZpr;QZpr!32ur;6?eqtpBj#l=GsrVQKgq>($ds8*Q/qtg0d +r;HTip%J:]n_D7'cJe$RmJcPQliQS@m/65gm-X3.mHs9-m-X3,lg*p)m-X6/mHs9+lKeE9*:E=d +o(2JFp%@tMp%%S@n*TK1na>Ghdb +f)PdL!<<&trr3W1rVcKN_l1&ri8N_VjQ5LajQ$*t!9=(>s5Wh6!9=%=!oi1uro8=aiSi_Qjlu4/ +rUfC:jlu1%n*0!!o(M\@j5AkTioB1ir;#O8jlYU`jm;R1nET/ukj7WsjmDd7lf.:0o]59*o'u/4 +kih9pjl5Ilo()20iT9J!oBGE+p@e(@i8rp0^Rm-OQ8"75FBm/?3)lg='+n*]Z5mHj0&k2k^ek2kagkNV@& +o(D_Mp\4@NmHj0)m-sZ=kLnDBlhLJYrVlfqr<)rmq=ss`rq-Bep\Fadrr;rsqZ-QnrVufkr;ccp +rVucqrVZZprEfF#rr)ckr;Q]jmG?X`mGZOChW=/"rVlfps8W#ilf-g^kNqd1mdBT7o()GGp@I_< +kMtU]j6laAs8MusrqGa?lgX3#g!njCn*KZFfqb7A\]E@_me6SWrVlirrq$0irW)utrW`E%rVQNk +rVc]sr;6EjrW)orrXA`%rVlfprr2rtqtp +f)PdL#64]$rVlfrrr*?$iOke]`6$$;_SO(+o>:ODr5&HOr5'br_Sa=/^q[\%_Sa4-_ns:1aNN,g +f?qpjdF6XnbK.oXgtU<(bl5adaii,efZD(M_8!e&ajAMaccsb^dEg%^e(WL%b1,J*bL"bjg"4^# +da?FdbfnG_e'H+RaNrGfc,nDhhV?T&aNW&\ccj\ag"=cub0%oL`PTF)^VRe)qSN6Lrke]Q-GmU8 +_ns:+^V@Lq]tV8!`Poj:`59:&]Xthi_8sBiUqYmaq#(-krVlis!1!dqtTpYp%eRan_D@/dc9WXl0@X$rosLLrTa@Is69dPlK[^#lMg,LliZS=lKeE6&aS]GlKda! +k2kX_io/hQhV[;kj!NjKkND!klKI*Oaj8]'mI'<(kiqF$nF?)Ap%eI]rVlirrVlcorr)cqr;QZp +r;$9kr;QWqr;HQks8+;Bqtp3^oC_nTrV,X5h!4:bdaHt4m.U>RqY0[Nk1\/"]!S`HYd(F<['fn? +0t"BoYcb18\\6#4ip6()q"sp[l/_-ulK-dNi9g($o)77:Su]ECf&Z;nr;HTns8N#hs8N#trVuj" +rVZQjrVc`qrVufnrr<#ur<`E#rr;rprVlcnrr)ls!<1RL#6+Z&r;HWorr!0$rVuorrVlirri#jI~> +ci4IRs8W#ppZ'/j\_6$&jSn0>jn@d8jTX`*j5f7\q;a0gjQ,Iaio/nWjlGF[j5T(\kj.pU0]qYg:'er;ZZnr;ZX!r;6Bfq>'m`rql`ls8*&tq>'g\p\4I^qA8u(qu$?d +p\"4TrVZ3@bfA/llK[X!m-FZ9!:0UKrp'aQlg*s(li-2Lli$)Mlg!g8lm:u_l07L!m-X61nalDG +p%J+Pp%J+No(2JCnFH/>k1eJBkk4uUrr2iqrr2rrr;?Tnrr2lp!;uips8;]k"8r,rrr2lorr;rs +r`oEtpA"L]rqYp:hsU'ug=tcTo)/Ldr;HWnqtT^Iki_0olKRBijQ#4Yj5f:`jl>Idl0.I(q>L3d +qYgBgmcj34n)rKXiU-1&oD[F=T<,TEf&Z;nr;HTns8N#hs8N#trVuj"rVZQjrVc`qrVufnrr<#u +r<`E#rr;rprVlcnrr)ls!<1RL#6+Z&r;HWorr!0$rVuorrVlirri#jI~> +f)PdL!<<&trr3W1rVcKO_l1#rhr*MRj5f@aj5Tdms5Nb4-K=(Gjl>=XiT'"[iS`_SiT97fo_S7L +mdBT8oC(r,lLarKna,Q)rok`onG;nCj5f7ZiT0:noC;88m-a<.kiqR0o]tW-rq5I@oChqOnc� +md06)md]i7k2POko^hA2me-AJmcEKlm-a0%lga`Cna#H(lKRBghr!AOj5g'sroF(=roF(=!9F+? +!9X4@!TrMBjoa`+io9sq"m"1AXMjB%r;lrsScA`h!<<&ts8W,u*W?$U0] +qYg:'er;ZZnr;ZX!r;6Bfq>'m`rql`ls8*&tq>'g\p\4I^qA8u(qu$?dp\"4TrVZ3@ +bfA/llK[X!m-FZ9!:0UKqWeLTlg!`ul07O#lKeE9.I??bkiLpgkNM*ll0Id-o_/%Sq"a^Zp%.bE +nac>Hp$:PkipQXBs8N#prrW2sqYpD.o^M;;o(DePoCDPHp@\.Rq"OFNrpM<'me6SXrr)fprV,X?lga<%g!edBmd'KD +fqb7A\]E@_n+Q\XrVlirrq$0hrr;rsrWN2tqu$Ekrr;rsr;?Qos8W$(r;HWprVZWnrVZZns8N)u +f)GsRs8W#qrr2oq$2jc%s8Doqs8N"rs*t~> +f)PdL#64]$rVlfrrr*N)iOkh__o]p:_SO(*_84")_>_7M_>_:e_8*k&^qde&_SO(*_83q'_Sa4) +^;%M^_?dup`PojAdaQ_FeMP_%c,doIeD&g2f%&0pd*9e\e^DLT_7dIn^;S4@cd:%eeC2dgcI:@n +bfJ5hf#l:de_&LQe1fA!cd'bZd*U"V_oBsLdEBSSe_Am1cd("lg"+[%eCE!lbK\AZbf@Z=^V7M" +_SO(f_Z.OQ_Z%IQ_>qLQ_Z.FR^qRP]]c+]'`5Ta8`597$]",Gd^rO0eUVGmbq#16mrLNugrW)ut +rr<#urY5>2s4"gBo^D,.ininor;6HfpAFpgr;ZX#r;HQlrr)ipr;?Qms8;]k&H;_/s8MrorVZWl +r;6?grVc`p(&[t)p%7nNqu6K^hpKa&l1F`DpA"C]pAXgdp&k'aq"Od]rqHHds7Z]lq>'dYp\a_E +p%7nLp@\%GlfR6dhqd&@g=b38hVmPXk2k[_gsa?]`Qm/pinrPGh;I;RjlbpsoCi%ZrVlfnqY^6\ +qucior;-Eis7n5Bqtp6dqtg-^oCVhUs82 +ci4IRs8W#ppYs)j\Cfg#jSn0CjQ#:]j5^-us5O1BjQ-3us5Y0]jQ,F`jQ#=_jl>@ZioK4_j5T(W +j5oCbmIKl@rq//>na5Q&lLauPp\+:MnF5o7n+QD=Wi8a"fnal>Ao(;M@lg4*2n*&m$qXN_6 +o(DbNo`"G8naGo4mI9W3k2YUko'u#,kO.s5n*0*(o(2A=mdTc8lfmd)n*K5uio/kUj5f7\roF+@ +roF(?s5a1@"ln\)jlY\(joOT)ro"jViSihZk2kXbjl>LS[B%:2r;?Qos8MuprVuosU]:An!<<&t +s8W,u'`J(3eA'u7n*B,qhWXb4qu-<`r;QZms8*-#rVZWnrVlcnr;QZpr;$:&rr;utrqu]mr;HQk +qtg6hrVld2r;6<_o^qnTrql3BdE^G0o_8(Qq"Od]rqHHd$hsGkp\4IYq"XUWp\smdpCm8pp\+@V +q=s^Xp@n@Yqtg0bq"Xjas7lWgrqQNi+Ska(o'PMle_9*Squ-Beq>1!dr;6L?knD`HrnDr9Uj6ZC5rVcZkr;Q`pqtTmXo^qbGnF,l8rpKgT +s7%]0o(D_LpA+[er;$-bqtKLBnFc;6gt(EMna5oGfV>%>\]E@_n+Q\XrVlirrq$0irX/](rVlfp +rVuorrVl]urVuoss8W)srr2rt%fZG*r;6Hlqu-QorVuosf)PaK"T8/rrr)iq!<)ors8N)uVZ2/~> +f)PdL!<<&trr3T0rVcKO_l1&rhr*MRj5f=_j8S';iW%m=jQ#;!irA!;iZ."j8S->j8S*DioB+^jQ,G$k5OHBk5OHZjQ#4Whr*DOe$Z9rl2:MZrr;rss8N&urhKMn +rW)utrr<#urY5>2s4"gBo^D,.ininor;6HfpAFpgr;ZX#r;HQlrr)ipr;?Qms8;]k&H;_/s8Mro +rVZWlr;6?grVc`p(&[t)p%7nNqu6K^hpKa&l1F`DpA"C]pAXgdp&b!`q#:$ep]1'ep&k'ap\=a` +s7lWg'_V(ho_&"SpA"I[r;Q`qs8W)srVlcq%K?>&p$C_rj6cX@rr)fprWrK%rr)`lrVc`prVucq +qY^6Yquuror;?Efr;.?-qu$9`p\Xsir:8k*m-WZ\f&5`\q#(*hrr,7arr)clqYU6krquZlrr2lq +s8N&tqtg3eq>(!hs8Drrs8DZVk3VX)jkA5@lgO33rn4*>XLZF'jR;g?rVc`qrr2Nhs8EB*rVc`p +rVccrrVc`n"o\K$rr<#trVlfrrso&,rVZQkrqlZorr)lsrmq,KrWN/rrr2lqrW)orrr;uurhf^G~> +f)PdL#64]$rVlfrrr*E&iOkh__o]p:_SO(*_86,fqn`1i7mDhrVQQhp\Xper;6Bjq@3>tqYL$`q"OOXq"a^[rV6fsq>0sbr;?HhqYU9i +rVIc7r;?QmqY0aZp@\1Vr;QQ\h9s['kP5#Sr;?Hgqtp1!dqtp6dlh^\YrqlZj +qtjUop\4L]s8DHFhs^$le^WF +ci4IRs8W#ppYs)j\Cfg#jSn0@jQ#;"jS\$j8e67jA4gsjQ5F]iSrq[jlGF[iT'"ZjQ5Uo +oChkKn*K<#jQQ./qtKjYo'u5gk9iT'(_jl>Iaj6,%%X2X?$r;Q`qrr)cns8W(ns8W&us8N#ts8W'8 +rVuoI^Z+qUm,m6\k4noPrV?3brVZTjqu6F$qt^*bq>'g[p\=OZq"Xg`$MsSpqYU3gqtp6erqu`l ++o;-7rr)]fp\=ITp\OgeqX31fd+RUWrVcZlqtg3er;6Bfr;HTgquuuoqu$Ekrquco%fH(mmd09+ +m-X3.mHj6+rosIJ%-cs8gXFKtgun.qmd:#A$h*NOmI0Z@qu6WprVl]oqX+1[q>gElqZ$KnqYpEl +q\&c"p\FaerU8Y%n+#Dif])8hq#:0rqu$Hnrr2lprqcotqt^'aq=ss`"ShijqYL0g-iO&Dqt^$` +qY0CAn+?)3gst%>\]E@_n+Q\XrVlirrq$0hrr;rorr2iqr<<,trVlisrr)`n%K6;) +rVlfprr2ios8W)Ls8N!&rVlfpqu-NnrVccr! +f)PdL!<<&trr3]3rVcKO_l1&rhr*MRj5f=_j5T+Zr8R_9q;P?5io9"Xio/nWj5T"Si8WeXio/hR +ioB%YjQGt%p%7hClf[BikOA6Bp@e1LnF,f2lL+*&j5SnLh;72UmI9Z8o(2A$jT"?Ak5OHBk5OHEjPo.Vrne=Ie?uBsl2:MZrr;rss8N&urhKMnrW)ut +rr<#urYYV6s4"gCp$h>1i7mDhrVQQhp\Xper;6Bjq@3>tqYL$`q"OOXq"a^[rV6fsq>0sbr;?Hh +qYU9irVIc7r;?QmqY0aZp@\1Vr;QQ\h9s['kP5#Sr;?Hgqtp'm`qtg-`rq@#up\4@NlJULUkOJEGq"OX^q#:!qpA"L_rr2lqrquZi +l2(SYqYU0gq&K8.qt^*dqtTs_r;ZceiSj4mhU^<:lLO]Hr;?Nmrr +f)PdL#64]$rVlfrrr*2uiOke]_T9^6rPANNrk\NL#/J*m^q[Y"rP;^R_83q'_8*n'^qd_!^VRe& +_SEn"^q[\$]tVP3cHXMO_o'=+_8jjLd*L"[aiVTA_o9U2^V.1f\[fDka3)TMcHaVSa2uNJa2Q$? +cH*f;_SjL8aNDZG`5BIj_^<45]>);(`l#X/ajS\cc-OheeC2ahc-"&Ea3E#[c,di?^V@S#_>V/& +_8=(*^qde'_SO(*_83q'^qRIo]=bei^V[q-`Pf[1]t:nf]"Geu^8@X=jS8KIqu38gs8E#urr2rt +s8E]1s8UW`i:HC&jl"kSp\ashrVQTls8Mp"qt^'aq>($bs7llqq>'m^q>1'e!rW#qrqm$"rr)cl +qu$Elr"K).q=j^^qtg6hrVZBPg="F$j7iNPs8N#ts8MNfs8N&ur;JhWqYBp]p$Lkqcc*Q)Z*1=5 +Xfen4Y-"k2ZaR?Q[BHI&VQ6u.Za-jCZ`pX=[CjN-gun.up@nF^s8DoqqZ$6fs8W,us8W#rrVuos +')hb+qu$6Uhr4+phpp96lLOWErqo1]p[mtBlfdHjjQ>XilgF60mHs9+l0%3jjlu+!n+?DPr;HWm +p$1Z,oBk_re_f`_me$P4Un=a!aO]G@pAFmfrr;usoDeji!<<&trr;rqs8MrprVlfprr*<*rr)fp +rqu`orVZWnrmq)Yrr<#srVl`lrVc`or;?HkW;hA~> +ci4LSs8W#ppZ'/j\(BTtj5U'us5a1>r8\(Bio9%\jlH0t%cla5jQ,@\j5oFbjl>:Wro,XilKda" +kPaNBjs/pEhVmY_l/gj\jR)F%kiqL(naGf/l/q$djm;O.mHEWjiSsgrro+=GjQ5F]j5]4]j5]5" +j8S->jpgM8jlGI]i8ESRioK4_rT"UNk16o>`9@*qrVlirrVc`qs8Jens8E#urr2rts8E]1s8UW` +i:HC&jl"kSp\ashrVQTls8Mp"qt^'aq>($bs7llqq>'m^q>1'e!rW#qrqm$"rr)clqu$Elr"K). +q=j^^qtg6hrVZBPg="F$j7iNPs8N#ts8MNfs8N#ts8Mio2>m7>l/CFNg=tE>hr!;Hg=Fg*f\>39 +f[@sbc.(P-iS`\TiniJEg=tQLnFlbWrVQKjs8Dols6oses8N#rs8W'2rVZTjr:fL4iUH?qf@T!K +o_84]qZcusrr2rrrr2lrs8Dlrr;QNqr;Q`rrVc^CrVZQhq"OU[p?h,6p$_)!eDBQ]mIC)*Un=a! +aO]D>p&+ddrr;usoDeji!<<&trr;rqs8MrprVlfprr*<*rr)fprqu`orVZWnrmq)Yrr<#srVl`l +rVc`or;?HkW;hA~> +f)PdL!<<&trr3T0rVcKO_l1#phV[;NioB+[j8S'9j8S'6irJ*:j&=stj5T%Vi8N_Wj5].Vhr3MP +iniVWmdT]2kN1gcioB:moCDG?m-F!%k2b^hj5T%RgtgfFjm)7$mdKW2ki_0pl/gsdl0RQhi8Wk\ +kiq?skiVj)s5bTehqd5Qkih*chW=.om-3g'nFH)9lg!Znj5oUrna,H!iS`\SioC!r"leS&io/kq +j8\*Hj5T(WioB+\jl>F_roO1@']nK>jQ#4WiS`SLimY<9`9I6urVcZnT`>&k!<<&ts8W,u'E.t2 +e\9u5md&umg?&),r;Z`mrqufqquuunq>0p_rqQNh#5\/kqY9m_rVHZorVc`n#Q=Z#r;6BhrVl^. +rr)Zeq>:'cr;HTlp?1/Xdb!ORrVuosrr<#trr<#t"onT#r;HWls8W)urrW2urqQLJrVH0TlKdj* +nFH/Ao'l)4lg4!+nF,c,h:g]GlgaQ8nauJBm-^0f#Q=Z$r;?Nlr;QQn +r;QXXLZF'jR;g?rVc`qrr2Nhs8E#urr2osrVccqr;HTnrr)iq$ig5) +rVlforVlcnrVlfIrseu-s8Doqr;6Hkrr)cmqu3PoJ,~> +f)PdL#64]$rVlfrrr*E&iOke]_T9a7_8=(*_SZ;gr5&ZR_SX.(^VKfa!5SNK!5STM-c!L2^VRe' +_SNq!^qRS"]Xu)%`l5d.^VR_"]YDG-a2Z'5_8="%^AYej]t1bc]=bqr`5TdV1K +_>_7G_>h:m^V7Cp]=PVf]tqY*`PfX/^:Ute]"Geu^8Ia?jS8KIqu38gs8E#urr2rts8El6s8UW` +hXU!tjl"eJm-sT>p@S+TqYBs^rq73$o(2MFo^h_Ip%@tMp%7kJp%S4Sp\+@Urq6Wlp@\(LoCV\J +rU_9)o_.tNo^qhInEAZWdF6\&m.^8Jp\+@Wq"XUXq"XUYq#:$ep]1'ep'(3apA+OZrV$oto'l)8 +lJgF>^pU8@TqJ$LT)P?-StDXLVQ-`!Whl8WTqeEXTqS9[V4X6JTVes,b1GS6lKn!5q#:$ap]^Ee +q"OLUrqHHd"o%feq=sa_q&/u'q>0p\p%A%Po'PVuh<"7ti76B9lgsfFrqm?)q"F@MnF,c1lg=02 +oC_hNrq%o9naQ#7mI0T9oCi"XrVc`np[%&1oBk\qe_f`_me$P4Un=a!aO]G@pAFmfrr;usoDeji +!rr9!rr<#t!r`,trr)iq(&\%0s8N#rr;HWos8MrorVZNhrVlcormq)Urr<#qqYgBlrr)TjW;hA~> +ci4[Xs8W#ppZ'/j[b'Nuj5T.[j5f;#j87p;iWJ9'jl?*s1#qBWjQ#:[j5oFbjlG@Xio&hVhVRAZ +lKRKnjlY^dj6#Xomd'*"k3(mfioT@bjlGJ$iWJ6(l0J?860m^ojQGdjjPo4^kMtL\jlbgjlKdd$ +kN:pfj5f:[hqd5Pki_!`hrEtekMkL_kN:jcjQ,@[iT07jn*K5tiSiepj8\-=ireB(j5U'u"6AM& +jSn3=jT"?fkN1gdj5JqSiSrkXk2k[ajQ,@`f!VNrkkk8Urr;urrVlisrhKMnrW)utrr<#urYYV6 +s4+j?na5T&i7QoQnFH;Ho_81Xq>'gbp)*GmoCVYHoCV\Jp%7qMo^h_Jp\4CUp@n=\p'CEdp%7kI +o^qhToHEhup@\+No_%eEkhO\8e(3@Ap\4CUp@nCXq"OOXq"ORYrq?Khp\4[^s7\tWp@e=Xq"OOY +qYL$_q"jgYn*&]]dEp:ieCN7(f[eR"dF-Org"=m(b0//]f@ej2gu$r=ccaJSd+RFCn+$#>o(VqR +p\FRfp\=OXp@eL[s7QQhq"XU[p]1'fq#U9arU^WilfI!XjRM]tf%/gHoCi"Zqu?R$rVlirs8W)t +s8N#srA=HKq>1$gs8W)us8MuoqYL$_p\=OWmHO-5n)rKVhsBk"nb^q6T<,TEf&Q2kr;HQms8N#h +s8W'"s8N#ss8W'"rVlfqrVld2r;HWprr2lorVlfrrqu]mr;- +f)PdL!<<&trr3T0rVcKO_l1#phr!DPj5f=_j8S'.irJ*:j&4jrj5T%Vi8N_Wj5].Vhr3JNinWAN +kih3jioB+[io&k\lg*ftjQ,F_iS`_Vj5T%ThV[5KjQ>[jlK[WqiT'(ak2YF[jlYU\ioK7akNV9s +kl0Z[io&eShq[#Dj5oC^hqmGZm-*Kik3(phro=UMiSih\m-a3%io&bRio9"siVqj>io/kVrSmh: +"l\J$jlGP&jSn9@itUV;k2k[_i8EMLhr<+mX2O9$r;HTlrh0;krW)utrr<#urYYV6s4+j?na5T& +i7QoQnFH;Ho_81Xq>'gbp)*GmoCVYHoCV\Jp%7qMo^h_Jp\4CUp@n=\p'CEdp%7kIo^qhToH*Vr +p@\+No_%eEkhO\8e(3@Ap\4CUp@nCXq"OOXq#0sep&ap\p\sqXq>0jZpA+OZp\4IYq>:$br;Z]j +p$_/-kNM3un*of6mHa$%m-aB4n*TB!i8a(gm-F$-oC;,,iS`\UlLO]Gq=sXUq>'dZq=k-fq"XUW +pAXgdpAajkp@\.Pp\"1XoDeL`p&XgWrq-flm,m9akOS-#e^`UEoC_tXqZ-QnrWN9#s8W)ps8Muu +s8Mrrs8N&u,lRZXLZF'jR;g?rVc`qrr2Nhs8E*"rr2oss8E)u +rr2oqrr*Z1rVlirrr)cnrr2rsr;?NkqYU6jrVc`HrsA])s82ZkrVlfpp\q,kJ,~> +f)PdL#64]$rVlfrrr*2uiOkb[_T9^5rP8HL#K"(hG^Au(I^](qn^V7Co]t_@t^q[Ln +^:_.q]",Vn^V7=k]thCr]"5Vm_8!Xn]=e-Ts1ANK^:h.j]`,VE^'qcl_8*[n]u.h-_8!hb_Z%@T +^qmq-`52Dd)SE\o]!o/[]tV:r]tVG,ai2'2_8=++^qmq*rkSfWa2l9<^:aHZs1\WL^qfras1SNK +^AYeL^q[Y"_#D(J]HFer]"G\k`5T[4_8![r]=PVf^W*saU:oU^q"t$is8Dngs8W&us8N#ts8W'= +rVuoJ^Z+nRlK-mLcILCmf[eL$f\,!5g=b05g=ZDV"k_GZf\+sTfEKs_gY(<6rn@D*s4SjRf[e[, +f\+p0f%/L-g=Og%eCW=$cHF>Pc-FV`f\"g.g=k65f[naSf`0Y)f+-Hdf\+m-f@SR)f\+s1f_sD2 +e^2UdbfRl=[&]smS!s;FrgY4%S"$"DV5L8iUn=9QTqJ!HS"HILR[05)R@gFa]u8"8c-Y&@g&fs] +gA]h3g=b38gtLH7rnIG+s4dP.rn[M-*o>`+e_&^7g!e6leE$;pjOi)DlgjfIr;?Hgq=s^Wrq-3\ +!qc0\rVA;HqYBmZp%.bGp%J+Tqu6TmrVZHXk3VX)kMFhLmIBT8rn+$=XLZF'j6cO;rVc`qrr2Hf +"oeQ%r;-?hrrN#qrVllsrr!'#s8Dlns8W)srVm-%qu$HnrVccprW)unrr<#rrr2rnrr2rmrr +ci4s`s8W#ppZ05j\(BTtioB%YioB([j5].Zj5T(sj8A! +k5OQCjT"6cjPo+Thr*VZk2Y@Ti8s+\h;$oHi83AMi8NVQj5oLjkiC^\iVqm;j9"B&jo49CioB+\ +j8S*Aj5f7]roFCGjlY^ej5f5!i"+f+j5oFbjQ5L_jjg`=_rq$srr2rr"9/?#rhKMnrW)utrr<#u +rZ1t;s4+mDo^;#+hU'Que'lt#dad"'g=t?7g"P04rmq>+f@\a/g&'D*g"Y97g=cJZs4RG+-e[/' +f@\a/f\"d+f\5'2e'catf@/$gai_lRcI:Fuf@\g2g"G$0fDaG&g&BS)g"4jRf_jDif[na.g=b02 +f@es9gXa`pair,^g"Y?>i838Af@\g5h;$cd7Fq"agcrr2lqrr)ckq>'g[p%S:VmHUBnq#: +f)PdL!<<&trr3T0rVcKN_l0uohVR2LioB+[j8S$jQ-=#q;hS;($+E7iSi_PhVlnhWl+*#rVcZns8Dngs8W&us8N#ts8W'=rVuoJ^Z+nRlK-mL +cILCmf[eL$f\,!5g=b05g=ZDV"k_GZf\+sTfEKs_gY(<6rn@D*s4SjRf[e[,f\+p0f%/L-g=Og% +eCW=$cHF>Pc-FV`f\"g.g=k65f[naSf`0V)fDa>$fDaD'g=uV\s4Kfmf@JO)g=t?8gu%2UkiLj_ +iof[uo_8.Up\+7No(2SMp\+:Nmd9T;p@IhHq"jaTlfR6ch;IAVk2YCTg>(K;g=b36rn@\3g"P6: +g=b0Yg],qXgY1?5f[na+f%&=%e^`=*eC)n$gXsoucdh(Io&A6Pj6Q:1qYU0dq"agcrVc]qrVQTo +r;uuus82cqrVldBrVZQhqYU'UkjJ$0l/1.PmIBQ6rRdp +f)PdL#64]$rVlfrrr*<#iOkb[_o]j7_8!ba^^@on^q[\"^qd_!^AG\F^(.ol^:h7p]tD"k]Xtbe +^&G_m]t:kf]"Gbf]"c"l\[T,^^V@Fm]"Gel]XbM]]"5Md]tM(k]=biV^AkhZ]=PVe]t(Va_8=%' +^;7V!_8F(&rk&cU^q[Ll\\#Mf]Xt_a\@]KS^]1qT_8aL2]Y(ql^q[V"_Yq7S_SjC0^q@;Y^&PeJ +]t_>]^+R(3^:h4o]tM1o]t_=q^:h.j\[f;a]thP(_ns4']Xtbc]"Gbr]VV@9jS8QJrVZYfs8W&u +s8N#ts8W'ArVuoI^ZG4\mciTP`5TF#]XbGZ\[oDc]Xtkl_8!Xp]tOEXrk8)1s^;@n4c-42A]=YYc]=bbf]",A_]=bhj]=Y_g]=bbe]",>^ +]Y1ti]`,M^]!nrJYHG"0W1]TFPa7])S"#k9S!oe6R@BhDrh]Xj)ks$uSt2::S=lODQ^3r&Q^abM +YHY=>\%BAh^](tH^]2"O^VIY"^:sN["2;Ob_Z%IQ_>h:f_8*k'_S +X1?=&ip?=8rVc`qrr2Nhr;IQ0q>U?en)rZbi9Tn)qu?Zor;HZorVZZorr!)rnFZVWr;6HirrU +ci4OTs8W#ppZ05j\Cf`tj5]+siX=f+io/nViSieWjPp*ts5H#uio8qVjQ,@]jQ#7YioK7`jlGFZ +i8N\Ui8E\Wj5]+Xjlu$lj5]7`kN(U[i8WeXjQ5OdjlGOcroY!XjlGOaj5f1UiT94_iSihVi8`qZ +rS\jXj5].WiSrq[jl>=XiSs"`kN(RWhrNkVgY1K@hqm8hiVg +]XkYb]Y_b3`l#[5bgY;'iT'%_jl>7Sgtq#Li8EMKhr=Xos54CJl0.!TdEBME^r++0_nuDgrkJHH +rkJKI"i%jg^V7G[^Au"I^]2#+^V.=n]Y1tk^:q4i]Y_S$]tM8*ht-O%eCERBn+ZYRqYL*erVlcq +s8N&urVQNkr;-6`p\=Xarr'gZq"jaOjm;I%k2"\LmI9N7rn4*>X1?=&jm`$BrVlfr +rr2Nhr;IQ0q>U?en)rZbi9Tn)qu?Zor;HZorVZZorr!)rnFZVWr;6HirrU +f)PdL!<<&trr3T0rVcKO_l'rph;.&JiSrnWir7m:i:Q".i""`(i8JiSrkTiSihWiVqa: +io/hki;hm9iu$e9j5f:]jQ,@^jQ#7Yi8EMLh;H\dWl+*#rW2rqrViJis8E#urr2rts8F2?s8UT` +jnJ?6l/'Y&`P&gp\[AoW]">Vf]=ktq^V%1l^&G\D^&G\E^')3d^V@M^]`>eG^&G_H]tXK\s1\NG +8%udS]t(Yb^VR\!_T'aCbf7B/]=PSc]Xtee\[f;`]Y2"j]"5G_]=bei^:h7p]tCtf\@K2a^V.=r +_ogHZf%A^8l14ZKrr2rtr[%O=q>C9lr;6BfqY^9ir;$6is8Mlgo'GGngt^W7dEK\M_SEq$rkABH +s1SZO^qd_!^AbnI^&c!_rk//A/[-\\5o"_nj10d,O`kk1JAKlgt#NqY^3bq>:*frVlir +rr;uss8Mupr;HWor;S5Fs8W)srVZQhqt][Cmdfc/hqI,XnEoiHfqb7@\]E@_n+Q\XrVlirrq$0f +rYYM-rr)T[kMb4SlgXQDs8MuprVuipr;Q]pr +f)PdL#64]$rVlfrrr*i2iOkb[_o]m8_8!b#^V@V#^qRV!^qd^u]taQ\s1eTJ$GF0f]tV4n]=kkh +rjjSm^:q7l]XkVa]=YVc^:q1g[^Wl_^:_%h]tV.j]",A_]=kqm]tCnd]Y=B['th,g\@T8`]=GMd +^:h4o_SEh!_SWS^Al%f^V7Iu_Sa1'^:Uth +]tV4o]tV7q^:h1l^:jHW-,%%,^V.=n]=b_c]"G\k_o0F/^V.:l]"#;`^;RX[U:oX_q>:-grh0;k +rW)utrr<#urY,81s4"gCp@IkCjj_Jq^q%%f\@MUKs1&9B]>).qpq-U?rk/9Fs1^G,^V7Co]Y;+l +]=knl^VI\%^q[Us^:q@t^qmh'_o'F3b0\\lf[%:@\@/cN\%0&Z[^WcW])9/G]",D`\[],X\c0/G +]=bbg]XbJUYPtX3WhZ&LPEM)mPa7T"rKR>G,F+^hTV.pNU7e'FR$X)%Q("2.Q'IStQ("DGY->7@ +\\,Ym_>_4K^^7ck^q[\"^;%Crrk8?G$,FEs`P]O.^qd_a_#M5'_SjI6_oKpHg$/A1mbHU]m.:2U +rVcWiqtg*_q>'pcrquWjrVlfrrr2lqs8Murr;Z^Cr;HWprqucpq!-l'mHEWcfAc2emIU>1Un=]u +aO]A;o_e[drr;usoDedg'`It/rp\INYH4e+[):M^qZ$QmrVlfp&H;Y,rqkThc0>''r;6Hlrr)iq +!<;`krVu]mrr;fnr;Z]o%KHA!jj:`VeF +ci5'cs8W#ppZ05j\Cfd!j5]+Xio/kVio8nUio/kUj5^*ts5X.=$K:"(iSrqZioB(Yro#?fjlPO^ +io&\PiSreSjlPO^i8Ne]kiUpdk2tdcj5T(YjQ>Xfk2kU^jlcX,7crdlj5T(Yio&eUio/eRj5SqR +jQ#4Whr!DPiS`SMioT@cjl>@\jQ>[ijl,(SjlPFUgtgiEi8EVUio&eUjlY^eiSWSRro=FHjQ,Fa +jQ#7[jQ-7!%cla4jlGL_jQ5OcjQ#:Zrnmb6%H?I1jPo4\iT&CnWl+$!rVud"rr)fps8W(ns8W&u +s8N#ts8W'3rVuoI^Z+tYo'YVhbK7Q1]"5D^rj`!="Lu(Y^qTTV!58BEs1\NJ28Hu@]tD"l^:V"j +]tV7s_83q%^:h7p^VIY$^r"",`5TmGe_/U$^:1V\['R6P\[])W\@K3M]DoGP]=PSc]Xtbf]=Y_e +\[oEP]K!O6\@TAk`l>p3_8XUHg"kQDioB"TgtUQ;hVd;KiSieShV[>Nhr3_[hUp<%`kfI.`Q#m9 +`59@h_#M1K^^7ck^q[\"^;%Crrk8?G#/@sg^VIV!rP&6F(r4#,_nj:4c.1nIp?:)Yj6,h)q>'m` +qu$Hls8N#t!<)op#Q+>kp@n@Yr;QZpr[ImHr;-3aq"OU\p$(K#mHN]ef]);fmIU>1Un=]uaO]JB +p\b!hrr;usoDedg'`It/rp\INYH4e+[):M^qZ$QmrVlfp&H;Y,rqkThc0>''r;6Hlrr)iq!<;`k +rVu]mrr;fnr;Z]o%KHA!jj:`VeF +f)PdL!<<&trr3T0rVcKO_l'rphVI/KiSrnWir7m:htc71i;_d9i!SB"i8Egu%,Oio/eOhr*PUjl>4QhrNkUgY:N>hV[5Lio&\OiVqmIio&YLi8N\Ti8NYS +io0mp!TN)9i!&*!iSieUqr@_;qVr"DiS`YNhVI):ZDth,rr2rqrViJis8E#urr2rts8E]1s8UT` +iqE!7mcDsAahYHu]"#@^&G\E^Akr4^q[Us]Y(tm]=Ybi^;%J"_8*h"]tV4q +^qde%_Sa:0`QHQXg"=Wb\%&lRZa[KU\@/lV\[oDb]"#;[\%92`rk(V3]Xtbd\[]5_]Y2%n^r=LE +e(*(*ip$%1rr2lprr)fnq>'perVHBgrVcWiqu$Ff[S6kaMbpo_#M1K^^7ck +^q[\"^;%Crrk8?G0>5*7^V7Cp]Y(kh]Y2(p_8XI7`lZKRg?SJ.lIt"UlgaoNqY^3bq>0p_qu-Qo +s8N!!s8MrqqD%mFrVlfrrr2rsrr)fpr;-9fq!@)-n*B,mg>hPgmIU>1Un=]uaO]G@pAFmfrr;us +oDedg'`It/rp\INYH4e+[):M^qZ$QmrVlfp&H;Y,rqkThc0>''r;6Hlrr)iq!<;`krVu]mrr;fn +r;Z]o%KHA!jj:`VeF +f)PdL#64]$rVlfrrr*2uiOke]_T0U3rkJNMr4r?IqS!$G^qT]Z%(s3b]tM%i]",Gc]Y"*Q)7d8f +]",>]]=kkh\[f>a]Xthh]tCtg]=bfT]*>s]]"#;_^&G_Q]Xtbc\\#Je]=bfU]b.uq_SEn#^q[Om +\\,Yi]=GPerOr`R]=Y_i^V7@m]"Pno^AbhF^)au(^V%4m]t_=q]Y(hc]">Vg]Y2"m^:h.j]"Gbj +rjilU]"Pek^;%Cp]=GG^]"5Vn`5BF+]t=9S&\G]g_RcS=^?#(ar;Q]os8W(ks8W&us8N#ts8W'4 +rVuoI^>SYRo()2+gu-l4cI((hdf%W)PECulQ'.>pOcl''WOBR\aNW#^ +r7D2+g=k64g&9PSf%8L'eCE+$f\5*8gtLH7f\"d-f[ng1gY:H7f\>0sbr;Q]nr;6BeqYL-hq^)1=r;- +ci4FQs8W#ppZ'/j\(BQrrSdh;r8Rb8"5r(oi;V[:j5f4si=+Z%i8`nYj5JtWjQ,A#iXt//iS`\S +iS`\Tk2tddj5oCbroO1Bs5a.?ro=:Gjl>=Zj5p:&#NXq)io/nVj87dJi8`nWi8N_Uhqd,Hio/hR +ioK8$k7-S7jQ5RgkiUpaiT&tWrS[\6"leS%iS`_oj9=Q$iSrnYrT4(A%HZ[2ioT=aj5T(WioT;$ +k5XNOjQ5L`io/eOhr*DMir.mOjlG@Yd^-!mkktAXrVc`orVlisrhKMnrW)utrr<#urY5>2s4"d@ +o^VMCmGQdXg!J$ldaQYCdim/gf%8O(e'ZOke^`1"eC)dof%A^1f[\L%f%A[,e'ljtrn%2&"PMGZ +f@^)S("h6pg=b*2gu%)NjlbUMbL4YVbL+i=d2:6Ucd^Rsda6Cje^W!oe^W$rf@SKud*gDBec4,B +e^rL-f?q[X`lli`h;@&Fi8!3 +g=b-3rR_P0f@JL%e^`:(g"G$1rn7>(,1bAuf@S^0g"=p-g>:fLlLOT3f@f?KkO\NEp\=RZq"agb +rVQWjs8"YKp\"4Qp@n=WqYL*dr;6roD\aequ6Tprr)otqu6Nns8N&s +!<2lqs8E#srVlfrs8Duss8<#us8W)s%fZCnc`a"7[,V,cr;Q]qrr2lr"TJB!rr)iq!<)oss8N&s +s8N&sr;Zfq"oeJurVlirrW)utrn.7$~> +f)PdL!<<&trr3c5rVcKN_l1#ph;7)KioB+[io&eSi8FRkrnmk:io'^k$/XLpi8NVOhVR/hi;_^7 +h?`#pgtprFgtgofi<8)riSieqiiSWMKhr4Ro$K9q"hVI)Hi83AJrSRY8%cH7& +io/_JgYUlGhVR/KrSnFIi8ESSjQ#4VhV[;Ni83>hhZMfqiSa^m#iah&i8&k!<<&ts8W,u'`J(3 +e@sl5nac8!VfE^!Zf%&:#e^j`Prn7>(rmq,%)VNm#hVR&BgYh,SlLFWCleC:^lKn1!aqu6Nnq]u+9q"X^YlJUR[jlPCQipQ@'nbh%8T<,TEf&Z;nr;HTn +s8N#hs8Drsr=Ahtf!(O(OcklqTsN,3r;Zcp!<2ut%K?;&pWT>:g@P=Cr;6Kms8Muts82fns8W)u +r;cios8W&urVc`ps8W&trr;ourr<#tr=8i)mE_u/TX<_Ys8;lqs8N#rrri?"rr2lqrW)ors8W)u +rVulsrVZ]qr<<3!r;HWprr)otrr1RMJ,~> +f)PdL#64]$rVlfrrr*<#iOkh__8aC1_8*hb^^.]k_8*e!]Y(rV^B)0crOi0ErO`*Brji9G^:q4i +\c0/`\[oAa]"#8]]t_:o]=PPa]Y1tj]=bbf]tV.i\@B/_\[qdPrk/3A"1c"S]`,SE^AbkW^r+(( +]tqOu]"5Si^V7A[]b%ii^:q:n]Y2%m]Xt_c]Y(rV^B_Hb]tCtg]=e$Q"hD.Q\[oEP]`5Y[]XkYa +]=kkf\[])X]=bei^V@Fm\@MUM(r!l)_ns4']XYJ`]tM%o];DC=jS8KJs8W)tTE"rj!<<&ts8W,u +'`J(3e\C#4mdTf +naZ2@rq$*ZrpVQ1n*TH.mdTW0lgXE)jRDBll1"3/m-j?,lLFQ;md'9/n*T?%mdB?-o^_G:m-FZ; +!:'RH%clKpaL\:Irg+.`R[ftASt2@?R$O&'Q'R[6P73M6RA@1-e(imBlL=EE +nd"dYp%@tKo()eOs7-0[rU9p[o^qhUo`+O_nc84Znd"dYoC2/6m-Xf@..Qs)nDE9rm-+$8p[[nH +nEoW3nac2j4Mf2i8rnMipH7$nGCh5T<5ZFf&H&g +r;HTns8N#hs8W'2rVulrp"ZsAR&-jdWhYuOZI\XHrr2iqr=8l*qY&./[bLBNs8W#or;QZorW)oq +rWW8uqYU +ci4RUs8W#ppYs)j\CTQpj5].Xro,0]j5].Whqm5Ii8EVUjl>:WiSieUi8`%e&TGKcdgk0hVR2Khqd)BgY1E;rndV0r8.k;g=Xiq`5^!Mi9^I6%J9Ad +o'u;Bo_%nLoCDJOoDe@]nbqqYo(;PQnh'J*oCDJBo(2GCoCMG;lg*s+md9E1nE8BUki:Ueo^qYC +o^VGAp%7nInaZ,=rpg*[nG_r3nF#c8o()DEoC;ABp%7eDna5Ahd+$q4h:CNPnE]T@f;,%@\]E@` +nFukZrr2rsrq$0irY#20rr2TG[?m8WX0/ItR@CM5oD\agr;Z^*s8;`ebbV]%o)/Ofr;6EkrVlcr +rVc^!rVZNhs8W)ss8E9'rr)cnrVlfqrVum'rquZjrVl`lr;Q]qr=Ai+rSkMbS=62%rVlcorr;us +!r`&prr)lrrquirrr!W1rr;urrVuorr;?NkrVc`qr;6Hkrr)iqs8<$!rr1XOJ,~> +f)PdL!<<&trr4kTrVcKM_l:)pgtq#LiSrqYiSieUiSWMJh;7&HiSrnVhVR/Ii8EJJh;@/Li8@Zj5].YiT'"uitCG4hVR5NhqHl3[&h72r;?Qns8N"is8W&u +s8N#ts8W'4rVuoJ^YeVMnFH/5kk4N2k3DF)nGVl(nF#c8o()55kj7g.nac,7m-aB6p%IqCn+$&C +o^VG?naZ2?nac8MoDS7Zn3Z[6mHa0-nEoQ-nF5N"nEAiqnF5f2n*TE*nb)G>l0@U$m-3a(o^MJG +oBtr/kj%O'nauMKqY^0`nE8cikO/!>r;HI"q>:'cq"FCQp%S7Urq6ruq>1$grVH9ZlK.0lmIgAS +q>U*rp%%YDoCV_Ko^hYErq$0\!:g$W!qQ!UrppZmoCMPCoCV\Jp\=OUnaQ)Ho`+LglIt+^kiM=- +pAXS)md9H3o()>@o()DFp\+7NoCV\EmI'N7nFH5Fo^h_Kp&=M(n)`9PfAYlNg>h\omI:#)Un=d" +aO]G@pAFmfrr;usoDeji')hk0rq5'SQ^FVMY,\7bS$LW:rr2ops8,>1s8Muqs8W&qr;HQlrVlipqu-KmrVlfrr +f)PdL#64]$rVlfrrr*<#iOkh__T'O3_8*hb^]hKh_8*e!rk8r]Y(qk^:q:n]=PSd]=bhj +^:jNY(;7>l]Y1ti]=PSc^;%Cp\[f;`]Y1tkrk&6Crk/9A#.hI[]=Y_grjr0CrOW$>#.V7X]Y;1s +r4s#Z]YM@t]tM.p^V7Co]XkYc]Y=BYrk8TM]=GG_]"J!U#e[d\\[oAa]Y"0Ss1A9A3Ou`5]Xteg +]Xt_b]">Ve\@K,Y\\#Md]Y2"j]",D`]=bnq_o'@,^:^td]=kni_7HM>^Z>1arVuosrh'5jrW)ut +rr<#urYGJ4s4+m@na5c6n)ip2q![S>p\FUYpAXaboF:Kfq=sRNo(MeOq"=7Mrq-NlqtKj_rr2ip +qZ?]mqu6Nnq`OfTrquWiqtg-`q"=4InalAAmHjB7l0S38l0n9:nF?2Eo^heOp@e7Sp@RnBme-;E +p%e=QoCV\HnaGiDkoo9Nf[.R@TpC^uOdDQ,R[KP3S=Q7ETq\?[W2HJeTq@mIrh'4]'q:SSPFJP` +cJRgNn+?DOr;?Hir;HTkr;?Ksr;6?grVZNhs8)cm)uBI/qXsCIn*ol;n*ffr3kND!ikNM0ol0Id(l0%9lh:0j)j6#7PipH7$nGCh5T<5ZFf&H&g +r;HTns8N#hs8W("rVuiqmDG?QXO#eeftF/KUW)Nqr;69ZlK@O-r;HEC]?BI6r;?Qjo'G]1p&"^c +qYBjZqXs.:m.U;QrVlfop?q52mdg/OrquWiq= +ci4RUs8W#ppYs)j\C]Zsj5].Xro++?j5].Wi;VX6hui!!j5U$rs5G<_i8s5+"< +iSNDIi;V^:i8O[p!p&J)roX4C#3P")hr*JQrT"@GiSi\PiSrkUio9%sit^S6jQ5I`jlPR`ioB+] +jPf+Wi8WhYroO1@#34e*j5T"Rrnde8iT'ps($4W>hr)tjXMsH$qu-Qprr)fps8W(ns8W&us8N#t +s8W'6rVuoJ^Y\MJmdT]-lM:5Dm.'iGq"OL]p&FXnp%S:WoC2>Ep@n@ToCMtS#Pn8kp\b$ir;QQp +r;6Bjr;ZXPr;HWmqYU0dq=saXo'l2@oC2/6nal#3q!mV;o^qYCp%@tKpA"@Tp\"4NnF#f?q=aRZ +p[dtSoD\:[ni-78o'Y\pbf.QCd+[I=io/kShr*DLhV[5Lio/hQhr*JQj5f7[hV-E!`5g-Ul1OrO +rVlfoqtpBjs8Dimr;@!#qtg6gqYC!aqu-Nl!r`,trr"2Ap[dtGoCMJ=mHj3$e_'!Ah<"%kkND0s +m-Es$lKIEnk3(mjl08341$Rl`jlYail0@Nqk3;:#l0%9lh:0d%iT/hGi9p+#nGCh5T<5ZFf&cDq +r;HWos8N#hs8W("rVuiqmDG?QXO#eeftF/KUW)Nqr;69ZlK@O-r;HEC]?BI6r;?Qjo'G]1p&"^c +qYBjZqXs.:m.U;QrVlfop?q52mdg/OrquWiq= +f)PdL!<<&trr3f6rVcKM_l:)qh;7,MiSrqYiSieUiSWPlhZ)L4i@EjChV[5Ki8JiSi_Pi8FUl!T)`4h?Vllh;@)Iio9st +s5O(8&)Z=$gtglHiS`SMi83>KiVhd8is+N$h;$iChu2L;hqm5Gh;8.g!oDhmr8/LNhr*JOi8NYQ +hVR/JiS`PKh;$lFiS`\Tj5T%VrSdh9r8SFNiniPNinrJFca9dml2:JYrr;usTE"rj!<<&ts8W,u +(B+:5e\Bu2mI'K4k3Dd;n*KT=q=s^Xrq6<`%JBJkq"+"Gp@e7Up%.eSo`trVQKjs8N#r5l1KUd&j%6R@M4`qu-Hjq"FR\ +na5c8pA4dgqtB^XqXWk9p&"dfqYgHhmHEd"oD8IcrVlfprVlisrVZWorr1XOJ,~> +f)PdL#64]$rVlfrrr*<#iOke]_8aC0^q[V_^\ttJ^\tkK^V7Cqrk0&\^VIY"^:_"e]=bhl^:_(h +]Y;(k]`,VE]+2Ea]=knj]!o/Z]"5Mb]`,VC]`5SF]Y;,X^&G\E])TAR]",>]]tM1t_8=++^V.:n +^])%K^]2(a^:h.j\[]/]^:q@s^q[Ut]XYG]]=e*V%D9<`\@T5^]=YYc\[oEP]_T2=\d,j[]=PPa +]".gP%(a'_]Xthg]=PVf^qp#e&\l#l\[]5`]Xu"lV5(ccq"Xddrr;uurh0;krW)utrr<#urW`?$ +s4+mBo)A%tlf.$sn)N9^k3D9sk3(smk2P@\lgfi8EJMk32'pkN1gimd99"iS`b\lK@EskN(agm-O'%jPJYF +g=FZraLeRJQ^!f)T:qmIS=ZCIU84ZaW2ZhtW2?AbTV27X&Yu.kR$jVM_U[`5mdg&Ir;HWorVud' +rVlfoqYL-grVlfpq>:3iAGc6!q>0s_p\4@NmI'H4nF#W-mdKAsjR29nkO.`ti8j"]j58_NhVHrA +gtCH>j5oIfl07?iio/kUio/hSjQPadioB(Uf\#0KkhXnMm-sB3r7Ig;XLZF'j6cO;rVc`qrr2Nh +s8>mqs8;fVZ]^p%nGN=`jh@C^^Z54fleTq.`QQj"rr(`ne*m88q +ci4RUs8W#ppZ'/j\(9Hoio8qTro*h8s5Et8r8IY5s5Gcnio8qTi8N_Wk3(mgj5]4_k2bUck2k[b +j5]4^jlGF[i8N\UjQ,@]jlGF]j5K"Xjo4EBjT"6FiS`YQiSrhSrne%?iT'%^jQ5C[hu;L4h\tA/ +iSrhThr*GMhr3SUjlbjkkND!fi8l55s5aFFj5T+Zir.s;j8\0Y +jlGL^iSNJKhVd>Oj5T+\kN1X\d^-!mkktAWrr;p!rr<#tU]:An!<<&ts8W,u#6"T%e\C&5rpCfm +ioTb"j5/\UlKd]skNM0mio/tamHN]lkNM0ql2KiYjl>Urp%\Lbr;-9fqu-HjrVlfkrVudoqtg'Y +nF?,@mHNg#n*'*1lJ11Qi83DSkiqBqjlPapm-!EeiTBFklKd`ujQ5Ukm-O!!j5]+ZkNM-khUKci +aN`;mio&\LgtUW=gY1E:h;6uCrnA(@h;7)JiS`G:a2>pCh=ZjPo7^ +jlY\'jT"6>j8\0giniSQkNCpdjQ#(JfAGiTgt1NPnEf]CfVG.@\]E@_n+Q\XrVlirrq$0irDW^q +r;>Z_P+Kebr;ZZU^7_48j88]=h9a3]bLZ([rSPTCn,<:^mblU>bL,,3q>KsIgYCiCbKJ5bmJ?h^ +q!$JUa2lNYl1k5TpZL)Mb0SZ"pAP!irr"eTr;Q9*U7IsKS?prErquHNg"tZ:cHXhqmeZkPj5&YN +eB#_]k4\fPqXWId`5TsRl1Y&Srr;usr;lorr;PFMJ,~> +f)PdL!<<&trr3W1rVcKN_l1#ogtgoIi8N_Ui8FUns5HhVR/IhV?l@hV[;kireB$ +i84IhrSIM2$/OIpgtUZBiSrnsj9O`)i8!)Dhr+Im$/j^th;6uEi8EJkhZ2U6iVDF2hZr)ui8=l0%F%kj.p,gt^iGhVdP[l0@Hnjlu0uk2P@Yjm2="mHs,tio]Ollg!`tk2tpp +n+62?kMb@YkjeHFq"==XoGI/gn*fc9naGo6nFH8Hq"aaYmGcpVj6udBr>,>0rr2lprr)fnr;HWo +r;-9frVc`prVl[2qYBs`qu$Els8W)us8N&trVQBaq>0p\nc%uQl.t=ak2>@fm,R'eki_$ejQ5Oc +jQ>^klg=**ki_*iio&_QioB+[io/t^kMtR_jl"kGip>peg#DGim.(#+Un=a!aO]G@pAFmfrr;us +oDejh;uZgpr8k8JT#pL"s81olTVB3]qtfX7d)X,Kf'WJ8ho4(5rVu]]i7-#pdG4*arUf4+guI,3 +bKnl/qYpNil.O;$aN`E&q#1-bkLIbucdq1NrVlfqrAX`Rrpn"%SY2REZeG3Rr:T1)hVco/c-tS< +qY]pEh;I2?aN2oopAY!do%hO.`Q[$"pAFphs8N#r!WN&qrn@C&~> +f)PdL#64]$rVlfrrr*<#iOkh]^r=1,^V7GY^Au(K^B;9c^:jNYs1SNL_>_:[^qRFl\[oGf]t1ba +])K>Z]tV1n]Xt_c]"G\f\[T&X]"5G_]=u"o^\kbI^VIV"rP&BH^AbhG^(.ih]=Y_h^VR_%_SerP0#Z]Xtbe]">Vf]=YYd]Y;.p^&GZ&]tCqf +]=bhk]t1bd]=bei]Y(kg]Y2%n]t1bc]YMD%_ns4']XbM]]=YYi\tu1:jS8NKs8W(hs8W&us8N#t +s8W'RrVuoI^Z+nSmHj&ni9TFOa2H*Gd*0VTcHjYO_8k!Ud`TSPcHjk`cHaYVaOB;Aq"jjdq>^Y,nY$VuEV=X08\*VlI#8cJRpU +nalMPrr)iqrVZQhqu-Nkq>0sbqu$Bkqu?Hlqu6M*qtg-_p@\.PoC;A?mHj92o'u)0k3;0nip$+& +k3;C'j5K.aki:OThVd;HhV[)BhVdDTk32*pkN:mejQ#7YioTFfjQ,Iek2YLho]t8_i9^"#nbh%8 +T<5ZFf&Z;nr;HTns8N#hs8W(&rVl]ljKFcEcKt&lr;>9W\Ba:4lcZZ6UnsulbjP>ZZbbc"rpA+D +Y,\J'\Bj@6lc?NE]sO`BYHl[LrVGZu[&U""W41(7p@mjnX.u\uXM!Harr2lprr)ls3VqaHS!KtP +StX-qs82$'[^ETJX/Du/fCAFga1T$lXf8.t_;G(go$b"EUo19#a5H^kqu-NorVZWkrn@C&~> +ci4RUs8W#ppZ'/k[aj6liSi_QqV_G6ro!t=i8EMlhEKiTiT'"ZjQ#7ZiS`\TjlGCYhr3VUioB+[ +j5T%UiSieUiS`VMhVd>NiS`\Ujl>F]i8Ne[k2kdgjl>@Yhu;R6iY(5.hr!DPioB(YinrSHh;6uD +htc1=hqm2HiT01dlKRHlj8S'C^jlYagj5T.\ +jlPXdjl>@[jQ5Lcjl>=Yhqm8Ji8N_ViT'(ak2>4I[&h72r;?Qos8Muqrr<#tU]:An!<<&ts8W,u +1B%7QeA(#8n*TK*hVd_[d`9;Jcd9nXbKeGV`50LBf@%g]b0J>[cd'h[b/i&onbDtWrqZTjrqd'# +rr2loqtg-crr2oq;?$Oip$qSDn`o2pkNh3lmbGk!`5TX7cHt"hcH+)Rf@J9iaNW&\da?Ihc-+>Y +fA#*7e^)F\bL"o!io/_HeC)n$hr3MMh;$c>g=k65g>(K_gFq:6g=tE=hVmJMf$DRdg#hi$qtp6e +rVlfprr)clqYU6jqt^*bqtp9W\Ba:4lcZZ6UnsulbjP>ZZbbc"rpA+DY,\J' +\Bj@6lc?NE]sO`BYHl[LrVGZu[&U""W41(7p@mjnX.u\uXM!Harr2lprr)ls3VqaHS!KtPStX-q +s82$'[^ETJX/Du/fCAFga1T$lXf8.t_;G(go$b"EUo19#a5H^kqu-NorVZWkrn@C&~> +f)PdL!<<&trr3W1rVcKN_l:)ogYC]Ei8N\Si8=Ol!9*q8"6&.phYu@2hZ;]qro4FHi8(Q?h;I5Khqn@i'AhR#gYLcHjlYagj5JqRhVI)Iir.pMio&_Nhqm8Ki8Qj5U's +(#n30hr*JQj5StQi8ESQio/kSi8WerjT"6>i;hm8itLM5hr!DPhqQu6[&h72rVc`ps8JShs8E#u +rr2rts8FePs8UT`iq2^,m-*:0jrr#FfrV?-Vnal;9jPo@gjQGsda2,^5_oL'LdaZR`aO&Pjd)sJRd+$Ro +e'ZI`b0SYngtLB.cHX\bhWO=rmd09)lga`Dp%%YCnG_kXmHa*:lmh>dl0I^)nacAIo^(YsiTK_* +rr2chq>C3jrVlcnqtg3grqlNfqYU0fr;QR+q=sd]qY^B"md9&ol0Ra!jQ5V)l2g>CrpU!XmHX]8!pA\+rT,Hgj5]=gl/h!ilK@6hme,r&f\l,clgao* +Un=d"aO]G@pAFmfrr;usoDeji>Q+Qur8b&FVU"PtoDJO?[^aWGq!6,1W2-8fY0?>1f<` +f)PdL#64]$rVlfrrr*<#iOkh]^r=1-^V7GZ^Au"H^C%cj^:h1k]Y;.r_u7Lf_SNpr\@TAe]=PVe +]tM.o^V@Lr]`,M_^;%Fr]=PSc]=PVe^;.V$^:h7q^r!h"^qme#^AbhG^Abkc^:h1l]tV4o^;%Co +]>2>"_8O=1^V.@s_8!_`]a)!\ZrEN`5K?s[(3o`\[o;[ +['dEW_oTs@_Rd+][CaB#cdL.]_nWq#^\thU^;.S%`5BL3aN2EA`P]Ig]G\K%`5BO5cIh1Eo_/"Q +q>:-irr)clqYBsarqlcprqufp!ri/srVQWk#Pn,fo^_M@mecB(n+$#>lK.'djlGCeq=D2qu5rhO-R)uf&,f_l/:Ibp?Tkurg%eqQ'nc$lcGNmfCJI^\"T4SPEqfB +`ol9fT:hgEQCsb;\)@&Lbc[Y3R[0;3Z-M\"bcmh3TUh(-]AWD\rr2los8VQ2Y+)#p_PWX*m/Hb5 +\ttmaR$j/!S\X7GaK2&,R?a2-Q(Gk[rT(>OPFS84QD2=brVHHjrVcirr;HWKs*t~> +ci4RUs8W#ppZ'/k[aj6lio/hRqr%P5rS\+Ci8EMLh;7)KioU1%*TcGFiniMKio/eOi8N\Tj5T.\ +j5T%Ti8EYVj5T"qhuDOQhr*SWj5]+VioT=ajQ5Laio/ePi8NYSj5].Xi;V[Ii8@\jlY^ejPo.Whqm8Ji8N_ViT'(ak2>4I[&h72r;?Qos8Muqrr<#tU]:An!<<&t +s8W,u5Q1W^e\C&6md'0#gu%ARb.=pd\@AcCXg5=MOsZF%3X]t1ec +\$WQP]u.q6aMPQt[CO0#g#;,Xk2kXakl0lKlKS<3%Hlm8jQ5RhkND'ljlY_)kR$P@lf[?hk3_j< +rr!9'qtp?krr)clqYBsarqlcprqufp%K?;'rVZWlrVc`orVlfprVub!qY9m_qtp3[md'-$k25@m +lJh!rn`]3*o'u,4kih@!m-a?1m-3`skiqC!n*oi7m-Z+oD.b-f&5obm.(#+ +Un=d"aO]D>p&+ddrr;usoDeji(&e./rp7"QQ*elghs9dri8 +Tp_./QCb4ukMWb?TV%X +f)PdL!<<&trr3?)rVcKN_l:)ogYMke#N=\$i8Qio&_Oi8`nXioB%WiSXXks5+":cEhVmMRhV?rEi;VUBhV[8Pkiq?ninrVMhu;O6iVhd;iSaXks5ir@s;ir%gMjPo(SiSrbLh9`O1`Td@"rr2rsScA`h!<<&ts8W,u +5Q1W^e\C&6md'0#gu%ARb.=pd\@AcCXg5=MOuZa@9W^:h1i\$`TN +]"uJ0aMYWu\@oo3i9Kn,p%J+SqYU0hq?cump\+7Mo(2PJrq%?)o(2MJq"jjaqtTgSo_84\s8D`e +q"jpfrr)clqYBsarqlcprqufp$i^,'r;6Bfr;HWnrV6BlrVudrrVQ9WmHj6+k3i*:lL+B=lKRg/ +n*B6&lL"-4pA+IUoC25:md9E0md9B,l0.BsmIBf:lKRa.na5]:r9iCniU$+#nbh%8T<5ZFf&Z;n +r;HTns8N#hs8W'5rVl]nm'Mh=[*R=\lgX/shs:"%b,50(GaF\`XjHCUR&JX-n^Y+BR?Wo$Sup#q +i3f2MT:)"Q_(J-lflWtU7@mINKq-6pAFphrVZ]qn&ql'T"Dk:QF#rWpY*3T +S!fY3PE29MioJ1^TV%X;R@'82_X7<_[$HoGT9tq=`9mO"r;HTn!WDrprn@C&~> +f)PdL#64]$rVlfrrr*<#iOkh^_8aC/^:h5W^&l!^^AbnR^V.:m]=l"r`;RaubK@rC]!o5_]tM(m +^V@S#^qdh'^q[Rq^;7b,_nj+e^(@uj]thM&^qICq_8F1(]=u&X^&GbD^b!44]tM%h]YD7s_8j[; +`lZBD^qIJ!`PfX2`5BO6bKS,H]tCqg]Y1ti]Y(rW^AknG^AP\E]*#^[^V9Z[s1C2#]"Geq`5&sq +]tV7t^V7Fp]YD7r]t:kf]Y)%s_o'=+^:_"d\\,Se^UU/:^Z5+arVuosScA`h!<<&ts8W,u3rT*Y +f"Tu/lfdNmh;e%jf>teF`PT6q]>DJ$]=Gc'f$VIN_8F1-_SO%'_8X^Vn,!%_qtg-crr2lpr;9Ok +r;HQjqu$?hrVlZdo()DClf-g^jP8_]i6B?baMl6EaihuL^;%b:dE'/@aN_iF_o'=*^r+7>eCW3r +`P9.%a3r\uio8eIf@JO'daHXpe^rI,rn@\6i8NVPhqZoaf*p3YdaZn'h;IG^o(MnYq?Qoqrr<#t +r;6Ki#5e>ts8W)rrr#4`s8W&pqY9dXp%.bEmd06'l0IX!lK[a(n*K2qhqmAPhsC74n+HSPm-3j$ +ki_$ah;-rEhqm)=f\56Dkj.X)nF>uHlmV;jo_8+NmHa64na5]:rU&@kiU-.#nGCk6T<5ZFf&Q2k +r;HTns8N#hs8W$8rr)cno['7aNhitn_TUTon,<.8XHo0R^:n`iR[:>8^knQ0n(k@ETWP]7Yb@G] +dFP@_QCP+m`3#5qc0a/dT;/g1];_6i[+<[*S?9ZQ^S?j\a6rm*r;HQnrT1YcSZ^JkWKF:Ds7XpI +T9GkR^pKSoVT%!"Ulgq:[_]VNM4i>dd[u]!]>q@LQ*]?Br;QZprrW2tr;HWKs*t~> +ci4RUs8W#ppZ'/k[as?niS`VNqqqP5i8FUo'B.j*h;$lGioTFil0@U$lfHsWh#?4]hr3VTj5f7] +jlGI]i8EVVkNM'hio8nRhVI)JjQ,=Yhr3VXkMtO[io&_nh?`#si8N_Wj5f1ui;_UVhVd;KiT94\ +iT0.]h:^TBjQ#7[jlGLdmI0H,jPShQioC$ts588Dki_$_j72EdaMGa4_Rm7g_Sa1$\\ZSBdD`i9_o'@._8*k&`Qm?/qYpKkqYC$f +rr)fnr'pS]rVZQir;6Ejrqc8^knQ0n(k@ETWP]7 +Yb@G]dFP@_QCP+m`3#5qc0a/dT;/g1];_6i[+<[*S?9ZQ^S?j\a6rm*r;HQnrT1YcSZ^JkWKF:D +s7XpIT9GkR^pKSoVT%!"Ulgq:[_]VNM4i>dd[u]!]>q@LQ*]?Br;QZprrW2tr;HWKs*t~> +f)PdL!<<&trr3?)rVcKN_l:)pgt_nd$/je#hqm8JhV[5ii=k/+h;$c@i8Nb\l0.Btm-3Qcg"ZJ^ +!oW%qrSf$]io8qRhVdGVkN1^^hqm5GgtpuLj5JkOi8NbYi8(WHj5T+[j5]=hmd0)ph;-rGiV;:9hVd;LhV[5IhYu=Qhr3PPi8t +UQ:tdmem+_rVZ]ojh%7XY11q"Of[[Ep=$=>PFf.s[%!5U`R;SuOd2ZL_7ZM!T[WAXT9?%_a0qJ& +ZekKTrr)ls!ri,qrVkONJ,~> +f)PdL#64]$rVlfrrr*<#iOkh^_8aC/^V7D[^AkqL]tV8\^`L8(]tD"l_SjUDccj\_eBl7M]"5Sh +^V@S#^qmn)_>_;V^qRP!`5g!?`59=)^qROt_Sa7)]=btu`l5X%]Y(he]Y;.p]tV7r^qmn&]Y2"i +]"Z)%a32lYbfnG^c,@B5a32ZIaihcHbKnPZ`4ijo]=bhi]Xtbd]=Y_h^&GbF]`5\E])]MA]f3[= +]Xtbf_8aL2]">_l^qme"^:h4o^V7@m]"5Md^r"",_8*dt\[]2_]XkkfVPLueq"Xgfs8JShs8E#u +rr2rts8FDEs8UZah!O@gjPo"Yq>0L>ioT@ai8D#j;@"BjlGe$qu$9` +q"ssbq>1!dr;HTlrVcWlq,."drVH3Xo(;P?jPf1\gu\;$jlGUfjQ>^gjltpdj6?%#k2>7_lK7*b +io/eNhW4%oo^V8.hqZuDjm)7&mcrusj5]+ThVmGRjlPXfkiqBurp0[NkPaNTj5AbKi8s1fmI0W; +p%S:Vp\FdarV:d9qtpgY^rDkP4W: +p\XXIj5o=_kiLXMccs_Yb/hWFd+RC=jQ5LckNV9tmI9Z:oCD;4k3DC%l0.d;mG$:QmI0B1qq.^: +XguO(jR;g?rVc`qrr2Nhs8=nUrVZNen]@2YPae25VR".nnEn)_RB>$7psuaAYM$^LS_*JWQ^+Po +kjR00PErr,WKWaWh>R:Yc]jX0i5(eMZ.A[@c`s@N`4;.q\)mGMbb:-)j8/cPrVlingTQs9^#.>: +OfI"1qphj?S@n%`lbJpOVSg?OO.+#Wr:.X]Lpu9_Q^bV;leoCV^"`2Ys8Murrr)cmrn@C&~> +ci4RUs8W#ppZ'/k[as?niSi_PrS[_7!oMqpro+jThqm2EhW!V]nF,`3o(;J:i8!,Fi8NYTjQ$7# +!9=(>^ml/q*fiS`VLhr<_Vhqd/Jjlkmdh;7#DgtgiDhr*GOiSrnYinr\OgtglJk3)!t +n)rftm-!6YguIS\jlbpmkj.a/mci`eh;I8Ni8EMLrnRY4hr"Fk#iFLqhr!;Hh;8.gs54:Di84J[&h72r;?Qos8Muqrr<#tU]:An +!<<&ts8W,u-iO)Ff"Tr,l/q'dh<4V1mH!9gkN(RYjm;?ri83P_p@[b5kN:mdj8S*Vjlkgem.L8R +q=aU\qtg-bqu$BjrVZWmqu-=fqY^rioo[i +io/nUhqm;RmIKl=lf6gUg>:uZoD/:[q>1!dqtg0dqYBp]q>'g\q>1*f(]*t&q>:'cq=aFRqYU0d +qYBs^q"a[Yq>L0gq0Mo7qu$?gq=jXWpA"IZqYBp]qYL*er;HTkqYL-grVZNgqu$Beo'GZ,m-3Np +q!RA:q"3e4lg4'/mcWK]gYL`AgY1E=j65akkND'nlg4$,nF?,Bo'Yf-m-a9*kk+f?gXtNQnEf]C +fVG.A\]E@_n+Q\XrVlirrq$0irAX`Sr;-3YadJ-QS"-"GZGbGcmD>B]Xk!4Af!:jMft`N:fCR4Q +Q)W!kn(=q0QG1SBPF8f6rV^'KP`rrA_3g^sf(\d^Z)4_C\Wr;djn\/bTocV@qYpBjrr;iLYEtlp +hpeNcWn.+FeZPI5]]]7Z^mU@__o/O8R`+aon\U0>\)58nS%I5:i4H)(g[tLFrr)iqrVZTmgAc[~> +f)PdL!<<&trr3B*rVcKN_l:)pgt^fdi!A?$hr!AMhV[8ji>UY2h;$c@iT'1kmd'91oC1u$gY:TB +i8EVTir7s@Yhqm/FiT&nRgtgoLkN:[Vh;-i?gtgfChr!AMiSrnUhV[2E +gtq&Pk3;@'ki_:!khk+MjQPgikNV0llL491k2>%MhV[5IhVJ.c!o;_irne"Z@>io&_Phr!DPj5^$rrSnUOjPo(SiSrbLh9`O1`Td@"rr2rsScA`h!<<&t +s8W,u-iO)Ff"Tr,l/q'dh<4V1mH!9gkN(RYjm;?ri83P_p@[b5kN:mdj8S*Vjlkgem.L8Rq=aU\ +qtg-bqu$BjrVZWmqu-=kqY^1$gs8N#nrso&.s8Dikp[dnDnaGr? +q>U6hq$m2tqu$?gq=jXWpA"I[rqQirq>1$grr<#tqu?Wop[\+Yq!.&.lgF?4 +lK.$cjlYaikiqC#nF#Q'k3(mjlg4'1oCV_Jn*0$$md99&o_e+2g#MJhm.(#+Un=d"aO]G@pAFmf +rr;usoDejh2u`dRqY9U&R>mH#S=HI^`7aYI_OR$rebJpjZCS2P^l+c8o?AA.f)5EqY+;)q +kPa_^R?FGb`2Sfd`: +f)PdL#64]$rVlfrrr*?$iOke]_8X:-^:h4ork8?G#/.[_^;%Fsrk&iV^r4=@f@A3oe_8X$`PK=( +_#;.L_'Qk1^qde&^VIb,ai_]D_na"$^V7J!_n`mq]uA.=ah>-p]=GMcrkAEGs1Bnr^VIUt]tD"l +_o^0MeCrX)d+@()b/;6Ee'cOfdEThYdF6F\]t1hh^:q7mrk&3A#e[ja^;%Cr]tOEZ!PQ/F]-4i$ +^qmh$]Y)"ub0%]9]u%S"^q[Uu^V7@m]=GJa]=bhmrPB8a^:_"d\\,Se^q$89^Z>1brVuosScA`h +!<<&ts8W,u3W9!Xe\C&4lK7-af])Z'p$q\Mp[RV9n+-#8kN;("q"aONnF,`0lgF6/m-a)ukjS3> +p$hG>naZ,JncA@SrUX=cnF5o8nFQ>En*TQ4n*&chjQ,+YqtK@;l0R[#nEfK0nF,l:oCD50kj7^& +l07O!kiCghnFQ8?m-X6/mHj0)mI'?)k2k[aio&bSioK7`k3(slkN:mfjPo.VhYuCLi8g +m.(#+Un4^!aO]G@pAFmfrr;usoDeji!<<&sG5hF/g;^FkQ]R,iUpSP'\!EQ!lMpnUgrn%'^lFo7 +ou2u[Y/],Md'fI1ZGX&CWm^P>s4`s,^"9c[TtfXfs6eUfbf$THS\3J.eA\>KUW`*'r;HWnous"k +WlWl9XI>ipli,VBUTMr +ci4UVs8W#ppZ'/j\(9EmiS`VMi;VX6i#LY2hr*JPi83;Egu%2VnFuVEnFcYPnE/Zci8ESmi[<^C +i838gYMhb1>gsEhr3SRhV[2Hi8a(hn+-5G +lKRg0mGm!Zl0ds(m-a3(m.0fmdT]/io&nYgueM.l/q6sl0Ij*lgO?3nF?,@lf[Kum-oC;hL!UoOWmo],NoC;;:mdK`6i90e! +jmVg,hV6rHkO%WodE'ALaMl0>bL>;.j5/MCf\,*>k3D`j28(OGf@![*dU:QCP_Ts8V]GbKo1`NgnSl`K-Fi +`n9+o[[`Yh_mH,;de*S>gR4>?f=7-?^Z5@omb6%3`2o/n][Yce`M\lobO5<+rVlcgbat#uaP"_; +R\@@Zrn=TOXjQnCqq%j5T=i.DQDr[=ru9X^MQYj\OccKJd+m7,kOSKJrVZWorqu]os8CUMJ,~> +f)PdL!<<&trr3?)rVcKN_l0ungYDec,2hGj6,n)o^;2?q"F1pph:LB8g"P6Xh(7F@iS`PKh;-uJkj7d/ +q"F(?nb)A3h;RYfmd0?/lfd^*oC(hug>(QAh;$f_g]-(-hZ)C1h#Zl2U&WlKIL!n*oi;p@n@XrqZWjrqQNf./n,;qKp\F=7RgYq>Zk3)C7m+U+OmdTQ4r7Ig;XguO(jR;g? +rVc`qrr2Nhs8E#urr%$>r:&F[ZCmPGMj1$EdFu'qSA4@hs7>$hcf2a#S(72NO.!/jf\Oo_SY2@HcOeoJ4gt19Co(r=`r;HZpr;?TprRh.#~> +f)PdL#64]$rVlfrrr*E&iOkh^^r=.*]tD"k^:sT[)n`eq]tV7q]tCtj_8jaKgt0irdb3='bf7N9 +_u@Uf_na(&]tD(o_8=%*`5]m=`P]Lj^D"E!_Sa=-]Y))'daZUX\@oVi^VKib/AT!3]">Yi^:_.m +^;._2d*pV%g_d)EZ0^;0Z]s1nWKs1h.>^qdh(_8=(,_SEmt]=l&! +`l,a/^Ve4?d)s2@`kfF)^;%P&_7mOl\@B,_]tV;!_Sa:+]t:e`\@]Aa^U^,6^?,+`rVuoprWiK& +rr<#ts8W)t!rr9!YlFb&!<<&ts8W,u+oVH@eA1/>mcifhe(O-Ylfmj1nET3"l07EmiS`_WlKdX4 +k5XLdjll$oj5JtVk3;4#n*B0!kNM*kjPo1ZjQ>Xgk2k[`ioB1ckiV!jlKRBdgu7;Jj7_ood*U:k +f\bQBjm2F*md')uj5f=akND!llKI6djQPmmjlG[onEf;qgt^Z[ +['Hm9WiN8*ZF7-YddtA?TW"fhWMQ;YT!?#=U9U?jr;Q]prVZZKs*t~> +ci4[Xs8W#ppZ'/k\CTKli8:fGh>Z76hqm8JhYc4/hu;OWhqd&>f\53Aj5StOh;RP` +mH08`Tdmcifhe(O-Ylfmj1nET3"l07EmiS`_WlKdX4k5XL3jll$oj5JtV +k3;4#n*B0!kNM*kjPo1ZjQ>Xgk2k[`ioB1ckiV!jlKRBdgu7;Jj7_ood*U:kf\bQBjm2F*md'-! +j5f>#j<<^NkMtRal07Emj6,[lk2=tHgYUfCi9'=jlK[Wtl0.bD4\[SuU\\?2;hVH`/cHXS[fA>TL-f3D#cHXY_g#V;XlLt2C +g"53Nna,fDfVG.@\]E@_n+Q\XrVlirrq$0gr_<@kqW[PMqVfQ3\Z)0fRBXQ6S"[smqu$Ekq=F!j +Q(6:o_ipalW2chnTq%^Z^:0i>iV<Ts1r-U77RIg]--7V754OqtT0\S"[F0Wgg +f)PdL!<<&trr3?)rVcKM_l:)pg=uV`:Z(*fhqd/Gh;$iChr!;IgY(B?jm)I7p?h5:q"XIGjP\tT +j5].Whqd)BgYCWAhr!ANjQ>RaiSNDGh;7&Ii8WVIg>M5coBkDdgtgcAhu;R6h?D]hgtprGrn]6a +ioTIoo(DhPlK\$Z74i8gY(66 +hr<\Ui8*5JkO%["hV[DOgtgc@hr3MOhVI&GiSrkWio/nqitC>-hVdALg>1,_XMsH&rVlfrrgj)h +rW)utrr<#urZV7?s4"jFp[7;,hUC0Fna#H-p$h80kNV6pjPf%Vjm)0proX7A7cik"ki:X\io]Lk +n*fT*k3(skk2bO]j5f@ckN:meio9"\l0.9kkj%EnhV@)MgZ/"qg!J*qe(ER7hW=(mnF#Z-kiLmd +rT._Vl0%-ejlu$liS`\Uj5A_Ef%A^1gYh8_naQ);mHWosiSWMKh:pT5e'ut#g"YBEkjIp,mdKQ+ +i7lr:f\"m/e^N$ue^rU9k3;0pk3(skjPo.XiSreNf[nd2hr*MVl0@X'mHs6(rp!YPm-a9.n*]]= +qXs.CrU]IKoBFuZg"YTQl.sY&_Sa7,`5p0Ri8s"QccaJQcIUk6kMY"AdEg.dg#V;XlLt2Cg"53M +na,fDfVG.@\]E@_n+Q\XrVlirrq$0gr_<@kqW[PMqVfQ3\Z)0fRBXQ6S"[smqu$Ekq=F!jQ(6:o +_ipalW2chnTq%^Z^:0i>iV< +Ts1r-U77RIg]--7V754OqtT0\S"[F0Wgg +f)PdL#64]$rVlfrrr*E&iOkh^^r=.*]tD"k^:sT[.D37(]Y;.q^:_(l_o^0Thpofeb0nkic,[`= +a3;fPaMYm2^qde(`Q$!taToi)_nj1,`Q8&$)T]n6_8t'YgssVh^r!t+_nWms\@8u[]=G\eUS>Kap\4Xds82d# +s8N#ts8N&urr*!!rr0/%s8E#urr2rts8I?Cs8UTak5"Q6ki(%Bk2tRTi8rtUioK7ajlGI[hr!AK +g"G*5gYUiHj5J\>fAPWDgY_)Phq[#CgtC6+daZq)hr3JJgY(33gtprFhrEk]iniMMiS!/YjNG3H +]"Gr(cHb#$n+,o0ioB4dkND0tkj7g,kMtXdl00#Ik32-qi7H>ua2Z-@cI_"8j5oFekiqF4l7VDf +j4r23bf\&Kb088ej6#Idm-O$"k32'plK-sUahu!5`m32ojQ5CXj6>dhjSn1Xin`//]rI`uT:_[F +S=>n3P`h,kPa7],T;&0_YIDU'f@&I@kiD!ni6ffre(NI*`jMhEVPBfWU8bWBdaZ[jcHXSZe_8s> +g!e?nbKS>djlkmnpA=1/f&5oalgXf(Un=a!aO]G@pAFmfrr;usoDedgHN!a+aNElHr;$*]lGT#2YiG`^(]<@"Mk&W$iP;@` +R?a5;]\`A]rr)ioqu-Hprr)fLs*t~> +ci4[Xs8W#ppZ'/k\CTKli8EhW*ebp&=UHj66%)n`o2niT04gkiC^[ +h;6uDhr3SVjlY[dio/eNh;@2ProP-[iSEDRnG2tQj4rYSjQ>Xhl0.3fhqm2Gi8FUl1Z@EWkj@j. +o'G>pnG)\@hr=%nmd'9/l/h-sna5DngYh/NhVmMUk2tjijPo+ShVdJVjo4C2jl51Pg"bWNl0%-d +io]Y"oBkW"kMk=QgYLoQk2P=VhV[>PiSiYLhV[5Kio8qVjlba`iR>08`Tdf@es9hqm8Nk2t[[h;R>Gi:,gN]XbVd_op?Nf&Q5i +mcWWjkNV0jkNM*pmd96!k32'ojl>Ia/`G@-aMl*:`lc]bk3D3rl0@Qtk2kafkMk:IcH4&A_SsU> +dbX*Pl0Ig+lfdL1k7m%:h:'H^_SaC=fAP`Oini_[kiLn)j)4Uu2+Kro0i?Yfj53U<2j%rVZWnm_u*#US"'HSXlIT\^L'J +rVHNfcDd4pP*DE)R$j>2d/2_'T=3VMrqkoiR%Lq'W1'sNrr*`3jKa]6h>H6IVk9BBR\d[RpAY'i +rquZlr;uusrS%:%~> +f)PdL!<<&trr3?)rVcKM_l:)pg=uV`"5i%ohu;Iih:p`@hr*DKgY1KCkNhg>o]P8unFZ89jP]"X +l0ITqiSWMJh;@/Mj6#Lek2t^`i83>KioU1&)Wfu8hraG(qt&h&ioB+^kNM-ljPetOgtglFrn]Hh +j5oIjn*oo9j5fh0q!@#%n+6&8mdTN(l0n00jP8JHj58_Pj5f@bkNCpdiSWPOjlY_)k:#KQi8!&B +jQPmmjl5=`me$/>jlP^dh;-lCjQG[ciSWJKiSrkWio/nqitC>-hVdALg>1,_XMsH&rVlfrrgj)h +rW)utrr<#urdOhGs4"jHq=3h8iRHH@k24nNjl51WjQ>UdjQ#1Uhr*AEg"P07hV[;PiRuZ2i8NMH +hrNhTgt^`@g""O!eC`R6iSWGFg"4p4hV[2Ij6#L`hVI/Lg#2A\bIkBs]YhqLrEe'Q@`bg>&)ki_:*qs2qd +iU-1%nbh%8T<,TEf&Z;nr;HTns8N#hs8DqCrVPm$b3]$'q=jXK`1N6cXf\:nbk(f2qu?TdmDYWk +e*t2;SthsNRZio&W4K^GQ)*=8rVkfSPd&?7OJ9kbrVcZmrpIb'V5'ZQS=Q4EX1?[Lrr)]mpWfb+ +P*2&uS!]V2S'_&iY+N/ZpAXsQ\X9#"^8RL)j8T#or8b/ASDF,%^o*fmQ("P^hY-sJrVl`lrVZfs +rVbIMJ,~> +f)PdL#64]$rVlfrrr*?$iOb_\_8a@,]tCtirk8?EbK%K; +bh(S&e]u=Zai_fLbgG,!g==Qnb0%fGb0\_ogXacp`Q6K_j5o1A_TC*Ne^rC%dEBPH^V7Fq^VIOr +rkWZm`5]m=^pq20jQ+q9bLG1nc-OeZ`Q6?Pc,@9-`6$!:`lcTVf\"d&bfIcCb0SPef@SR#c,mrA +`Qcobf$i!ne_K0EgsXX#b/2'7a3;lVbf.?-\\#Mf]thM&`59=(]XbP_]Y(bg\YQ"8jS8QLs8W&q +rr`9#s8Jnqs8E#urr2rts8G%Ws8UWaiUcI'm-*6]lfd0Uf\>'1gYL`ChrjljQ,Iag>VYedDWf5]>DY0_T(6n +mH<6Uhs9asl0e!(me$&;l/_!mmdC)@.HT:-_n3@c]#2qQlL+$(m-sQ6mdKc?p$^qncca5;\\#]! +e`H8ekN;.1mNh>oo'PVse&T/2[C3]gf&Q&^ki:jmlfdQslKREdd(uoTOcbb)OoLSQO,]*VMMmIQ +N/j!^P*VQ4\&m+IhX9XhkNV!VeD&m?hpfWTYctF>YcXq.\]<+Jf%Jd3g=tEOj5A\Eg#2/\ +kN;7+m+g7QmdB?.qU_L8XguO(jR;d>rVZZprr2Nhrr!*%r:S^DU;cU!s(pSnR\R!aS>+:$s8V]P +e'R!iR\SF'_N1+kajJM\_nX.8a01l0i;ETShkcL>bd3P0am]9.n);pC]W%O*_p?f[d)NoJk5"uQ +r;Z6!TqS9c]>DCpW0`mnn_((=[G:QWqr,,ZUUn:AQE0-HrtaRiMlGP$hqd);agI\(UVc3os8Drp +rVc]ss8N#Os*t~> +ci4LSs8W#ppYs&h\(0u +jlYXckNqj8p$h;0jlPO^jm)C/p@@V5ioTY)rVuf\i90FpoC_bJna#AuiSWSNiSi_QioB%XjlY^e +gsFR6p@de/iTosuk3DBsi8a+klf-[Qiof@\j6,e!s7JtSmHm-*Ngh;IMbo'u,4 +m-scIrV5dIn)`B^hrSj58S@d*'VXdb*C3g!n`]t;/&a25jKlL!`gf\c#`lfRKu +kj@s2mcilslgF-(kN1OH`4NF^ZF@]uiU$+&m-=!*lK79qmHs#gcGdQ,YctOJ_p[W7mc`j#rU)*' +n*/icd)EW*[C3]gf&Q&^ki:jmlfdQslKREdcc*T+\%BAj`5p0IrltVjbg"H3c2Z!6cHt/%m-a-, +q!R8,lK$RLiTBCeh9a-V_SsO6_7m_*db;Uri**rU8^tbe0pIXi&K6da6"McfY'%qu$K_]qM-qYIhZf\Ytj^ +amn&eTs`\Ns81cdTVK*7Wg9^Irr3bmV2M>/n))sVeB,+hPbZ+Ys8W&sr;HTn!rr9!gAc[~> +f)PdL!<<&trr3B*rVcKN_PjlmgY1K_hH\srhVI)FgtLNOWiUc9\`4s!t_T9d7`n9SDk1n\MmI0B( +l07aii)\e'cRgeD0$@gt:<4e^rO0h;@,Jio&VFg#2,[kN;7+m+g7R +n*fQ2qq%U7XguO(jR;d>rVZZps8MWirr!*%r:S^DU;cU!s(pSnR\R!aS>+:$s8V]Pe'R!iR\SF' +_N1+kajJM\_nX.8a01l0i;ETShkcL>bd3P0am]9.n);pC]W%O*_p?f[d)NoJk5"uQr;Z6!TqS9c +]>DCpW0`mnn_((=[G:QWqr,,ZUUn:AQE0-HrtaRiMlGP$hqd);agI\(UVc3os8DrprVc]ss8N#O +s*t~> +f)PdL(B=C4rVlfrrr)fii4P\\^r=.*^:h1lrk;"<]XkV`]=l"q^:V%n`6$6ShU00M]u8"3_SO(/ +eD9$>g==X!d*U7mf\50WMh::'-e',hKajSejbf.E1]">Se]YD;#_nj+$]=>>[]=YVg\YGn5j8&QMs8Vuq +#QOf&s8W)us8N!!s8N#%s8W&us8N#ts8W(FrVuoJ^>85Al0@Kjk4.fqg"P35g"kQBgt^fGiSWA: +`O`Le\A#o!_T'L&X0]XS['[I0CeW* +o',#_eBZ%L_TLBbl1+9+jQPprmIKrAmcN?Rai;66_8jsZl0n-/l0@X#kl0`Pk2G%=^94&kNfB(t +Nrk?#MYi81M#W60M2dgs[DL/Clg!Zsl/^UTjQGafg!7UR_SsR7_7mY&ce$q/j6#Rgk2bO]jll.& +n*8uokNhEpjQuF!g"PHOmcs<=fVG.@\]E@_n+Q\XrVlirrq$0ir_NLmrUeX9MP/Prq=ja]fVt@A +\u_3d^?POji5)7ke&%BEfC[%ERD%_Ys7kHl`R`JCS?V&Ps8LcGPdo8RQD2.RqXiCNX/rh3Of@+4 +s8PU[cF2$er;HQmr8P,SV7tgXp@@CbT9HeAd^#ULcLCf&c*!kA^W*@=UY>SBp!K+k^u3PGeFr_7 +ij>)C[bq)`qu-Nos8Durrn@C&~> +ci4UVs8MropZ'/j\(9Emi8EMMhYuFYhqm/BgYLcGi838Ei8a"do_\(2e_&g@iniDEj6cUL9el/h@*oCMMAnaZ&4jl,+ni;_[fhVdANi7ZN/ +kOe<+gu%>]l/V!ok2PLfmHW]cgYq8SjQQ"$o_%nLna,H"jQZ+%rpTmX+7AFTi8sCtoCD>7m.'lK +rV,dLna5Gqgu@YjnET,piVqg=iSWJIrneFJio8qVjlba`iR>08`Td$5h;.#Om-a3&kj%?djS&-$e'QLfd*U(Zak,V:iS)uD +lgF-'lg*a#o'u5:kih@$mh+pNk24\2_nNar_91Kto^hMgh*Lda6:_ +b0/&Wf\koTnG)S=kj7QkiTTUol/C:CdF?e#f@80ndb'd]q:M[9XLbL!R_J%`q;B)c +XOG%OU=]%VOdWoEqZ$?IaMl`YZCJ/ZrVulOTTlt:\<`l(iqiEsVoChb<`1N7'hU8^(Xj6G7n]e54WP?HSPG?k.r:SI(Q,)>([++gFqVnlLS@7>SrqlZn +s8W&trVkONJ,~> +f)PdL!<<&trr3B*rVcKO_l0umg=tK`h^IF?hqm5GgY(<9hVd;IgY:WGkNhd;mbHCHiT9+Wgth&Z +q#(!^o'YlDm4.Ytp%\=Uo^VA7kiqF%oCr(Up%.V:l1"QJrV>a?n+?5CnaQ)=mHN]ihYl@3hZ)I7 +hVI)gi%!L2g?\M+l/1Ldn*8uumHr;HH\nFH#0i8*G[oC;21j5JqTio8qTiT&tXioB"ShVdALg>1,^XMsH&rVlfrrgj)h +rW)utrr<#ura>^)s4+j>mcj!$khtUnm,-LMgXt38hqm/Dhr3POgr-k3_[.mH*0Xg"k]OkN1XYi8`t^jQ#@`j5].Vhri-jQGmpjlGduk1SJK +m-j91r7Ig;XLZF'jR;g?rVc`qrr2Nhs8Ggms8DT?Ul(hrq>'d]q:M[9XLbL!R_J%`q;B)cXOG%O +U=]%VOdWoEqZ$?IaMl`YZCJ/ZrVulOTTlt:\<`l(iqiEsVoChb<`1N7'hU8^(Xj6G7n]e54WP?HSPG?k.r:SI(Q,)>([++gFqVnlLS@7>SrqlZns8W&t +rVkONJ,~> +f)PdL(B=C4rVlfrrr)fii4P\\^r4()^:h4mrk;@F]XkV`]Y;1t^;.S#_T'XBh;@#?f@8'_]"#T( +g=k**d*U7jd*L;$j4_i"`Qm,hcc=;^gtL6%aNN#cfZV=`i7lAjbh_.(`P'%)bK\2H]tM1rrP/BH +!5JNM&B)];eCia8eB#PKd*g4_bKg+5>L:[<`PB4%^VS(DgXsoraj8Pke^)Lee^VdZ`6mAoe]c(\ +h;$N*ccjMSeD&U%cHansh8ZtBg#CMu]YD.m]=GG_]thJ#^qRIm\$icW]=G\eUS5B]q>1'is8N!) +rVlfrrr2rtrr<#trW<-!rilG&rW)utrr<#ur^6Yas4+j@na,Guh:q#YkM"\IhV6rKkN1XVg"+^, +h:009S!T.qQB\&Ua18+7NfB'YMM6P1KS5&4K7o2SZGtDJhV8"]s4;#>hV[8Rm-Wuqj6,R\iq)g( +eCEI9hUgE8hVmJSkN_Bul0%:kj.Qnh;mn`gYqJ_kN1dcjll!qm-EfoiSa^m)r]f;kNM-ljlPXciSN>Cg"+[!a1J=>OGo0Y +MuJQ@LP(/.IXcs'Kn=i,LPq4ZS#F$Igude]j5JkQj5]4[hqQc4e'l^kdF$Fnf\G?BjQ5Rfk2kag +k3(slk2tddjlPRak3q`jd,*^AnF,rHfVG.@\]E@_n+Q\XrVlirrq$0ir`/psrVY]]MN,+!i9'4X +]UP+ibIjL7V97oX_Pip+f>a5TfCR=_UT_c!l-lo,UsI\uQ)ipCs8LcGRD\%"Q^t8!inCr:TrqPBVNM"89[@E_pf'1knS"mF8a/Y>o]\M]%Z^7Z?jh?t^ +fB;_^ZBCWik5>5VrVlirrVZZKs*t~> +ci4UVs8MropZ'/k\(9Emi8NSNhYuF=hqm/BgYUlJir7nRi8NbYmeQbRoC;84h:9m+lgjZ9lfdX# +lg!a&q>BjIhqmMco',,rnb2VBkMkUio^_/'m/-J9hGi83;Jhq[#Di8NVR +kN_@!nabo!f\GQNk2b[ilg4'-m-*HdhVL?MhW=8"oBYJtl1"62kN1ppm,HdVm.U)>jko=po'>H! +io&naoC(o*k3Mj9hU($Kr9rLqhr3VTi83>hh#ZBirS\:JkN1U[e$Q3ql2:DWs8W&ss8W'(s8N#r +rVlisri?)!rW)utrr<#ur^6Yas4+j@na,Guh:q#YkM"\IhV6rKkN1XVg"+^,h:009S!T.qQB\&U +a18+7NfB'YMM6P1KS5&4K7o2SZGtDJhV8"]s49!ZhV[8Rm-Wuqj6,R\iq)g(eCEI9hUgE8hVmJS +k3D9tl0%Cf>e_T?G +f\l&Yk2k[ajlbmnl0%*ahVS7h/)fLKkNM-ljlPXciSN>Cg"4]ubK7cC_o0XAdF6Xse^MplcHjtj +f$_mjdJ_N)e_]NXna>],l0%-ej5f=^ro3q;']S05io9(\jlGObkND!gj5].Zj5g4%+m%eIjQ,Il +mb#nCi8jCso)77;T<,TEf&Z;nr;HTns8N#hs8W'urVuioj0FQ%\(]d&kM3_>PHi +f)PdL!<<&trr3B*rVcKO_l0umg=tK`h[JH#i8lkjnB2ioot-p$V&(k3_j5kMkn,p>k)pq"sR@gYLlSlfd9_gYUiEh;7#D +gtgoIi8WqdmI9fAlegITkNhFBTo_e7;gu/1j!9!k6s5F";']J'0h;-uHhV-f4Z`M.1rVc`ps8JSh +s8E#urr2rts8GCas8UW`hsp'rin`AMmcWp&]uR[]Q]@&c +NJ`F>J:rT0KS+r:S[-8bg>:T_f`0Q4g>:`Fk3VKuioB4ah;\%ujj_igtq#Lj6#XmlKRNs +lKd^!m-a?0mHj9.m-3]rk2G+Mhr<\Uh:glXq!RGq!f[/L5 +jRDX/rRdpM,Vgq9,?Z-0eQQ_hjdi52F]Y1L[] +V:Y=bU8+p5j6>$tS#"B_Z'DBLrVulOTUE^W^mCUoa5Yg`TqAO-[>pE_j7_caToZnTr;Q[Yo[L"/ +V:5/;rVlTLZAkKsc*a(2[as]rZC@VtbK$WHS\3b@f<^gCe)e<.Y1Mk-hm/E5^?5@mr;HWprr)co +gAc[~> +f)PdL#64]$rVlfrrr*6!iOkh]^Vmq'^AP\E^0/.]]">Yj^q[Uu^qRP!_TC?cio8qSga1]1/f@nNgbLbP%c,796ceR9u_Tgog^qIqGi7Q>o`5p0F_n^]t_@u^V.7i[^EQS]"5\eU7f0[q"amfs8W$! +r;HTmrWE3!s8W)s!rr5tYlFb&!<<&ts8W,u9)\eieA'u7mci]bg>q\`g>(TDhVR2Mi7uo2cd1.t +f>=MYR?3MuQD;FE_6]\lOI);tN/*4KNK9$TM3+F?bh:n5hqQo@gtUT=rnoBilgcho\e3P +mJ-DDmIg8?jm)Bpaj&f3na>`-roaUOlKda#kiLn)jp^>1iS`SKh;7#Eg=OmSe4S3%=\]E@_n+Q\XrVlirrq$0irVuk'r;ZH;V2q+L[_92L +R$F>bjk72=R&%!hSX-;$j1peNeFM_9V4"-d\#>XWWn#h.NhP;,s8UZ2NkaZ.[%3V_ZDs=VVodrI +WK`pU\$)QhQcSapr;ZfZ\XS\\iVrg0qu6Q_`K5kP_R5YlTrP8lR[:/+hSZ1UR@L7`UQM.bjm^B[ +Q):dtZ'prZd-gl4rr)lsrr*!!rr1XOJ,~> +ci4LSs8Vunp>a&j\C]Wqi8FOjs57&;h;$iDiSrkUi8EJJhr*\fq>C*cq"!S$eDBW`m,d-]io]Fc +jQlUKio&VCdEg.hh:KNCSsb\%R?jVecG?iXNKBKn +PDk9QNK'!XM2@=f\'3O_inrMFgt^Z=h#?4Ujm2 +o'u5ImkaJ)o^hVBn*ol:n*orAo^Ltrg#;2Tip,LOe`H;cf#Z.ol0%$algNljjm:mFbM_dXn*L&< +s60LIs6'OHjQ-=&%-6F,i83;GhVR)Bf@BlM1Xje"dEp1^c-k;#gtprFgtUQ8g"t`Jh:gW?hqd&; +db3U@lg!]ulg3s%kN:pgk3)!nkksZNki_-kjQ,@^jSe*eio/ePiT'%\io/q\lL4&hd,3U6nac8L +fV>%=\]E@_n+Q\XrVlirrq$0irVuk'r;ZH;V2q+L[_92LR$F>bjk72=R&%!hSX-;$j1peNeFM_9 +V4"-d\#>XWWn#h.NhP;,s8UZ2NkaZ.[%3V_ZDs=VVodrIWK`pU\$)QhQcSapr;ZfZ\XS\\iVrg0 +qu6Q_`K5kP_R5YlTrP8lR[:/+hSZ1UR@L7`UQM.bjm^B[Q):dtZ'prZd-gl4rr)lsrr*!!rr1XO +J,~> +f)PdL!<<&trr3Q/rVcKN_l:)pgY:TBhr*JOrngl8gtUW@i8NYQhr!8Fhr*\gqYg?hqXj",f&?,i +mcNKej65aijmDpCn_r*OjRMp-hraM(oB>&ahs'n/k2#7to@qp\pAFXMj5T4dki(7Jg"kQBh;@,E +gKNFjhV@)Up%\F_qiS`YNhu;R4i=b&'gtprEg"ao\XMsH&rVlfrrgj)h +rW)utrr<#ur_!.hs4"gBo^:u&gY1`VjkAMIi83>Kio&VCdEg.hh:KNCSsb\%R?jVecG?iXNKBKn +PDk9QNK'!XM2@=f\'3O_inrMFgt^Z=h#?4Xjm2 +o'u5?p%eFUkhY(XmcWd$jjr&HoBb&LcJ\!OioBIuki:t!jNQ$6o(MYC +lfmTpjlPR_j5]+WjQ,@]io/hPh;-rEh:pQ\eLoG'eCE=4j5T.bo(MkRq>'dXoC28@p@e.LoChqO +nE8iplg4*-lK[g,nac5QC48B[%ibT_WC:/R?aYR] +f)PdL(B=C4rVlfrrr)fii4GY\^Vdh$]tD"krk&BI^:h1mrk8EH]`#HG]thV/cdL:phrNS>aj8Si +ccF#A`Q?9DaNrVteB,SFc.L^o_oUbF`6I#ibf.ocfu(MAce@=9gt:6-b.b?p]YM>!_8*k$ +^VIRq\\?57f%]0Dh:'RHa\'Le_o^'Ec-4;K^qICn]t_\>g!n0[^W+[Qe]l1XdFd.*g>:Z;cH+&U +hqQN!aiMKCdFZmh_o0mVgs3j\f%8*X\@]Aa\[oAa^Abn^^V7@l\$icW]=PegU7f3\q>1'is8N!) +rVZTls8W&trr<#trW<-!rilG&rW)utrr<#ur^?_bs4"gCp$_5.i8*SdkhOtLhVQu:da?FcbK\Gc +g==3KW2-,bZECOSa1SpaUoLc2\[JlQ\$icT[^3-KTUM49Ur)9kn^=e; +QB76$Z,u8-rVZZoiO#;S_!M("qu-KffrC72^pB/kUmd:&+J,^Yo'F/fSXu78R#dE;g\(L+^nd9\ +QBdf>biJHsrr)fp"9&9"rn.7$~> +ci4IRs8MropZ',i\CTNnhu;I4hu;I8hr*DKhu;PShqm/CgY1E=ioTIllgXZHo]Y8sn*]AsgY:QC +io&bXoChP0g=t`YoB4rhmIK],h:g`Ko^q;'l1sr,fA>caqY^0_p$q5#e^iI2hV[5IhVI#EgtC<7 +kO.d.p\==Chr!GQhqR&Nkj%L!kMtLWgtUR@guRqqmc<*TiTfn!jl#._nF?)@p\44BiSX%snE/Zd +hqd8Un*JuegunA&kM5(dn`ABQg>;hes5+^MgYCT?hr3PPiT01`hr3(lXMsH%qu$Eks8Musrs8T$ +r;HTns8W)!s8W&us8N#ts8W'drVuoI^Z+qTlfI'\kOIckgtgiDg==X!d*0\XdFR%%`j2P=Tr53! +ZcC,!\?2R,ZadQS['dBO\$rfQ\A6DEj5o=[hu;R4h_F!FjQc-tjl>Lchrst9mbd!ko^_G>o(2;8 +me6VZrVHEhqtg-^p%@tNpA+Ubrr)fnrV_0BqXj(.ccsqoi8j%QbK\i,l.XA+f\bQqqn`OT:_gPWOgXFiP;+hiV`]SfU/)EkP!c=TV.a?R\[g_qsi+ATU(\%Tu"s8Muq +rWE-!s8L[NJ,~> +f)PdL!<<&trr3f6rVcKM_Psung=kB>hV[8Kh;-rFhVI&fhbr=egY1B7gYUuQlg=*1q>U*Qj6?+' +l/LOThrEeWip$.2mc3*YkOS9/hW+%qn)iK]hrsb+kMYY%o\S6XlLk)RqY'UPkM4V=g>:]Dhqm5G +h,rOhg"5$Bn*ouGqt9:8ioB+Xgu.>Yl0IWtj58\Ig=tHFnFZ22gY1ZQnaGZ#jQlC.oC_qSo'58o +meQJ*:hr*Jji"b51io&YKhr*AFh9`L0`Td@"rr2rsScA`h +!<<&ts8W,u7/d/ceA(#9n*B)nh<4=lgt^`BhV-N.dEp+\c-b+re]+nnUnO]lY-Z0h]XY)>WjB4G +[^kiqI*qu6Wqrq6:qqn`OT:_gPWOgXFiP;+h +iV`]SfU/)EkP!c=TV.a?R\[g_qsi+ATU(\%Tu"s8MuqrWE-!s8L[NJ,~> +f)PdL'`\12rVlfrrr)fii4GY\^V[e$]tO?Vs1NNg]tV4q^:_(g\@fJf_SX()`Q$3VjPe\;eCiBq +_nWt'`l?!:bh1XraMYp@f\+Nd`Qm#^ahkd/bh:^o`mEVr_S!V"ceIC7gt^N*_7I7m_84"*^q[\$ +_SEgq^;S.9cI^n-e]l4WaMbm1`Q$!@a2Ps1rjk5)^<+mWd`B2;`R*2dbf@oTf@em5hqlr.`Pp9] +fZhCT`l,pEf$VIN^s(E`e^)UldDii0]=YYa\[oDerkK5_]tCqc[^NcZ]"kkNTY9F^qYgHorr*9' +r;?Nns8Duss8W)t!rr9!YlFb&!<<&ts8W,u(B+:5eA(#9n*K2qhWOFmgtUT=hV$5qrl&6bbgP+q +e%r&RQ'@l@Vl-o+VlHP`V6dnT`lH3Dbg"GXbKA,\h;[AJg=k<:h;-rEgtU]HlKmcrioK1WkP4f5 +daI"3hUpT>i83>Ome?\XqY^qOc>6UN/j!^O-H65X0&G!U8+TdYHbC>Za$[6WN,utri6"!"0AW-YPtaWZ*^jC +Z*:F7Yd(I;Yd(C7Za7-gkNh9mnaH#Gf;"n;\]E@_n+HVWr;Q`qrq$0frr;mkrUAFU\$i`Q[_UAS +p](3^hTs$I]#N:cq>0$mg[b4@p"d^&\@KE!i:Hj:iR$3Jrr2l^dF.+Js7P-e^Uq8%e)gB(q^Hnr@S$>g!.jhZ'20&^UUbieF!5#_lBH2]"knd_:nGYs7bQs\[&HJ +_q+&Er;Q]orr2rrs8N)uf`-I~> +ci4FQs8MropZ',j\CTNnrSRS1s5+.@hr*GOi83;DgA]iBi8<;Ghr*\grVH$KmITf.h:^K:i8EJK +jmi!.iS<5Oo(2&"hs'Urj4r;Ck4A6-i9L.0gt(-5l1OrMq"XIFh:C34hVI&FgtUW?hVHl:g>V,P +k3hm5m,R'ainiGGiT0.akN1^\h;$c>*o,iEo'PJjf\ku]mH!0blL497p%\7MkMP._p@%)!rnS7I +lL=,sf@oBVoC(r.mcr`^f%T![i;_[7h>Z1Eh;@2Li8Nb[jko%H[&h72r;6EjrVulqs8NB'r;?Nl +rr<#tX8i5!!<<&ts8W,u(B+:5eA(#9n*K2qhWOFmgtUT=hV$5qrl&3abgP+qe%r&RQ'@l@Vl-o+ +VlHP`V6dnT`lH3Dbg"GXbKA,\h;[AJg=k<:h;-rEgtU]HlKmcrioK1WkP4f5daI"3hUpT>i83>O +me?\XqY^['d9JZa7'I['d9HZa-j?Z*:L=ZE^X;Y-,"6ZMq*MYHG4<\'aC) +k2u4&nbh"6SZB>#*[^EQZe)pE)rUJaj_7."qe`uu,i60mG +qZ$6EaM#*o^s(a.qsr^mfCT"@rThkZjRiKFgW.(@^W=mcq#:*Vg;UP*[Dq"iqu-L"qs`Fie`HW, +rr2jJrpnaecd/k[WPH9Y\&-Y^rThA$U8kf?]!oN0nc&R_j3,!=YdVI#kk4lQrr)iqs8Dut!<1XN +J,~> +f)PdL!<<&trr3B*rVcKM_Psung=tK`hg=;=h;-rEhqm8Ji8MhrjV(lf6gXkk"H2h;ISfmH!*VhWOP(kMbb'o\J-Php\FUSkhtCd +q!mM)i8TZo^M/3n*Ardg"bHAq;D;3'B7s+h;@/Ig>1,^XMsH&rVlfrrgj)hrW)ut +rr<#urYGJ4s4"gCp$_80iSNbfkhOqIgtp`1a8X%aa3;u`f[I[:S!B50X/Dl&Yc"LsSY`[,`Q#s? +b08,Uc-+8Te_T6CgtLK:gtgfChV?lBjQc*rjPo7]hWO\.jjMT6ini>BhVd8IjR2d@r;-?irr)ck +qYU0dqYU6cs#'cJkh!tuc.:q?jO;&efB;>KaN2`[f@/.'jOVQ'gWd(/a5Q7BinrJ=cHXSYdF-Ch +d*^7frm;M.cd'e\cd'kadF?h&f[na1jQPmro_e1X.K9#+i7ZW)`k8X`['[9N[^EKL[C!BQ]tV4q +^qRIn\[SuQZ*:F8Yct;0XX1-SZ*UdBZ*1=:Za\?FlfR@"n+$>-UReHraO]G@p&+ddrr;usoDeaf +s85XjnCPOd[^NTP^shH?s8DKEcb[*%`msAMqV]QOo(rCZh8m:>\\QGIoDA+;d+@mgrr)01dcC'# +p"RO%]>)G9jnSiNmFoOgYdML+mect^#lF,IdadITs8N#r/cP=oc-O_@PGu@4\@9?)mJZ@gWhQN) +^q."kg@>1BpZ'H-ZEUdTf')f)rr2lqrr;rsrrE&Ns*t~> +f)PdL'EA(1rVlfrrqu]fhn5SZ^;@Y"^&G\E]`PgY]`,VD^/_kZ\[oMj_T0X/]Y(kmc.h%(eC`R. +c,RW;`Q6->`6?idcH!cifYkM:]>i4FcdC@rd`B;@_83q'_8!_! +_8F1-rkUS0]tqnBg!n6ea2c08^qmn+`P]O,]XbVa]>)J:f@.jX^rOgRf$;Fdf@A9pe(WX1cc*cH +g==?_rkgD1dFZa`]YDV;fA#$2e'#VB]tCqd\%&u[]t_@t^V7Cl[^NZV]",ScTqK'Yq"jsgs8W)t +rVc]ts8N&urr*!!rr0/%s8E#urr2rts8GLds8UWai:H@%jl"tVn)rHZf\,*5c,.3.^rFXJf%/3] +UlpUmQ(XY7TUqXFS!9JF]>_t?e(*1+g"P*/e_&[6gt:30f@g,W0A+n1i99IijPo7]i90e&fu(YK +bJUs+`QHHRgZ\8+qtg6is8W)srVlfoqtg-aq#:(Iq"FCRo'G>c`kB+(c.q=3a1T17i8W8)^rXmL +b/_lZahYg;_5aB@b0S8RaMbj,^;@n6cd:)=cm[;fd*L"^bf\/UcHjnde(*%#eBc.DX.u8VR[95$ +PEV/mOc>9XN/EAhK-Q)+Mi!4Mm9s0X2\ +ZaI6M[C*HLZ+%6WfBi"ll1493qq%R6XLZF'jR;g?rVc`qrr2Hf+oVH@r;6Nop$(Dhg>1fToD8Ca +rquKZl/^smpA4[bq!n.Yr\"0Fmc33^jQuX?s8D`bpAP!irVH +ci4%Fs8Ms/puK>l\(0:u_o&o$!q"!:of%&^Dm-O-2oBt\rgtgfAh;-i>gYLcEhYu=9 +g=G!mg=k<R["gYCZDiSWSRk2bCWe$H-pkkk8Uq#:6j"9/?#ri?)! +rW)utrr<#ur^Qkds4+mBoBkl*i8*M`kM+_Cg"k<*_S3_!`m)u`f$M++P)>-^TU_CBSsu@APb"nf +`QQWWe_8a1g=Xs+f\G?=f[e[+g&9ZTf[nj8kj%BmioK1YkOn>t_njL=_n3Y%b0AAhkk"]KqY^?m +s8Muqrr2imqYL*dqYU0dq>0p\o'"`K_844@i8r_7]Y2VIhpB0P_o^*A`6QlR^r+C7Y,](Ye'H@b +ai)$2`6$6LdF$:ed*^1dcd'eZb082WcdC1ie^rC%s3hA'cHjnff\+s5hr3Mmi`kC$jQ#1Th;-l? +f$_jfc-=DK\[AcLYH4n2ZaI1fToD8CarquKZl/^smpA4[bq!n.Y +r\"0Fmc33^jQuX?s8D`bpAP!irVH +f)PdL!<<&trr3B*rVcKN_l0ulg"P9]h?DfnhV?rCrndY3 +iSE>Jj5]+VkO\?1iniMUo_%G'hWXFqjPASJkO\M2[kiCaajP]4onCb^qb0.]7^;\7>dbF!Wqtp6frr<#t +rVc`pr;6?dq>L0ipc/*GqXs11cc*oJe`5lNc+q6FiSi5%^;\@BbK85dc,@]NaKr+ddausrd*0MI +_SsXAcd0n]cd0l8cPb$Qbf\/UcHjnce(<:*f%8X6j5oLlo(D_Orq]t!qtg0dr;6Bfqu$?dn`eue +g=O`m]=58X[^ENM[^WcW\\,Yk^VRe&^V7@m\[])V[C!1fToD8CarquKZl/^smpA4[bq!n.Yr\"0F +mc33^jQuX?s8D`bpAP!irVH +f)PdL('":3rVlfrrr)fii4P\[^Vde"]XtfS]`5PE]=bfU]l1Qs]Y;5#aNhuG_8!Rl_pR#^db*C0 +e'6"Vb0A2P`m*/fbf%61bLbFk^r"CJeBQ"OaNiAfc-"Gff#YbF^W+C5^r=XNf?qd^`5BI.^q[Uu +_8O@8bK7c?]=l86g""?e`5BI-^:_.o^qRLp]"1kQ]",Ssdb!$o`l6*Kf%&-pgYUH"^rFgYh:9Wa +bLb4a^VI\$a3iJda2#O2bLGG/gsb\"]S0jSAZMrr<#t +rr!*$s8W)urr<#trW<-!rilG&rW)utrr<#ur^Qkds44sAn*B6!hV7)XjkAD=f%ANs_RmCoa3E#\ +eBl%6SX,S5UnF6NVQ$MhT;Ad*aO/\rhrE_QhVd8Gg=k<8f\,!4g]#t]gXam+hIbip$(# +dCQd"]sOoH]"uD2g?J>0rVQKjrr)`jqYU0dq=jLMrpMi9n*KB*ki17>`5'72dG!C)`kTC +ci4LSs8MropZ'/j\(9BkhVJ1fs5+":gt^`BhYuDJhV[2JjQ>[nl/:CPf%/aEn*TN5p[mk9j5]4` +kN(XcoCM,%gY:o`oB+c^kj\$'i83JWnF5Z&lh']+h:pW@jPSbOlgjZ7kMtLXhVHr@g=tE?ioT@b +iS)i6iU-7*kMY7ThVR&Bh;@/K>Mn;phVHuAgu@\kn)rWdjQuC(kiq^4m,6RRlhC/Bj4regmc3*W +gYCfSoBkMlgu.;^q>BsNhqR&HhV[8JhVI#Bg=k<:gtpuIhr3\Wh;?YfXiBW'qu-Nns8N#trrE&s +r<*'!s8K)!s8E#urr2rts8GLds8UZbhXBdpjPJYOmH*'Tf%/L(beh!'^W4UHe'ua\XdtcDStr$L +TVe]eUS"Be]u\USgu%/OhVR2IgtLK:g=Y*4g=uV^CYRFifA5QRl/gsek2PXsld<;P]tLeTZ+@ck +c._FUrVcWjrVlcmqYL*dqYBjWo()>@o'u5?d,!O(^Uq;$aMl'ZSkMkCUh:qq^$/41ih;@)Fgtgcbh#cBfh>Z40h>Q.-gAp%.h&tM-g>(TF +jlZ"'lK7^-meYM.SuoQEf&Z;nr;HTns8N#hs8)^&rVlfoq=X@QqYgHnrr!*$s8Dlmp\4O`r@%^F +r;?NmrVcZjq"OR]rVZWns8W)rr;Q`qr;?QnrVlioqYg6`r;Q]pr +f)PdL!<<&trr3f6rVcKN_l0umg=b9;h;7&GhVHr@gtgfchJh<-h;@8RkNqHkhV?`7i9]t$mdp8I +mc``mjlkpij66.,kMY.Nkk+N1gYM,an*&`fj6?+(l/h:)n`/K]g>V/Oh;[emo^:r(iS`VMgtUT= +h;I>UkiUmZf%B!Mo^M)'i8EMLgtLQ?hr!;Hh;$d-gY1HCmITi2iS`hbnaGc/p%[t6g>MAnq!dA# +kOe3&rnJ4Dj6ZF+in`GLk3r0FpZg\miSreQrndY3s5!b5rnnFGgY:Q@gt:B,Z`M.1rVc`ps8JSh +s8E#urr2rts8GLds8UZbhXBdpjPJYOmH*'Tf%/L(beh!'^W4UHe'ua\XdtcDStr$LTVe]eUS"Be +]u\USgu%/OhVR2IgtLK:g=Y*4g=uV^DVNalfA5QRl/gsek2PXsld<;P]tLeTZ+@ckc._FUrVcWj +rVlcmqYL*dqYBmXnaZ,r;?QnmDPceY3,c[q#10jrVcZlrquQbp\Ojgrr)clr;Q]qrVultrn.7$~> +f)PdL'*%t0rVlfrrr)fii4GVZ^V[^tr4<0G]=PSc]Y+6Ws1D%=^V\%8dEp%Zahka.cdL.deCrU, +e'H7^d*TnSbgt=d_7[J(f%8*[_9LT^cH4,LcIC=eaN`8bbK.cHc-=5C`6Hoee^)I\a2c-7rkL_7 +`5g-OeC)R[`6?fef$)(K^V@Io]"5Md]=Y_d\[o>_^;nXQf$MR]bgP%jcd^n4e\eu7d,*^5bJMKT +d`;@%'Y_N3f$hj`_SeSrkJKI&A5N\[C<]W\A,PITtTO_qY^?ms8N#r +#QFc'rr;uts8N!!s8N#%s8W&us8N#ts8W(IrVuoK^YS>Cl/^^TipGpagY(0+ccj>A]Y_h:d*gIn +beglrZaI3HZ*qNi^q.+h^W+UQhrEh\in`GKiSWDCf\+s4h;-lAh;7#Bf@o0GmH`lojQ5@ao'"B- +Z+.BRZadikaNrW,q#1*ap@e1Oo'u;Bo_%nJmHNfrkNV4MkN1^^gt'cm`lQBPf@J9h`Q?Zfi75lc +aj8A[rlZ)!bKnPX^q[k2c-+8PbKS;Ze'ljuf\$2V,MLi(f\"d*e^i@%dEp:ge(*+&f?hLKZ`9gm +Q][8bLP:J;K`6NFIsufpIXm!%M3XsMdGO$Ik3)%!p@n=Tp%._Bn*oonb2hLo)%h;oC22EetJ\;\]E@_n+Q\XrVlirrq$0grWN3!rqu]mrrE&ss8W'$ +rVZTnrr2p&rVZZor;HZqrVZ`qrr<#t"98AurVc^2rVZWns8N#trr)fprr<#trVulrrVc`prrN-! +rr2oq!ri/squ6Wos83o9rr2lrr8+TC[,_&`rVu`jrpRn+T!dh_rqucmr;6Hqs8Murrr30#r;?Nm +rr2lrrrE&Ns*t~> +g&M*O!<<&ts8NW/s8N&tr;?9dG +h<=M!j4sXg&`E!Hn)rchg>2&js7bX/g>V)khuDR5h$2Zgg=tE_sce749jlYRYh;I8LgY(64g"Y?=gt^`BhV-T8i90Lnjl>F`iTTjrcF1!f +]!erT_8aRBg["Y5qtKgXp%7hFo(2MHp%%S;l0.Btl[%j[k2k[]eBZ:_dFR%'d)j;Mf&>Q:a2?!D +d*9bXccjY^eBZ"Mb0SJ]cHab`e(*(&f\+s1f\+s3g"G$1f%&=%f@83pdF$Fof[nd/f[eR#d*Kt[ +b0%iJbg"DXdF6UneCE+!da?Fhe_oliqY0^Vo_%nKnaQ) +f)PdL!<<&trr70@rVcKN_l0ulg"G0:hVR/HhVHr@gtgfChqm2FhVdJXlgX?+l0$sYi9Tgum.'fC +o'bo/kj.Tuj66.+jke_Gkk+K0gYV5eo'>Dtk3DI*kiD!unE8lnjlu$ggYh>eo^V50jQ#7Wh;$c? +h;@5VmdTW+i8>%.oCqh?i83;FgY1?7rnIS2gthtb*o#K1mITo8kN1ssnF,Z2qYfp@f%fTfr:K1/ +kk+<'rnJ4Bip64*kiCXUhWt(=pu^;bj5o7Wr8.D0s54RJhV?oBhV?cCl/^^TipGpagY(0+ccj>A]Y_h:d*gInbeglrZaI3HZ*qNi^q.+h^W+UQ +hrEh\in`GKiSWDCf\+s4h;-lAh;7#Bf@o0GmH`lojQ5@ao'"B-Z+.BRZadikaNrW,q#1*ap@e1O +o'u;Bo_%nJmcs$!kj%Fml0%3kjkn\;c-XtmgY1-"aj&N!j4DDlbL"\acd:%acd^UqaN)QSe^Mpm +dF-Rsg=k<9g"=p-fDO89f%&=%f@86qdF-Rtg"G3?jQ5Laj5^.".cogUlKmg%mdKZ8oC_kOo'PZ( +kjS?HrVQHeq>0s`p[dnBmI'N:p\=RZrqA5Ap@\(LoCVSAnaZ2?o()GGp@n7MnF?&BqXO.RmH=*1 +meYM.SuoQEf&Z;nr;HTns8N#hs8Dp"rVlfor;HWqrr)lsrWN2tr;Zcqrs/N#rr2ios8W&r!<2ut +s8E-#rqu`nrYGJ1rVlirrr;urrVlfrs8Musrr2lprr2ourr;usrquotrVcWms8Duq*W?!:rVufP +Y*ZNUqu?WpqYL3[a/GT;l2Ub\rqlWjrWE3"rVlfr"o\AsrVlfqrVultrn.7$~> +f)PdL'*%t0rVlfrrr)fii4P_]^;7Oqrji3B]">WS]DoPD]k+jg]=bkn`6-BPd+-[laN;fVbfS#T +e^i:"ccskbai2BPe&B&5]>rCMahGX;g"=]rb08/Zd)j8KdF-=`bg=kid*'VZf%&3nbfn>Uai2-5 +_SX41c.(M(f?_^jg"Y$!_8!XprOE'@\[f;`rOO&^^W4^Qf@/$hcI::ibKnr#f>t_GdG3R.b/;KT +cc#gs'YM<-f%&0o`4pr*\@]Yt^q9TTs0rGTY0=[qYgEns8N#r +#QFc'rr;uts8N!!s8N#%s8W&us8N#ts8W'.rVuoJ^Y\GFlfI$Xj7)C6i.'J*aiqrL`lulZeC`O2 +gY(-+e'ZIbcdq(8g!n[,e^`F7kN_?rin`GMk2kRYgtpuLjQ,:YioT=^hrk2YCWhr*SZm-a?1lK@6fj5oFcj5AbKg==NmaiV]Kb/q`IdG4c`.,<;! +f%Sp5f@JL'g>1Q6a2>s@bK%ZFcICS(hqd#>gY^rHi8NVPhr"Fh1Y:!ubK.fKcI:J%hV?Z+`4E:V +V4O$:Nf/dPLk^P7Jq8H'JV&K+Lm"F=c/7aOmI'H9qu6O1r;6 +e,TIIs8NQ-s8MuqpuB5j\CKBhh>Z74h;7#eh>c@3he1g%h;7)Lk3DF)nauG?k3).#lK.3snal>? +lfmd'k2POpn`&?Wg#hkqjkJ\Yp%7Y8kNM4!m,mHh#,n-gtr%f&)lR-gu$PeXMsE#qu-Nns8N#trrE&s +r<*'!s8K)!s8E#urr2rts8EN,s8UWahXBdrjknePnE^)3J(i/hbfe)IbgOqhf\>39g""R#dE]t^ +f&>ZBeC`F(e_B-IlK[Tmh;.)Qjl,(OhVdGTjPf(WjlYR[iof[tm,d6ej5/ndjib!5\%TMj`lu`P +ce@USp@7G1j5AhPi8j+gmdKT0l/h!fkNM-ljQ#=\gXOWpbg"ASaiV`Sh>cUch:0m(g>(H9g"Y9; +iS`>2a3)`SbKA)Wf\PKFi835Dhr*DMiS`YOhu;Fgf?hdcaN;WNe(NO6iT&qTgXt'*dE]qVaN;WK +bg4Y`dF6Uoda?Cdc-P,0q>UBlr;$6dq#0pdp]'php\=R\r;$BfrqZQf!;QNhrqmr:qY9gZq"t$a +p\aIBo'c&DetSb;\]E@_n+Q\XrVlirrq$0grr2lrr;QWprr)d'r;HWnr;?Nkr;HWorquorqu-Nn +#6"Jurr)fnqu-Qm')hh.rVZWmr;HWor;?Nlr;HWor;?]rrVlfp'E7t/rr2rsr;HTlr;HZprVHEj +rr2j?qW>Mk`9R0srquNes74[OZc280rVHEfr;Q]qrVQKjrVZWmrr;ourr)lrrr;uurn.7$~> +f)PdL!<<&trr3T0rVcKM_Psung=Y08h;-rDh>Q./h>c>Mh;$fAhr3\]mdKW:oBk]'mdKH'kjS-8 +oC2,3mI'/skO\6'gtCBBnabhthsC(0mcip!lgO6'io][tlfdU$o'u)/k3MR,mHE`rki_$bh;$iB +hVm\ep%\.El1"HBn`SfcgY(63g=b37gYL]BrnTKfh;n"rp$h;3m-sN2kNhm>oB"cdmeZhPkMYXu +mGcpUgY1TNo^hM;imu]Bq#:!Ge_&pDiSXOhrneIKhr!8EgYCW>f@nNVX2O6#rVlfrrgj)hrW)ut +rr<#urXSo,s4+m@n*B<$hqI,[li,gbgFakNCseioB"Pf$XKB&'`>AbKSGmkNC^Pe(EI4h#?"FgYLiJg!.X_dF$4_c-k5# +j5o=[hVR2JgthncrnS:?d*9bTair,_g>:iQmI0K/ki_-jro4^PjQG[glKdg)nFH5DnET/sip$18 +qYq6.r:fjTo()JKqu-Nmr;HQjr;6Bjq>^0iq"amb,lIW>rquQcp\=Xap\4URkOS*1qUVC4XLZF' +jR;g?rVc`qrr2NhrVlfps8;lp!<2rq$iKu&rVZTlr;?Nmrr2itr;6HlrW`?!rVlcor;6Hmr"Au- +rVcZmrVZWnrqu]mrVZWnrqu]rrr)iqr=f2/rVlfrrqu`nr;?Nnrr)]jrr2oq,5UH9WPn)trVl`h +qZ$-9] +f)PdL)?9^7rVlfrrr)fii4P_]^;@Ur]=PSa]=Y`T]DoPD]kP-k]"5Mc]u%e4d+@"%ccsh_aM5I/ +c-k+kd*0h^a25jEd)*K.\\lb@a1oO=g=aoubg"GZbJh?lsf%8O/hqd5P +kPj`Gk]6"Qj5fIlo^h8.mdB?%kj7j2na5T&jlu4$lfmWumI'B.lKRX(na5W.nFQ2:jl#+Wh;n"c +ag&"Z^r"%6d*Kq\f&H#[j4Vi(aiMWNf&#QTm-O'%k2bRak3(jdi8NYMe]l+M^V7Cta3E5ql0.0b +hehB7k2bO\jQ5UijkJ"r^r!n"]u%qBhrX%`j5AkWk2kagk2tdej5f7N`PTI*^V\(=g#1rQj5/A3 +a2#6jWM?)TR$EksN/ELLLkg\;KSGDKSZp2jkjIs/n+-/HqYgEmrVZQjrVcWiq>'g\rqHEe/GJr7 +q>0sbqu-KkqYBp\q>:'bq>:$Tk48!0qUVC4XLZF'jR;g?rVc`qrr2Nhr;Q]orVd6*rVc`qrVlfp +rVliqrr2rtrVZuurr<#trVlfqs8N#trVud*rVulrrVQNkqYL3krVccorr;p-rr)irrr;uts8Mro +rVccqrqulqrVlg;rqu]nrqlWmr:/RijS/EHs8Dlps7ba1eDBits8Dlp"onT#rVliorr)cqs8N#t +rrE&Ns*t~> +e,TIIs8NQ-s8MuqpuB5j\CKBih>Z74h;7#eh>c@3hgXG(NAi8WeVi8M5doC25/f$iRJr:8Xjf&,HBhr*AJh;/"`'\qR'hr!DRin`M?[&h71qtp?krr;uss8N)u +rVZits8W)!s8W&us8N#ts8W'>rVuoJ^Y\JHmHEN`jR_m)l0I?UbL4tnfA,9>i8s/$l2TsclfdBi +l0\-7kN;4#l/q3rnal;XfjlYdk +lg!ZhcG[T=_nWt)bh1k9ki_$ciT94`k3(mhjlPO`j42,c_7m\$aO&Vujlu-ulK@6eh:pQ1dEqm= +rm1hrdaZdoci23&bf\GtpAP$jr;$*[o^h_Kq>:!epc80Hqtg3dq>'g\q=saZq"X[]qYU0grr)ck +q"OU]qt^'bqX!A8n*g,(U7SHsaO]G@pAFmfrr;usoDeafrr)fp%0-;)rr;rrrr)fps8Drrs8W&r +#Q+N#s8Murrr2rsrr;rsr!r]*rr2lnr;HKgrr;rqs8;lrr=Ao+rr;utrr<#tr;?Nls8N#r!W;oq +ruM+:r;Q]mr;QWagsP3Wp\b'ir;Q`jkh4JBo`+sir;Hm"rr)fps82for;clsrr;uurn.7$~> +f)PdL!<<&trr3B*rVcKM_Psung=b9\h>c=3h>Q./h>c>\h;$c>gt^fIk3DF/q"=%?md9/mguRej +oC;55mHs#njRDTqgY(6=mdK8niU6L8nET<)m-X&ti8j4mmHNj$nb)SFm-X6+jlGUim-l1=N9n)N!Ji:?g:h9sm4j59^irneIKhr*AGgYL`Af\=]XX2O6#rVlfrrgj)hrW)ut +rr<#urZ;%lsf%8O/hqd5PkPj`GkZR68j5fIlo^h8.mdB?%kj7j2 +na5T&jlu4$lfmWumI'B.lKRX(na5W.nFQ2:jl#+Wh;n"cag&"Z^r"%6d*Kq\f&H#[j4Vi(aiMWN +f&#QTm-O'&kN1deroZ3%jQ5L\f[7aW_7mY"a3E5ql079fhrO"bjlGRekj%Epgs3gS`597'_opWh +kj.Kqj5]7_j5g."1#q?Te]#DA^;%S.e(`mFmI^/HoC;>=m-C3ir;HTlrVHuuq"XUYq"ad_qtp?krZM.6p\F^`q>'pam,mm-n+tV0 +SufKDf&Z;nr;HTns8N#hs8;lqrVc^(s8Doqs8DrrrVc`qrVlfrs8Dm$qu6Wqrr)iqrr;uss8Duq% +fQG,rr)`lrVHBis8Dorr;Q`p&,uP,s8N&ts8W)rr;HTorr2isr;HWp*WH!7rr2fmrqu +f)PdL)ZTg7rVlfrrr)fii4GSX^VRRp\[o>_\[f;_qR_0e\@8rU\@fSoaO&Gbc-+;P_RR%f`QQQQ +bfIuN_nEn2bJ(X#[_Bl-_nEt8g=OWlaiquO`kfI/aj&)O`5KdFf$hpkbf7N;aNi/WbK7T6]tV;" +`lcZYdE';Jai;00]=knh\%&uW[C!?N\@T8`\[]Aocd^LnbfRuNbU^`K]YVe'aVo_81Xq"4RV!;-9c=82F`qYBmZnaH&DqY9^Tp@e(CjP]+]ioot!d'pBt +`PojAdEg%]f&>lSgX+!X^V7M'd+d[KnF5o6m-!clL+*,l0.Eulg4!(lg!d!lKQj8^:h+j^rOdSj65dol/^[Qd`f_F +\?rKAW265[R[KM-P)kT[M2dahXi/lQlgO9.nb)YOqu6Qnr"/i)qtg0dqtg0bq=sd]q"jgcqZ$F' +rVlclq=j[[p\4IXrVZ$CrpUNsf;"n;\]E@_n+Q\XrVlirrpg!mrVuoqqu6WprVulrrVuj%rVlis +rVccrrr)fp7/d,`qYgEkr;QZorqlTks8N#rr;?Qnr;?Qmqu$Elrr)cnrqu`orr;uqrVulqrr)cn +rVulqrVlcnrVulnqu6TnrVlfp)#jF(n+ZhZrVc`orr2iio'uDMr;?Nns8Muqs8N&ss8N3"rr2rq +rr2lrrrE#Ms*t~> +g&M*O!<<&ts8NT.s8DusrVcNP`2gAuh:qna#i=CmgtgfAh;/(eIGNZ4g=b9=i8a(lp@Rb:lKR9Z +f%oBOmd03$lK[Bai9]abh:pT?lKdKcipcd;mHEd"lKREghrEqelf[gu%)NjQ#4Wi9'J!o^V82kj.Ofk2"\HkO%['lgF-& +hq[/TmH!'Xhqm,DjmMU(m,d$Ti9p=+g0mYrpg']rqJ_PpA"L[p\+.Go(`(Vo^qkNo'>ApjQ>Ico'=Z3 +[(sZ"`m)oWbg"_tl/^UGa25U*^rFaUjm;L+n*]T/lKmp:mM#'VkMOh3_7dFj^;n[Xk3M!1f%&@'f[eHrc-+;P`m +f)PdL!<<&trr3W1rVcKN_l1#mg">'7gtgiCgY;\^J(rc7gtUQ9g">$7hrEqip%.P7l0.'Ve_K3M +mHs3%l070^hsBXagtLB;l0@9`ipZ[9mHgXk0)ZDth*rVc`ps8JSh +s8E#urr2rts8FtUs8UZbhsp+&lf6g`p@[qGo^(;^guR\`m-X-,o(2PIo^_SJq"47Sq"smUnG2nR +o^qnRqY9^^nc8=]piQ9(q"jg\p@7VBq"jdXo_/"Llf@!bk2PUqld3,J^r=:4c-ak]c.:k`1Qjm)*ol0@[)md'0*nF5o4kMOY']=PM[ +\%Ti4ip6+&mHWs8l5o9Xlg*j$kj%E__7mUo]YMV9g>hGep\FX[p\+=Qo)A(Vm47MflKdg(m-X'! +i8EJFhX("7rr2ilqYBjUnac;DoCVhTr;6?fr;?HhqYU9f!r2WfrqcZl&,lM+r;-0_q=jXYq#1-W +jSnW\qq%U6X1?=&jR;g?rVc`qrr2Hf#6"T%r;6Knrr)lrrr)lr#Q=Z%s8Dors8Muqr^?_arVHKl +r;?Qmrr2flrVulrrVZTmrqu]nrVQNkrr2lorVl`nrr2rsr;HZprVlcnrVccqrVc`or;HZpqYU9k +rVc`pr>>P2oC)GQr;HTnrVlfop[[kIqu$Bjs8W)srVulsrVum"rVlfrr;Q]os8N)tf`-I~> +f)PdL*<6$:rVlfrrr)fihn#AT^;.@l\@K,[\@B)]]"7mOJ%E8'\@/fP[^j#^^;e=:_nj7.^9t>Z +^W"77`PTX7^::hs`O`[n[CX;r^UqA0f[IpZ_oKg8^V.@s_oBd;^9tVobf[rGa2,I(`llTJa2Pj, +]=bhl_SsR:`PB1%^Upq^\\,Yf[^N]RZa-pF\%&uZ\$s&jbg=_]`koU3`C@\U\@KJubK%TB`P8mk +]u@t([^j2h\@B;na2Gp9a25d)=aMl';bKJ#PfAl5^i7?/qaiVWJe_o]^p%7hGoCDkM$1dWWnEoK"g=".Ba!o?ikO.g,n+68G +oCDG@n+$&Co'Y\td`TSJ_o9dGh<=>#p%7hEn*fc8rpg$X6gjI5hos3_`5]sHfAGfZnFH,^+\?`9=X/VqgS=#P-StW@+e`#c\n+$,JqtpBms8Murrr<#trVl`prVud&qu-Kjr;?Nk +r;HTnrZV48pA"FTpA4O\r9NA2n+$>-U7SHra4B;>pAFmfrr;usoDeaf"9&/srr)fqrr;otrr)iq +!WDrprr;m%rVuorrr2llqu6NlrVucnrWE,qqu-Nns8NB'r;HZqrVZZorV[3)rVZWnrVlcmr;QZo +rr2j'rr)fprqZEirr)fprtt_6s8Moorr;rprVcZmrVlfrs8Mrnr;Q]pr;ccor;ccprr +g&M*N!<<&ss8F;Bs8N&trVcNQ`N6T"gtUW>h;$iAgY:N=gYCT?hr!;Gg=b-4rnV\Tkj@ZriT'"U +e^`C2jlbddj6#L\f\G]Qg>(N9helLO]GqYBs^p\+=Tp\=U[p\Fgc2Z3IMrVcZlqu-Kjr;?Nkr;HTn +rr)`ipA"FTpA4O\r9NA2n+$>-U7SHra4B;>pAFmfrr;usoDeaf"9&/srr)fqrr;otrr)iq!WDrp +rr;m%rVuorrr2llqu6NlrVucnrWE,qqu-Nns8NB'r;HZqrVZZorV[3)rVZWnrVlcmr;QZorr2j' +rr)fprqZEirr)fprtt_6s8Moorr;rprVcZmrVlfrs8Mrnr;Q]pr;ccor;ccprr +f)PdL!<<&trr3W1rVcKO`2U/mf[nj3gYCW?g=lP\s4VqVh;-l?f[n^,gYCWCkNqHni8WeQeC3+- +jQ>UbioT:XfA#KMg"Y<5guRSRg>VPqoB>5pk2t^]h;-uJjlbd^e_B9QkiCjdhq[&Kl07BminiGB +g=tHAj5f@`hqm>Mgt:96hr*>EgY:E5f%8X2hV[2Fgu.>]nF,`+iSjgt8`AFTf\boXkN(ddhUg?6 +jlY@Mg>LlAf\YcRj5]7`iT'4lkh4J;gtpf?gtprFh;$iDhVI#EgtLK:h:gH5c*=:dkPbAYrr;tg +s8W&us8N#ts8W'NrVuoK^Y\JImd0#kkP4lGq>0aIjQZ.*p%\:Uq"spbq=O%0pZm,R$cl/h7)nCYLg`lQ-:a32ZJc.D"Bl/:.; +b/qcHbgkY9o(DYFn,)ShnaQ&9lK-pTc,RW;_84:HjQc*sm.()I(%Uk]mdTc:mcricbeq62]t_P3 +g?%f&oEFgTn*fc8rpg$X'CPAZhos3``5]sGfAGcYoD&1Zr;QQoqYC'_>kR^Xn*oo>naGf+iSreK +h!">(rVuiorVcQboCV\Jo_&"Ur;?Hiqu$Ekr;?HjrVQNjrVZTlrVlfpqt]s\q"4:Vp\XmSipZ@+ +r7@[7XLQ=%j6u^>rVc`qrr2Nhr;Hfsr;Q]orVulsr;lorrr)rsr;HWpr!<9$s8DrrrV??ir;HTo +qu-KrrVHEirr2rt#lX]"s8W&qrr2lp%K?>(rVlcprVQNlrVlfqr +f)PdL'`\12rVlfrrr)fihn#DV^;.Cm\[h[K5InD;\[T&X]=YYb\$`WQ\[o;\^;7On\%KJh\@9)a +_8="$]u%\![^j;k[^s/\\A#bi\%g2:c,%',_8*^o\c0/_]YVOtXL#a[]t;"p^:_+q`l>p4^V7Cn +]",Ge^VIUs]DfB5[BHjF]Y(b][C3HIYctF@\%&oS[Ca>tbf[o=\[fAd]=GDZ]YhY$]=kng['[?X +^p^PY^V@7a\%TJd]>i4Aa2uND]"#Ac]X[pKs0WWQ]t_=r]Xt\\ZaI?S[_9,BT=a+WqYpKos8N#r +#QFc'rr;uts8N!!s8N#%s8W&us8N#ts8W(ErVuoK^Y\GGmd&rik5"oMrVcTboCVbQqu-Kkr;HQk +p[6qihWAg"YEFlL=H?q"XUVna,Q' +j58\Jg=Oj#aM\"o.)*3rY,e_2ZF\-,hrVc`qrr2Nhr;H]prr2oq!;uips8E3#rr2fk +rVc`prVuotrVlfrq@EQ(rVl`mrVlfor;QZmr;HWos8W)ts8Vuqr;HZp&,lM+rVlcnr;Q]or;HTl +rVc^$rVZWorr;rrrr2p)rr)cmrVlclr;Zfprq66hrr +g&M*N!<<&ss8Ih;$iAgY:NLuHgZ.etn`8TdjQ#.Qh;6uDhrX%Xcdh"6h:pfEhV6fDk2t^_ +hVR&Ag"G*8hr*DKhJD*-hV-N3hW*YRh;7&Fg"G*7hr3SRhVR8Um-j?+inW>Ii8!)?f\PWLhq[/L +gt:66iSrM>g#:oCe_&d:gt_)^lf[NujkADBgY1E;h;7#EgY(<8g=b39hVI#Fj5JbLdB]gkkPG)S +rr2rsrr;uurr)ctrr<#tX8i5!!<<&ts8W,uJ,TEIf"^)1m-a3#h<+P1q>L9go^h_KqYU6ir;?Nk +r:fX:f&#NLlKR3flf-dZi8NbYk31j]h;RMXin`AGi8NSLg=Y-4g#28lr;?NmrV#U;hW3n\l1XZ$ +_S*n-_S!\$_SaLFip?'rhqHf=g=b3'gZ +p\+:Po_%nLoC2,3m-aB1k2YCThqlo5h<+(opA4acq=aLTp\=RZp@\+Qq"jm`qY^rVc`qrr2Nhr;H]prr2oq!;uips8E3#rr2fk +rVc`prVuotrVlfrq@EQ(rVl`mrVlfor;QZmr;HWos8W)ts8Vuqr;HZp&,lM+rVlcnr;Q]or;HTl +rVc^$rVZWorr;rrrr2p)rr)cmrVlclr;Zfprq66hrr +f)PdL!<<&trr7HHrVcKO`2U/lf@Sa2gYCW?g=k?:g=Y*5h;6rAg"4j/gY:H9i8`_Jf\GB>f@J[2 +i8NPJgu78HeC`g?fA#06g#(cCg#;Aln)N6]io/_IgYCQ!5hV[2GgtgiBf@/:*i8A,#g"P36f$r7&gYL`Bg=kKIlL!s$i7m#ChV6c:fA,EHhqR&Gg=Fg. +iSiD;g#1f@eCWR6gY:lZlK7rVc`qrr2Nhr;H]prr2oq!;uips8E3#rr2fkrVc`prVuotrVlfrq@EQ(rVl`m +rVlfor;QZmr;HWos8W)ts8Vuqr;HZp&,lM+rVlcnr;Q]or;HTlrVc^$rVZWorr;rrrr2p)rr)cm +rVlclr;Zfprq66hrr +f)PdL,ldlCrVlfrrr)fii4GPV]tqCo]"#;[\@K2^\[],X\[oDb]".aKs0k)"\[SlM\@fJc]"G_i +^:_(i^VILj[_TYe\@K#V]"5;V]Z/(3]!o5_]=5/T\$i]R]">GT[(EiT[CEjJ\mN+`]t:hb]"5G^ +[^N`Y]Y(hc\%&rTYd(XI\[SoP['R$AYHbFB[^Sc\[MFD!P,oC^(J&j\[AfQ\@8r\[\BG-j7rKLrr<#trr!*$ +s8W)urr<#trW<-!rilG&rW)utrr<#urYth9s4+mAna5],inNPgrVZ]qrVZWlqYU9ls8N#r*rGTm +f?DRkf\kQ4e_Sp-d*U=rg=Om%bKSDde]YhJrlIUM`l?!:_oUKqp&+dgrquKUio&n[hrXIuf=nf2 +^q-n]\@K8ice[aKjknqRjPo+Wl14ZKr;#sQmdBQ7p%S:ZqY9^Ro)A5+o_8%GmIKuEo^_SFp%7nL +p@7G2m.:#Kq>'dWo'l)6m-aH=qYpBpqtg'\rqIf6oC28>naGo4lfmQokNV@%nauPIoCDJBnF?#: +md09(kN1^Zg&BT'eBZ(N_8XL;cILP!g>_A_mI0Q6nac>Cn*fl@o^_MBq#10gr;?Nmrr)`lr;6Bh +r;HQjqY9dVoC_kOoC_hAj6l@+rn+!:XLZF'jR;g?rVc`qrr2?c!ri6"rVliqs8EE+rr2rsr;?Qo +rr2rprXf&-s8W#prr;utrVc`qs8Doorr<#trr2rtrr2p8rr<#trr)iqs8N#trr2rsrVc`qrr)iq +rVc]ps8DZjs8Dus%KHG*rVlfprVlisrr)fhrW)uormLgs~> +g&M*O!<<&ts8;rsrr3K-rVcNQ`N-Jugt^`Agthqa:#4UZg"P9=hr!;Hgt^`BhV?oChqQ]3gYUc@ +gYL`Chqd&Ahr*;@fAY]Ag>(?7hV[)AiU$$ti8!5Li8*,Agt^Z?hr3A@g>:N6f@o'[g`PD1hqd&@ +gt^Z(Q?f@J^6hV-Q4gY(35jmDI#ki^t)g]Qtk. +kL[r(e_&g8dFI(+e'QIlg"P'.d*'Y]f@A']`;[kHaMu6=`P]dLlLk)Rs8Mrilf-j`k25:ln(5:a +^qdOg[^`l\_p@0$lK-p[iT0"Vip$%0rVZK_n*KN5p%J4Yqu$6]o)8)/nFZ;9kj@p2nF6#@p%A%R +q"!b7m.:#Ip\+7LmHa'$kNVI-p\Xj`q=s^YrqI3%oC28>naGo4lfmQokNV@%nb)VIrUL$_q"apd +0DteHqtg*^q"X^]o^D,1mI06!k2k[algjT7mHj-'m-a9,lKdg(m-X?:qu-Ehr;QZqrVHF;rVZQh +q"F@Op%S1Op%IY1mdBZFfV>"=\]E@_n+Q\XrVlirrpKdfrr<#srr;rsrX8c*rr;uqr;Q`qrr;lp +&H2V.s8;fos8N&srVlisrVcZns8W)trr<#trr3l8s8W)trVlfrrr2rsrr;urrVlirrVlfprVccr +rV$6jrVuj+s8Mrprr2lprr<#trVcHh!<;lodf4g~> +f)PdL!<<&trr3N.rVcKN`2L&kf\"s6gtUW_gBlTef\,$7h;-l@rn;YQgY1B9gtC3,g>1Q(N? +hV?i=hV[)$6 +gXam-h;-`6f%J[+g#MJdl0%3fgY(?;h;$f_h>c=3hu;IFh:gT@]oC(;F\\Q"l['mKT]Yi(Ok3D'chVmPT +i8X"lq>C0doBkl2md]rKpB:3[m-Cp%7Y6j6#b"o'l/;lf[BkjQ#Cg +nb)\QqYU-`pA"CWp[dnDnaZ)9m-Eouk3)!qn+$)EoC;DCp%\F`rr;usrVlrurVc`q,lRQ3pA+IP +mHs3$k3_d2nF,f1k3;3sk2u!smHj0,p%nU`qu$Els8;rsrr"/@rVZQhq"F@Op%S1Op%IY1mdBZF +fV>"=\]E@_n+Q\XrVlirrpKdfrr<#srr;rsrX8c*rr;uqr;Q`qrr;lp&H2V.s8;fos8N&srVlis +rVcZns8W)trr<#trr3l8s8W)trVlfrrr2rsrr;urrVlirrVlfprVccrrV$6jrVuj+s8Mrprr2lp +rr<#trVcHh!<;lodf4g~> +f)PdL*<6$:rVlfrrr)fihn#>R]th:m\[f5[\[oA_\@;FH(qI5i]=PSa[^N]U\$`ZNZa[NW]=bbf +]"7mR)niu"\@0)d]!f#T\[o8UZFIZb]=,)U\[]&SZi7?3[1BUN\%0#SYd:dI\%&uZ\$c4B(:L]] +[^EKN\@T;`[^EQP[Bm6J[^W]Prj+kqZ*CUA[^1'fq=sg_q"!\/iT94^jQGe+kR?_@lg*p)lfmTslgOED +oe?%0naQ#8mHWlsk2Y=Kcd11sh;RAHcct(tf%&F-gY(?;gXk*8io&VHj7WHNqtg9ir%%[BqYL*e +r;HQjqYBjXo^h_Inb)_EjmVX-s4X6^Korr3'!s8N#ts8Mlps8N#trr2rtrr*!!rr2iq#6+Z&rr<#trVllsqu?Woq#C?mr;Qcrrr<#t +rr<#toD\giq>^Hns8N)uf`-I~> +g&M*O!<;rq%KHG-rr)fjjM\(,eD&aWg]ZHgh;$cag]6+.g]61/hZ)F3hu;I@gtLB3gtgcAhVI#C +h>Z1Ih;7#Af\b]Dg"G*9hqd#>hra+]h:pfEhqe7cIGEZ6gYCZFhq$?1gYCT?hVR#@g">!4gYCQ; +g"Y??i8Hh;$fAi8N_Ui8!)GjlbgghqH`8gYCT=h;I8Jg"4m4iSrbOhqm)? +g>1T?gtLK:f\#$>jlbjhiSWJIgt^`AgtgoGhVHo:*fq"=.AkND4%p%\@XqYL$`qYL!Xl/L[`k2YOcl2BfXl0@U#mHs3&k2tpso_JC^rVc]o +s8OMHrVlfmo^D;CqY'RNjOi#>inN&8g"4d*f[eL"g"b?7f])Q&rVHEir;8&Cqu$Bjr;HQjqYBjX +o^h_Inb)_EjmVX-s4X6^Korr3'! +s8N#ts8Mlps8N#trr2rtrr*!!rr2iq#6+Z&rr<#trVllsqu?Woq#C?mr;Qcrrr<#trr<#toD\gi +q>^Hns8N)uf`-I~> +f)PdL!<<&trr3]3rVcKO_l'ihf\"s6gYCW?gY1B9r7V/*r7hq=gY1H!3gYCTbdnF?,Ao_87Wn*KH+jo+3jjQGn!n)rT^gZ%PgnauPKo'bo,j5fIo +o_/%UrVcQeqYL!Xl/L[`k2YOcl2BfXl0@U#mHs0"jQ>atp\b!hrVc]orr4VMrVlflp%SFaqtg!J +g"5*?gt102f$Vsse'HCoh:pQ4hXUO@qYU6hqu$Ems8Drrs8=2?qtg-^p%7kJo^VVMm,d^(nc.=< +S?0 +f)PdL'EA(1rVlfrrr)fihn#AT]th:m\c0)O\[oA_\[T)Z\@B)\]",>]\@&dE\Gs&<[O8Po\[oDa +]",A`]Y(qj]XbMa^:L_[\\,SaZE^gL]XP5Q[CUZ*:O@[C3WW]!o&PZF70s]mGQOBe^r=%gYUlJjQ-=%s5a4A$fp@0kjJ':q=s^Z +pAX_:o^_PAn*K/kf%8mEkj7WeaNN&^ahks;bK7iG`PTU=da6.Yg%GCCqu$Eiq>:0h.Js&@rVc`o +r;6?cp@\+Pp%.nRmH3p+nc.= +g&M*O!<;rq%KHG-rr)fjjM\+.eCr[Vg]610g]6+.g^MrmgY:Q@hVHuBh;7#fh[85rgtUT=gtgfA +h#?(.g`G;,gtCB;i8!#=hW!POg=kBDjP\hJhVd;JhVHuAg]#t@hVdJRf[ea3hVI&GhqZo;g"bE_ +g]HZ=3hAG)+hVI#Ehr*JOhqm2FgtglHiT&qUh;.&hj;Ht6gY(96gYCTAiS`SHg"YECj5JnR +i8!)ArS7\5gYCN;h;A4j!8d_1!8[Y0&)H$shqm2Fg=Y-6gY1E=hu;OChq[,;[B.@3r;6Hlrr;us +s8N)urVZits8W)!s8W&us8N#ts8W'0rVuoK^Y\PLlf[6\iV*9IpAXZ5p%7_?nalDHq"a^Yo'55i +h;[S]jkJGHki(+EhW!GGf%&='g=t6)aj8Jbd*pV"f@80qhs0b,r;HWko'#)kjQ>@]oBao5XKo1: +XKJb0[(O;t`k]3t]=l"ra4KSMr;HQfm,$4;e_f]cqu-Nmr;HWnrVlfrr:TOBi7c`31=k.8jQZ*u +in2`0gZ@krqu-Qoq=!P,hVmYao(VtXr;-6cqY'=7e^;q!eCNC2i8WhYroO1@s5dtTiSrtcnb2eV +rVc`qs8N&urr2rsq=3kBqZ$Bgp>=0Af@S3_^rFF5`5BF)_8spG`l?U$s8;clrVQEfrVc`nrVc`o +rr)clqY9dWp%J(MpA41=nF#iHg7t1>]#iObn+Q\XrVlirrpg!grr2rtrqZQrrr<#trVm!!s8W)o +s8W)trrW3"rr2rtrqcZprr2rsrr<#trW<-!rqud#rr<#ts8W)srrE&qs8Drls8N#qrrE&ts8W)t +s8W)irrE&os8N#trrE&Ns*t~> +f)PdL!<<&trr3]3rVcKO_l0rif@\j5gYCW?gY1B9rRqD-gYCT=rn7D-gA]k7gY1?5g"P38gtUT_ +gAfnKgtUT9f\PH>f[nm8i7li6g#1fDf[nj4gY1B7f[naSfFloohqci3f@o!5gYCT(N@h:pW9h;@/KhV-T4e^iC+g>(QAgXk$.gYUlEgtgf? +g"H>Y)qs!!f\,$8hr*DKgtUT=h;$iAgtgiDh;6rDhYuF4h>Z1>g=b-5cEsXjkl(JZrr;tgs8W&u +s8N#ts8W'0rVuoK^Y\PLlf[6\iV*9IpAXZ$p%7_?nalDHq"a^Yo'55ih;[S]jkJGHki(+EhW!GG +f%&='g=t6)aj8Jbd*pV"f@80qhs0b,r;HWko'#)kjQ>@]oBao5XKo1:XKJb0[(O;t`k]3t]=l"r +a4KSMr;HQfleKn4dbO$Uq>:!ep\jkLq>9sWlfI$Ve'lgugYq>]khjn8cIUt=n+HJPq=En3h;$rN +mIL#Ls8MljqYKpQi766*f@8C+hVdDSjSn9?j9Xf(hr*V`oD&4^r<<6"rVlisrVe>DoC2DMs8Dok +i6K["f#tqH`l>p5^qRFraj82M`7+5Sq>:*gqt^-fs8W&sr[%OBrVZQhq"FCRp@\%NqX*G7md^>2 +UR\Esak#SBpAFmfrr;usnc&Ugrr<#tq>UQrs8W)srr`9#s8Mios8N#t!ri6!rr<#tqZ$Tprr;us +s8W)t!rr9!r;R!#s8W)us8Mus!<2lqrVlTlrr2iq!<2uts8N#ts8MWi!<2forr2rt!<1XNJ,~> +f)PdL(B=C5rVlfrrr)fihRT/P]YD(i]",;[rjhs:s0r!;rO2d8rjVm:rjN9D\@K/[\[],Z]=PZR +]DoMU]=,/\^V.1c['mTZ\@&]Q\@;IG*43&Y['d?O\@T5XZaI9P\%&uZ\$`QL\@8lS[^Z4F!4Mm7 +s0`9B['[6K[^EKL[C-"@#e%:S\$i]P\@V[M(q6r\Za@0M\@B)[\@8lR\@T8^\@T8\\%)CIs0rBG +\@8rW\[f2Y\Gj&=\fSDk[C!?L['mQZ]tV4o]=>;W[Cs8UW`i:HF(ki1:Tp\jaLiS<,Ahqd#@gu@M_lg!]rj5/MGj6#Re +hV-rSjOVr=hV-N0eCWF/g=Xp*h;I#=g#1oMgt:64i90S&qu-EblJ^UZjPK"jm*N#:Yd1O;Ycb(6 +]>DFtZa$aV2YlfHgFaiDZY +j6laArr2cckMFnEg>V;cp\aq5qY'7/bf@oObgP8&iT97elK[TtkNV9tl0Id.pA4^`q>0mapFQ%2 +o^V2'g"PNTn+6,)bKnhl`kKC8ccjPP`P]aAe^MX[fC]( +g&M*O!<;rqrr3B*rVcNP_lC/pgY1E[h#ZNjPntLh;@/Ji8NYQh:pcDhqd/Ghu2I8 +hqm2Frnd\2s5#?chqm2GhVI)IiSrnXinrYRjQ#7ZiSWMIgtglGi8NYQhVI)JioB%ViS`SKh>Q41 +h#cHhh#?+3gtUQ:rnRP0+l(o0hVR)Dh:pW9g=tB;h;7&HiS`MKd^6-rkkk8Urr2rsrr;uurr)ct +rr<#tX8i5!!<<&ts8W,uFoD@?e\9u5n*K8tg#Dc)o]kDjg"bK@g=tEBkNhI!kiUp^g>1fOkiL[T +iToRUfA5<;e^W+#g=t?6eCEC5g=P$9j5SkHf@o0Gn+QYWqt975hW!VQjn.odZ)Ot5Z*1C7XL#OU +_S!4[Yck13ZG"ZLp\aqsqX`q&b/;?Nj6lXbg+_lj65dpkhOP-aNiGu +mIpGVrqPpCgsjj*hWOA$qu$Bhr;--Qg<@U\c-4VjhVmSZl0@Qtl0%\]E@_n+Q\XrVlirrpKdfrr<#orWE3"rr;rr"98B"s8N#ts8N#ts8N!! +s8N&trr<#prr;uurqHEorr<#rrW`E%rr;uss8Doss82fos8N!!s8N&trr2rqrW)utrr<#trr<#i +rr2rsrr;uurmLgs~> +f)PdL!<<&trr3B*rVcKO_Pa`ff@SaUg]-(3g=b67rnIG+s4dJ*rnID,!o)G^rn@A)s4AjUg"Y67 +g"bB=gt:99io8eIg"YHDh:gQ;h;-lAgY1<4g"P6:h;I/Cf@epXh#H1:gtLB5gtUQ:gYDb`!8IM, +s4\7Ag"G*5gtLH7g=k67gYL`Dhqd&Arnmb4(u+ +rn@G,rn7>*#2@qhgtUT=rnRS2rnR_6hr!;GrS%e8f\=]YXMsH&rVlfrrgj)hrW)utrr<#urcS2> +s4+jAoC)&0in<>crUfC6gtCK?h:gW=iofXnlKIBjhV-fGk31p`g>VAYf%8a7g==^&f@o!5f[SI- +i7cf9i8`hPf[nj8kO8-ArVQ9QiSNSThW=Crd'9RSZE^U;Y,ntA_SWslZ*:F6Y-PagkkG#Q@/BKX +f#beLe)9Wdq>0s`q>0p`qYBp[nE/QYd*0e`g#2#Ym,m$I`l6-Ohs'b,q>'[KiRlZ0f\bo_qYpHl +r;?Eble9S'bK\8ZgYUoNkNV9skiq9ol0.LKrrr2rrrWE3"rr;uss8W)ts8W)t!rr9"rr2rtqYpNp!<2`m!ri6"r;Hp# +rr2rsrr;rr!<;rqrVulr!rr9"rr2osr;H]rrr2rtrr2rtoD\ahrr2rt!<1FHJ,~> +f)PdL+TMH?rVlfrrr)fihn#;O]"Ybd\[],W\$roX\%/uV[C,tA"LkhI\$u@Es0a8^[^NTP\$rfT +[^ETT\@T8^]=tng]=,/\^:_%e\%02c]!o/Z\@;FFs0Vj8rO2j<\$l:D!k,SHrO3cS['mBL[C3QS +\$i`Q[^NZT\$i]PZa7$FZEpsHrj3HK\%&oX\@B,\\$rlY\[],W[^`iU\%)@Fs0r6A\@K,X[f!Tf +[^W`S[C*HQ\@8rW\[f2Z\[SuRZa@*I[CNr_]tM(i\$`TM[^W`Z[\KS2jSAZNrr<#trr!*$s8W)u +rr<#trW<-!rilG&rW)utrr<#ur^Hecs4"gCp$_;3in3;dqsE.^_7RM)bfIcBcIh"0g"+[&dE^.k +gYU]:e(Ea(iNda-V+jPetMg=Y0=kiUXNi:QsCqY^0s`q>1!cr;HWn +rVl[8q=jXYp[n4WmcX*-o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!<;rqrr3l8rVcNQ`2U/ph:gZ>h;$lCh;$iBgYLZAhYu@0hYl76hV[2IhVS7f+PYW'f[nd/ +f\5'4gu$oBh:UB;jQ#4Wi8Wn\j5AkSiSa^mrn[Y4rSRb9i8=Oj!oMqnrSS"=h;@)FhVd>Ni;MR5 +hYuCChVHuBh;$c?hVR)FhV[8MrSmk;'&hd-j5T%Uhr*JPhr*JOiS`VOro*n8!T)Z0h?MfnhVR)F +h#5t2gtgf@gt_nc*oGi2h;$`:f\,!4gYCWAhVd;GhU/a6a6EO!rVlfrrr2rt!<2rq"9/?#ri?)! +rW)utrr<#ur^Hecs4"gCp$_;3in3;dqsE.^_7RM)bfIcBcIh"0g"+[&dE^.kgYU]:e(EaleTt2`lZW`kk"ZLrV?$K +hUKlse(s6Xq"t'hrVZKYg<.FZcct,*lKdp/oCV\To+CWfp%7hGo_84[rVlisr;6Ejrr+eRrr)TY +kj%g0sbqYU3grVc`orVl[8q=jXYp[n4W +mcX*-o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +f)PdL!<<&trr3E+rVcKO_kscgf[ea0rS.G.gA0M&gATb.g=b05rnAaQgY1E:g"=s/f%8R+g"G$4 +hV6f?f@Smh;-i@h;$ich#H15gtgfAgABV.g>(H;g"QAW#27hd +g"P6:rnIJ.$/XLogt^`BhVHrbg'u`egu +f]2c(mG#k$]>2P4aMl-Df\YH;f$r3scI(7uhV6Z2f]:o8cdU:caN2NLdF-Fhd+-q-eBZCkgtU?X +d!sR$kOA9ErV>m@h;I8Ik4S/iZ`LOB[^h/=bgt\2hV6]7f@o0F +jO_`2nG2eRr;HNgq>:0is8N&s!ri/srqdc4p\4IWo_87NkO@p1s4X6=XLcO)jmVp@rVc`qrr.KK +Y5a"~> +f)PdL+ohQ@rVlfrrr)fihn#;O]"Ybe\[],W\%&uY\@K,X[C*LC[f[JmW7[3;l`[C!9GZaI-G['dK`q>1'hs8W)trAb]t1kg\@]Z' +d*BbP_na""^rb3mq#1.gqt0..d*'\biTft.rVl]kr;Zfrrr)Z`khk(Ce_B0Pp%\7PmGZ[Dc-Y)% +m.L;Vs8ModlJ^@De_]N[q"t!dr;?EZgW[jhf@8[EnFH8Gq"Xjas8*?&p@S%PqYpNprr)flp\=U` +r%\0GnE&NdmJ$DQrV,dLp\*h6n+ZSKo'l/;nFQGLo'c)?qYg[, +q=jOUqsNY:mdgD3UReKtak#SBpAFmfrr;usJcDnQJ,~> +g&M*O!<;rqrr3l8rVcNQ`2U/pgtLNgYCWAh;-i?g=tE>hr!8F +gtprGrnnFHhVHuBgY:H:gt^Z(K>hVeCm*8o]0hr*GMhVI#EhV?oBhV[5Ih;$fAh;7#EhVJ.c +!o;_hrndY0r7qG/gt_nb#N"@ph;$]9g&B\=gYL]BhVd;GhU/a6a6EO!rVlfrrr2rt!<2rq"9/?# +ri?)!rW)utrr<#urcS2>s4"gDp$V52inJjc-XbX +`P]L*]thbAl1k5U;>^"MgsF6hf&5iaq#16kr;?Tprr2iko'"u`eCE=7me6JPp[RD#eBlUrip?@9 +rr2ijo'"r^e(!4;o(i4]qu$Bgmb>t/db!"*mI9]>pA"F^q>^=1qY9dWpA"L^rVc`qr;-;k3hs;o^_M@n*ff=p$hA:oD/:]qu$?fqtg-aqYU0fr;QZoq]>V/q"a[V +p\XCAnF#lIg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3H,rVcKO_kscff@J[1g]#t/gY2S[s4RJ-rn@D,rn@;'.b`Y3g=tB8f\"g-f[na- +f[nj4g">$0fA,3:gY1E(#hn%e +gY1B7g=lJZ#2._cgtUT=rS7P1h;/(e!o;Ydrn7h7f@nKUXiBZ)rVlfrrgj)hrW)utrr<#urcS2> +s4"gDp$V52inJjc-XbX`P]L*]thbAl1k5U48\[7 +gsOoap\k'dqYU6jrVcZhn`\i^e^rUt/db!"*mI9]>pA"F^q>^V/q"a[Vp\XCAnF#lIg7t4?]#iOb +n+Q\XrVlirrdk*Ps*t~> +f)PdL'`\13rVlfrrr)fihRT/O]=kbc\@;IG"h2"N\%&pE[K*`5[KO"FZa@+<[7Ia8\@8rW\@T;` +]=PPb]XbSa\$ru\\$WNN\\#G`\$i]OZEgjE[C*HN[C!9HYd1aGZ*:L>ZE^^B['HsAYctLA[^WTJ +ZaRCC\d?![\[],X[^ENMrjD[2s0_m:$+I=KZa@-K\$i^BZj!kH\[],Vrj*0C[C3NQ[C! +gXt*.B%P\ij7)pDrquNYiRlW0gu[qrqY^mcs*'md^&JrVQcnq"agcr@IsF +n`Slmo(r+UrVQBds8DW`qu?]oqu$Ejqtp?krVZK`q#C +g&M*O!<;rqrr3`4rVcNP_lC/qgY(B:gtgfAh;$iBh#-"-h#H11h#6+/h#cHhh>Q+/g]#n,g\ohh +g"P36g"P-5h;$`1WAgY1B9 +hVeCl"lS:ph;-l`g],t=gY1E:h;@/Jh;$fAhVI#Cg\fb/gYLcDh:qq^&),gqgtpi@gYCT?h;$iD +hYGt/gtUT_g]uZnh;$c1,_XiBW'qu-Nns8N#trrE&sr<*'!s8K)!s8E#u +rr2rts8Hm6s8UWaiq2X)l/UOZq>9I*]X,&acdU:fcI:S1k2"Y@f[nU%g"bE;f@AL/hV-W5e'H=b +d*^CpeBuauh:pK+d+6n%eCia5g?%esqu$?bm,R!`k2P_)ptiis^;7Rs^qmk)b1,8*hV6]6ef*/m +gZ.f"rVl`hmbugIe_K9Ro_SRerr)fprr2j4qtKXHjl5=_m.:&NrVQ?Yl/^g`lL4ECrr+bQr;-*S +ki:[cn+ZbYqtU!aq=!+ac.1S$h +f)PdL!<<&trr3W1rVcKO_Pacff%&I-g=tE;g=cDXs4ID+rn7>*#MIkdg=k34g&B\*g&B_(f`9b) +fa6gYCT=f[n^*f@em2gY(63g"G*5 +g"P38rn@A+s4R\1g=tB9g=uJZrnS7CgY1E:g"=m/bd+=hl2CS[rr;tgs8W&us8N#ts8W(8rVuoJ +^Z+nQm-3QbjSA]HUqYgEkp[7"m +e(*78mIg>Srqu`ns8W&srVQ?Zm,m?ikjS6Crr2lln`o5qj6H.,qu6Wqrr2fgna#?"lgjoOrqlKd +qt]^9cHXnof\PZRlgF62nF?#;o()8;lg4$/o_A:\r;HKeqYp@@r;6Efn`SomnbVqOqtTgYrVQ3X +q>L6fq>:*equ$Ekqtp-Zp&=mcqtg +f)PdL('":4rVlfrrr)fihRT/O]=tkd[^EO:[K1'hs8W)tr1XjlYdsp[7>:q#(-fp[[V0i8s1`lM:)*]X,2`]XYVj +`Q6?XjQuC*md9H2mdBW?rVld)r;#jBf?r+'kOA9Dr;QYErr)fnqY^9gq=jLNnac>GqY^:-gr;66[nalMPrVcWgq>0pUgs+!hf%&@)h;RGVk3(jej5f7YhVR2Ol0e3>qu$?e +q"jperVlcqr:9(3k4JQCp&+LTr;ZWeq#10gq>:0krVQHhrVZTip%SLbrq[3'rVQEdqYBs`qtp +g&M*O!<;rqrr3N.rVcNP_lC/qgtLQ=h;-l\h$Dflh;$c?h;7#dh>c=3h>H%0gYCT`h#cBcg&B\? +g"Y<(QBhVHuAg=b03g"QG[s4[M+(YIhr*DKh>Q(4gtgc?gYL]bga(Y.g=b36gtprFh:pW8f@f!:gtpi@gYCT?gt^`B +hVHuBgY:N_h>c4QgtgcAhqd)Cg"=s1g=k<:hV[5KhqR#8[&h:3r;6Hlrr;uss8N)urVZits8W)! +s8W&us8N#ts8W(@rVuoJ^Z"bMlg!TejneuGgVptPgZ.;Pj5f=bm-Nfji8`eOh;RDRhV$N4g#;,U +i7uu;g"P07gtUQ0p_rql`n"9&,pqu6L3qY0d] +mH3s-o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +f)PdL!<<&trr3W1rVcKO_Pacgf@JX/g=tE;g=c>V!nl;]rn.P1gY:E7f\+sWgA]e)gAfq,g^Dlj +g"P05f\5*8h:hk[#2.efgtUQ9rmr%=f@\d/g"=s/f%/@&hVZu8fA,'1f@\a-f)F2+f@em4g"4g- +g>2bb!8[Y0s4n7@g=b06h;6uCgY(64g"P05rn&jWg"P05f\"g.f\5-:gtUN6f%/I+gY1E8f\"m1 +g=b05gY:H8g"=s1g=k66gYDe_s4mY1rnJ:FhVR)Cg=tB9g"4s%ZE2%0rVc`ps8JShs8E#urr2rt +s8I0>s8UWaiUZ@$lK-g_qYp!=`PB^Pj5T%XjQ5Rkm,['^j5JeLiT&qSg"4j/iTK=\gt:94g=k<: +gY1HBkj%0pUgs+!hf%&@)h;RGVk3(jej5f=`jPo4]lL+9=qYU3fqYU3hrVZTlqXNb.jR`6=o(r"M +qu-B`pA=a`qYU9lrVQHhrVZTip%SLbrqZcprVQEdrqcWks82utqu$?jr#5G+q"jC?naH&Kg7t4? +]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL'EA(2rVlfrrr)fihn#AS]"PY`[JmQ4[K!W3[0!_C[JmN5[JmN8[C!9Hrj<'>[C3QS\\#Je +^AbeG]DT5g^;7Oo[^WcX]=YYc\[f5\]=YVb]=PP^\$icV\@]c"]st_k^:Lke])K2=[N`2j]"5G] +[^&`5BC&]"#2V\Gj&=[fO"Mrk&BG]",A`rk/EH]"5HO[fX"G[/@<3 +[/@?2[/RE3[3;ob[^WWMZ*CXB[(*`[]Y(ke\$`TM[C*HU[A0G.jSAZNrr<#trr!*$s8W)urr<#t +rW<-!rilG&rW)utrr<#urYPP5s4+jAna,Z0k1o%ns7PI*d)O#GcI2[@-.1#\aN;ZJ`5Tg>aMY^' +]"5o1dE9GE_8F1,^qde&`66Z`f@%tDbrsD0n+HGQr;6BhqXWk1iT97]jmqcc[&^RE[BR!L_TL9\ +kjnQIqtp'mdr;QQmqu?TorYb6 +q"agSkOJ$3s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +g&M*O!rr9!rquirrr3N.rVcNP`2gAsgY(?9gt^Z`h#H.,g]lNggtUN9h#6(6h;$fBh;$``gB66c +h;/(e!o;Varn&(@g>ClHgXt04gtgc?gY1B7gYLZ>gYCQUk2bLWg=b-2gtgc@gY1B;hVR)Ern@G.rS@h8g=k66gtgcA +r7q>,rS7D,rn@D-,hq,0gYCT?h;$c>g"4j.g"G*7h;7#GhV-f4[B7F4r;6Hlrr;uss8N)urVZit +s8W)!s8W&us8N#ts8W'7rVuoJ^>SPJmHiujjSAiKjOhi!`6$X`PKC._nj.(_84(5eCiI%cMl']cee-`p\asdqu$<]ki:X`kMbOnm*W2@[(3TKZb+)sdG*mU +q>C-er;?Edq#(-iqY9dOhpBEef&cGtr;HWorVlfpqtg6is8DlmrVZ]ls8)uqq"jmcr;HUEr;-3_ +q"t!gs8N#rr;Q`qr;6BhrVGs8ai2EJbgP8'ioT:akN1dbj5oD%is4Z/mIU,NrVlfp+o_H=qu$Bf +o]kQ$o(_kMq=*kNrV?-]rVHYb6q"agS +kOJ$3s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +f)PdL!<<&trr3]3rVcKO_l0ogf%&F+g"P37g=b-2r7M/(g"HAW!87>)"khP\g=b0YfEKs^g>(K> +rnIP/g&9PQg"t]Eg=Os/g=tB9g=b03g"Y97g=t?7f@SU*f\#!BkMP"LjP\hJgtUN]fEp0^g=tE; +g"4g,rnA1Af\,!7hr3GIgYC]GjlGI[gY(61fDaM)gA]b2gtgfAgY1?6g]$"6gtLH6f\,!4qUto$ +rRq2&rn%2'"5);]g]#q,g]$".gB?aMY^']"5o1dE9GE_8F1,^qde&`66Z` +f@%tDbsp%9n+HGQr;6BhqXWk1iT97]jmqcc[&^RE[BR!L_TL9\kjnQIqtp2pnFuMGq=*nPrqc?` +qtTm\qu-NlqYC$cr;?Qjs82ios8<*#rVQNjr;-HjrVZ]o)ufd1q>9RBnaH&Kg7t4?]#iObn+Q\X +rVlirrdk*Ps*t~> +f)PdL('":4rVlfrrr)fii4GPU\\,G\['R+;[/[K1Zi[S@[/RB;['R*G['R'DZi.64[C3RD\08Gr +]=bef\[f;_\\Q(q\$`]V]Xtbc]",A]]"Ynk]Y1tirjWKL]Xkl&cG[E4ai2$.]tCuV\cTFP\G`rd +\$NHQ]t1_^\%08k`PTC'^;7e0aMu*1]"#2W]=bbd\$icW]t_=r]`,MD]Y"-T%)'9a\[SrP[C3NO +[Bob;s0_d3+g\Pa[^39DYd1UA\%92a]=PM\['R*G['dNQU7o9]q>1'hs8W)tr +g&M*O!<;rqrr3`4rVcNQ`N-Jsg=Y-5gY:H:gYCQ)s4mP,!8@A* +*o,T+g=k31f%8R,g"Y<^:_)!f@A-e`5K[8_Yq8R_8jsT +f@/$ga2H$LlLk#QrVHBirUf@6i8j"UipZ-XZDt4>[&pO?^;nUTkOSHIrr<#trVQKjs8;Zao'>)T +_oC0cnG)nZrr)clrr)cmrVc`or;HWps8Mrqqu?Nmr;Z^)rr)fnqYBs^q>:$br;HWo8cSefqYL*e +rVGs9bJq`LaOohGmd]iur;?Ki!;ucn)ufd0q"j@>naH&Kg7t4?]#iObn+Q\X +rVlirrdk*Ps*t~> +f)PdL!<;rq$N9o$pZ'2j[*R:Prn%>+g=b0Mf_sJ)f[naRf`0P'f_sM&g&g$_f_sD*rnIJ, +"P__egY2Y[%bTC`fZ^Y&`Td@"rr2rsScA`h!<<&ts8W,u2Z<[Ue\C#4mI0H)gYql*pZ^_nbJM3? +dFQt$e',qUb0%oK`Q$$Ab/V93]Xu8:e]l1R`5]g6rP1q>a3iMje'?.W`5gHop%n[dqYL3io]bAn +jQ54Wn*/0(Wj9+@Xfo1Ia3`T(o(i7`s8W)sqtp?lr:opTleTe'`m`utqYC$cqYL0ir#G\7rqlQgr;?Nimb5k(bKS&[lg=-1nac8@nF,lG +nc/%\nF?/Hr;Q]qr<)urrr2oq-MmB!ioTV&q"t!]o`"mfpA"R]q"t'irVZTjqY^BnrVuilqu-No +rr*'!rr)cmr;-Klr;@T6r:g!_m,mj,o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +f)PdL('":4rVlfrrr)fii4GPU\\,G\['R+<[/I?0Zi[S@[/RB8['I!E['Tb:%C3=IZa@-L\$i`T +]"5NQ\cBAA]`5bP]!SfP]"GVbrjj,\[^Wl]]tV7p]Xtbd]=bVfdaZ:N_p$0:^:h4m]DfHa]"#2W +\@T8\\\>km]!f&Y_8sd>_nNk$`Q-!9^Uq%d\\,\k]=>8V[^j)e^qRLp]t:hb\@T>e^V@In\@&]O +[^NZRZa7$FZEppG[C!@Yd_9V +[(!Z_`m,D4rV6!Tmc)gDdG!aOp\XsirVQKirVld"rVlfprr)iqs8Drrs8<-# +s8MrorVl`or;ccpqCqgEr;HWpr;-9cqu$<\j4Dc4f@/jWqtpBlrVlcnr;HQhq"aa_rr2lprr)]g +q>:-irr;pEqXj%5lh:;Ws8D]cq=a7CoD/.Uqu$Bhr;QZhpAFpfqt^$_r;HWnrr*6(rVZTjqu$?g +r;QZorYk_/q"j@>naH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O!<;rqrr3`4rVcNQ`N-Jsg=Y-5gY:H:gYCQZ75h:gQ9rS%D- +gY;_]"P__egY;__rn7_6gtUW@gtUQ7f%9oR'A;-qh;-rDf\=]YXiBW'qu-Nns8N#trrE&sr<*'! +s8K)!s8E#urr2rts8F&;s8UWahsp+&mH3-[o_e@Fhr!DQio0(kp@7G0jo"74jlbjjlKREjiSWnl +oBYW'kiq6hi8`mH`uuhUpWJo(;VNrVlfpr:TC8i8`nSjn/#l\ZiQU]!SrY^rF^UkOJBH +s8W)ts8<`4s8D`ao'YMgcdCJ/n+Z_Ys8DchrVc`p!<)lq$N9u'rVZTlrVlcorqucm!rVrnrquip +rq\)@r;?NmrquWhq>:*dn`/6Mf[nU6q>:'grr)ipr;?NmrquWfp\OdbrVlgNrVZWnrVcZkqt]jJ +jQQ.0rVlcipA+FMm.0uJqYgHmr;HTlp@eIbrVZNfqYgEnrVld&s8Dlnqtp +f)PdL!<;rq&cMY+pZ'2j[*[@Qf\+p1g=b0Kf`0V)f`'J$f`0P/g"=s/f@\d0gA]_)g&B_*hZqi` +daZq'g"65U51e<7g"P39h:pZ:f\"m2e_T`cjk\q^k25"MgtUT=gY:E5e^`:)g"4j2hV6]4eC`[@ +kiLdYgu%/RjPeqJrms!\h;-f:eC<%$gtpoDgY1E8f@JO*g>(N?gt^Z:f@\d0f\"g.f[n^+f\+s1 +f\+p0f%8X1rn@>*!nuD`rnIP/gA]b8f[nX)bd+=hl2CS[rr;tgs8W&us8N#ts8W'=rVuoJ^YeSK +n*T8kht6j=khk:Vj5T%\o(MV=jlQF&8`f.!kN_q>L2G4gun5'rVuosrr;pJrr;rloCD>2f[8.%kOSBD +rr2fkq>:0jr;Q]nrVl`mrquZiqYU0fqtg6irVcX!qu$EkrquTerVA2Er;?Eeq>1!dqXNUte(E:$ +jn\fNrr2lqrVZTlrr)ckqYBs`qu$EjqtpL?mq=sj]nEf`Aq"Xddr;-9e +qXsU_s8N#pqYU9ks8Drqrr;rpr;6Bhqtp +f)PdL-NF)Er;HTorr)fihn#>Q]"PY`[C!;\1^:h1l]"Gbk^V74b +ZaRHY]thS*_S<[m]uJ=Dc,RQ5^r+..^V.4h]=l"t_7R1`['mQZrkKAc^:h+f[^N`]_Sa4)]=52T +[C1'hs8W)trV#Hf[J9srmOTk +f@ej/gYUZ;f[ea4h:^H6gY:?.d*L%cdF@%3hV?o@dE9Y_hra>"qu-Nnr:fU;hVmPSlhpP6^q%A& +`Pfj>aN;c_k4&3Eqtp6equ6F+r;HKcp\"%Akih9unb2hWrVQEerVZZor<)upr;HWos8W#r"o\As +rVlfqr@.aEqYBsar;?Nlrr2ikp\F[^p[IM6n*fW3p\Oddrr)ipr;6Eiqtp?krVnkVrVZHap\F^b +rVulrqt'+7lhCDTq"F.Akh4/)hWsFlnFH):o(;J9io]Xsm-aTAq"ajerr)iqqu-Qm+oVE>rVlfp +qtU!`m,mj,o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr4)>rVcNQ`2^8qgY(?9gt^Z>gtgc@h;$f>g>(E9gtgfcg]H)YaGi@T6dE^4mg=k35gY19.dact'gYCT=g=b*0g!\RCo]4]_lK-jWg=k66gtgiA +f@/-tg"Y9;iSrbLf%&L6l0RWogtCK@iSWGDf%/I,gu.)De^N!sfA#0!3gY1E8g=k<8gY;Y]rnIG+$/=1ggtUQ9f%&@Nf+ZfjgYCW@gtCK/Z`V73r;6Hlrr;uss8N)u +rVZits8W)!s8W&us8N#ts8W'>rVuoJ^Yn\Nmd&ufht$U4jP/>8d*gFtiSiVFe'c\DdnS?Dg"G!3 +hV-Z8f%Jp9g">!4gXjm#cd1"deDB0@gt^Z3b0/>mk3_m>rVlfop[-qriT/t`r:o*`\\lG+`5p'A +aj8`(nG3"Zqtg3erq[?,rVH6^p$h;2kiqL)p\OdaqY0d_r;Q`p$N0etqu$Bjrr<#trVQZmrqZWm +rV\;HrVH?cqu$Ekr;HTlq=j^]qY0LFlL43.n+Z\Urr2lqrVZQirVlirrVZWmr;Hcpq>:0irqe5A +o]kQ%o(r.Up[7A3fuq[tm-O03oC22 +f)PdL!<<&trr3W1rVcHN_l'ief%&@(g"P37f[o`Jr7Lr!rRh/%s4%>*f\,$7g>)Ya=Q/,hd*C+m +g=k66gY:B1e(31*gtgfAgY1<4g!\UEo]+W^l/^[Tg=k66gtgiAf@&'rf\>0:iSreMf@J[8lKmcq +h:g]DiS`MEf@S[/hVd8Ee^N!sfA$;]#i4:jf[\L$fA-A`"lA(hf@JROf`0P*f[nd.rn.;(rn.D* +f\,!Xg%sD!1f@JL)bH\.fl2CS[rr;tgs8W&us8N#ts8W'>rVuoJ^Yn\Nmd&ufht$U4 +jP/>8d*gFtiSiVFe'c\DdnS?Dg"G!3hV-Z8f%Jp9g">!4gXjm#cd1"deDB0@gt^Z3b0/>mk3_m> +rVlfop[-qriT/t`r:o*`\\lG+`5p'Aaj8`(nG3"Zqtg3erq[?,rVH6^p[dh=lKn$4p\Faaq"FIY +r;?Qk!VuNhq@!2urVZNgqu-Hiqu$Bj#labspA"I[qYC-e)#0s^nE]B.n*KN;qYU9krVlcn +qu$Hls8;oorVQosq=sd^r;Zfrr[@^ +f)PdL('":4rVlfrrr)fihRT/O]"GP][C!:>ZidYA['TV9rj)U3rNcR4Za9Y:!jf8@r3^dZ]=l%u +_oBmEbfe5N^:(J``5]js5^qIM'bKS8S`4igo]YVP,aihiI`PK7!]"c8/d*BbL]=>8VrjMs; +[Boh=!42[3"LYVD[C#q@s01'hs8W)tr_f$n))U9]Xku&cHF5F_S`P]R1_ns=3aiD?7]=PYk_oC!JbKA)T`k/^nbh_X\qtp:'frr)fpr]0oPp\=R]rVc`o +rql?QjluL +g&M*O!rr9!rqlcqrr3B*rVcNP_lC/og=Y-VgB66cgYDVZs4e.>h;-lBh;$fAgtUT=gY1?[f72K. +gu%,MjQYsol0@BceC3+-ioB(\kiL[Qe_/a6i8WhYj5T%Rf[/=Ap#Oc^l/^UQg>(K@j65^dgt's+ +hW*_^mHs)pgY1NJnF>u3iniVQi8EGEf@o0Ekiq9hg=Fm/gu%/Qk2kX^h:U<0g>_>^lK@0agY(65 +gY:H9gY2Y^qqM/)rnIJ,+5>T)g=b-1f%&@(f\,$7h;$lCg>1,^XN'N&qu-Nns8N#trrE&sr<*'! +s8K)!s8E#urr2rts8I9As8UWai:?:%l/ULWp%e(6e&f86_TL0I`l#[.]XYJ^]=l&!`PTU8a2Z*9 +_Sa:._oKm>`4rpq]YVM*cHj\Vc-F>@\%U#Am.gJTr;Q]im,Hp^jl#G%pt`d!a3)TLdaQOdd+d^Q +rVuior;HTlqtpL7gr;HWmqtp6dqu$Bjr;?Hgqu-Nlqtp:0kr:T[Sq"jj_qYBp\pA"O_r;HTlr;HTos8Mokqu6Qnr%@g; +lK%*tqXa7IkMY",WijJ%iT'+`io0"_j4DQ#f%esPS-q"jC@ +naH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<;rq&cMY+pZ',gZHh"Me^rI,g=b0Mf_jG&fDsV&f`0S&epZ3)gu%,MjQYspl0@BceC3+. +j5f:`l/pmUf%Ss:iT'%]jQ,=Wg!SOFp#Of`l/^[SgYCTAjQPjgh:L0.hW3han*]DugtUcOnal88 +j58hUiSiYJf\>BIl0@HkgXt04h;RGVkiUschV$N4gZ.Pbm-*Hbg"4j.f\+s0rn.8(!8%5&!87>' +$/+%dg"G$2g"Y9[gA]h>g=b-3f@SU,bd+:gl2CS[rr;tgs8W&us8N#ts8W(CrVuoJ^Yn\Mm-3Qa +iq<-9hp]][]#)V8bJqH:^V%(d\\#Pk`5TU4aN)<>_ns=/_SaF9a2Ga)]"Gks`m2oRb0A5O]=5Jt +h,,nbrLdr;?Nlr;6Bhr;6?gr;QX&r;$*^qYU0d +q"FL[rqm?)r;?Hfq=sd^qu$0p^p\4IZrVQWms8<6$qtg-aqY^?lrr"8Bp$:]%oDA1NoB>2f^oO]]hr*MVk2P:ZkMb": +cIgt-jRr +f)PdL('":4rVlfrrr)fihRT/O]"GP][C!:>ZiIH,Zi[S@[/@66['R*EZa9Yee@W3+`lH0Gd*9b\ +g>q`$s8Mupr;Q]nrr2fkr;HQjr;HWmqtp?krqufn!;uip#5nGur;?Nlrqm-#q"FIXqu$Ekr;?Qm +s8*'!qu$Ejqu$EirWN2rqY^ +g&M*O!rr9!rqlcqrr3B*rVcNP_lC/og=Y-SgAp%&g]-+0g]QBfgthq`s4S^Nf@S^1h;I>Vl0Im3 +o^_\Ej4rPRm-sN7p%\4Ehqd;Qk3ML7nR2"UgX+^Jp?(2jlfR'XhrEnbnbDhFjl"tPkOJ-8qt]aE +iSikbpA"@Qm-!Tqjlb^\h;mtrp\".HkMY7Wk3D@'o^_J_eCE+!e_B$8bJ_EJiU?XBr;-Bjp$:\tjlP1Qna4i<\&$))aNi/WbL"u(n,<:crVZTm +rqucpqtg6hr;6EjrquZjrVlfo!rMilrr!Q/rVcZlrVcZlqtg*]p%\F\r;HQjrr)lo#Q4JsrVZQj +rVZWurVZNgr;HWm%/p2(r;6 +f)PdL!<<#s!<)op$2sVY_Pa]be^W.Kf)s[Yf[o`Is4RG)"52>Zg&0M&fDjDEf\5-!2q:ZM:g=b-3f@JL*c*FChl2CS[rr;tgs8W&us8N#ts8W'LrVuoJ^Yn\L +lK7'Zjo#,JgrR4HcJ.@8e]uC_ccj;B`5p-Idacmrdb!+"d/M?gd*pV"f[eHmb0A>_eCE+!e_B$8 +bJ_EJiU?XBr;-Bjp$:\tjlP1Qna4i<\&$))aNi/WbL"u(n,<:crVZTmrqucpqtg6hr;6Hlrr)`k +rVlfo#lFJqr;HTlrVcWk$iBeoo_/+Wqu-Kkr;QZpq\&i(r;HQjr;?Nmr;?Nmr;-9frVl^'rVlcn +qt^*bqu$BjrVl`pqZHfrrVcZn"o\H"rVZTjr?V:4lK%+!rV6'Xm,HBtS"7.Ci8j%]hr!MXi6oW_ +b0SAfme$5PqZd#us8W)srVlfqrVl`or>PS-q"j@?naH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3W1rVcKJ\t,Y-]=58VZa-pF[C#\9"gk\F['I"8Zi[S@[/RK5[f<[Z[^s/f_oBjA +bK@uOe^hs\_Tgcig=4X)g=4EiaNDoagt:-(eDK*(\\d.Wahc$Fd)WuBd+$Rqf%/?ubfIiMf%/3o +d*gChaiMi_hqZc.bK8/_d)EoJf$r7$f%A^,bf7cPf\4s,dEp:gccXJ]f[nX"c-=8@[C-"B0XnHs +[C!6FZa@*I[C!?M\$iZMZEg^>ZEgmJ]=knh\[SuQZEga@[(Ni?T=s=]qYgEns8N#r#QFc'rr;ut +s8N!!s8N#%s8W&us8N#ts8W'8rVuoI^YnYKlfR-Xj88lJhp'3eg>qJYh>Z&$g"=]udb*=3j6,R] +gYh,Lg=Y'0f\>:lKgXas0hrjP-s8DlloBG5ljQ+tMnEeT6[D0]"`5p'A +aN`8kiT:""#3b42m.9uIr;/;JrVlcnqtpo]bH# +oDA=XqXisqWfW@JdbsBYmH<[!nE\u_eC`L+hsU+.rqZQjrVZ]o"98B"rVl`pr>Yb6pA"LOk4.p2 +s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +g&M*O!rr9!rquirrr39'rVcNO`2gAqrn78(s4d_1gt^Z[h#H(6gtgf@h;-i?h>Z10g]#q,eHaa] +h;I;Rkii$.F6N/bk1neUo(VbDmdfu;ki:X_lLaf@md'<:p>aWVp%IJ$ip>shgYh>bn*]`8md0,r +ip$"&lKIHslf[9ckO\K@mcWWil0dflg?.kjmI9T9p$h,%jQuI0na>`.lg*cqk3hg1mcs*)kM=eA +f@em2g\fh.gY1E]h#H+/g&B_4g=tE:gY1?4f%0iP'A2$ngtUT;fA"TVXN'N&qu-Nns8N#trrE&s +r<*'!s8K)!s8E#urr2rts8El6s8UT`i:61"k2=nPqu?9Fc,\,`jQP[\rn'ruf[8$nf\>Ym*`GP^W"11aN;NE +c.1Y/jo"6FkiV!noCr(Yq_S0Krr)clqu$EiqYL*frr2imqu-Nos8Muqr:p$[qu6Qos8MusrquTe +q=sd_qtg3frVc`q#laf#r;Q]or;?Qm!rMijr;?curr)lsrr*$"rr2rqrr +f)PdL!<<&t!WDrqq[i`$ikq_#cd^Fpf@JO)f\+pCg&K\)g&9S'e-FUZgu%,Pkii$/BBf$[khY+Z +oD%tHn+62?l/^jclh1#Dn*KN>pZ0iZp@m\(ipH'kh;R\hnF,r*jm;U3o'br2m-NuukO8$5n,DVVkM4\>f%9oRs4RD(s47S0g"G$1 +g">!3gA]e*gAfn-g&Bb)fb)lgf[eR$f?:G"`Td@"rr2rsScA`h!<<&ts8W,u)#aL7eA'r3m-Efl +f]2l/oA@g5cJ%@CjPBgf:"e1HcdLJ#hrEn^hV6uKhqH`8f@\j8i8EMKgu%)LhqZl9f@o*AiS2r7 +g>D)`r;Z`nqX`t1i8itOhXKm[\[B2k`Pfj>aN2WVh;RJnjp(&3jm;U5q>C*ir;QZoq^)1=qtg0d +rVlfoqtp?ks8W)trVZE`p\b'js8W)ss8Mokq"a^\rVHWnrVc^$s8Dlnrr2lor;QWrqtg0er<30" +rVuosrW<-!rqud#rr<#trVc`or$D@=oBG?!o)&4Wq=EanWfW@IdbsBYmH<["na#,aeC`L+hX9t, +rqZQjrVZ]o"98B"rVl`pr>Yb6pA"LOk4.p2s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +f)PdL('":4rVlfrrr)fihn#>R]">G[[C!:>ZiIH,Zj!eC['R'Dr3K&%Za7$I[C3KKYd:gN]t_G( +`k]3u_pR)^]t)8=gsjB]`Qm#bbe_0ChV?Dp^W+pad_3HMg;^eDe'lIW`Rf/in!#\r:/^pcd0tdeCE'se'l^jd*^:mg>:lP +j4i2>hqZ],ci20Zd*^:hdb*C6hq?K*cd1"eeCWC)eC2goi:-[DrV?!Gh;$uMguJ+uf"AK0aiMHA +a2Z0CcdL.[_o0O6a2c-1$frqmB,r:ojQp%@kDo(MtZrVQEdr;Q[1rVZQfo^_PEp\=Xb +rVc`oqYBmYnaZVL#kR``q#(*hrr)fp!<<&t#6"T$rVZWmq>UEos8N#ts8N&u"o\K#rVZTkr@e0I +o]bK%oD/.Uqt&^YPB_MJ_Udl@o^;&6o^V80k3D6ljmV^/o_%kLoCM\Nqu-Hl"98B"rVld7qtKp` +mH=$.o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr3B*rVcNP`2^;qg">!TgAot$g],togYCT=gt^Z=gtUT=gtUT:eC)n"g>1WD +jQ,+JfAGuel.=DEo_._3gu%>anE/K]lM1):hV$iXqWuhgo^q(mhX0]1jPA_[oBkPnhrX.di8h:gW;gY2Y]s4RJ+rn7D+gA]hGg=Y!,e^rI+f@\d1g=b-/fZUP%`p*EurVlfrrr2rt!<2rq +"9/?#ri?)!rW)utrr<#ur\"0Ls4+mBna>f/in!#\r:/^pcd0tdeCE'se'l^jd*^:mg>:lPj4i2> +hqZ],ci20Zd*^:hdb*C6hq?K*cd1"eeCWC)eC2goi:-[DrV?!Gh;$uMguJ+uf"AK0aiMHAa2Z0C +cdL.[_o0O6a2c-1$frqmB,r:ojQp%@kDo(MtZrVQEdr;Q[1rVZQfo^_PEp\F^crVc`o +qYBmYnaZVL#kR``q#(*hrr)fp!<<&t#6"T$rVZWmq>UBn"9/?#rr)j#rVulqr;?Qms84PKqXj%6 +l1=cGq"s[?]p!\hT>K1AoCVJ:n+?/9k2tsoj5ob!nauMHp%.eKq"t$frWE3"rr)iq)Z0:)qsES: +n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +f)PdL!<<#s!<)op&H2@`_l'iee'cdtf%8R-f[oHAs4@;(2;$U6e'Z[sg"bHBjQ#(Kf\l2ilIaVI +p%Rq7h;IPen`S]alhU;>hqI&\qsE%kp%@:qhsTo/jkeq_o^:bri9'@hiS`h]l/0tAk48$&g"u)h +n`/EYf^&@uf%BNgk2,"RlLa]3hVmhqp?LJfhrO+jk32F2mbQILk2k=JeCE.%f@\g3g&BP3f[nd. +f@\a-f\+s1f\-5W!87;(!SH$'edg3XdF?:BXMsH&rVlfrrgj)hrW)utrr<#ur\"0Ls4+mBna>f/ +in!#\r:/^pcd0tdeCE'se'l^jd*^:mg>:lPj4i2>hqZ],ci20Zd*^:hdb*C6hq?K*cd1"eeCWC) +eC2goi:-[DrV?!Gh;$uMguJ+uf"AK0aiMHAa2Z0CcdL.[_o0O6a2c-1$frqmB,r:ojQ +p%@kDo(MtZrVQEdr;Q[/rVZQfo^_PEp\=XbrVc`oqYBmYrUC3boC_kQr;HTnrVc]qs8N!%rVulq +r;HTirr2p!rr<#rrWW9"rr)cmr;A;Jqt018l1=`Fq"s[?]p!\hT>K1AoCVJ:n+?/9k2tsoj5ob! +nauMHp%.eKq"t$frWE3"rr)iq)Z0:)qsES:n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +f)PdL('":4rVlfrrr)fihn#>R]">G[[C!:>ZiIH,Zj!eC['R'Dr3HI1Za9Y=I^ZYjZ*UpM]"Gr' +c,muGce[O/]sl2?gsu\\%gJOeA/rUgW$kCe()XZ`R]XP;V1:4Ht +[C3QPZ*:O?Za@-I['d?M['R'CZ*L[A[(!WZ]Xt\^Z`pX;Y-5.@ZD!r)jSAZNrr<#trr!*$s8W)u +rr<#trW<-!rilG&rW)utrr<#ur\+6Ms4+mBna,T+j4N;_q0sbqu$ +g&M*O!rr9!rquirrr3B*rVcNP`2^;qg"4pSgAot$g],u4gYCT=gt^Z=gtUT=gY1B7e^N($f\5*= +kj%9gj6QL;n(H1Op\*k+f@f6Tp$1;blM:&0e^<(=qX3(mp%@4mhh:gW_gA]k,g'-0`g=t?8rnACGf[eU'f@\a-f\"p3f[n[*bH\1hl2:GWrr2rsrr;uurr)ct +rr<#tX8i5!!<<&ts8W,u0E(qNe\C&4m-Eorf\lGum+fe%_8!Xs_Sj=-_na%'_o'L8bKnS_bK8)\ +e&B);]_o>J]=ktubg";L`5]jsa>D#[`5'.'`R<`6p\k$\k2+nQk25:pn^b@``QZNGaN2EFc-=GN +]XG2S[^`lU\&[G#r;-?jrVud?qt]gIjlY[aiT0D"r;HNgqYL*dr;-0ZmH*6]h;RM`o_SL`rqcfo +oB>97is=c1m-jT@qYU3hrr2rtrr<#mrqucurr<#trVm'"s8Mupr;QZpr%J$Fo]bK%o_\I[pZ]no +EEZk,Wl3ZXmHEZol0.3eiT94]j6Q(!n*fW/lg4-6qu-Hl+ohQ@rVc`pqtKp`mH=$.o)IF=SZKEE +f&cAor;HTns8N"Ks/uBP~> +f)PdL!<<#s!<)op$2sVY_l'iee'ceGf)OD(f[oKBrmuYQf[nd-eC)juf@es0sbqu$'dLbb&lYA;7,&g["7jjlYgkjPf(Zk2PFem-X91m-F!( +nFc\Wr;Il>rr2lprr2fhq>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3K-rVcKJ\t,V,]!f#RZa0S:!4)@*%'m4GZE^[?ZEpjBZ*O>8I^QVk[C3WU\%9E! +d*U+cf&>W;]su8?fZCh?^;naXdDEWBh:99K[(OiBdDf.f$;7UdFZjc\$s?*gsa!KcJRR/dF6F`^q."`s0XPh +[C*HMZE^[?ZEppEZa@-IZa-j?Yd(I=ZaRHW]=PP^['?j=YHY:BZ_=&*jSAZNrr<#trr!*$s8W)u +rr<#trW<-!rilG&rW)utrr<#urY5>2s4+mAnET9%jkSqkq!$DI]Z/:sbnn[McdL1ac-FY_ccs_\ +ccshiiSDc!b/aM$s277Da2lNTeBlF`d*^4edEp+Z`l?*De_o`aqu$'LhqdDYi8s\$e@W3+aN)07 +`5TpEbJq?-Z)k%0ZF$pE`81%_r;HWo/,];@p[@1ug=b'.gZJ)(rquZkq=sgaqY0ODgsj]rdb3[L +q#('erVlcdir7[?g>(TGkjS0=qY^ +g&M*O!rr9!rquirrr3B*rVcNP`2g>pf[ndQg&Th"gAfh2g>(K;gtUW>rS&7Eg"G*2f%A^.f@f'G +mHj-)o)8RWg!o0Wo&K`$@,^PGleL.Up?pS[cIV@Ule:7ipZ'l^mI0/li9g4(g=+L%h;7#GiT9Fo +ki_I5qs2kajn%rre^rI?rUAY"o_[h*e^E=AnEAcglgX;udF$k=p?gM^kkY)BlL43-inXLc#2%Yb +h;-i?rn/(@gY1?6f\+s3g"G*6g=b*.eC<($f@^)U&),^heCVpMXN'N&qu-Nns8N#trrE&sr<*'! +s8K)!s8E#urr2rts8E`2s8UWahsfpqkiLU\p\=")_S!n7rll8)c-Ohbbg"GZdEg(^cd0k_g#:c3 +a3)I%`rEtD`lH0FeC;jhbg=bad*^4aai;?AbgkY:oDAIWkhk4Xl/:[sn'ntY_8s[6_SjF:c-+,B +\?W-:Y-PF?[)Celr;?Nmr[[pDqY0I>gtLH4f%]?Xqu6Njr;$-ar;-0XkhO\7cI1D+n+chYqu-Nm +o&BZ'$ejCnj65t(q"jpes7cNfs8W'&s8N#trr2rqrrUbiS`eXiSin^lKmp'kih=#p&"ags8Ms?rr<#srr)ioq"XaQkOJ$3s4X6=XLcO) +jmVp@rVc`qrr.KKY5a"~> +f)PdL!<<#s!<)op&H2Ca_l0oee'casf%8U.f@K(g"P*1fDa>,f@\^, +f[e[,g&BY&f`KgZg&B_>g=Y!,e^MsneB+tr`Td@"rr2rsScA`h!<<&ts8W,u'`J(3e\C#2lKRNo +guS5)l.Fak2YFYjQ,:Yjll!rmHWp! +lL4ECrr<#tr?;1?s8DrqrquQdqs +f)PdL!<<&trr3W1rVcKJ\t,V+]!f#QZE^^AZa050q6E]!ZEpmCZa@0L\@T;^[CO)oc-4;MbhCq# +]t2>;e&8l3]Yi(Id_roCg!RF?[CX`g"ki_r;Z`os82Tgrr2ihmGcjNe_/jDo(r@bs8sAl +Mh@"][*7LqlfR +g&M*O!rr9!rquirrr3B*rVcNP`2g>of[ndSg&Kb+g%3qtgAot+gBQBegtLH6f`'S(gj[o,f\YcU +kiLjgpA4./f&Z>fhU^?1hf\"p4 +g]#t0g=Y*XgA]e*g'HBag=t<6f[n^Rec426f@\g2g"P-0fZ^Y'`p*EurVlfrrr2rt!<2rq"9/?# +ri?)!rW)utrr<#urdFbFs4"d@n*0*#jko7sqs<"T`S0VBkiCdakj.KoioK:dj4i5g"ki_r;Z`os82Tgrr2ihmGcjNe_/jDo(r@bs8sAl +Mh@"][*7LqlfR +f)PdL!<<#s!<)op$N9b[_l0lceC2q!rR_/&f'Lugf)F8lf%&@'f@ep5f@AL0k3M9ojQZF9mFp1R +na>;dg"5*Go'P>gjn.ojdEpG1o]Orfp%dk-i9g!phW"&!le9k;fAGWLjQGgplpg4%mJ-MCg">N^ +o&/*Lf]r;$hqmnuk1eG8hX0k!jQ5^pkhO\:hXC7,f?rULp?q;:o'YVrgY(30f%8R,g"=s/f%/I) +f)F8&f\+pVfDjM&g&0P;g"4j,f$r0re]P.u`Td@"rr2rsScA`h!<<&ts8W,uIJs3Ge@sl0l07En +hrjh4m+K@sg?RtejQ#:alfmKijQGaegXt-2g>M;gmbZXRhVdDPhqm5JiTKOjiS<5Gi83>KhVI)K +io/kXm.0lHq=X%0hrVc`orVZR9q=3Y* +gtUN8h<4D-s8DorqtU'frquKWinDu6g#)#aqYpKor=8i"jko%ShV[;RlL=NDrVlfrrs/Q$r;HTo +rVcNjs8N)up\tHss8W)srVlco1B.1ClK%$rrVH<_jiF9VK8lM1bi.pSk2kgllKIBlkNCm`iT0:k +nF5i3mdp5OrVuosrr)co)uom2q>0LAnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3K-rVcKJ\t,V+]!f#RZa0S:!4)@*!j]/=r3C7GZEga@Za6sD['dEe(`6a\@9,kbfe5Wd`fYG +_p$`ab.G:0g"=BX[^jW:dD3NFg<%(=\&6YEdE9TNcdBqP\[TB"f?qCG`m;oL_ogHU`P&gj[^3SMGlKI?cjn\lHimlQ7hq6Q4f[\R*g=Od&gu$i5c-4M^ +f]22Se'?IpgYLZ:e'c[ng>Ll@eCN=,f$i'rf])2`mI'Q>qu$EjpZgViio].[p?pAC6jr;$!Pl/q0pnb)YR +rVuior;QN\mI'<)l0@[*p%nUbrr<#rrW)uorr;p!rr<#tp\tHss8W)srVlco1&h(BlK%'tqXsOW +o&.^,^;@t>iU61"j5K+^jl>=WiT&nTiTBOtp%@tKp%\F_rVuosrW)oprYtn9p\F[QkOJ$3s4X6= +XLcO)jmVp@rVc`qrr.KKY5a"~> +g&M*O!rr9!rquirrr3B*rVcNP`2g>of[e^Pg&Th"gAfh0g=b05g=uV\s4_8Ag"=s1f\,'9f[ea8 +l0RNde(O3dmG6IVmd8oaf[npBo'G8fk4J#mda?V3o]4`anb25&hsBakh;Ibqm+^%=fAbuUkNhR" +hq[)Oo(1tofB;hujO_f/kP"8tg@"Xpg!eC+mIBQ)jX09ZkM4S8gZe:rgXbBLl/CO`oC;#&h:pW8 +f\5*7gt^Z;f\,!3gA]e)g'?UEm"9/?#rqHEsrr<#trVc`orA" +f)PdL!<<#s!<)op&H2Ca_l0lce'catf\"m1f@K7Eqg"4g*f$r0re]P.u`Td@"rr2rsScA`h!<<&ts8W,uI/X*Fe@sl1lK[Tp +h<"J2oA\UEm +"9/?#rqHEsrr<#trVc`orA" +f)PdL!<<&trr3K-rVcKJ\t,Y-\[AfNZEaD7!3u:(#d^hBZ*UdAZ*=23riuO1rj70_\@];\]ueXK +a18C_dbiKj^WP-Xahkp2`m<5__njUNd_WW/^=:oY]u/:Mbe_6Dd)a#?d+Zse^V.G)cHOP^f#tb= +^s(BZ`ONM$f%8-^\[p#=cb@-Ag<.1B]Z8LOd)jDTd*0D=\\H/2d`98Ibf7<-a4&JV^:Le]ZE^\7 +Zi@E_['R$BZEga@Za@*GZ*:I9YctC<[^j#]\@8lOYck:7Yd1gGTqK*[q>1'hs8W)trM&Kk4e>n\$1!f +r;6BirVlX'q"F@Qp@nI_rr2lqs8N#ms8W'(s8N#rrVlisrqHEsrr<#trVc`or@S$Go]bK$oD%kI +rVZ9Ol0Ra!l14W@lf@'eki_$dioK4^io91jp%nR_qYU3hr;Q`rqYhE2q"aaQkOJ$3s4X6=XLcO) +jmVp@rVc`qrr.KKY5a"~> +g&M*O!rr9!rquirrr3B*rVcNP`2gAqf@ALMf`9[ug&Kb2g"=s1g"P-4rn@D*rn.8&IbNQ/fA,NV +n)i9He*[&#hqR;an`AWah;[bkm,-X`p$^_if@o`gjk8PZoB>#glg3]fhsC(*iS3&@k3D0pn+5_q +fA,T\nD_sKk48-.h::*?p[$Ygme5etf@]-Pna,B!lKm`lf@AX9m-`okjlk^Uf]D_qki1IRg"=p0 +s4[M.s4RV/f\+p1rn%S2g=b-3g=b03f%'cLs4%e6f@\g1g"=j-bHe7il2:GWrr2rsrr;uurr)ct +rr<#tX8i5!!<<&ts8W,u?iC$)e\C)5lg*fqg#Df,qM&Kk4e>n\$1!fr;6Bi +rVlX'q"F@Qp@nI_rr2lqs8N#ms8W'(s8N#rrVlisrqHEsrr<#trVc`or@S$Go]bK$oD%kIrVZ9O +l0Ra!l14W@lf@'eki_$dioK4^io91jp%nR_qYU3hr;Q`rqYhE2q"aaQkOJ$3s4X6=XLcO)jmVp@ +rVc`qrr.KKY5a"~> +f)PdL!<<#s!<)op&H2Ca_l0oeda?Rqf@S[-f%&s7Gh(Bre^iF-f@Ja>mdK8hbgc+Zn)3!aoCD&$ +hqmD[oBkJmlLs`(g=Y0Mpu^;gn+>l$iU#snh;I\pnD`6Wh<4+glL=H0g=Y9HoC:kkfB2\slJC.E +l1jW#g[Fn"gt:<@nFGu/k3MF!i7QW9jR)Hti9'=bg"@#"o'to$gtC<0eCN7'g"G$0e^aZMs4%5& +f@\aTfDO;!fb<#he^`7#da?RdZ)kq/rVc`ps8JShs8E#urr2rts8HC(s8UWaiUQ7"l/UIVq#C0W +iniSGcH=>TbKJ/Vbf.]Rf[S-daihoSfA"m!`lui^g=as!aiMWPf\"WsdFQt$dE^(ghrjCtp\Ogc +rVlfklJ:1PjPK%nn'ebN\\,HOZ37PIa4&oEj< +f)PdL!<<&trr3W1rVcKJ\t,Y,\[8`MZE^^AZa050#I:\BZEga@ZMq-/Z3@SA['I!Frj[Ekb0nea +_775.h9j'Qce[=$aiquSdF-4S_U$rc`l,d6fA"BY_9^TQ_8OUEaM>U6e^M[`a2Z9GbK\PhcGRQ@ +d+Hjf]"5l.e'5tP^s1NX_8+IPcc3lCc-k"_`Q$*Hc,IB/^Ve@Hb/MNMb.b[8eBu=N]!o&PZ*CXA +[C$CLZa-mAZEUX@['[1=YT'dMYd(OC]">Sa\$`NGYHY16ZFR<8TY9F^qYgEns8N#r#QFc'rr;ut +s8N!!s8N#%s8W&us8N#ts8W(*rVuoJ^Z"bMlfmE\i:m9KnDW3bk2"S8dad"(g""I!gu$o;eCE." +e(*1+e'?@mhVmJMe^;akf\YH9dad.2iSE2=f\koZpAP!fp\=[cq!-_kioT%Zp[HYB[(aAjrjjtt +^WY?omdT`;o^hS?lKI^3rr;rpqYBsar;?B`o(2YTrVQBcrVuloqY^?mrVH6[p%\F^r;QR"qY9j^ +rVQHer;Zcq%fQ>%qYU0frVcZlrr;usq#CBn!<;urs8N)up\tHss8W)srVlco.K95:l/h4'q""+W +s7l-YrquH\q>C$Xm-O34oC22;naZ&3k3;@.r;Q]orVulsr;uuus8)^5r:p*`mH=$.o)IF=SZKEE +f&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr3B*rVcNP`2gApf@AINg&Kb+g%3qtf`0Y*g\ok*g&BWRe^W4(f\#$DnFGo' +e_9HemG6L^q=a.9kih=!mcWE_lh0`+i82&do'#)igY(63)qis! +gt^W;g"G$0g"4j.g"P-3g"P-4f[n['eGdu3f%8R.g"=p,fZUS&`p*EurVlfrrr2rt!<2rq"9/?# +ri?)!rW)utrr<#ura5X(s4+mCo'G],in*,_s82:*fq=X=Mq#10gq"amgrqlQirr;rnp@S%Qqu$Bkq[*,oq"jsdqYC'h +rr*E+r;-9equ$Ekr;?Qorr2]ms8E#ur;Q`r!<2`m#6+Z&rr)fprV\2Eqt0.7lLjrCp&>!dnb<%\ +p%/"Wq!m_;n+6/?mdTc:mcilun+Q\Yrr)fqrr;ourr<#prYk_0q>'F@naH&Kg7t4?]#iObn+Q\X +rVlirrdk*Ps*t~> +f)PdL!<<#s!<)op$N9b[_l0oeda?Rqrmq5(f@KBAqUSHmf%/=!f%AU+h<=A!lep=Jn+uJ/g[+e2 +m,mQslgF6*hV[\on`/Tdiq3$-f\YuakMG1_m,d'ZkOS-*kN([dl0.F&p$:Pok3hp4jO`!Wj6lF& +jl,(]p$LYmmeH//i8j1lmc`Zjkj.Nng=b9>lga/tkO%HehWj_&kht7Lf@JL'f@S^/f[n^*e^`7# +eCN7(f[n^*f@S^/f_jD9f[eU'f$r*peB+ts`Td@"rr2rsScA`h!<<&ts8W,u?iC$)e\C)6m-Eoq +fAQE'qs`S#jlYCLdF-Rtg=b$'eD/s:e^W.#eC2t%g=+?pfA>KGh:9p"dFd=3f@&4)i8NMFf@]$D +mIpMXqtKm`rqPd8gu@GPk4eAo\[9)e^Ab]$\\H>AkO.j/oCVYDmcs$)q#:L?mqtg6is8Dffo_&"Vr;?Qk$2XGlqYgC9lrXSo)qYL*dr;HTlr;Q`qrqQNnrW)ur +rr;uurqHEsrr<#trVc`or@.aCo]bK&p%\+Nrr;c`p\t*`oD/=Zna,W2oCMJ>nF?&:l/q7!pAFph +rVccqs8<#us8Vrp)Z9C+q +f)PdL!<<&trr3W1rVcKJ\t,Y-]!\lMZ*:L=ZEa&-"gPA=Z*CP4Z2_$oZ*UdDZE^X?[^ENVb0e_d +ai)3FeBPeEdG^;.h4`P/t$bg";VcH?.-5K_=#ccO;O +cdgLc^:_>*bfIoK`Q?HL_naIEd`TYUccjGI^qn%3ai)!.]thkAahc'Hcbm]Gd*0GB]!o#NYl:s- +ZN.ZZa$b6Y6hJEZ_=&*jSAZNrr<#trr!*$s8W)urr<#trW<-! +rilG&rW)utrr<#urbMK4s4+pEoBki,in*,^rV#O2f\b]De^Dq!h;@,Ff@f!;gt:?gu$i7 +d+-n+hV-E&bfnPhgY(32h;@)BeC)n(k3_m?s8;Zfr;H?TiSWb[hrXS#e@W-%_SEgt]tD2)f];8[ +kNDj.39T>]kj\?Cr;QThq"ad]o'>N(mITu@nalPRqY0^Zqtg'Wm-3g(o_8+Qo_%tRq>:-gqtp?i +qYU-f#lOSsq>1*jrVcZn!rr9!li6q_qu&#BrVQ6PjQQ42pA"[ep@7qXs82Ths8;Zbo_84Yq"FFV +p\"+Io(MnWrVc`p.K02Cr;?Nmrr)lsrVulsrV63bmH=$.o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr3B*rVcNP`2gAqf[e[Qf`0V)f^merf`0Vpg=b05g"=s1f\"g)dam(%f&#Z] +oC1u'j6cC%h;.Mqp[.54mdB?%hq?oSp$^r&k2l1)iRQ]GlJgRSjlb[Yg#)&ZkNqNtroHK0m-sB( +k3;=)nE8T[iTTOiki_$im-lLF#nk3qZpip?4'ki1LSg"=p/ +g"HAY!872#s4JRJf@em2g"=m*e'lgtf%8R-g=b03eCVpMXiBW'qu-Nns8N#trrE&sr<*'!s8K)! +s8E#urr2rts8Hg4s8UWbiq)R&ki14PpAO^MgXtECgssj%f\PHBgt168hqZlC3blf$a_kMPCpn'ntW]u%Rt]tM(pbLkn>ki_.. +kW%bcioon+qY^?iq=sd^q"!b7l0\*7o'u>Hr;-0]q>:$_na,N*n+?AKp%7qOq"agcr;6Bir;-uqt^*fs8DoorW<-!rp0U_rqlXDr;HNblK%1#q=aU`rq>mWs8Vukr;Z]ip%8"TqY9dXq"OIP +nacDLr;HTnr[IgDrVZTlrr2lrs8Duss8D`gqX*J9n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +f)PdL!<<#s!<)op&H2Ca_l0rge'cdsf%/L*f%'3>s4(3%e^W.$f%/C"dFHk!e_TKZo'bf%j6cC% +hVIVrp[7;5n*]K'hqHuTp@%)(kN;@,iRZfIlf6dWjlb[Zg#)&Zkj@^!k2kahmI9K)k3;:)n`S]] +iTTS+k;22^mHW]fkjn6,jm)3sjl#"Qj6#L`hV6fAlLF#ok3q]rj6Z:&k2>(Kf@AC$f%/I*f@KcJ +"P25Wf%9iP);!Nng"P05f@JL'eC)^nag%qdl2CS[rr;tgs8W&us8N#ts8W(6rVuoJ^uFtQlKI6Z +i:d-ClJ'tKinW)4e(EL6hqZi:h;@#?g>ClEg"G0d`p"[e(NL/f@\p:hV$E,e_]HU +pAFsgq"ajdp?U\pjlbO_p@$MC[CsGm]Y2"k_9:Klkih3mroc?)j5T:lp\Ogeqt^$_qY9XIkiqL+ +o^_PDq#(!_pA+U^p[RV7lL4B>p\"1Op\=R]rVZQirVZNhqY^]tqtp3crr;rqr;Hctrr26`rVl]m +.fB8Bo]kN$oD/+Ts8M`^q#CBkq#(0iq"=:RqYL!\pA"CTo'u;Eq>C3irr+AFr;HQkrVlfps8W&t +rr;rlq>0LAnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3W1rVcKJ\X]G)\[JlMYctF=Z*/YZnBd4aNViLbK7lN +cH!]4^rFI7`lQ-;`l9LD]>Db=b/_`L`4ijp]>)8&_S3Oj^rss;]#;tDb/hcK`PB*r[^*-@Z*XD7 +!jSu6rj)R/'rVuoI^Z"bMlfmH_iV39?i6ooue'H7\bgFtmg"P'Wf)O3Af\b]Df%8U2 +gX*s]bKJ/R_nWmu_T:$Me'ujmb/;$1ak5bEpA4ddqtp?ip$1PpjlbL]p$U;=Z+.HY[^NZU^W4[M +eBuUdbg+V`c-"Jjk4/9Gr;-6cqt973g"P9AjQ#=cnb;bJo(DbMn`f#fgYh8]mHkJQnFcYTr;QZm +qu$:0jrVH:$bq>0scr;6?er;HTnrVZfss8Vuq)uom3q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*P +s*t~> +g&M*O!rr9!rquirrr3W1rVcNP_lC/mf@JR*f[ng0f[o`Is4@;'"PVM\g"HAWrmuADe^rL)e(NgJ +mdBB)l/q'fgY;&eoBb]+mH`ihf@SmGp@%#&kMtmohU^E?jl"kIi8W_Nf\,3Dk3MBuk2G7XkN_

    ('A(mhg"=s1f\"g+eC2jpe^`7&f`'P5f[SNsZE;.2r;6Hlrr;uss8N)urVZit +s8W)!s8W&us8N#ts8W'>rVuoI^Z"bMlfmH_iV39?i6ooue'H7\bgFtmg"P'Wf)O3Af\b]Df%8U2 +gX*s]bKJ/R_nWmu_T:$Me'ujmb/;$1ak5bEpA4ddqtp?ip$1PpjlbL]p$U;=Z+.HY[^NZU^W4[M +eBuUdbg+V`c-"Jjk4/9Gr;-6cqt973g"P9AjQ#=cnb;bJo(DbMn`f#fgYh8]mHkJQnFcYTr;QZm +qu$:0jrVH:$bq>0scr;6?er;HTnrVZfss8Vuq)uom3q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*P +s*t~> +f)PdL!<<#s!<)op&H2Ca_Pa`cda?Ure^iF+e^Wp8"4YfMf)F5"dg4OWeC*"0lL"!ClJgt16:j6#[ol/gm^iofUkkNV3nm-Wrkg>D#S +jQ,Iaj5f=Zg#2/akiM*oinW5>g"kWHi7uo8hWa=^f])>gki_6skMk=Of[eR$e^i:MecaOQeCN4M +eHj[Tf@\[+g"=sVf*9mZf\+s1f)F20e'cUnb-A%el2CS[rr;tgs8W&us8N#ts8W'>rVuoI^Z"bM +lfmH_iV39?i6ooue'H7\bgFtmg"P'Wf)O3Af\b]Df%8U2gX*s]bKJ/R_nWmu_T:$Me'ujmb/;$1 +ak5bEpA4ddqtp?ip$1PpjlbL]p$U;=Z+.HY[^NZU^W4[MeBuUdbg+V`c-"Jjk4/9Gr;-6cqt973 +g"P9AjQ#=cnb;bJo(DbMn`f#fgYh8]mHkJQnFcYTr;QZmqu$:0jrVH:$bq>0scr;6?er;HTnrVZfs +s8Vuq)uom3q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3W1rVcKJ\X]G)\[AfMZ*:O?ZEa,/riuL/s02X0Z*F;4I^-2`ZaI0K\@AiJZFRfk +`Pfg=^:M(g[DgM>b/;-;a1f'l\A$2=cbdW;]u.e&\@K;g^:Une^;.Lp\%0;o`Q-*>^:Lto`l#[7 +`kfX7_7I.i_o9O0_8!b$_7I"a`QQ9;`l#O%\$WTT^V[^qZF%?c_R6_bb0J5RaMbj)s0`':Z*:F: +rj)R/rilC-s02R-rim!nb)PDkM=Y9e_T +g&M*O!rr9!rquirrr3W1rVcNP_lC/mf@JR+f[ng1g"?#Os4@Y2f@S^/g=b05g&BY(f6l6%f\5'/ +dF-_,k2k[dkM4_Hf$raKn*/ikk2kIOeCWOAp@$r!inWPSgt:<8hqm&(rn%/&s4A":f\"m/f\+p0f@JI#e'upuf%8RRfaZT`f?CP&`p*EurVlfrrr2rt!<2rq +"9/?#ri?)!rW)utrr<#urdXnHs4"gAo'Pc-jP&VfqsW@ca2lHGa2Q'@c-F_df$r'lbfnPjh:L$" +e(NEt]tM1o^qdOj[^WcZ_T:!Ga1\mbY-Pmok4&0Ds8;]hr;?6Pi83MUguJ(qdBp$`\?rEAYdD'\ +a2Z!3]=58]^:q+`]ZSjipA=dbqY^nb)PDkM=Y9e_T +f)PdL!<<#s!<)op&H2Ca_Pa`cda?Ure^iC*e^Wp8s3q&!rmZDJe^rL-e'QLpi8itZjlbFOh::!7 +mdB;uiT9.Vf$i4+l1XQ'iSiPNj4r8=gYUc>f@o$;h:U90hrNk[kMt=LgYq5PiTK=\j5o4Pf%f9G +iS`VMhVd>Edb*XGjP]+Zh:U9,eC`U7gt0p$guRDBd,!sRlKIEmiS<):e^a]K!nGlQrmh"t!7q,! +"k1uQf[e[PfE0[Wf`'P)f[g&P%b&kQe]P.u`Td@"rr2rsScA`h!<<&ts8W,uJ,TEIeA'r4mHa#t +g>_l(n(l7/aNM]G`Q$'FcI(.meBlLbbgY>&f?hjmg"FQ^]t_7r^q."`\%')faN_rL]sY)IZGG)R +nG)q]r;$3er:T=4hW*_Qj7Vif[&paG['$R9[(O;s`koO'\$ru`^::M^b1GkNqu$?fr;HI +e(<:+guRqroC),;p%7b:h:0m'h;mhfmd^&JqYU6ir;-6bq"ad_r;HR"qtg3dqu-NmrT!korVuor +r;?Qlr;HTnqX`t5l14ZFp\FXZp\sjbpC-lpqtTp\qu-BdqY^6iq$$Qir;-6crqm$#s8Murrr<#q +rYtn9q"agSkOJ$3s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +f)PdL!<<&trr3W1rVcKJ\t,V+\[8]JYck::Z*1'hs8W)tr +g&M*O!rr9!rquirrr3W1rVcNP`2g>of%&@'f@JR,f[oTE"52>Zg&BVBf@JO)f%Jg3e^;ang>(H9 +gtgN0g=4U2mH`g2gE+tseC`XCo]t;hgXFd/g=Y$.g=t0,e_/g8f@/:)i;VUshV$E0gY:H!1g"Y-,e(j$BgYLZ:e'cdsf%Sg/f?qpqhVHZ,e`#ZMj5]%Qg=ZAT"P;>\g=ZDU +s4@D)f\$2T,M:W#f[nd-f[n[&daHUoe^iC+g=b03e_&'MXMsH%qu-Nns8N#trrE&sr<*'!s8K)! +s8E#urr2rts8GXhs8UW`hXKmulK$^\q>BdBe'-.edEp1adaQ^tg"kE6e'ZXrgtpc7dam4.d`BDI +`5]j9_ns=.`5p3NccEl2ZEUgXg$88-r;HWl;>pCakMG%Tk25=qnBnSE[^ifLYd1XK_o9R1]=,&Q +\%0#UZ+7j%jn8KIqt^0fpZgVce(34+g"bZWo^_G:n+?>ElJgOLf\Y`Uo(DbQqtp6hqZ-Klq>L0i +qZ6WlrVZ]oh#7q"ssd +r;HTlrVc`qrr2os*rc3=s8D`gqX*J9n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +f)PdL!<<#s!<)op&H2Ca_l0oedEpCneCE.%f%'*;s4./#s4./#H.gp*e^;ang>1N:gu$]4gXO^4 +md&rhgYCQ8e^iC1lh'N!hV6Q3gY:B3fA#'2eCE=2h:U6-gu7/Ji83/(E4eCia; +gY(64f\,$2daR"4i7d#Bf@8:!f%A^1g"4Wuf_cdq+AAGm-]Yh_,_7R.^[(!TU['@0\dcL/uqtp3er:fL5e^N+&g=b9B +n+?2=m-jT?o'55gf@\sAlgj`Cq>:'crqc]lrqZNhs8)ipqu-HmrS7APr;HR%r;6Hio]kK!oDSRZ +rpqN-mHNp)oCV_Lo^VGBp@n7OoChtQo'c&;p%\F]r;?Nlr;HTns8N#sruV1>rr;rlq>0LAnaH&K +g7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3W1rVcKJ\X]J+]!ScIYHG(5Ycm]'H*=HVYHP+4YHG(4Yd(L=Yd(RC[^<RZ+%?U\@AuT[Bm3H[C3ZT +Z*LaCYctID\$E9E['HsE[BQd=]XbDW['6d>[CE]QZaI1[Z`gOA^pgMP\\#;Z\[])TYcY(2YHY:; +ZEUL7ricO/Yct=7rilI,r2pm?Yd:gK\@/iRZEUO9YctFDZ_=&*jSAZNrr<#trr!*$s8W)urr<#t +rW<-!rilG&rW)utrr<#urc.o:s4+mAna5Z+inEJjrqQ!DhW3qbkN1ddjlbmomd00!jQ>[jlKRHj +kNqEoio&\Mhqm8Ih;6uDhVmMSh:U6'c-kD3o_\UbrVc`orql9Jh;%)Tip$:1ftP&7`P]I-_SO:: +d*g=baMu9Bb/q]E.a?K"m.pVXqt^-eqt079iT0.`jlPk%qY0RMoD&4WoC(u.kN_L-qYgBirqufn +rqufnrqm-#r;?NkrVlfrrr1gTs8G.\rr2lqrr)cnqt0.5jn&KLoBbf0kh4;4i9BXsmHNcql0@U! +kND-slJgXXjm;[ +g&M*O!rr9!rquirrr3W1rVcNP_lC2of@8@%f%8L)f@K9>s4.8'f[g&PH.^g'f$i'sf@SR%e()mr +g!nR4m-*r/1q!dA$jQYmkjlGObkNV=#m-*Qlk32'pl/q!gm-*Qji83>J +hV[2GhVI#EiT&qRf[S6ldbO*Zqu-HkrVlcpqsrk)guR\Yl1sr(^:M2#_nX(*_8jdHda?7Z`lH3D +aiDFOc.(V:q>L6gq>:*eo^(YtjQ>Udjm;[:p[[hFq"sgWn*9-"lL+<@rVcWmr;ZZnr;ZZnr!N?! +r;HQlrr2rsrnmbUr]L5[rr)iqrVZWko]bDtoD\[Zm-F$%g!A4,l0[p+l/q-mlKd]tkN_F!in`PS +m.L;TrVlipq>1$frr)fmrYtn9q"agSkOJ$3s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +f)PdL!<<#s!<)op&H2Ca_Paceda?One^W.#f@KfM!nPuTp"'/nJ(E9(f%&='g"G!,e(*+(f$r:' +eCNF*f&Z8`i7Zc8f$r=)g>M;cjk8D@d*^Ftf@AF(f[S:T8e(*.-gtUN8f@SR(f%8X3g!nR( +f$i+!gY:9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr3W1rVcKJ\X]G)\[8ZHYHG(5Ycmc)ric@+s0!TJYHP+4YHY:;ZEUU?['d9GYd1XC +ZEUXAZEq$GZG"5o]Df3G['I'I[^j2l]sG,RXf\k7Za$a?Za-a<[CEZNYd(RD[C!9HZEga?ZEppJ +['6gAZEUO<[C*9DZ*Ua@['R!=Z+71'hs8W)trV`(rqc6Up%nXbqtTdQoC_qWr:p!Yp\=R\q"F=R +qtTpZp%7kKo^qbHo^hYFo_/%Po'u8>nauYTr;-9err,@aq![;"h;mbWjn89,eBuk#f[ea/f@f!< +j5o=[i8ESSio&bUkjS6Cs8Dfgq>C6gp%%YCo()>@p&"acp\":Wr;6?cpAX^rp\Ojfr;6Ehqu$?h +r;HQkqu$?srVZTlrVlcnhuGrVQ?YkN(n!q>0XEjlk[:Vmah(iT0+ZgtUW@hqZuB +hV6T,cdU\3o(r=a#Q+;lr;HWnrVQR5s8D`gqsES:n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +g&M*O!rr9!rquirrr3B*rVcNP_lC/mf@8@LecaUWf%AXMfDjG"f)jOTfDaA$f6u6#eCE1'f[\I! +eCN4#daZjseCi@$hra"Tf@JR)eCE4(gYq8NeCW6scdUFpe'Z[qe'QOpg"=d$e(3.&f$r7"e'c^o +eCN@)daQarda?Oqf@/0seC;ste^;^lgXt$+eBu[mf%8L&e(!"!dF$Y)g=+I$f$D[lg"P'/rm_&# +fDaD(f@AFNf)aISrmi@If@JO)f\+p/f$r-qdF-Lne^rI,f\+p-fZ^Y'`p*EurVlfrrr2rt!<2rq +"9/?#ri?)!rW)utrr<#ur_!.hs4+mDp$Lu*inEAarr2ccnFcYVr;69\nalGLr;??`p%S7WqY9dU +p\Xa[p@\(Lp%7nJoCVYFoCVbNp%%YCnF?/Hr;?Efqu6R`r:oaAh;./Ti8sY(jODT.g"=m/g"4p5 +i8`qZiS`YQj5T"TjQQ(+r;Z`lp\FadqXsFLnac8@nb)eYqtKdXqY^6eq"F^[&GQ&"rquZkqtpqq>C3jrVcWm)uom3q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<#s!<)op&H2Ca_Pa`cda?One^W.#f@KfM"kM;Wf%&=Gf)O8>f%8O(e^i@)f[nX%e_&O) +e(*("f%S[)i99:Zrn&OKe^rL-gu@JRe_&L#d+$XteC2t!eBuatgY(-+eCWC+f@JO'ec+&\f%8[/ +e'ut!e'ce!f[SC"f%&:%f$i!qgtC60e^Dmqf@\^+eCE4&daHk-gXO^)f[/!pg"P'.e^W+!f)F8& +f$r4KecF=Prm_/&f@SU)rR_&!!S>p$f+QZbeCE$rdF?:CXMsH&rVlfrrgj)hrW)utrr<#ur_!.h +s4+mDp$Lu*inEAarr2ccnFcYVr;69\nalGLr;??`p%S7WqY9dUp\Xa[p@\(Lp%7nJoCVYFoCVbN +p%%YCnF?/Hr;?Efqu6R`r:oaAh;./Ti8sY(jODT.g"=m/g"4p5i8`qZiS`YQj5T"TjQQ(+r;Z`l +p\FadqXsFLnac8@nb)eYqtKdXqY^6eq"F^[&GQ&"rquZkqtpqq>C3j +rVcWm)uom3q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<&trr4)>rVcKJ\=95%\?rTIYck:9Yck:8Z*:I;Z*:LZMq0b +ZE^^B['HpA['?mDZa$sN]XG,P['R'D['R-K]=+rMZEC@8ZEg^0p\o_&"Uqtp0_p\=R[qYBmZp\O^\q#1$g +p^Qumq"aXXq"ad_q>'marV7Z2oCVeRq=jOMk2+nNjlP7Pm.'N0kN;'ol0I^$lKmp-naZVJrpg$W +&+K/_p\=U\p@ItPqY9dXp\jajo_/+Xq=XCQpAXgeq>U0hpB(-cq#9sgp%S7\pB(0cq#:$eq#'m> +q#:"kq"jpbp@.A/jm2I0q=3Y1lJ/4fS%mV7k31m_gtgoIhV6f=e]uCdfAGi_q#(*gr;$']r;Q]o +rr;usrVulsrV63cmH=$.o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr3N.rVcNP_Psrif%&@&f@SUFfDjG!fDjD%fDa>_f[n^)f%/I(f%&:#f@SR% +e^r=#f[eR*hVQr9f%8L'e^rC(gYUW4f%&0qeCE*udaZgsdaQe!f@8:!qpk_r'%>@[e^`='e'ut! +e'lgtf$r0ur7*+AdF?k$e(*!te(*%#e^`1"f%&3sfA,'0eCN0rcI1=tf%/C&f)4.uf)=2#f)F;$ +ed0gWf@\^+e^`.Jdf7c0eCN7(f@\^)f?:G#`Td0p\o_&"Uqtp0_p\=R[qYBmZp\O^\q#1$gp^Qumq"aXX +q"ad_q>'marV7Z2oCVeRq=jOMk2+nNjlP7Pm.'N0kN;'ol0I^$lKmp-naZVJrpg$W&+K/_p\=U\ +p@ItPqY9dXp\jajo_/+Xq=XCQpAXgeq>U0hpB(-cq#9sgp%S7\pB(0cq#:$eq#'m>q#:"kq"jpb +p@.A/jm2I0q=3Y1lJ/4fS%mV7k31m_gtgoIhV6f=e]uCdfAGi_q#(*gr;$']r;Q]orr;usrVuls +rV63cmH=$.o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +f)PdL!<<#s!<)op#lXMX_5=N_dEqjA"4l)Teb7SoebdqteH"2"eLT5&f%&=%f@JO'eCN7'e^W.$ +eCE7'eCi^9g""[*f@AI(f%Aa6g=+X(daJ-F%+NbUe^`*tf%AX)e(+EJrRCntrm_M0g"4a(f%&:! +eCN4#e("BI-e?hsdFHt&eCN4"e(*(%f%&:$f@A?uf\P93eCW6tcI1@tf%&:#ebn"sec"&$e^i=% +rmh,#f)4/"eecrjf@\[)eC2pqdEp@`YcG_,rVc`ps8JShs8E#urr2rts8FYLs8UTaj7_p'j5JYD +k4JQHp\+@Uq"ad^p@S%QqYU0bp\4IYq>0p]p@nFZq"Xg`s7d&tq"X[Yp\=R\qYBs`qu-=7p@IqN +qYBmXn)iK^hrWtSh!FS!lf[Eql07O#lK[a'nF?&JnG_tXmgnpYp%S7Xq=aFQq"jdZp@nOY#k[id +qt]pWp%JC[!;ZWhs7ZTiq=ss_!ql<_rq?Kiq"Xj_rqQEcg%bR@>57slqY'FDjlPgup%e.@k3C`u +Jt'O-iTB@bhV?rFiSN>Dg==KmdF[:?nbE%\r;?Baq#(-jrVlirrr)lrs8D`gqsES:n+-M4UReKt +ak#SBpAFmfrr;usJcDnQJ,~> +f)PdL!<<&trr3W1rVcKJ\=B;&\$NEGYck:9Z*YHY50YlD!.Y62#6Z*4#/+g8/UYcb+1 +YHG(6Za[HS\$iZJY-"e,Y->C?T:W[Uq>1'hs8W)trUdjQ#;"jT"6JjQ#:[j5]4^jlY^eroF(?s5a+> +!p&J*rT"aRi8NbZjl51Pf%&O8l/pRFh;[S]jl-4"$0LI7k2tdgk2bS%jTOZ+jQ,A#j:(/4k2YF\ +jlY[cjlY\(j94N(jlY\(j8S*>jo+ +g&M*O!rr9!rquirrr3]3rVcNP_Q(#je^W1%f@JL'f%AR)nC[cm!8.8%s4IA'-J$_tf@SU)f@JL% +e^i7!f@\X'f@e^&eCE.#eCE(!f@ea)f%/@#rmq)!"4l#Pec+/"ec45#ebRc!e^i=%eGIerecOCO +ebmu/e^W1%f$r4#e^`7'f@JO'rmhJ,e(*+&f%&@&e'lnHf)jOTfDaG%fDjJ'fDO;$f-K##f@JR* +f\"g,e^Mpne'umte^i=%f%/=$b-7qbl2:GWrr2rsrr;uurr)ctrr<#tX8i5!!<<&ts8W,u&,lP. +eA(#9mcNQgf$2RukPjNPio&\NiT'%\jQ>UdjQ#;"jT"6JjQ#:[j5]4^jlY^eroF(?s5a+>!p&J* +rT"aRi8NbZjl51Pf%&O8l/pRFh;[S]jl-4"$0LI7k2tdgk2bS%jTOZ+jQ,A#j:(/4k2YF\jlY[c +jlY\(j94N(jlY\(j8S*>jo+ +f)PdL!<<&t!WDrqq[i`$ik_Ouc-anfe^W.$f@JLKecOISf(dksec=>"ec=>#egK#!f@JL'f$r4" +f$i+"f[\L'g""O#e^`1!e^W.$g"+[(f$r4#e^j`M$.dYVe^`7%e^`7MebRereH4=PeG@\tf%&:# +rmq)!%b0(]f$r4#e^`7'f@JO'rmhG+e(*+&e^`7%e'n6G!7h&!!8%5#s478$qUY_trn%/#s4IA) +);!Eif@\a-eC2jodEp4fa02M\l2CS[rr;tgs8W&us8N#ts8W'/rVuoI^Z+qSk2YFOc-Y>1ro=RK +i83AMj5o@_k2tddj5^."s5OLJj5].Zj5f=`k2te)jSn9@jS\*@jQ5P&j;-b5iT0._inrMAe_B-K +k17u:io]LeiVqmEk32!jk2kdgjQ$7$"Q\\*jQ$7#%-?X6j5K%[k2k[ck2lU'"QSS)k2lU&ro=(@ +rT4:FjQ,F`jSn0BjQ5LajSe3?j9t)1jQ#:]j5]4^jlGC^6KI7iio&eTjQ>XginiMIip61/qXs4A +mF785Ks]Imm.'Q-k2tspkiC^[gt(*6iof[ro(MhOp@RtMqu6WprVlisrr*l:rV63cmH=$.o)IF= +SZKEEf&cAor;HTns8N"Ks/uBP~> +f)PdL!<<&trr3W1rVcKJ\=B;&\$NEGYck:9Z*C?T:W[Uq>1'hs8W)trbMBbJqB6`;@UT`W=-$rl5VlaiMQD`lH0A`l5s&Z +`Pqhss2G,Z`lA"s#0+X%`lH*=rl5)[a2e.url>&Ys2>&Z`PpWPrl+lS!5\ZO*5KG5dbaBcqu$6] +oBF2H@!/6eh!4V+n*KE0mcsf8($=H3jQ5Oekj%U)mdKQ2o_\Xfrr)fnrYtn9q"agSkOJ$3s4X6= +XLcO)jmVp@rVc`qrr.KKY5a"~> +g&M*O!rr9!rquirrr3]3rVcNP_Psrie^W1%f@JO)f@\^,nC[Qgs4A=Cf%&=&f[n^+f$r7$f$r4$ +f[\I$f[\L%f%/C%r72,'f%/I)f%/CNecOCQec+/!ec42#eb[huf[eXKebmu-e^i@(f%/C&f@JO' +e^XQKs47;&fDa>'f@\[*r71hus4I;%"kM>Yf@S[SfDjJ'fDO;$f+-Hbf@JR*f\"d*e^Mpne,Ii0 +e^i=%f%/=$b-7qbl2:GWrr2rsrr;uurr)ctrr<#tX8i5!!<<&ts8W,u'E.t2eA(#9mHbMB +bJqB6`;@UT`W=-$rl5VlaiMQD`lH0A`l5s&Z`Pqhs +s2G,Z`lA"s#0+X%`lH*=rl5)[a2e.url>&Ys2>&Z`PpWPrl+lS!5\ZO*5KG5dbaBcqu$6]oBF2H +@!/6eh!4V+n*KE0mcsf8($=H3jQ5Oekj%U)mdKQ2o_\Xfrr)fnrYtn9q"agSkOJ$3s4X6=XLcO) +jmVp@rVc`qrr.KKY5a"~> +f)PdL!<<&t!WDrqq[i`$ik_Ouc-k"he^i:&f@JLKecOISf(dkmf)OA$ef!#hf@JL'f$r7$f$r4$ +f[\I$f[\I$f%/C%r72D/f%/I)f%/C%f%/C&e^i=Mec42#ec+/"ec42%f@JOJec42*e^i=%f%/I( +rm_2(f%/C%eG[tufDO5"fDjG"ec45#f_sA$ebn"tec45$eb[lCe^i='f%8L*f\+s/e^i@)f[eR$ +daHOicdKk;Wl+*"rVlfrrgj)hrW)utrr<#urY,81s4"gCp$Lr(j4D;a`660:^r6,js2G)[aSs3l +aN;NEa2Z0@aMu3=a2l?Ba2n8#"j"^'a2c=#aT'9a`lH6Eai=:rrPKAicJ@dUlds>(b0%oK`Q-$? +b08)Pao9@"a2lBEaN)BDaiMNC`lH0A`lH0BaiDB?a2Z*t`rF!Z`l5pra8a-\`Q#ps` +f)PdL!<<&trr3W1rVcKJ\X]G)\?iKFYHG(5YcmT$s/up:YHP+4Yct=7Yd(I;Yd+,3'="dHZEg^= +Z*LXZ2V'/Z2CmKZ*:I;ZE^X=Z*L[? +ZEga@ZEpjAYd(O?Yck=9Z*L\5Yo'dOZ*LaDZELL;Z*:L=Za$[9Z*:F9Yck8%YT^3SYck45Xf\b0 +YdCmM\[T#SZ)t+.Xf\kaZi@?2Zi@E3Z6Q]`]#E(U +nGE(Rlf[9OSo.M7Kri5HlgEutj5f7Xh;I>Ri8=Ol%c?7*jlPOajQQ(-rVlcprr)iq)uom3q>9RB +naH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O!rr9!rquirrr3]3rVcNP_lC/meC2t"f%&=%f%8L(mahHirn%2$s487Ae^W.#f@JL'e^`7& +f@AF&f@AC%f[eU(f@SU)rn%/"rRV&#rm_>+f@JL&f@JL%eG[tuf*^*Ze^i='f%/C$eGe#(eCE.% +f%&@'rmhV3f%&:#f[eU&f%&=%f%&=Medg<^e^rI+f$r7$f$r7$f`'J%f*0aWf@JO)rmq,$!7q)" +s4.2%rmq,$"PD>Xf$s]I(=Ud_e^i:&f%8I%f?:G#`TdaZi@?2Zi@E3 +Z6Q]`]#E(UnGE(Rlf[9OSo.M7Kri5HlgEutj5f7Xh;I>Ri8=Ol%c?7*jlPOajQQ(-rVlcprr)iq +)uom3q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<#s!<)op&H2@`_PXWae'c^qf@AI'f@KaZi@?2Zi@E3Z6Q]`]#E(UnGE(Rlf[9OSo.M7Kri5H +lgEutj5f7Xh;I>Ri8=Ol%c?7*jlPOajQQ(-rVlcprr)iq)uom3q>9RBnaH&Kg7t4?]#iObn+Q\X +rVlirrdk*Ps*t~> +f)PdL!<<&trr3K-rVcKJ\X]G)\?iKFYHIl."g5&4Yck8(YlCm2Yck75YHY81YQ(j+Y6hG:Yd1R= +Y->19riZO1YHP49Ycml,"0\l2Z2Lp+Y6hG19YHP16Xfeh2YcmN"+g8,SYHG%1Y-+t4 +[(*ZW\$iZKXfSS*Xg,CATV&mXq>1'hs8W)tr +e\9u3mI0`@mG6+6c,RW;`5]a4_8=.0`5BI/_>1tJ_$.]n_SO"%rkAEI0>P?;^;.P!^:q@t_8*k# +]Y;.s_SjF5`lH-CeDTZbq=Wt-f$)"D]thM'`PfU.^])%K_#hEe^])%K^Ce8t_8*h#^q[Y"_8!^t +^VIUurkAWN]tM.q_#;"L^;%G^_#M.N^;.P_^\khG]`Z!a^qTQX!5RR."i.je^qmtg`AtrYaj/Mr +lh1/KlJL7B[>&F%?@&3Qd,F*Dg=Y*2e^N(&h;-l?gtgfFjQ,=ZioB1gpAFpgrr2lprr*l:rV63c +mH=$.o)IF=SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr3`4rVcNP_lC/me^N(#f%&=%f%8L(eah8kec+/"f)XD$ec42/e^W.#f%&:# +eCE.%fDa;)f%&:%f@JLJecXIPe^scNrm_>+f@JI%f%/C#eG[r!f@KrOs4/RJf%/C$eCN7&e^`7& +f%&=%f%&=%f%&:#f@JI$f%&=%f%&:"e^`7MeI^f)O8*f%8O+f@SU' +rmDS2eC<%"e^rC(e^W3oZ)kq/r;6Hlrr;uss8N)urVZits8W)!s8W&us8N#ts8W'?rVuoJ^>SPK +n+HA@h9XBk`koU2`l,a1_SjF3_ns:,q830J"iA0o_8!ba^Akr$^q[Xu^qd_!^;%J"^qd[s^;%M$ +`5Ta9a2cBQi9U%2p#t5_beh$+^r"%/`507(rkSQM!l2RcrkSQK&\u6!^q[Y"^V@S#^V7Cr^q[V_ +^BM?b]tV:trP&EJ^VBc`s1\WL^qfo`r4`3E"2;Rd^A#AB^u<$3^qRS!_8Q>l3QB+]cI_"?p&"IJ +hq6AbL2("#HChXniT8tNf\+p-e(*1.h;$`>h;.&NjPo.Xj6#b&r;QZorr)fprYtn9q"agSkOJ$3 +s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +f)PdL!<;rq')hb,pZ',fZ-LhGe(*%"f%8O)m+26grn%/#s4@;$'\:mff%/I(e^rI+e^`7&f%&F* +f%0ZK"4boPf_sG$f)F8+e^i@(f$r7$rmq2'fDaA$f,WAnf@JI$f%8O(f%8R+f%/I)f%/I)f$r:' +f@ACMf)O>Cf%&=%f%8I&f%8U,eCN7'e^`7%eCE+$f@JR*f%/IPf)O>%f)!tuf)4,#f%9oR"4u2Y +g&BS9e^Djod*L(faKV_`l2CS[rr;tgs8W&us8N#ts8W'?rVuoJ^>SPKn+HA@h9XBk`koU2`l,a1 +_SjF3_ns:,q830J"iA0o_8!ba^Akr$^q[Xu^qd_!^;%J"^qd[s^;%M$`5Ta9a2cBQi9U%2p#t5_ +beh$+^r"%/`507(rkSQM!l2RcrkSQK&\u6!^q[Y"^V@S#^V7Cr^q[V_^BM?b]tV:trP&EJ^VBc` +s1\WL^qfo`r4`3E"2;Rd^A#AB^u<$3^qRS!_8Q>l3QB+]cI_"?p&"IJhq6AbL2("#HChXniT8tN +f\+p-e(*1.h;$`>h;.&NjPo.Xj6#b&r;QZorr)fprYtn9q"agSkOJ$3s4X6=XLcO)jmVp@rVc`q +rr.KKY5a"~> +f)PdL!<<&trr3K-rVcKJ\X]D'\?`BCY-%]+"g+r1YHG&%YQ(a0YHG%1Y-5&.Y5b^*Xp;)3Xfo"7 +YH7`,qQBk%r2p"%"g+u2Xf\f+XoP[)XTku5YH4k/YPt^(Y6(l1YPt[$Y5bU@YHY45Xfek2Xfeh1 +Xf\e0Y-"h1YH=q1YPt^(Xo,@%X:2;8Xfnt5Y-,"3XKA]*Y4&P;Y-5%3Xf\\,Xfek6[^`fT[Bm*> +XfSY-Yd^m0T=j7\qYgEns8N#rrVcp!rr<#trW<-!rilG&rW)utrr<#urY>D3s44s@mHX39rVH$I +ki^pbkj.R$rp'aQl0.?qlMg&GlM]uIl2^&Hk5a`Ek9B-Skiq9mk2kagk2tjkki_'gjQ#7YioK7e +nFcPQqtBXOmf)J^lg4',l/h$hkND*nki_*jrojCF'^"TAkih3mk2tmjkNM-plg!^!l0801#jUX: +kNV6plK\B7s60OIrosIHrosIGrTX@Gqs"+Fs60OIiTWPil0@KslKRKnjQ#@cme$>RrqlEZn*JT+ +TU_4B_Udo?n`o5sk2t[^jQYsniS<;MkO/!6o(;SGo(Mt[rVZWmrr*l:rV63cmH=$.o)IF=SZKEE +f&cAor;HTns8N"Ks/uBP~> +g&M*O!rr9!rquirrr3`4rVcNP_l:&jeC)jte^W+!e^i:$eFM,ke(*"Jec=8"eGn&*eCE(!e^W$s +e("?Hr7(_r!7^trs3q5$e^W'tec+&6e^W'tf%/C#e'upteCE.#e^W."eC2nDeGmu!e^i:MeGn(u +e.'sXeCE'ue'ut!e'ln!rm^qrrm^tu%F`bUe^N("f$r7$eC)hEeF(lee/m/kf%8L(e^Mpmd*^=k +eCE.%e^rC$f#k8!`TdBgl0.Bpk2tdfkN:pil0.UaiT07gki(=Rj6,k&oCDPGoCDVPrr)cnrVld8s8D`gqsES:n+-M4UReKtak#SBpAFmf +rr;usJcDnQJ,~> +f)PdL!<<&trr3W1rVcKN_Pjfcda6Fle^W.#f%'-Bgl0.Bpk2tdfkN:pil0.UaiT07gki(=Rj6,k&oCDPG +oCDVPrr)cnrVld8s8D`gqsES:n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +g&M*O!<;rqrr3K-rVcHH\=B8$\$<0?XfVN("g"i.Y-"htY5PL&Y5bX'Y5b[1Y-"h0Yct:4riQI/ +Y-"h/YH@f,rN6+&!j/W/riQR0Y-+t2Xfek2Y5YO(Y-%],rN6O3Y-"h/Y-5"2YHG&-YPYL&Xo5F& +XoGO(YPt^(YPt[#Xq@e;YHP(2YHP(2Yck13Y-"h0n#dk:Y-+n.XK/G(Xfet;\$i]OZEUL6XfSY/ +\$;Tt]B&e`r;Z`p$N9o#rVuors8N&urr*!!rr0/%s8E#urr2rts8F,=s8UW`hL9iqu$Ekqt^'aqu$?fqYp?lq>U6jq>U9kqZ$?qqYU-dqtg0fq&&o'r;6Beq"OIQo(2VOp\4IU +p%S1Rq"agds8W'#rV6'ZrqZQi$MjPpqtg0bq=sd]rqZWjrV?fsr;?Nlr;6Ehrqufns8;imrquco +rqufnrVZ]os8;ios83'!r;?Hhr;QZpquHWKr!3,pq"OLVqY^?ls8*o9rr<#mgtUW3g?eM/qXa%9 +kj.Qtk3DC&m,['alLF`Jrri8urr;usrVZX3s8D`gqsEP8n+-M4UReKtak#SBpA=ddrVlfrrrE%L +s0;TS~> +g&M*N!rr9!rqmZ4rr2rsrVcNO_Pjife'ZXqeC2mreCE'ue*kfbec4,%e'umtec!u"e'ujqrR;#$ +eC<%!e,Ikqe,Ro!e'uqIe,[tre-sgUe^`0udaQ^pe^W.HeGn"te-"7NeCFQJ!7gqqs3pqrs3q"t +"4boMe,Intdf@hme.0sUe^`-ue^`-uf%&7!e`bN_eI:$Ze^W$ocd0tddaQ_Eed^0Yf#k7u`9I3r +r;HTorr)ls#lX]!rVc`qs8K)!s8E#urr2rts8F,=s8UW`hL9iqu$Ekqt^'a +qu$?fqYp?lq>U6jq>U9kqZ$?qqYU-dqtg0fq&&o'r;6Beq"OIQo(2VOp\4IUp%S1Rq"agds8W'% +rV6'Zq>(!c$MjPpqtg0bq=sd]rqZWjrV?fsr;?Nlr;6Ehrqufns8;imrqucorqufnrVZ]os8;io +s83'!r;?Hhr;QZpquHWKr!3,pq"OLVqY^?ls8*o9rr<#mgtUW3g?eM/qXa%9kj.Qtk3DC&m,['a +lLF`Jrri8urr;usrVZX2s8D`gqsEP8n+-M4UReKtak#SBpAFmfrVhBJY5a"~> +f)PdL!<;rq')hb+pu9,h[*6qDdF6UoeCE+!gXZ>Rr71hs!nGlOrmgtss4%2#e^j`M!7^tt&(K.\ +f%&:!eCE("e^i:$eGe"ueGn&$f%&=%rm_#"rm_"urmh%urRLqts4%5&e^W+Jf)O5"e,%T)eC3"" +eCE.$eCE1%eC<(2ebn"uf+Z`cf%&6udF-CfcI'\9Wl+*!r;HWos8N)uT`>&k!<<&ts8W,u+8u6> +e\9l,kjA*DrqZ1!dqtg0gqZ-HkqZ$Bjqu?Nmq#gKjqYU9grV6otqY^9g +q=s^WoCDMIq>U-go`b*`pA"I\rr<#t"9&#fpAXmeq?m&pqYU-cq>'g]q>U3jq>L-qqu$BjrVZQj +qu6Nnqu?Tmqu6NmrVl`pqu-HmrVuforVud!rVZTjqu$Hls82log\_9RAnF,rJg7t4?]#iOb +n+Q\XrVlirrdk*Ps*t~> +g&M*O!<;rqrr3K-rVcHH\X]A%\$<0?XfVN("g"i.Y-"hqXoYZ-riQ(#s/l:(s/cL.YH4n0XfVH' +!3c@(!3cC)!3cC)"0J`/YPYL%XTYf/YHG).Y5b^$Xobf0Y5YX%Y5bX&Y5bX&Y5bX'Y6(l/Xo5C& +YPt[3YHY75Xfeh.Xfno*XmW=oXfeh/ri7!>X/rJ0[^W]QZa-gC9krX/W% +r;HZqrVulss8N!!s8N#%s8W&us8N#ts8W'9rVuoJ^>SMFlgt)Rq=jdbq"XUTmcs*(mdU5E"Rb[D +lg+Q8s6BaQlg+Q8#j^jDmHs9-mHji!:BdRs6]gPrpBaP'(,,TmI'B0n*]Q/mHj3,mdBK0rU0^Q!q,ICrp9[P!:KjR +s6]mSb3o;s0CJ?!o(;YMq"jperVZKboCMYOs7kmMq!mqNqY9UChq[,KiniGIjQ>Ucj6,h$qYpKo +rs/N!r;HWorVcWm)#sR0q>9RAnF,rJg7t4?]#iObn+QYVrVc`ps8N)uJcE"TJ,~> +g&M*N!rr9!rqmZ4rr2rsrVcNO_Pjife'Z[reC2mreCE'ue*b`bec4,(e'umte^W'srm^ts%+NhV +eCE'ue^`1"eCFNI!7h(u!7h(u"4PcLebdkqdfe1Le^W.KeGn(pe,n1MeGe"qeGn"reGn"reGn"s +eH47Le,@brec+&-e^i=#e'umqe()sseCEd4s3h8(f%&:!cd'k`rmCerrRMG.e(2[HX2O9#qY^SMFlgt)Rq=jdbq"XUTmcs*(mdU5E"Rb[D +lg+Q8s6BaQlg+Q8#j^jDmHs9-mHji!:BdRs6]gPrpBaP'(,,TmI'B0n*]Q/mHj3,mdBK0rU0^Q!q,ICrp9[P!:KjR +s6]mSb3o;s0CJ?!o(;YMq"jperVZKboCMYOs7kmMq!mqNqY9UChq[,KiniGIjQ>Ucj6,h$qYpKo +rs/N!r;HWorVcWm(]XI/q>9RAnF,rJg7t4?]#iObn+Q\XrVc_Hs/uBP~> +f)PdL!<;rq')hb+pu9,h[*6qDdF6UoeCE+!ma_?g!7h)"q:5Mprmh%u#h@MUeCE'ue^j`M!7q,! +!7q/"!7q/""4YlOf)+"se-+=Of%&@Nec44reH4=Pec+.sec4.tec4.tec4.uecOCOeG[ntf)F2/ +f%8O'eCE*ueCN1"eCO!:!7_"u!S#[!f)F27f@\[)e^W'sdF-Cfc-aS8Wl+*!r;HWos8N)uT`>&k +!<<&ts8W,u)?'U8e\9u2l0Is>rV?3brV60^oBto/m-aBBmf`(Gm-F!:lMp/Om-F!:l3Q_Bm-X3, +mHs9>li6;OmJZGgmI'?+kN_L*oCV\Ho(2SNq"OIOmd9?>l3$D?nF6GE"mY=:m-X3>m/QJQmf2\R +m/HDPlk8^Rmd9H0mdKT1m-X0+mI'E0mJZJQm/l_CmJcJPm/ZSRmJlSSmE4ksm4[nsnFH5Fp\=U_ +rVcZip@InKqZ$?Uo(_bGq>0mVk24tOio8hLhrNq^jQ#FjoD8Ics8N?&qY^ +f)PdL!<;ur&-)Y-r:f*YS"dC$ZE^R7Xo>I,Xfeh1Y-.Q's/u@)s/cR1Y-"e.Y-5"2ric=(s0)I*% +'Qe5YHP%.Y-5"2YH\#/s0)I*%]unYck11Y-5"2XKJ_0Y-.;u'!AFAXfSS)X +fSY.ZF.-L[C!3ArN-F0Yd^m0T=j4[qYgEns8<#srVcZn!r`,trquourV`u#s8E#urr2rts8Eo7s +8UT`j7M[&nbi:XoD&1RnF?,Bo'u8@o_e:no'u8>n*fc8naQ&:nF5u=o(2JOo)J=]ncSFQoCMtP" +SDo_%nJn*oi:rpgKenaZ&:oC28@o^hYFrpp*]"nV9So()GPo+:K_o(;SFo +CDMFo'l/>nF?&Jo)J7ZncnXToCDJAnG_tWnc84Znc84ZncSFQo't&s!V,[Ync/)%o_A=]qtg*]o +()STqXXL_rqu`nqt9CAl0\!0mHNs*o'lYI%Iiu]p%A%Qq"OOYr;HZjrYk_0q>9RBnaH&Kg7t4?] +#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O!<<&ts8;rsrr;ur')1J)W3jq$daQaseC2suf%&="n(%Eerm_2%e'lgrec+(ueI'gTeC2gp +f%&=%ec+&6f$r0ue^`1!e'upue'upteCE+!e'lkHe-X[Te^`0ue()stq:,Yue^`0ueGe"udg+FQ +eC2sue("BIs3q"t#h.;Qe'umte^XQH!7_"u#1V2Se^Msrrm_,%e^`.=eGn(ueGRhueC2kFd/VJq +daQasrmqM.eCVmKXMsE$qu-nF6&AqssdZ!;$3["S23Vo(2kOs7?]ioCDMFo'l/>nF?&Jo)J7ZncnXT +oCDJAnG_tWnc84Znc84ZncSFQo't&s!V,[Ync/)%o_A=]qtg*]o()STqXXL_rqu`nqt9CAl0\!0 +mHNs*o'lYI%Iiu]p%A%Qq"OOYr;HZjrYk_0q>9RBnaH&Kg7t4?]#iObn+QYVr;Q`prIP!Os*t~> +f)PdL!<<&trr3W1rVcNO_Pjidda6Cje^W.#f%'3>s4%,#rmh#!s4%&!rmh&"s4%P/eC)mue^`7% +e^W1%rmh&"s4%V/e^i=$e^i:$f%/C$eCOWL$.dYXf%&:"f%&=HecjUTf%&:#rmq,!#M.GUeCN4# +ec+/"eGn&)eCE+!e^`7%ec!ttec+,)e^i@'eC2t!rmgAd#h@MWeCE.&f@TuP!S>p%ec4)0daQUj +cdKn=X2O6#rVlcqrgj)hrW)utrr<#urYb\7s4"gDo]tf4r;63Zq"jUOnalDDnaZ2Br:BpX!q>[I +r:($\nF5u=nac;No)J=]nc\RTo(2JPo)J:_o'c,JoDe@inaGr;o^qkNo'c);nc&(dnFH,;nFQ/= +oCVYQnd+jZo^hVCo()GPo+:K_o(;SFoCDMFo'l/>nF?&Jo)J7ZncnXToCDJAnG_tWnc84Znc84Z +ncSFQo't&s!V,[Ync/)%o_A=]qtg*]o()STqXXL_rqu`nqt9CAl0\!0mHNs*o'lYI%Iiu]p%A%Q +q"OOYr;HZjrYk_0q>9RBnaH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O!<;ur!<)os(]OC3p>3?MTshD7YcY".Y-+n.Xf\b.Xn](!Y5tf0rN6C-XK/J+Y-"i(XoPU' +XrjdKXK/M-XfSY-Xf\b0XfSY-Y-"h-Xfnn/Y-+n/Y-.c+q5s_"riZ:'q5sn'Y-+n.Xn8drY6D)2 +Xfeh.riQ4's0)I*!j&Q-rN-U5YHY45Xf\b/XfSY,Y-"hrXoPU'Y5bUDX/rD)YHbF@[C!9EXf\\+ +Xfnq9Yb%K!jSAWLs8Dp(rVlfrrr2rtrr<#trW<-!rilG&rW)utrr<#urZqIBs4"jFp?h2:r;?9[ +q"XFLoCr4`rVZWmr;HWps8Muqr;6BhquZcnr;QZprr2irrr2rtr;QZpquZirrr2p0rV?6_p@RqG +o(2JHq"OOYqYgEn$iBbppA+afrr;uqqu-KnrsA]&r;HWorVZZorVcco$2sl'rVQNkr;HQmr=8c& +r;HTlrVlcor;?Nkr;QWpr;QWqr;HWms8;rqe,9dSrVcZjq"OIRnaQ,DqY^?k&c;@uqu$6]p\Xd] +qYgHnr;- +g&M*O!<;ur(B+73s8MropuB5j[Em@OeCE+!eCE.#ldYs`!7_"us4$tss4%)!"k;)OdFHhIec+(u +eH+1Kr6tr"eCE*ue^a6?!7Uqss3pen"k1uNe'c_;eGn&&eC2mreC+?Fs4%)!s3q+ueC=HG#Lq;T +e^W'seGe"teFD)he-"7Me("BI$e3YRdEp:gda?Ikec+/"f+-9]bH\+dl21>Us8Muss8N!'s8N#r +rVlisri?)!rW)utrr<#urZqIBs4"jFp?h2:r;?9[q"XFLoCr4`rVZWmr;HWps8Muqr;6BhquZcn +r;QZorr;osrr2p(rVZWnrVZTlrr2os&cMS$p\+7Mnac;CpA"CVq>1'hrt##&q"FO`rr2rtrVZZo +rVc`ps83*"rr;rprr2lps833%rr;ror;HQlr;QX)r;6EjrVZWnrVcZlrVZTmr;ccpr;liprqufp +!;t=E%fH;(r;-3_p%7eDo(W"Yrr!H+q"Xaaq"4=Xq=sgbs8Mrmqu-Qpr"]52rquZhp\4@PoCV_M +p\F[arr2lqrr!c8rVccpq"agSk4%j1s4X6=XLcO)jmVp@rVc]oJcDnQJ,~> +f)PdL!<;rq')hb+pZ')hZcphDdaZdqf%8I%maVKje^i:#eG%JneGRi!e'cdtrRD2'e^`7#e'upu +rR;/)e^W."eC<%!eG%JneGe"ueG7VueCE+!e("$?s4.A(eC<%!e,Iksec45#eH44Mec!u%e^i@' +e^W+JeH"+aeHsgWf%/I(f%&=%rmgtsrR1_m#h-kuWl+*!r;HNls8N)uU]:An!<<&ts8W,u*<#p; +eA1/=mHa?@r:]aWq"!qGp\k-jr;HTlrVlfrs8;rqq>:3irr)iqs8;rsr;R$$rVcZlrVlfqrt58. +q=jUTo'u;Bo(DePp\F^crr3N+q=s[Zrr)irrquZmrVcZnrr;m#rVlfpr;Q]orVud%rVliqqu$Ej +rVZZn%fH5%rVcZmrr)fnr;HQkrquiprqulqrVl`pr;ccEr=8c(rVZNep\"1KnFH>Mr;QX,qtTs` +r:opYqt^$`rVulpqYU6ks83W2s8Mrnq=jXVoCMVIp\4L[rVlfprr2j;s8DorrV63cmH3p,o)IF= +SZKEEf&cAor;HTns8N"Ks/uBP~> +g&M*O!<;ur!<)os)ZK^6p"m'sfr0s`qYp:% +q"OLXqYBs^q"OOYr;HQiqQ9YpqZ$EoqYU0hqAB/-r;6HlrquZmrU]LKm-!X"nb;t\rVQNlrrrAt +qY^Bnrr)lr#lX]!qYL0irVc`ps89RAnF,rJg7t4?]#iObn+QYVrr)lrs8N)u +JcE"TJ,~> +g&M*O!<;ur(&e.2s8MropuB5j[Ed7Mf%/C$eCE+Be-+7Me'c\De,Rkrdg"=PeC<$ueGRhseGdu# +eCE'uqpk_rs4.+us4.(ts4%2#e^aNG!7Ueo!7Uqss3pen!n5ZKrmUDes3q"trR:Yn!n5ZKrR:\o +rmUns!7h(un^[Zh!7h(ts3r1AeC2jnd*U1gdEp:kf%&=&f$i6nZ)Yb-qt^3jrr2rtrr)otr;Q`r +!<0&!s8E#urr2rts8F5@s8UTajRqp,o)/I`qu$?dqtosUq"47Sq>'serr)fmq=sp_!r2NarqI'! +q"ad_q>'m_q"aa\p\=R[rqIl:qYBs`q>'mbr;6?dq"FFUq"jseqtg6gqtKaRo(DhVr;6?cq"adb +q>L.%qtg*_q>'g]q"XUXq>C3hqYI>ks8)cm!rDfkrq[K0qu$?irr2imrr)HWo'GQ(m.'iJrr)`l +rr30#qYL-is8MusrWrK#r;-9grr)fprr;p;r;HTorVccpq"agSk4%j1s4X6=XLcO)jmVp@rr)fp +JcDnQJ,~> +f)PdL!<<#s'E.k,qtp-J_5Xcad*U4je'cduec+%ue,7_qdf\+Me^XQJs3q2%f%&:"pXK8nr71hs +qpb\rrmh"ts4.(ts4%A(e^`1!e^`1DeH"+uec4.peH47Nec+(gec4/!ec""peH47Nec""qec4.u +eH"+ceH+1Mrmh)"rm^ts#h7>Pe^W!oeC+?D$II,JaKDM[l218Rqu6Wq!'serr**!q=s^Wp&4S"p\=LXqYU0cq=sd\q>C3gr;6?e +qtp6fqZ-Qlr<`Dtq"FCQp\Ojdrr!3(rqc?[o(;_Rqtg9RAnF,rJg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*N!rr9!rr)iq%0->)qt/^WT;&^"Ycdu+!j&N+qlK[ss/ZR0Yct=8YHY76XKCrm!3Q7%!3PCb +riH1'rN6(%!j/W.q5j_$Xf_T*riQ4's/l=(s/l=(riQ4's/l4%rN5mupTF%X!=^K +Yd1RAZ`^C3Y-"e-YHP@;T:W[Wq"FUarVccrrr<#ts8W#r!rr9!XoJG#!<<&ts8W,u$N:#)e\C,7 +m-XEBrr*0$r;-Ekp@eI^rs8Mtr;69^o^h\QoaLKcoCVYFoCMPBnalDPo)J4[o)A5#o^_VFo'u;B +o(;YMp\=OXp%7kJpA"CTo_%qNoD\:aoChtRp%/1Q!;$'ZrUU![s7?cnoCVYGp%eI]qYL*cqQTks +q>gElr;Z`qrrW2urVl^GrquZlqWd5/gX+[3iU$43p[n(Nq"OCLnb)_Qp@\.TqY^9RAnF#lIg7t4?]#iObn+QVTrVZTmrr<#sJcE"TJ,~> +g&M*O!<<#s)ZBU4rVulqrV5BhWO0pue(3+"eC2pse(*!urRD2&e^`-se'cXkrmLho"k(oLeC2n; +e,\%^eGmtteGRbqeG[kqe,n+KeG7PpeC2nGeGdqseGn"teGn"teGdqseGn"qeG[kleGReqeGdnu +eC2n9eGn"se,[tse-"1JdF/$@s3gqo(t@0ge^rF%f#k4s`9[?sr;QZnrr2lrs8Jens8E#urr2rt +s8EB(s8UWaipuI'oDJUe#Q=Ssrr)QarVQU!qtg6hq=XCZoDeF`oCDnQ!;$'Zs763]s7-6_o^r.S +#k[`[o(;PFp%SI\)#gElr;Z`qrrW2urVl^GrquZlqWd5/gX+[3iU$43p[n(Nq"OCLnb)_Qp@\.TqY^9RAnF#lIg7t4?]#iObn+Q_[rr2kIs/c6N~> +f)PdL!<<&t'`It,qtg0_ikh_$b0SG_e'lgtf$s]J!7Leos3_"ueC;tGe-=CPf%8L'e,Iksebmns +ec+&-e^W."eC<%!eC<%!eC=KJs4%"ts3q8'eC<%!eC=KJrmUqurRChs!n>cNq:#JreC=KJrm^tu +s4%)!s4%)!rm^tus4$tsrRCYnr7(bsrmUqum*l3feCN7%eGdo(daQ[ndaZdnd*pJBdLX[Pa02J[ +l218Rrr)irs8AVjs8E#urr2rts8EB(s8UWaipuI'oDJUe#Q=Ssrr)QarVQU:qtg9jqt9UQnaQ)> +nF6&BoCVeOp@RtJo'u>Fq"OOVrUg0_rUp0`%/B\rqYL$^o^_MBpA"R[!qu1!bqYU-cYl"Is!;lcns8Dut!ri/srqn>Hr;6HhlK7Eed+[C9 +m.C)Io^heOp[dnEp%eCVp%J4Xr;HWmr;HQiqu-Nnrr)`n)Z9C+qsEP8mdgD3UReKtak#SBpAFmf +rr;usJcDnQJ,~> +g&M*O)uop:r;Q]qrVccprVH0C]qD..[BQg8XKAY-Y5YO)Y,n`%Y5bU3Y-5%3YHG(4Xf\b-e#`\S +XK;E(!3Q4&riH7)Xf_E%!j/W.riQ1&s/l=(s/l=(s/l:'s/l=(r2oq#q5sUu"g+r1XfehjXWOXF +X0&J)Xfo"7Za6sAXfek2Y-"k2['$*r]]Jt`r;Z`p&H2V-rVlfprVZWmrr)fqrr0/%s8E#urr2rt +s8FbOs8UZahsfsuoDS[erVZTgqYU$TlgaQ5n+QYTqYg:0h!r`&pXo8:t3W&aPrVcZlrVlcnrVl]gn`A`d_Qq#&eD]`^mH9RBnaH&Kg7t4?]#iObn+QYVrr)lrs8N)uJcE"TJ,~> +f)PdL&c_h-rVlfrrVlfkj27n(cI:5@eHaROe'c^peC46C"OklLdaJ-Ds3gqr!7K]Jr6t_qpXB2lrm^tr!7^8^!7_"u!n5TGrm:_mrQuJ3 +f\"g,f$r6lZ)kq0rVQQlrr)cmrVlfpr;Q`r!<0&!s8E#urr2rts8FADs8UZahsfsuoDS[erVZTg +qYU$TlgaQ5n+QYTqYpHgo^_YIp@nIXrq6<`#kdi]oC_eKoCMnP!;$0]&,#Pao(2GEp%J+Oo()GF +oDJ7\oD\D*o_/%Qp%.hKp%7nJo^qbIo_%kLp@n7Oo_%kKoCM\Oqu6KprVZSqrVudUqu$BjrVZTl +rr)cnrqlH[jl,(5ZGFf8iTot"kN1pmki:RZk3;'iioK7en+HMQqtp0]p\XpgrVlfr)ZB^8rquQe +qsES:n+-M4UReKtak#SBpAFpgrVhBJY5a"~> +f)PdL!<<#s'E.k,qtp*I_lC&dd*L+geCN7%ec+%ue,7_qdf\+Me^XQJs3q2%f%&:"rmh%ur7(es +rm_J-e^W+!e^W+!e^W+!ec+(uec""teHXORe^W+!ec+(teH"+tec+&"e^W+EeH47Nec+(tec4/! +ec4/!ec4.uec4/!ebmqqebR_nec+(teH"+ceHOIQe^i=%rmV"ueC+:0h!r`&pXo8:t3W&aPrVcZlrVlcnrVl]gn`A`d +_Qq#&eD]`^mH9RBnaH&Kg7t4? +]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O+ohQ@r;Q]qrVccprVQ6D]qD11[]lp9Xfnq2YH=q0Y,n`(Y5>?sY5bUZXKAY.Xfeh/Y-+n0 +Y-"h/Xf\b.Xfee.Y-+n0Y-"k0Xfeh/Y-+n/Y-"h/Xf\b/XK8S8XVe4CXKAY.Xfeh/Y-+n0Y-"h/ +Xf\b.Xfei+XT,=@XK/G)Y->1:Za-j>Y-5%2XKAb6XJ)E%jn\ZKs8DourVlforADImIU8Sr;?NlqYg0p^qY^3cq"X[]qYBs`qtp1!erVQKiqtp6erVQcpqYBsa +q#:*hpBp`kp\"4RqY^ +f)PdL)#sR4rVlfrrVlfkj27n(cI1.kf%&6udaJ*Cs4%(trm^ts!7^bl!RfKHdg"7MeC2pse+(rf +df@n[dfS%Je,7\qe+_>le,IksdK%e]df@nseH44Jdf.Vod/MDqd+$_#f)=,'a0DbclM^VYrVuct +rVlfpr;Q`r!<0&!s8E#urr2rts8FYLs8UZahXU"#oDJRbr;HTjrVP`qWi2egYKH#&rr2`eoCM_Q +r;HTlrVZQjr;6Kh$2aPmq>C-dq>'mbq$-]mqYL-dpAXdoq>1!cq=j[\q=j[[rV?`rrVZNfqYL3d +s7lrqq>'d[q"ORZrqcZl%Jfbnq=s^Wp%S=\rVZThr;uusrOMn0rVlfprqufprr2cm9)S8BjQ"O\ +Lm>HuhW3kZgXt03f$VaedF-CdcHt%oj6cO9rVcTeq>:-hr;HWps8DusrquQeqsES:n+-M4UReKt +ak#SBpAFmfrVhBJY5a"~> +f)PdL!<<#s'`It-qu$0J_lC&dd*L+geCN7&eC3g7rmcSLldQ6kf%/C$e'ujrdf%W+da?Ile'ZLh +dEoe9Xi0K%qYpHlrr;uurhKMnrW)utrr<#ur[IgGs44p@na5`8r;HQkrVcTkqrYhsW2?8lb3&Ku +s8D`boCr+ZrVZTlrVQZmrqRi9q"FIYqtg0ap\=OXp\=RZqY^9fp\+=Tp\=R\p\":Wq=sd^rVZ]o +$N0esqYL$_q"agarqQTiq>U0hq%3>tqY9gZq=s^Wp%S=\rVZThr;uusrOMn0rVlfprqufprr2cm +:Aj\FjQ"O\Lm>HuhW3kZgXt03f$VaedF-CdcHt%oj6cO9rVcTeq>:-hr;HWps8DusrquQeqsES: +n+-M4UReKtak#SBpAFmfrr;usJcDnQJ,~> +g&M*O!rr9!rr)lr(]FC5r;?6F^7hC5\$<-=Y->.6YHG%3YPkU"Y5bU)Y-%]+!3Q4&s0!rUYHP+4 +YHG(4Y-+t2Y-5"2YHG%3YHG(4Y-5%3YHP+4YHG%3Y-+t2Y-5&.Xh(Y8Xo5F&Y;<>bYHG(4Y-5%3 +Y-5"2YHG%3Y-"h-WiE,$X/rM0ZEppDZEUO:Y,eP&ZEgI'UqPjaq#1*hs8NH*r;?Qnr;Q]qrV`ku +s8E#urr2rts8FtUs8UWai:HF+oDAI_qu6Tmrq4[/Ebf?"HDK$^rquN`p%S@]r;-3_q"OR\r;-3` +q>0p^qY^3gq>^1$a$MjPqqt^!\q"ad`rVQirqYL*equ$Ei +r!E8sq"FL[rVlcorVliqs8E*"rr0J."9/?#rr2lrrr2rtr\FHOrVcZln`K0'cC0!3ZeOR)mHENc +gt^T5dF$Ioe'HCge(WmOq>UEor;$3dr;6?grVc^8rVuikq>9RAo'l5Mg7t4?]#iObn+Q\XrVlir +rdk*Ps*t~> +g&M*O!<<#s"TA8srVulr%Jf)&WjL%"daZgseC)bBdehMfeGmu$eC)gpdaHarrmL_n^=<23!7_"s +s3gDcs3_"ueC;tGe,n+Idf.W,da6@ge(<4$dF6[r`3HJ`l2CPYrWW8tr;ZfrU]:An!<<&ts8W,u +-N3uEe\C&6n*flFr;6Bjrqucgd@>5mBOuLce+oqtg0ao_&4X'DVCup@\.Sp\4IXq>1!drVZNdpAFXqq"OLVp\=R\qu-Nos8DrrrVR!! +qY9dZqu-NmrVc`qrVuius8N#.rr`9#s8N#rs8N#ts8FePrr)fnr:/q8lctrDKsTOpkj@TmhV?o> +e^;doe^MjkdF6h1n+lt_s8;]hqu$?fr;HTn*<#p9q"agSk48$4s4X6=XLcO)jmVp?r;?QorV_ +f)PdL!<<#s!<)op&H2@a`2g8hdEp=ke^rC&e^X!:rmZMLmF;?ge^i@&rmV"uda\9F'%GCZdaHXn +cHFM]cbQfg_s%!prVliq"9/?#rM0DmrW)utrr<#ur[.UDs4+mBoC)/>qu$?grr2ipp!K:MCM7:* +Usnu8rqcB_p\Xpfqu6@&p\=X`q=j[[qY9dYq"a[Yp@\CX!r)KbrqQTip&=U`p&F^to_%tSq"XUZ +qtpUEor;$3dr;6?grVc^8 +rVuikq>9RAo'l5Mg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O+ohQ@rVZTls8N&tr;?+4YHP,!XYm2^YHY14YHY46Yck77YHP17 +YHY77Yct=8Yck77YHP16YHY46Yck77Yck:8YHY14YHP+1\ud<\Xfnt3Y-5(5YHY46Yck77Yck:8 +YHG+5XfSV)WMunuXKAY0Z*OA8,I+DTXf8.rZ*L:#Uqbsaq>C3jrVuoss8W)srVlfprr2rsriQ5# +rW)utrr<#urX/W(s4+mDp@@bGqu-I:rr)c\^kc8q;c@7iaR8p&q"OR[qt]mOkN([blgjW7m-O]< +!:KjRrp9UN&+8oUnF#Z.lKdj*m-F!%l2L&Lm250RkiqI%mH`uuk3;:&naZ,9RBnaH&Kg7t4?]#iObn+QYVrVc`p +s8N)uJcE"TJ,~> +f)PdL+ohQ@rVlfrrr)fkj2.b#bgOnedaQ[md*^:hda?Lke'lbDdf@npe,Rhue'c[le'\?GdaHYE +e+(rfdf@n[dfS%Je+(rde,RhrdI,H_d0e=NeC;pqe^W'rdJhMld1FaTe^`*md+6X^YcYh+r;HWn +r<3&ss8W(ns8W&us8N#ts8W'*rVuoJ^Z+tXnau_Wr?hOBr9M.S>uXa$AWb($qYpBfq"jm`o^1i& +j5oUto'Yl2mHs9,mJcJOli$07mI'H3mHj*#l0Rg'lK[TrkiqBum-Es%mI9]:mcs$!l0Ia)mHj0( +lKn!1pA+Xbrr2lqrr)lrrVZNdp@e=Zrquco#QOf&s8W)us1/+1s8N#ps8;jJs8DlprV?!Km,uHQ +EIt@CiT]q(mHWp!kN(U\jQGU_hr!APlLXoOqt]sXp%\O^*rQ$;s8N&ss8D`gqsES:n+-M4UReKt +ak#SBpAFmfrVhBJY5a"~> +f)PdL!<<#s'`It-qu$3K_lC#cdaHUneCN7$eC/uueC5Pif$r0te^W'sdaQXneC;mne'ZC[bL4_N +Ycbq,qY^ +g&M*O#QOf&rVZTls8N#tr#GIh]Ukn-\$<-+5Y-4t1Y-"e-XK/E!XT,=)XKAY/Y--B[ +s/lO/Y-"e+X7!%mX/rD)XK:ons/Z=)XK8JjXT,=)XKAY/Y-.;u&?`4?XfSS&W2Q\rXKAV.Z*OA8 +)mQQLY,S4qZ*UC$Uqc!bq#(*irVuoss8W)srVZWrs8N#"s8W&us8N#ts8W'*rVuoJ^YnbSo(DnY +r@.aDqrbG=>>S-n>_U&\qYp?dq"aaXm,6I@c-kG1jkeeJh:p]?gtCB7rn7>*s4\(?hV[5Hg=P!3 +hr*>Eg"4jTgFqC?gXam,h;@#?eBu^sh;RDQhr*AKhr +f)PdL"98B"rVc`qr=A_a_5=H[da6ChdaQUjdF/$As3gqp!n,QGp!`rh!793C!n#HEkgKO[m*bs_ +kgTR[!7:/^s3W"k`97'srr)cur;HZqrhKMnrW)ut +rr<#urX/W(s4+mBo^VMFqu-J7rquZV[t%[Z:f1JO_X%'tqt^$_q=X+4f$DUhh<*hUgt^`?g>(H8 +g"G$1g"P07gYCWAhVHu>f@o->h:gQ6f@\d1h;?u=f%f6FinW/9eC`U9io&YJgYC]HkO8' +f)PdL!<<#s!<)op&H2@`_Psf_da?LkeCN7%eC/uue'nWQeC;sseC2nGdf7c-eBu[ldEBPPda,\3 +Y/KK!r;HTnrr;uurhKMnrW)utrr<#urX/W(s4+mBo^VMFqu-I@rquZV[t%[Z:f1JO_X%'tqYBp^ +q"3q2f$DUhh<*hUgt^Z;g=t92rRh/%7G->JgYCZBgtC?4g>1W@g"=m,gYCT@i8*)=h;[PUgt1*, +g#(fLio&bPhV[>Wme$;Nr;?Nkr;HWorVZNcp@\4Wqu$Bkr1$gs8W)trVuikq>9RB +naH&Kg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*O!rr9!rr)lrs8W)s*;8=&SYER&ZEC7/YHP+4YHG%1YHG(3XK8P)WiGrss/H4&XKAY-euf7[ +Y-+n.X/`2fWs,N(X/rA&n>uYj"0AQ(WpZqfWW]B(XfeeqXoPU'XphD3W2HPlWiN5&Y->21Z4F1A +Y-"_"W3We0Stj*]pA+^drVlis#QF]#rr2rsri6"urW)utrr<#urX/W(s44sAo'l2Aqu6O[r;HNj +kHK579i"YfGdur4rqcEaq"XLJiRZ8rd+[R?g"+d,e(!%$dF-LldaQ^qe^`:(g"P-1dF-Y%hV-W6 +e^aZN3nrHAd*C.qh:U0$b08;dgtpi?g=b69hra=tp\F^`rVZTlrr)fnqY0^Wq>:*grVZWmrr)fp +rr;us\c2a1s8Vuqr;Z]o)?'6lgVB"c;IG-T^XV<+iSNGMj5AbMioT8#it(,+iT04gm-<`pl1+KD +qu-Nn*rZ- +f)PdL"98B!rr2p?rqu]hik_Ipb0eS`d*^:gcd:(ed*g=hd*U4hdF-Oodf%Yte'umqcd;pEdF-Oo +ddbiedKA"Ida@F0"jtcHeC)e8e-".KeC*R.+4AWfe'lgqda?FfcHab_d*^:keBuIbf@IjCXMsE# +r;HQtr;6Els8Jens8E#urr2rts8EB(s8UZbhX^1+o_\Xd.K'/Ar9(;0=\V[iU6cp\=OU +m,6I>b0\l'in;o7f$i.#e^2_CdSeQDeCE+$f\,!3f[SC%h;6o=f@AF&f@\m6f[8'uhW!DDda-7h +g>:`Cg=b-3gu.;]oCr(Xqu-EirVlcor;-0]pA+U`rVcZmrVlcorr2rsrji%1rr<#qrquforYb\- +khEn:B2W,iVn^aAk2G1RiT&kPhW!YXro4OJhr3Y[lg3p!jlu=/qYU6jrZ;%9RBnF#lI +g7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +f)PdL!<<#s$N9o#qu$3J_5FKYrQtete^i7!dXflodiQrde'c[le'lane'cUjd*0MPe'c%6Xi9K! +qu$Ekrr2lrrW)nls8W&us8N#ts8W'*rVuoK^Y\PNnau_Xr@@gEqu#W]H!*j;;HA%PkP>,Rq"ORY +o^(Pfc-"DejPnkEf$r*qf$Vdke'e6E1t:(+f@em4g=Oj)g"kQ@g"=m,g"P09hqHT.f\b]Ff@&$m +f%]-AhqZu?gYC]JmIU)JqYU9i)#aI4rVZNdp@e=Zr;HTlrVc`orVlfrrr0J.!ri6"qu6Nnr;IT4 +p#t/GP@md$K;ZK6j6#=WhVmMQh;7/QjSn0MiSWVTkj.U#k2kjtpA4[brr*u;s8N#qp\F^RkO@p1 +s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +g&M*O!rr9!rr)lrs8O2?rVcHK]q(k*\?W08X08_0YHP+3Xfnq2XfSY,XK&;uX?*D^WiW>)XKAY. +Xfeh/Y-+n0Y-"h/Xf\b.Xfee.Y-+n0Y-"k0Xfeh/Y-+n/Y-"h/Xf\b/XK8J&WpZnkWiN2&X/k`l +s/Q7(X/i8gX8f1[XKAV+Xfeh/Y-+n0Y-"k0Xf\b.Xfee.Y-+k,W2?GjX/`5&YHbC=Z*LU9Y-"b$ +W3`n3Sts3_pA+^drVlis#QF]#rr2rsri6"urW)utrr<#ur\"0Ls44sAo'l);q>C3ir;HNll)SYo +5Xe7;Cou^lrV6*[q"jgZmH3<]hra=lj8Rs?h;7/Lgtr%f'&_[)i8EVTjQ>R`hV[AWlK@9jrT#Ql +kih*`gYqA]jknhFf\GKKkN1a`j5oFfme$;Nqu$Bjr;?NmrVlcnq=j[]r;QWrr;HTlrW<-!rji%1 +rr<#qrqufpr[n0LqXj4,Y`ag'VS^pInEo;qj65agi8s7hkiUseio/qZl0Rj*lg!m/p\Odcrr*u; +s8W)rp\F^RkO@p1s4X6=XLcO)jmVp@rVc`qrr.KKY5a"~> +f)PdL"98B!rr2p?rqu]hj2.XqaO/A^cd:+ecI((fdF-CgdF$FkdF-Ooe,@bue'umrrmK9Cs3_%t +e'umrn^RTf"4YfKdHo +f)PdL!<<#s$N9o#qu$3K_ksTYrm:qse(*%!eC/uuf$jcMeC=KGrmUkp!n5ZHrmDG+dF$4Zb1+nV +X/sA)q>:*grVlfps8E#sU]:An!<<&ts8W,u:&Y+lf"^)4nF#iBr;HTlrVQTYX)1Kp77g-gXlB0S +p@S%QqYBgOk2+kMk3_KpiS`SIgu$o?h;6uEhr*GMi8`q]kNCsciT9@kl0%7.jt5c]l/^dZip#gn +in`>DiT04fkN([ajlYgpo_A:[r;?Nkr;HWnrr)cjp\=X`rquorrVcZn!rr9!\c2a1s8Vuqr;Z`p +/cYhHo^:;7P),0r_Udo>mH!6dkiq0djm)-pk2bU_iT'%am-a9,lL"3;qYU6jrZ;%9RB +nF#lIg7t4?]#iObn+Q\XrVlirrdk*Ps*t~> +g&M*N!rr5trqmH/s8N#rr;?C(X/rA&ri-.&WiE,#XT#:#XT,@$ +X>$]VXK/G(X/rD'X/rA&XK/D'X/i>'X/rD'XK8J(XK/G(X/i>&X/rA&XK8J'XK/DiX8o<`X8oSYPm-aTDr;6?fr;Q)cC-ajE5tPppiVEBF +p%7tTrVZH_nF#f +fDkgK!<)fo'E.q*k/F4!`m<&\dF-Lkcd:(dd/D>nda?J?df7erdK%\odf7\pdaHMDda>SQs3Uhp +ld5j`e'ugormM"ud*L"_rm)/'e'ljtcd::q`Moo\lMLJWrr)utr;HWoU]:An!<<&ts8W,u0)bhM +e\9u6n*KK9qY^6equ$H\X_L-^5=%kXXPrsOp%7nMqu-Khp$qM?o_A.Mrp]sU0C\GsmHs?0n*fc7 +n*ol=o^_P?mdTlBo^_SEo()DDp%@nDm-s`Dp@@\?mI0Z>p&4O_o)eUZqYpC&rVZWlqu$Hlrr)fk +q"Xacr;Z`qrW<,urUBjerW)utrr<#urr2p!rr<#trW<-!s8N#trrE&errW3"s7ZEls8N#trrW3" +s8;irs8Msgr:Tg_qWuqY`QZffm.L)>io&n_lfI*elK[QnioB._lL+36p%J%Lp%\C[qu$Ems8Mur +r;69bqs +f)PdL!<<#s!<)op&H2@ca/H,\d*g@ie(3'ue'`frdaS3Ds3q"r!7Ceos3UkodJhK#b0/8__5OEW +l2(8Tqu6Wq!rr)co!<<&ts8W)t +s8N)unc&[is8W)ts8W)t!rr9!JcFI(J,~> +g&M*O!rr9!rr!N0s8W&qrVcKP_k3O,[BZm7WiW?%XT,C(XK&<"X8].!Ws,N&WN)u!ri5sue#EJM +WiGBc!N`@#XRN:hX9#B'n#QGh!ii?'kc4Z^/?5\LWiN2'YctC;Xf\b-Xfnb)YdLL!U;cL?n +rVuors8W)srVlfrrr/qts8E#urr2rts8FYLs8UT`iq;d,me6PUqtg6hs7($ds7l]jqYpBlquHWnqB5V1qu$BhqYBp^qu$0p_qY^9gqYU3grVcZk +qYBpcq',V.p@e7Up\=U^qYC$err)cmqu$Bjr;69`q"jmbr;?QmrVZZPrrE&rs8W)trrE&gs8W)l +rrE&ts8W'"s8N#ss8Drsr@Rj6oDedap$_>?naZDOp$1Mnj6>ghiT'+bk2YLal0\'9qYL*fqt^*c +r;6Ejrr+)>r;?Hgp\F^RkOJ$3rn4';XLcO)jmVm>r;?QorVlisrr2rtrqZQorq$0irr2rtrr2p" +rr<#tJcFL)J,~> +g&M*O*rl3;s8Muqs8W&srr;fXa/>uXcI(+he'ugmd*^4erQu&%dF-IldaHOle'ZRirmCbm!7B9D +s3Uhprm:_on^7Bb!7C_mnBq0^!n#HEn^.QhdF$Chd*_1-rmM)"e'ugodEhg;s3M\1d*g@nf[A-s +f#4MebO#0(rr<#sr;HWps8A_ms8E#urr2rts8FJGs8UT`iq;d,me6PUqtg6hs7U6jq>L.#q=sd]q"ORYq=j[Yp\=R\rqRf6p@nCZq"OOXp\4IZq>0m]p@n@X +qYL$_p\F^`qYL-fqYC!eq\]2*q>1!cqYBsbr;HQjq"OOZqtp +f)PdK!<<#r(&[t+rVlTUaf2A]cdC4hdacpuda?PAdf%VrdaQ\Edf7brdeqPqdaQZrddtoedfRtH +e,.Snd2pZ_dF6Ojcd:"cd`fq_d_Mc\bNo'%rr<#srr2rsrhBGmrW)utrr<#ur[%OCs4"gCp$_88 +pA=dbqY^4[)#+I_"Y;p@%D:nb2kYrqccpqtgL.(q=s^Z +qYU*aqYU-bq>1!ap\=LVpAXggp\"7Yq#:"/p@nC[rVZNfqYU3gqtp6fr;HQjq"OR[qtp +g&M*O!<;rqs8Nc2r;HTgk/Es_Yd:R8WMur!WiN6!Ws,N(WiN2#ri?'us/H("ri-+%XK/>"d]2Q4 +kcF0P#ct)-WiW;%WN#Bes/Q[0WiN+tWMuquWiN;,Yd(J4XWFRHZ)jt/[&TLgam/]trVuors8W&t +s8Muqrr2rsri6"urW)utrr<#ur\+6Ms4"gDp@%A9p\asdq"jmeo?WFq76Wb:P0!%cp$hJ>nb)YM +p\+@WqYBdVq>:0f%Jf_nr;$0cqYBs^q"OR^q$$Wjp\4IXrV%u1$dq=sd^qtp6bp\F^bquZlrrVZZPrrE&rs8W)trrE&gs8W)lrrE&ts8W'" +s8N#rs8DpLrVH*XrVl]iqYU6fqY^9bmH3Kml0@Kpk3;6tkNM7#o(W%[qu$Eiq"ajdrr)fprZV7< +r;6?bq>9RBnaH&JfqY+>]#iObn+HSUr;Q`prr<#trr<#tq>UHooDejirr<#trr3*"s8W(Ls4dR(~> +g&M*O,6.W?s8Muqs8W&srr;fYaeu/XcI(+hdaQXkd*^4edF$=grR(\prmLhqs3^trdaJ*Ad*_pA +\^LN)mF)$`!n,QHrmE(Ada?Ffcd'h_d*L(edam.%d*pL]VlIu-r;6Kns8DimrVuorU]:An!<<&t +s8W,u*rZ-=eA(&;n*KK:r;?HeqYU9`c]1pm4uuo2aR/cprpL]op%\@Yq"X^_q"47Tqtg-dqY'^] +p\+@UrqQNfrV-TmqYBm[q"Xg]0D+l0q=jUVq>0jXo_8.Vq"ad_q=sa\qY0aZq=jUUo_%qQqYBm[ +q>1!cqY0^Yqu-Eorr)fnrnm_Urqufrrr2otrpg$grq??lrr2rtrW<-!rr)lqr\"0Go(Dt\qt^*c +rVHBgr:]O?jQGdmkiV$lm-rVZTjqY0g_mH=$.o)@=;SZKEE +f&cAnqu$Bks8Drss8N#ts8Miorr*!!rr2iq!<2uts8N#ts8N#t"9/?#rdk+(s*t~> +f)PdK!<<#r(&[t+rVlTVb,MDZcI((fdacmse'c_Cd\kOodcT!YdaQYHdaQ\BdKe.HdF-Fkda8!> +("1UWbKnPMVQ7u.qtg'dWp%J.Uqtg*^q>1!cqY0aZqu-Eorr)fnrnm_Urqufrrr2ot +rpg$grq??lrr2rtrW<-!rr)lqr\"0Go(Dt\qt^*crVHBgr:]O?jQGdmkiV$lm-rVZTjqY0g_mH=$.o)@=;SZKEEf&cAnqu$Bks8Drss8N#ts8MioqYpNprr2os +s8N#ts8N#t"9/?#rdk+(s*t~> +dJk?gs8W)sr;66Rae+s$Z*11*W2chpWiE%uWiN5%WMleqql9[s"g"c*XK8JNWWfB%X/rA&m&U5g +WpHbeWiPEdql0k$WiN2#WiP`ks/@'>WMunsX/rD)YHY13XK&8'Z`^@3Z)3e`cKtB'r;HQms8N?' +rVc`ps8N"ts8W&us8N#ts8W'?rVuoJ^YnbRm-j`JrqlH_oC_@gM,H]#1gZa#nFu\KrU^cpnalDH +q"XOPoCr(Uq"F=Lo_8(Yp]'pip%._DoD\D)p@\(MoCMPEo(2D@nFQ;EpA+RZo^qhOqtp6`oC;DC +rq-3_s7H?_&G5_lqtg']q"X[]q=s[XqYU9i#Q=SurVuorrS.>OrVZWps6K[ar;uusrVQTorrrE% +s8N#rqu-s#p@eF`qtKm`rr)io8c&,LmIBf>naGr;o^V>9n+-,Fqu6Qlqt^!]r;Q`qrr;rqr;6Bf +q=aX]mcX-/o)IF=SZKEEf&Z8mrVlcnrVlcprr;urrVuonrW)uorr;rqrr<#trr<#ur<*'!rr.KK +gAc[~> +fDkgK+8u-9s8W)trVcQZcDRPUbg=bce'udkdF$=gda?Lkd/MGldf7\sda?IhrmCbm"4>QFdFcnI +d0%hEdEh1,!mo?AlHo[[dEq=/s3U_ls3^npn^@?_!7:_n#gq#Gcd'h^cHcC8'%bpjdaHOVUoi&3 +qu$Ekrr)cnrVliss8E#ur;Hctrr0/%s8E#urr2rts8F/>s8UWai:QO*n+ck\qtKdTp$'MR;F1!fr!32ur;HZqrVbLMs8Dlp!<;Ba +s8<#urVcWms8N9%s8W)trVQR$r:]j^rqlHbr;QZor(6bXnEoc;oC;;mI0W +f)PdL!<<#srr)lp#5@N2W2@>Rrm2&#eC)amdF$CkdaQ\DdItugd=Ka4dK@nFdF%sArR(Yl*R`?^ +d*Kt]daldhc-3epY0u_5qu-Kmrr)fprVc_js8W&us8N#ts8W'NrVuoJ^YnbRm-j`JrqlH_oC_@g +M,H]#1gZa$n+H>Bn+$#@o_%kMqYU*\o(2VTq%ic"p\F[Zo_%qPq"OIRoChtSp\=ISoD\@`p%S4[ +oc!Psp%S=Xo^MA?pA4^aq"4+Ho'u5>o_%tQpAX\&p%J4Vp@e:Vq>0s_p\=U^r;HQlr;?Nns8DoN +rr;rprW)uarr;ourr)fmrr9UCnaH&Kg7t4?]#iOame6VYrVZWnrVlfrrr)fqs82fe +s8N#ts8N#ts8W$"rr;usJcFI(J,~> +g&M*O!<;lo&cM_,qY'C*UR%g]YH"FrW2HQmW;`drWrK!sW!B<#W2ZerWiQ-#"0JW)Wme!NWiN5' +q5jUurN-%$riH.#"g"c)WN3)hWrK+'WN*##X/kZi!ir?$mAp8e-EF,EWiW1uW2cr$WiN;*XKJY& +VQ@)-X/rIuQ)iF%p\Xjcrr2lprr36&rVc`ps8N"ts8W&us8N#ts8W'CrVuoJ^YeVNlgFTJrUf@3 +e^2+"ANMUp-r>`/d+RUPq"sm\rq$nFZGIp&=RkoCDJD +o(2GBnF?,Brq6rso^qbJq>:!]oCMVJp@\4Vp\jdtp%J1Wr;69aq=sd^qYBp\qY^?k!ri/sr;Q9e +s8E#urr2rts8N#t&cVh1rr)fqrr;urrVuoss8W)hrrW3"s8DrprVuj$s8N#rrr2lprr;m?rVuip +rquH]qYg:'ao^qkVp^I#trr2fjq>1'grr)fprZqI?r;6?aq>9UC +naH&JfqY+>]#`I_me6VYrqu]orr)fprVcZnrr;rsrrE#srr;osr;?Nnqucots8Dfn!rW#qqu20H +h>`!~> +g&M!L"o\Atrr<#trXJf#n^ab9]ZSRJdF6Rmrm:Vk"k(lHcd:&AcNDP? +cd(n'"jYH?d*L&-d/VDod*L%`ma(pY"4,?@cgK0[cQgf_cHjncd*U1fd*Bq_c-=Y`cHatpf?qsi +\tcR`n,!"]r;HWo!rr5tUAt8m!<<&ts8W,u,Q7ZBe\C#4n*BE;rr)KRhpp)hR:SH7-n%oJ\'Wgj +nFuhUpAX^ep\F[\rq73(q>0p]p@n@Wp\4IWp\=OWo^qnTqt^'_rUp6crqQNf)>'gbpAX^ppA"CUp\FU\r;?HgqYU3ir;uusrVZZcs8W&us8N#ts8W)trt581 +s8Muqs8N&trVccrrr<#to)Adjs8W&sr;HZp#64]%rVlfprVlip,5qQ?rVl`fo_SO`q"XabrVQNl +rqlE]q>L9gp\F^`q"44PrqHourVlfnq>'mcrVlcorr+2Ar;?HgpA+URkOJ$3rn4';XLcL(j6lX> +rr2ins8Muqrr)fnrr2rrs8N)toD\di!<)cn!rW#qqu20Hh>`!~> +ci4CPs8W&pp[Qk:Uq=eKcN;JAdJ_GkdJqYpci;>ndEp8>dJqQ!dEp7dd*U1ed"0U9dJqQ;dEp4d +da?FgdaQXkd*^1cdEp([d+-Rgb/h)fZe=gBr;HQirhBGmrW)utrr<#ur[RmHs4+mAo'bo4q>U?b +l/1%<^mSaq0dnGHLq(d_jR)R6q=aOVq"agaq#9t2q"ad`q"OU]qtKgYq"ad^p\"1Qqtp0`p\"1O +pA"FYqYBscp_EW$q"==Po_8:_rV?-Yp%@tJp%S4UrqR0#p@e7Vq"OOYq"agaqYBs`r;QWrrr)fn +rpp*hrW)utrr<#urr2p0rr<#trVccqs8Muqs8W)us8MTh!ri6"rVl`ns8E6&rr2lqrr)fps84)> +s8Doqr:T^YrVQBbqu-Kjr;Q]mp@S1ZrVH9aqtp0\o_/:Z%/Tr%rqlNeqYgBlrVc`p,lRZ=qtg$^ +qsNY;n+-J2UReKtaO]D>pAP!ir;?TorVc`orVZZos8Dut!<)Ngs8N)tqYgQorVcWmJcFR+J,~> +g&M*O!<;lo)u]d6qtBX8Xdc/gYH+LoUo:5iW2cenVl6PlVuE[qW!fT)WN*##X/i>&X/aRJm&^5f +"0AQ(WU-YhWN3)$X/kZikH"W_s/QC(W2Q_tXfJQ&XVS(AWM?ApYH+_*UR\[Dn+ceXrVlfprVlg% +rr)fprr;usWrN+u!<<&ts8W,u/cG_Le\C)7mHX-8rV,I#\YPL@@Qu.^+='$TJ<$/5htI'Hq>1$d +r;?Bdr;6?iqulolp@\(WpAOUhoC228mdTi?oD\=[nc/1[nG_qYo(2kQ!;$3\s7$Tkp%J(Pq"jja +r;6?dq"k!e$N0l%rVHBfqtg3erqZ]nrr2oqs8E0$rr2rsn,ECeq#:X!s8W)srVlfrqu6Wq!<2Ng +q>LBmrr*$"rr;urr<)urrr2oq.KBDFrquBXp@n=Vp@RtLq"jpdq=O7Pr;HHbqY^6eq>:-js8;cj +r;QWnqu?Tprr2lrrW)orr#tq1q>9UCnaH&JfqY+>]#`I_me6JSrr2lrrr)cmrVuiprr*3%s8Mur +rr)cmrql]ms8**#rr2flrVlcorqucor;M9Ih>`!~> +g&M!L"o\Atrr<#trYkb1p#!-S\]<(FdEp7hda-:hd*9nae'ZOhci2;qd*L(bccsVY!7(;as3CGd +#0tQAdEg.do$@Tgcd1"ccd(t)s3CVi!7'oVs3;b5cHab`da?FfcHje^daHLdd+?gobfRGq\_ZiQ +rVcZmrr*!!rV`Jjs8E#urr2rts8F;Bs8UWaiUcI%meQhUk0LT6Q%3=.,p=BV4'mGtS@m_OrqlNg +rqm-%qtg6fqYU3hrVZKi#Q4Q!r;?HjrqlZor;-Blr;QZor;ZWrqYU6irVQZorqufq"8r&nr;?Br +q=sa\qYU6irqlirrr2oqs8E0$rr2rsn,ECeq#:X!s8W)srVlfrqu6Wq!<2Ngq>LBmrr*$"rr;ur +r<)urrr2oq.KBDFrquBXp@n=Vp@RtLq"jpdq=O7Pr;HHbqY^6eq>:-js8;cjr;QWnqu?Tprr2lr +rW)orr#tq1q>9UCnaH&JfqY+>]#`I_me6JSrr2lrrr)cmrVuiprVcs"rr)iqrr!E-rVc`prVlco +rr2flrVlcorqucor;M9Ih>`!~> +ci50fs8Mupp\!IPW49jmd*Bn^dF$:eda67bdF-CfdEp:fd/MGmcj8%Gd*L(cdEp7Qd07nEdF-Fi +nC%?a"4GTEd+-PDciVV@ci292cd:+hda6@gd*U4gc,e)Vd*'JJ\>d'rnbN+]rVHMfs8W&us8N#t +s8W'XrVuoJ^Z"eOlL+KHpZBf4Um6I>5:%Hq,Wf=`NgmW7oDJO^qu-KmrVHBgqtg3frr2iorVlco +r;QX"rr)fnr;HWorr)fno_nad!<)or!<)op$N'c!qu$Bjr;HWmrVHirq>'m`qu$BkqZ?]orr2lr +rWN9#rr;udrrE&nrs8W(s8Muqrr2rprr;uurpg$arW)orrWE3"s8Muq"8r,srr2jFs8Mrqr:BIP +p\4IVo^hbNqY^9eo^_bSrV?0`r;6?dqu-Qpr;6?grqucms8;rsrr)lr!<)op+o:p.qsNY;n+-J2 +UReKtaO]D>pA+Xcrr)lrrVZTls8DoprX/])rVlfpr;?Nkr;6Hmrr;itrVlcorqucor;M9Ih>`!~> +dJk3bs8W)trVZE^iOPSQWj&M$V51#fVlQquUo(&fqksq$W2Z_pWiN5&XfSV)eZAeO!3Gdms/c*u +s/H.$WiH&tn>cJes/H.$WiGHeo;qtmq5jRr#ct&*W2ZbrWiQ'!'!A:0Uopl&Xf%ed^#/AUrVc`p +rquisrr2rrs8E*"rr/qts8E#urr2rts8FYLs8UT`iUcF$nb`4Nd]npV>tmUE0J+n//iZL$?\l>U +q"adbrqucpqu-QorVc`n#5\)eo()>=rp'XNkiVm+#it48lKRU!l0A94s6'@E!pSq4r94gWkNV=# +mdK`=pA"CVp@e7Wr;HTqs8Mup#Q+GrqYL*dr;HNmr!32ur;Q]orVlcos8;Zjs8E)ur;?Qms8Muq +rVQcrr;?Nmr:g-jrr)fp!WE#srGrVlcmp\F^RkOJ$3rRdm8X1HF(j6u[: +qu6WorVlfor;HTlrVc`nrVc`p!<<&s"9/8trq?Bkr +g&M*N"98>ur;QZps8W'9s8Mifj1hY#`R3,]dEp:hcdL@jbg4Yae'\*?!mf0;eda%m=rltMi +p!mf0:l-9@VcHc@6!m]-cd:(dci25icP+[Rd`]k` +da-1U[BIL.o_\XerVlfp#ljl%rr<#trr;oq!rr9!YlFb&!<<&ts8W,u0E(qNeA'u6m-=- +f)PdLrr3N.s8Durrr)Wcjhe+)_p?[.cMu5scI14hbKeJ^dJ2)gcNqnDcd'k_d*L%Xd/VMeciVVA +d.#H_ciDJUciVVAd/;8md*^83d/VGld/VMick"OMa2lTPbK.E'Yf5\pqYgEmrquourV`Jjs8E#u +rr2rts8FYLs8UT`iUcF$nb`4Nd]npV>tmUE0J+n//iZL$?\PuKp\O^as8W)tr;HZorVjq=!<2ur +"8r,ss8DosrVl]or;Z`qquHWnr;QTnr!32ur;Q]orVlcos8;Zjs8E)ur;?Qms8MuqrVQcrr;?Nm +r:g-jrr)fp!WE#sr +fDbpOs8Vuqs8=GFqtTgF`hSiuZ)=P#Vk^#cY-4h$Vl-JnWMZPjWMlerWN*##Xfek1XfU'Ts/Z=) +XK8JuXT,=)XKAV+X/l6$s/Q4&Wi>Bas/-%!WN*!%mX/rG+Xf_N("g+r1XfSW"XT5I%XWX^G +WiE"qVPpMrWi;qtX/;bpXg#"$QDhmdo_JLdrVcZnrr6<`idZXP37@qY^9fqu-Norr*9&qYBs\o'Yf)iS+:^$ImMN +cdC.edaZaprRCnsrmLho!7:_ms3Uen,LY&he'umuf\"m5j65n!nF?)Ap\OmgrVlirrVl`lqYBmZ +pAXgcpAXe/q"aa^qtg-bq=sd\p\4IXq=sa\q"X[]qYBmZp\=R\qYg6gp]1-hq#:$fq#^Egq>U0h +q>U3nqtg0bq>U0fq>^9squ$EjqY9pds8N#ts8W$=r;Q]nqtp?kr:opRn)q`r][Gj(lg=$$jQ>ao +lK@@0jU1).iSs"ep%nR_r;Q]qquZirs8Drss!7UAq"agRkOJ$3rn4';XLcL(jR2a>rVc`nqu$Hm +s8Mons8W)srVlfqquH]pr;Z^,r;-3_pA+U\o^_SEp%eI\rVZYGs5!^*~> +g&M*N!ri/srqlcpr;IB.qXs!pYGo@ccI(.hc-=Vcf@&"Ed0\=NdF-CgdEp4drm1VirlkMjcHb%f +s3CVi!7(Dds3:eod*U+acMYumcHjh`dF$>8d0J%GdEp7ddF%s>!7'rW"jYH?d*Br7ciqbBd*L"_ +q9T&cs3De6dEp1`c-4JYc-4DYda$(_d*g7OWO0t8pAFsjrr)cmrr2rtr'g[p\ssfp\spmp\=OXp@e7TrqI`6qY9gYp%7kIp\=RYp@n@Yr;QZm +r;HQjqu$U0hq>U3nqtg0bq>U0fq>^9squ$EjqY9pds8N#ts8W$=r;Q]nqtp?kr:opRn)q`r +][Gj(lg=$$jQ>aolK@@0jU1).iSs"ep%nR_r;Q]qquZirs8Drss![mEq"agRkOJ$3rn4';XLcL( +jR2a>rVc`nqu$Hms8Mons8W)sr;HWos8DrrrVuj.rVZNfq"jj^o^_SEp%eI\rVZYGs5!^*~> +fDbpOs8W)t!<<#s)u]^1p#sZ)WPHj'c-ah[bKn_idEU"adF6Lhchl,icj8%Gd*L(cdEp7^dJqPs +dF-Ijd*V++!mo?Brm:\m!79uX"jkZEda?J?dKS%Hda?Fgq9]2hrm;k8dF-FgcHXY\d*L"]cHs_U +bKS8S[AUF[lLt)Ss8Door;NGjs8E#urr2rts8F_Ns8UWai:?:%o_nRLc**7Q@Tm/QC1h'a1!bq>0p^q=s^Yq"X[[q"a^[q>0s`p\+@Vq>0sdq>L'gq>U0gp]($jqYBsdq#C0hq?6]l +qYBsdq#1$gq?ZurrVZNeqYpNorr<#ur>tn9rquZjrVl`io^M>4a0E;*j65grlf[?klKmg!kPjQM +jPo.Xk3_j +fDbpOs8W#rrr"2Aqt]pKdA`8(Ybe7tVOjBXXfSP$W2HSoWMcVkWi;ttWN*&$Xf_T+!3XnV#-P/5 +Y,n_*p8n:rpoOLq!3#Oh"fSE"W2QWnVu`ltl`:/gXKCfl!3Z=)+KhoMWi)YgVlQo!Vkg5kXJhtr +Z`f[TYght2q>L?lrVZZos8N?'rVc`ps8N"ts8W&us8N#ts8W'DrVuoJ^Z"bNm.:/Mmc)d<\ZW*C +]"5>X[C!6CXfo.UkP5#RrVl`orVldHr;$$WnE]2ne]>J9]"GYc\$ro[]"#8Z\@]Aa\[])V\$iZM +[C3KM[C*BLrjMg9*kK&"`R!<$mI0W +g&M*N!ri/srqlcpr;Ii;q=Nq&[%k=[aO&G_a2lWXeC)amdF-OndF-ChdEp4dr6GGic-?75qp5;f +o?RE^ma(pYrm(Sima(pY"jbQBdEp86d1+IMdEp7dd*U+cd*L"_m`tmYrm1Vips8ucq9T&c+j\N_ +da64\bK\AYbfS#PdaZRabgO\;TXrkFp\Y!jrr)cmrr2rtrX[C!6CY-54Tk5"uRrr2lor;HWnrVulpqtp6bo^V>4jPo1] +kiV!ilKdd#kND'lkNM-mroX7Ds6'IGroP`okiq?ql0@Hmj5T%Wk3hs?r;-6cr;Q]or;6Egq>'m_ +q"FCPo()DCo'u8LncJFUp&=[bo`4U]o(hkeo_%qNo'u;Bo_%nLo_%nUo)SF^oD\=\oGmPro^_SE +o^qhMp%J(No'u54O +g"P39f[A(EcOnCCajT/;qu$9OAnaH&JfqY+>]#`I`me6VYrVcZm +qu$Elrr)`lrr;urr>bb3q=sXTo'l)6lK@9fhVHr=f[eU'f%K*Qr;QWmrdk+*s*t~> +fDbpOs8W)t!<<#s'E.k)p$:5:UUnUebgFYQ`6Zu_dJhJrdF6Ojcd;U;s3M&!d*U+cd*^4e`mOh7 +q9]2jn^.`kdF$=fcd:%bd*^;+d/qbDdJVDodF-JqYpKnrVuj!rVuosrqmK,qtp3_p%7hFnac;DoCDGBnalGHrq?Bb!;$-Zq=>*gp%J(L +nac;Dp%@tLp%A:T!;-9^rpp*]*;/sro()DEo_%qNp@\(KnaQ#:n+-2Go^__Rrqucm#5n>mp%S@^ +rqufq*<#d2qu$?`lK7?eX,Nmsi8it\j5/MCg=tE8da%j<&^8A=dc']mr;-?irr2inrVliqr[@gG +rquQeqs +g&M*O#QOf&s8DorrVl^7rVZNdmb5"5SuS]fWMcMfWi2eoX/W%qWiE"qW;`auWi<#!ri?4)YHP+[ +Y6M/5YHFt.X7iXpXo,7&X/rD'm&Bo]"KAH'XK1fk#-4i,Y-5%3n#n+AYHG"1YH=b!USXrlXfA:s +W2m5*U91i%OHR-/n+QPTrr2lps8W&srr;rsrW<-!ri6"urW)utrr<#ur[.UDs4+mCo'G`7r;66\ +o^hJ9mdfr;mHsB8p$qSCmdKiIs8Muprr2irr;Q[/qtTjSm,m'M`O)S=Uo(&cU7n=rVufnrqu?Oj5/hap\O^_rVlforqd<(nDrWogR`_Z_V3u/k2t[\h#?+1g!]lG%+*5=`mEW4 +qtg'_qu$Hlrr+2As8W&srVuijq>9RBnF#lIg7t7A]#WC`n+HSWrr)cnr;?TprVe2CqtK^MlK7'\ +g"+Ejai;<<_nj+#]=YS[[C3QT\@KH2r;ZZms8N"Ks5!^*~> +g&M*O!rr9!rr",As8W&rs8MlfmG,@O[Dp;7da$%[d*U%beC2gme'ugodF$CirQkPirm1Vhp!\g!I[]dD2TQ^u=hXqYpKmr;?TprVuoss8W)ts8N#rrr2rsrilG&rW)ut +rr<#ur[RmHs4+mCo'G`7r;66\o^hJ9mdfr;mHsB8p$qVDmI'WEs8Murs8DlorVlcrrVl[.qXs7= +iS)i2eC`R1g"P6;gtUQ:g\fe)fa-:-irqucm&c2"Xj6>p\F^arr)iq,5qQArVlcqrV--bmH=!,o)IF=SuoTEf&cAnqu6Tnr;HQk +rVn>Gs8MrkoC)&0j5/PBccsYTa2Z*9_7mUr\[AiR\%0#Z_;+tgqu-Qordk+*s*t~> +e,TIH+TME>rVlfpqY0I8];;gM`6?NL`lQHObg4_acd:+hdEqm?%FEMMd*U1ed*L(cdEp7Nd/qbD +dItutdF-IjdEp:gd*^4fd*U:is3N.@daZambf\/WeC2agcHjnhc,%NJ^8.I?j7;s>rVlfor;Zfq +s8W(ns8W&us8N#ts8W'FrVuoJ^Z"bMm.:/Pp[n+LmHa32o'bu5n+HADo'u)5oDS^grr<#tr<3&q +qu$Bkr?hOAp@Ie@lK[d-p@RqIp%J%Kn*]W2m-O-.n*ol:md9E-lKRNsl2L#YmI'<)kN1^_l1FrS +rr2oss8E9%qY9gYp@\(UoDe@goC_hMo^qhKp%J+Yp]'seoEFjYp%A%PrUp3a#5.]ap@IqLrV$9a +s7ZHa!;6:*hrVld?rVuorrr)lqp\F^RkO@p1s4X6> +Xh)R(jmVm>rr2lorVZTms8W'Hs8DiioBtr,in`>>cHFAN`l5m5^qICn\?rZP\%0#Z_;+tgqu-Qo +rdk+*s*t~> +g&M*O.f]MIs8DorrVZQjrVcZjoARQ]R%UL`XJrA.XJ;DdXfA:sWiE%sW2HPlrM^"%XK/G)XfU'T +s/Z=)XK8JuXT,=/XKAV+X/i>'X/rD&ri,prnYuJcs/?+#XK8JkX9GW*X0&J)n?)_l&$;q6X/rD& +V4s]^XKJ\*W;`k3ZEC17ZCI&O`8^@]q#16lrVccrrr!*$rVc`ps8N"ts8W&us8N#ts8W'FrVuoJ +^YnVHm.LAWqtU$`o_&%XrVlfprVl`kr;Zcnq>C6kr;?NmrW)orrY>>*p@IY2e&/PiS!B>1SXYt2 +Q'R`'rgO@fS=5k7R?s5+QC+)/R/WBuQ'RYuOcPQcPa7]/Y//TGlgaZBq"jmap\+@To^_PAo(D_N +p\+@\p^-foqYL*dqYU0drqZTj!;l`mrql]m')MG#qYC!crquWiqYL*eqYC!bqu$Hj"T&#mr;?Qk +!;c]is7u]k8c8Pcrr)]en`oZDs8;fpp=mX![(XoOoCi%Zrr2ior;6<\l/h'VP])G_ak>b@md06& +l0@Koio&_PiSE/:gZ@u!o^VPGq#(*grrpTqnZdUnu-.s8;iqrr.KKh>`!~> +g&M*O!<;rqs8W,t.KBDDp[R4_YcPCXda6:ff$MLXcdgLld*gFmda?IjdEp7dcd'k_cHXW,ci;8j +chu)gcN)8Vci25icN;J>chl)hci)5jci2;kcN;J@dI,EadF-JBd/q\@cg]C3jrr)fpr;-?krVH9crr2lqrr;urrr*Z2qu$Eip#t5_dETn\ +eC`F)e^`7$fDaJ'f`0P'f`'J-f[nd0g=b*0rn%e6f$r-pcHOJQb1#>=q>LgEkr;QTmr"Al%qYL$ar;QWjqtg0dr;-6cqtpJY +lgF-)kiqBrjl54Ui8NMEe_B3Up@RnHp%\I`r;Q`r*rZ-;s8D`gqsES9mdgD3URnU!a4BA@p%\Ib +rqu]mrr+GEo^h\@jPAD7bf7E,Z`^.!U7n9TUSO``Vl6JfTqS9]W2-91qZ$Kls8N"Ks5!^*~> +e,TIH+ohN?rVlfpqtfsFaKV\Q`Ql]McI1"X_p$NTcd1"fda?JAd/VMnci_\Bd*KYWs3CkqdF$=e +chu,ncd:(fdF%[9!n#HEqU#>jcdgDBcN)>kcR.&gdETkWcd^Rsd*L1idacX^ccWGcYKc;'p\=^d +rqu]os8DutrhKMnrW)utrr<#ur\aZSs4+mBnETB5rr2fiqYBdVq>C3jrr)fpr;-?jrqlNis8Mus +s8DrsrVQNjrVc`os8;KRrT4LSo(MbInaZ2?nF,fDm/ZSRmfr:Mmd9E.li$&slKdd$l/q'di8!)H +n,34arVlirrVcWfp@RtJnF#c9pA+R]q>1!cqYL-e"8_olqYpgEkr;QTmr"Al%qYL$ar;QWj +qtg0dr;-6cqtpJYlgF-)kiqBrjl54Ui8NMEe_B3Up@RnHp%\I`r;Q`r:&Y+js8D`gqsES9 +mdgD3URnU!a4BA@p%\Ibrqu]mrr2lloCDJ +fDbpOs8W#r!r`&qrr+;Cp?9l.Q'SJ[Z`::@YFqGbYH+V#WMuhpVl$>iWMuhpWN)quXK/AsX8f1% +X/rD'r2fq!"0AQ(Wo0rXWWK6&XSf+$WiN2"ri#jpn>QAbrhopuX/i8uX8f1%X/rD'qQ'[tlE'uc +*NH0@WMQ;^UoCK!X/W%uYHFh+\\>)+R'k?*p%\C^rXJi+s8Mrorr)fprr;usWrN+u!<<&ts8W,u +'`J(3e\9o.kj%d>s8MrqrqcQlr;?Nn#6+Ptrr;uqrr)lr3rAaNs8N#trquTcp%.P.c+'X=OH#Ek +SXl7C3i"8hrkq>U-kq>C0hrVlfps8G^jq=j[\qu$HnrVZZorVlfoqtp?iqtp:*frVcWir;?HgqYU3grr;urrVQHam.(#QrVZWY^7L::Og!3toD/:]r;HWmrq\&9l.EOs@L +fDbpOs8W)t!<;ur(]F7+oB4W9V5qYgeB?:od`')Je^Mmkd/MJnd07tGd*L(crQk)\s3C\jr6PDg +!70fQ!mf0;qp5;e!mf6?r6PAf#1(ZCdF-Ijo$RfkdaHOid*L"_qp5;fpf';u)qYpHlqu-Qprr2oss8E<(rr2lqrr;usYlFb&!<<&ts8W,u +'`J(3e\9o.kj%d>s8MrqrqcQlr;?Nn/H5SFrr;onqu$ElrquZls8N#trquZkrVlcfj3u/i`5TsM +gtplBh;@/JhVS7hrnd\4s5*e3rnmb4s53h3*ST,qe'H4XajJu3pA=jfr;HWmq=jUWq"FIWq>1'h +rrrE"qt^*drVZiqqYL$ep]L?ir;HTnrr)lr9`=e]q"jmcrr;rprr2lqrquZjrVZQir;HZqr;-6d +r;?Nlqtg6gqtg0dr;?Qorr)fmqXs4Fr;QZmrTV%fN.d=sdcpB!qu$Bjrqucl..uiW\U\+2R(1N& +mI'9%j6#RgjlGI]jQ5F[h;RPan*K?*mdp8Qrr;urrr+qXrVuikq>9RBnaH#IfqY.@]#W@_n+Q\W +qu-HirVcQcmG#h#\[&? +fDbpOs8W)t!<<#s)#sR4qtK@+]qq^Ge'H+]f?_:IbL4_^cHlL;rm:Yls3L\krm(Siq9T)do?RE^ +i6VGJ!mf6?r6GYocd0n_d*^4enBq9_"4>KAcM>fdcIpPDcl:6Pb08;cf[Ss8MrqrqcQlr;?Nn#QFZ!rr;rprVZWs +r;HWnr;.9RBnaH#IfqY.@]#W@_n+Q\Wqu-KjrVcQble9Ls\?W*7Xg#+8XJi"nV5'cZTq\9VU].)!U7@XB +UnsZP^A%X*rr.KKg])d~> +g&M!Ls8<-#s8Muqrr2p8r:oa;^RLC^\$i-4Z`p:"WNWD&Vl-JkVl'Hks/>sqrhoq!X/`/pWrK%# +WiN2#r2]jt"08H%WSjfVW=,`,X/`5$WiE%uWi5ops/,:`s/,dn"0&<#WVidrW<90$X/bop!35Cd +,H@fGXfA:oTVA6]X/i1rV5:8pSuKWAToYqeg[4b3r;ZfrrVlfqrq\oq"jsgrVc`qrqlK` +nEoT.lg4$-o(2PKrqHWjp%.bErpV`7p@e7Vq=saZq"X[\p@7P>o(DbQqY0a]qtg3cp\+7Po'u8@ +pA4XYo'u>Dp@n=So(2GOn-/CVq>C3hrq[<+p[IbNrVlckg8'.2?u1h4g@+n;qu?X2r;$-bpY`cM +B2Mr^TYK1Dm,m9`iT0%tiCi1jinrVPkNhL!jlYn!p\b!irVc`qs8DusrquQeqsES:n+-M4UReKt +aO]G?pAP!frVui_gsjWg\?)KuS=5t?U8FibUSF]`Undj^&>Q%sVl-;_UT(5jWlb):r;HWoJcFR+ +J,~> +g&LgG)u]g:rVcZgo'PAUW2.,Ve]#Y[d`KGPeC)^ici2<%d*^7fcd1"dd*L%bcd0o4ci;8mcd:%b +r6YJi"45B?cJ[%KcMc)hd/VGkcMl,ld*^7fo$IQddF$>?ci;;fci;8mcd:%bj3[\L+3r*RbKS;^ +e^DdfbfeA[^;o'YZ(.r@i:-O=r;QZmr;HWprseu-s8N#trr2lqrr;usYlFb&!<<&ts8W,u)#aL7 +e\C)5lK\!?rqlQhqtU'dq>'paqu$Hj+T2*/q#13jrr;rorVlcos8Dikqu-KkoA\0:^VIb1eD1&\ +"lSA!i83>ihu;L1hu;I8hr*GOiVq^CgtC<0d*'MQdbX3\qYpF$rr;onqYC!`p\"1LrpU-\nF?)A +o_/7Y"S_T\o'u_K1\185p\FX[q"ORYq>'aSmI9]>p\F[[p\Xjaqt^![o_%eFnacDMqXsFLoCVbN +p\"+Ko)A+^o(MnWrVZZk'E%Uoo)&CbrV>0CI;*)*NO[^2qYpBlrYGG-q"sgD^6E8-?$r<[g$%eb +iSNPSj8Iq0ioB%UhW!_am-3Wolga`IrVuiprr<#ss8N#qq"agSkOJ$3s4X6=XLcL(jR2a@rqlZo +rp8Fjcc +fDc'Rs8W&srr;lp(B++'n)DHfUUnh!_SsmI`PBXDd*L"_rm1Ykq9]/f"45?=c1]H_cN)8gci;8j +ce?\EcN;D:$cr;QR'r;--_ +rr;rss8DlprVQEhq@3B%rVuc_i7HQ5i90S(rqucm%Jfblp%%\Fo^h_Lp\+7Yo)J=]oG-ukp\+7N +nEoDtgY(HJoDAOerr)fqrVd$"qtTjTn*^/C"7YmSp\splq=s^WoCDGNn2'Y/p@nCYq"XUYq"aaZ +na5i:p%S:Yp\4R^qYU*_p@S%KnaZ2DqYKmUnalDHp\4@OoCDnM"nMB_r;HQmq@if$nFHJTrr)ZH +UjZrbClPsYn,!%\s8Ef3q=sj]i4bFg;-eRB^Y.i;k2G1UjQ$3t9B,!khqmAUlg3ltk3MR3r;HZo +rVlisrVulrr:p*bmH=$.o)IF=SZKEDf&Z8mrr2fns8D<>e]u1FXeh\]S"64IVl6JgUo1,eV#-qe +V>mG$US+B]WMcc^Bkrr.KKh>`!~> +g&M!Ls8<-#s8Muqrr2pCr;63PcE!>%Xg+UoWNiS(X0&J&VP^8hVP^8hVPg>hVPgAkVpM@GVl6Pn +W2T3brM]aos.odpVPa?jpSJ"iV5=0hri#=cs/6%!W2QW^W$S@?W2Zl"WMZD`U84ZaVPU&^U8b/` +WP5X+R^1?%nbN([s8W)srr2oq#QF]#rr2rsri6"urW)utrr<#urY#20s4+mGp?h8>rr)Wcp\4@U +r;QTnqD8'Hr;QZkqY^Bmr;Q]qrr)iprVlclp@IeAkM47kWh,]NT:r!QTV%gHSXuLITqe?TT:Z%Q +s.94^!MH1dU]7'7TUqXAR@'A3V6Re]gue"qpA+Xbr;HTlqXs47gXOQoc-Onnio]IhlKRQsjl>=X +hqm8Mk3(snlKRQskNM3rjknhKioTCgl/q0rn*TK,kN1a`hqd,GjQu3ni83DOk3(mfi8*,?g>(]R +oD8IcrVZNhq""%Qr;ZeAo?3/+<(g21S&OUgrVZTms8;Z`o^LJ;M/-F.Ga>khjmDBsj5]7^iSrnX +jQ,=Yi8s:mmd'*%me$>QrVuiprr<#ss8N#qq"agSkOJ$3s4X6=XLcL(jR;g>rr)Teo#[o-Ssl:M +YHG"0XJr(mUS=QYT:V[HSeRikUSXlfX0At=\%9/]]uf72s82cordk+*s*t~> +g&LgG!r`0!rr!u7o^V1o[AU:LbJ:m7dEg"]d*^4ccHstcd*^7fcd1"drm(Sk_9`/.!mf6?qp5;f +"jbTDcd:&2d07kDdEg+`p!mHsQFrV6*\p\"=Zrql`l% +fH5%rVcTfqYpKlrr2rsrV\>JrVQHgrVcWck1Int`lcWWf\,!4g"=p/g=k64f[na-f@S[.g"=m-g +"Y9:h>Z1Tk +NM3rl07Epkj%HphqQuHjlksnk3).#mHj-$jl>@Xh;-uLm-E`jhVdDUkN:j`h:gQ9gu@YkqYpKmr +;-Vr-nYFr:omUnCOq%CL1OrQFPH+mH`rqj5o@\ioB([jPo+Uj +m2@&lfdX%o_JF`s8Doqs8W&trr2ijq>9RBnaH&Kg7t4?]#`I`n+Q\YrV69]bH.S6S=usfYck75X +/MnlUnsl\TV8$OU8+Q_WN3/+ZaI9R]",MriV``QrVleIs5!^*~> +fDc'Rs8W&srr;rr+8u3NlkAgV +n+$#?nF#Z+iniDCi9Bb+rVulqGQ7X@rVcQco',&be^Djmdb!=:l0@QulKRNoj5JqRhV[>TkNM3r +l07Epkj%HphqQuHjlksnk3).#mHj-$jl>@Xh;-uLm-E`jhVdDUkN:j`h:gQ9gu@YkqYpKmr;-Vr-nYFr:omUnCOq%CL1OrQFPH+mH`rqj5o@\ioB([jPo+Ujm2@& +lfdX%o_JF`s8Doqs8W&trr2ijq>9RBnaH&Kg7t4?]#`I`n+Q\YrV66[b,_A2S"QabYHG%1Wi)\h +USOZXT:hgKTq\?[W2cr'['dBS]",MriV``QrVleIs5!^*~> +g&M*N$ig2(r;?NnrVZTls8N!5rV5j9^SR?jWMl\mYdCX7W2lqsVPpKmV?E`mVPU0hVZ\[Au__o9X7_Sj^Fbf[uE_8*ap[^`ocbKIc8\\#Vp`PfR(^Abqoa3`Z-pAFsh +rVZQgoCMbQrVPijI9B6079tSPh>.'IqYg`!~> +ci4(Fs8W)s)uKF$m+o^gXL>p\_8agNdEB\Ycd'e_dEp7fdJM;ich>`cdIY]bdHJsAci)5hd/_Pf +dJ_Gkci)2lcd:&0cg]<[dJhMjcQ:BVcHjnbc-+;PaND]K`llN/U9i#!me6JSrVcZkr;QX+rr<#s +s8W&rs8DoorVccprNQ>%rW)utrr<#urY5>2s4+mEp$V5=rVcQdq"a^[qu-KkquQcqrqufnrr!`4 +rVuiorVlfprVZTmrr)W\jkSG>gYCQ:g&B_2g=b38gtUN8r7DA0g=k62f@\j5h;8.eAD>ejf$i$q +g#;5gqY^]XbYh`5T[1]>"9\,fe9flLt/UrVcZkq=F4Qq>L3T\p[^T +5t,(4ZJG?Uqtg9gr;6Ke'C+/`Yc4S+_V48Cna5T%j6#I`j8S*Lj5T([m.9rEo^_\Mqu-Kgr\+Mh>daJ-B'[kL]f%A[1gu%&J +ioK+Yk3hp?rVc]oJcFR+J,~> +fDbpNs8W)s!<<#rrr*`4qXj13a0M_P^:q7sbgOeWa3;fQbg=c:cNV\@cd0tbrm(YmcHaka!7(Ph +s3:kqcHab]cHji7cM>cfd*L&9ciDDdd/2,rcHje]cd'h^cHji9c2c2ec2u>;cL&sXc61HYcd0n] +bg+VadEg(]b0%rPbK%lOZDG"TipljBrVc`pr2s4+mEp$V5= +rVcQdq"a^[qu-Kkr!33"r;?Nkr;HNl!WDrpqZ6WnrVd9'p$M#0n+#o9n*of7mJcAOl0%s+$0^[? +m-Es$l0Rm]XbYh`5T[1]>"9\,fe9flLt/U +rVcZkq=F4Qq>L3T\p[^T5t,(4ZJG?Uqtg9gr;6Ke'C+/`Yc4S+_V48Cna5T%j6#I`j8S*Lj5T([ +m.9rEo^_\Mqu-Kgr\"6LqtKm^mH=!,nc%7:S?'6Be`6)kqu?NPbIXaTZE'RdS=cIJUSb&r\\cM9 +dJ_E+dF6Rpf%A^3hVd>OjPo1]me-MVrVc_Hs5!^*~> +g&M!Ls8<*"s8Muqrr*Z2rr)W^jjCQ1Q(YLoZE^dDWi)ksWW&jqV>m=sV50o`VPU,eVp2+1V[TN' +Vl6MlW2HMiV5L6ZV?NfnVPg;grhodnnu(cM,,M07VPg>gU8"K[U7e6VVQ$f'YIq<;Pb>eBk4/-? +rVlcor;Hcrrr2oqs8E*"rr/qts8E#urr2rts8FDEs8UW`i:?7#oD\dfqYU9kqtp?jr;HWmr;HTl +rVl`lrr;uqr;HZprrV;analJMqu-Kms8;W[jk\G2aMl*8_8=++_8XF5`PfU,]Xtbd]=u,!`Q-$< +`Pf[4a2Ym&ZaRN^_SX.'_8sd?`PTC(]t1\\\%'2na1o0n\@fYp_7[:jrkU_:d+mmYr;QWlrr)Zb +o(D_Rp"ZNa:ep\O^I^7^mfYdh-FWM?/^Vl[2:b1c%Mq>K[[ +"oeDss8W(Ls4dR(~> +fDbpOs8W)t!<;urrr!r9o^Cqn_QTlC`luTMdF$%Uc-FSZd*U+bd*U+cd*L&8ciDDBd/VDld/MAd +c32J=cHji4c2l;cgf@/cd:%bcHXVZcHX\_d*BhXbg"J] +cHXqbZD"88g#_buqYgEmr;?NmrXf&.s8Dutrr2rsrr)iqs8N#%s8W&us8N#ts8W'ErVuoJ^>SSK +lgt,Ur;-\m_o9[:`Pod5`5fm4[^3ET^r!t)^;7n5aMl$2^:h+e[C9O@nF#iFfqY+>]#`F_me?VTk.dX[UU%J@ +Z)XXpV5^T(^ +fDbpOs8W)t!<;op*<6!1n)r9cd)O9'[G%NcHjh^cd0n^cd'h^cHab_cd21/ +rQbSmcd0u:ci;9-d*g@gbfe5TcdU1`f?^dtX2j&\oD&7^rr2lprWE-!s8A_ms8E#urr2rts8F>C +s8UW`i:?7#oD\dfqYU9kqtp?jr;HWmr;HTlrVl]jr;Z`prr)fpr#,J4rr<#ts8W&np\Fabq=XCQ +p%J(Mo'u5=rpLirn*ff;oCVYEnF6&Cp@n7Rp@n@Vp%%P=o(DeUrr)orr;Q`r:Aa_Mj4r/1bK7fE +`5T^6`5Ta8`PfU,]Xtbd]=u,!`Q-$<`Pf[4a2Ym&ZaRN^_SX.'_8sd?`PTC(]t1\\\%'2na1o0n +\@fYp_7[:jrkU_:d+mmYr;QWlrr)Zbo(D_Rp"ZNa:ep\O^J +^7h!iZ+7?JWhcAbW3!>=bM27QqYfd\"oeDss8W(Ls4dR(~> +g&LmI!<;rq)#aI4qXj(0afUhu]#;7eYd(@4X/W%sVksBfs.KXlU7n?VUSRmd!2\/A"/VllV>$he +V>d>.Vl6JgVPg8eVPU,eVl$8cV5C,cUSFW\rhKLhrh]Xj"/VlkV>d@lV=LM`V>-qfV$!TkVPX6e +qkY@2V50i[Unj`ZUo:B!['?sVZ&FsUcf4C3jrVcZn"9&5urVc]ss8N"ts8W&us8N#ts8W'3 +rVuoJ^>SSKm.C;Wr;$9irVZQiq#(0hs83*#s8Murrr;uss8NQ,qYBp[oC;56k2+nKgA]b)f+-Kf +g"P38gtplAg=b35fDO8&g"=sVg&K\)g&B\9gYCZCiT01emIKoCqY^bk1o3p\=[`o^DAIrVQBerVQEiqAT(t +lfdHmkNM'gioK4`lgOH?r;Q`qrVcZmrVQTor@\*Lrr2lkq>9O@nF#iFfqY+>]#`F_me?M?`L`^. +XI,*?[)1);g"tiTmd^#IrTX@^rr;uurdk+(s*t~> +fDbpOs8W)t!<;urs8C6jr;6Bdr;QQur;HZprVZTlr;H]rrVd!#rr)clqYpBf +q#L3hq>^6ipBC?fq=jUWrqH]lq"X[[q"Od_$MjGkq"OR\rVccqr;HZns8*l6q"F7ElKRQul07Ku +lg=-0n*]Z4lg!`ukN:sllg=]>s6]jQ>4(eHkiCa`jm)4!lg!g&mHs9+l07Epk3(pikj@d$jl>Fb +lKda"kMY+KgYUuVoD8FbrVZWkq"=4KoD%k'QsN9P6pF%FOj*IsqtKm`qt0@JqYgs]T!ZAZe_8pBl0e*8qYf[Ys8N&u!<.QLg])d~> +fDbpOs8W)t!<;lo)uTR)m,?="TVfZTbf7ZFaiMQFbKS5Tbg"JZcMc&ncHt%hd*U+fcj.nDdEg+a +cd)I7#0tQ@cHstbrQbGh&'iGFd*U+`c-FY^cHXY\ci25ici28ncd'k^rm);(cd0n_cd'k_cHab] +cHje]cdC(bpsB&erm1YkrQZV5d*U+bd*^7fcHjndccs_]daQ[hb1ae'TY8h8n+HMSrVlfprVcot +s8W%ms8W&us8N#ts8W'3rVuoJ^>SSKm.C;Wr;$9irVZQiq#(0hs82rss8Drr"9&5urVld!s8N&u +rr2rsrr;uurqZNer;HTnr;-BlrXJi(rVZQjr;HTorr2lpqYh$'p[[_:kih9qlK[d*nF,lGmgALK +lKRNqk3)!pmJcPRmJlNVmI0K,jPo4]lKmm'lKdg(mHj0'l0.bk1o3p\=[`o^DAIrVQBerVQEiqAT(tlfdHmkNM'g +ioK4`lgOH?r;Q`qrVcZmrVQTor@\*Lrr2lkq>9O@nF#iFfqY+>]#`F_me?PA`h/p2XdP +bl@Y@(&e%&n)i6:W1^0#\ZVj2Yd(=0WN2rrV$s,mTqeEYUS4BUU8+O]V>mCrV5C,dUnmg_"f.uk +VPU-YVZ3IpVPU,br2'FhrhU+#V59u`VPU&cVkg,bUSRmd#,J#iV59u`rhBjqUS=NZUS=QZU8+O` +UB%+dV>mCmV>R4iV>m@dV>m=nV5C,drM1X6VP^2cUnso`U7e6UUSXlhYHkI:XK\C\VT.?So(W%[ +rr;rr!<<&ts8N)uU]:An!<<&ts8W,u&cMb0eA(#8mdBfKrqcEdqtg0gqu$BlqZQinqYU6irr3nqYBs`rr2rtrW`?#rr<#ts8N#t +s8W)urri?!qu$ElrsA]&p[n(Ko_/+Xrr4YNrVZH_oCV_Hp$0VY<'EW84$$8n`:KnItBZmdKZ9p%\@[r;HTlr;- +XguR)j6ua7gUE]K\$)O'\^9@(p%eRarrE&trVuf`r`!~> +cN!qD*<6$;rVZNdn`\]GY,AP?`PB4+b0A/QbL"S\cd;[:"4,BBd/M>jbl5ifcHZ11s31PhrQPGi +c-FStcMl)dcMu-'cHXYZc-FSXcHXPYccjVYc-F\`d/M;jci2;aci;8jchu)gc1oTachkuhc-FW4 +blZ27bl5obc2Z)hboP$RcHXPUc-FY^d*gFod)a)BYaqr?gZS,$qu-NorVcfsrr2rt!3nqYBs` +rr2rtrW`?#rr<#ts8N#ts8W)urri?!qu$ElrsA]&p[n(Ko_/+Xrr4YNrVZH_oCV_Hp$0VY<'EW8 +4$$8n`:KnItBZmdKZ9p%\@[r;HTlr;-XguR)j6ua:hRT5T\Zqs/\^9@(p%eRarrE&trVuf`r`!~> +bl@Y@'E%_#nE8KCXei5:`kT4*b08#MbPocbc2l8=rmCqrdF-CfqU,>k"jtcHdEp86d/qbDdI>T_ +d/hV>rQbescd'n`cHab^cMl,pcHsqacHXSXrm1Sg!7(Pho?RB^&^\kNd*L(bcd:%bcd:"ad*L&: +d.l#gci_\DdaA$?!n#HErmCbp"ObW?cHuR:'%#(Sc,RN8Yahl=gZe;'qYgEnrVcfsrr2rt!9sXp\aj]q"X[[p@IhDrUCQimdBQ5o(DeRqu$Ekr;?Egr;HTmrr;rsr[%OCrV60amH=$. +o)@@=SuoQFf&Q5np"['JV7 +g&M*O!<;ur!<<#s2uijTs8MoioBY>]_5irqXfJ:sZF-pW4gU?r9=RRmI'H4nF?#:rpKgT!:B^M +!po7=rp9[N,OFgamHs9+lg4$,nalGJq>C3hrVlfpqtTs^q"X[[q>'g[q#0sepAajgp@n=[pAaju +q"OOXq"ORYqYBmYo^qhMp\adjq=jXYq=sdaq#C0iqZ$'m`qu$Hls84qSp%%bL +q"4=Lc&PLX4uk>R:4pIQrquQeqtpp@-V@W2-;p`o6@VqYU0frVc`pr;uusrV$3js8)]p +s8N#trrE%Ls4dR(~> +ci4p_s8W)srVulnq"=%6eAebbVRO1L^rjsIbfg"2s3^tpcHcF:!7:_js2t\lcHXYYcHab^rQbGf +q9B/gcHab]cLB0[c3)D;eq9K#brQbAf!m]-!fq"ad\q>L9i +r;HZn!<)lo!WE&tr;ccfrr;rsrW)ocrWW9"rr)cmrquipr;HZn#lXc%rVQNkr;HWos8W&r!W2]l +p^Qujp\FUZqu$BhqY9gYrqHHds7ZTgp\4X[s7[*"p\4IXp\=O[q=jRSo_%qPr:gKlp\4IYq"am` +s7u]ks7cTgr:gTmpA"L[q>0sbr;QZpr&X]Io(;\Oo_7h!N_MJs3AE[0Wr:p*bqu$Hkq>UU6hqu6KnrVlcrrVQR=r:g!^mca62oD[F=SZKEEe`-&k +o%(:MV5UZ?j6lL7qtp +fDbpOs8W)t!<<#s2#mOQs8Mlio^(Pc`NG],\%B8faj/)Pb08)Sd*U(acdC1ie'cXkcd0tcd*^4f +dF-IjdaJ*AqU,Ppda?LkdI5KddF6Ojchu/icO\CJcd0tbcHae`cdC1dcd2F4#0kH>d*L"^rm(Pg +rlbu"cd0t`cHjk`cd:"`cHjncd/),ncdC.gdF%m?rR(Yn!7Cbo"OYZGdF%sA)UZpVcHa\[cd'n] +_n31LU9VYdipHF8r;QZorVZftrV`Ags8E#urr2rts8E`2s8UWaiq2[,p&>!fq"ad\q>L9ir;HZn +!<)ops8;uurVQTnr<3,urVZWnr!<9#rr)iqrVZWnr!!&srVlfpnc&Re!<2urrr2rrs82lqrr2oq +qYgTpqYBsdp_!B"r;HNir;-3`p\+=Tp\+@UrV$9c&GZ"oq"XUYq"jg\p%7nLp@nL[#5S#fq"a^\ +rV6Egs8)cj!;HEd$2=/gqYBs`qYU3irVudVqXsFOp\=CTn'-ke3'K>W1JWS?n,E7[q>:'erquTk +r:Tpbq"FR^rVcZkqYU3gqu$BhqYL*bq>0pdqYg +g&M*O#64]%rVlfrrVe;HrVc`prVH6Yl.j^uSX-(TXf/V:ZEC7.Vkp;jW26;cV50l]V5C,dUndp` +r1j:d"/DZfUY2IAU]7%nUSO`^Unsl]rhB^oVPg>gV50seVZ!>#VPU,dV50r`V5C,cU7qLZs.fRf +"/DZfU]$tmUSO]^V50m_U_]`$UnXQWUSO]\US=NYU8+T^U8"K_W;`Y*Wire6U7Ia8S@d2+lLFZI +rVlfprC6js8E3#r;-3^pAXabp(R,ko^_SEoCDJDp%7qNo_%nLoCMtPs7?0\ +"8DTbp\smcp](!np@\+Pp\+@Urq6Qjp@\(Op@nIX$2=/cp%J.Sp@e1Yp*TP/q"OUZq"Oggg5eZ[ +4u+E79o$^Tq>1$fqt^*eq=addq#(*`p\t'tqtg-aqu-Norr)corVucpq?$Qlqu6Krqu$BjrV?F9 +rVl`hq"jFBnF,rIfqb1?]#iL^n+Q4rXehbh^>Jbcrr;us!<;urs8<$!rr2osq>LBoqYgKprr2rt +!<.QLg])d~> +ci53gs8W)srVulqqtTdLi7>Z;SZTT?^<+^FbKA#Mb0SM_cHZ@7s3:Si$II,Dc-FVZcHab^rQbAf +!79KH)U?[TcHXVZd*^1cdEg(_cHOPZdEp1`c-FY]rm(Pi#L:ZBcHje\cMYugc2#Zbbm;V@cd'k_ +cHac6cM#R3cHXY[d*U+bcHjh]cd9t\bKeM^bf\)QcdL"IYc==o`7O#6nb;t[rr2lp!ri/squ?]q +!<;ur!rr9!YlFb&!<<&ts8W,u'`J(3e\C&4lg46Bs82Whr;-tq>'pdrr;urr;QZpqu?Koqu$?jqulopr;HTir[%OBr:g!_ +mca0/o)@=UBns8N#tr;Q`p!rr9!rr;fn!<;op!<<&ts8N)uJcFL) +J,~> +fDbpOs8W)t!<<#s.f]JGs8Mrnp[[Y-e\.TFXhDH^aNhoLaN2ECcHje]c-O\]cdC.gda?Ffq9]/f +"45HCd,37Nci_\Bd*_g=rm)A-da?FidEg.ccHjncccs\Xc-FVZc-6.2!m]'8rlc&#cHab^d*Bq_ +d*L%bcd'h^dF$>;d/_Pfd/q\BdJhH;d*^7fd*L(ccd:+ec-F\bda-+Zc-F\Y\?Dm(W5I6IlLFZI +rVlfpr2s4+mBna#Q5rr;lkqu$1$fqt^*eq=addq#(*`p\t'tqtg-aqu-Norr)corVucpq?$Qlqu6Kr +qu$BjrV?F=rVl`hq"jFBnF,rIfqb1?]#iL^n+Q4rXeqhi^>Jbcrr<#trr;oqs8<$!rr2osq>LBo +qYgKprr2rt!<.QLg])d~> +g&M*N$NL)'r;HTorVccrrr*l8s8W&np@%(rag7_4StDjh^:(5GXK&4sWMucoV%'5qUnsrdVPU&^ +U8+HXpn@eaUA:PcUna^NU]@1gU_oi%UnXQVU8=`aV5C&_TqeH_WiE"pUnjmeVZs#oUna]\VZ!In +W<&onr1a7fq4mtc!2KLg"f%liVPU'eUAUecUAgkcU]7%gU&C_bU`-,0WMZDcVm!J5VNm@7Ts2Yp +l0n9@rVlcos8Doss8N#trrE%ns8W&us8N#ts8W'1rVuoJ^>SJFlLY#Tr;6KmrVZ9cr;QWo"9/?# +rVl]oqZ$?mq"OCYncJFTp&4Raq#:*hq#C'gpAXgcpAadcp\+:`p%J(NoD\@bp%S7WrVlfrrs8W& +rVH9_p%.eQo`+O_o`"I^pAajkp@n=To^qbRo`"O`oE=sbq"XU^p&b$bq=saapBUEbp%S7Xq"Xj^ +9)&/SnalGIp@\+Np%A(Sq"agbqtp3am(%-s/28Ut,= +nFZMQrr)clr;?Nkr;6Bhr;?]prVc`ps8;rtrr+/Brr;rlq"a=?mdB]FfV>%?\]E@^me-(qX.l2_ +aQ`R$rr)cor;ccpr;clnrdk*fs*t~> +cN!qD!<<&t,Q7W@qtTaFhT`R1VlHo0b1"YXaNDWHbg+MYbg"GXbfnAXci25ici;8jci25ic2Pug +c2Gokcd'k^cd1k&q9LP;cHXVZd*g=gdEg(^cHakfeBuObbg+P]cd'e[bKJ/Vd*^7fdaQRfbg-"0 +s3:ttd*U+cd*L%bcd2R8s3:Ab!mSs6rm1Vi!6tJfrllA-dEp(V`lQHQbe0mLWi`n[ip?.,qYgEl +rVuiq!<<&ts8N)uU]:An!<<&ts8W,u&cMb0e\9u1lK\!?s8;cnrr)cdrVZZ_s7?3krVlfqrV?Hl +s8W)ts7lTnr;cipr<`K%r;-6dr;6:*eqt^$R\T0\]0e+=k3b=l*k4S]P +qY9m_p@S1UnalDAo(MbJnaQ#:o_A=_rVZQjr;HQkqtpp$g;.U7S7'l2(GZrVZZn!;uip!<;loJcE[gJ,~> +bl@Y@-NF)DqY0OBh9EC.VlHl.b0eDR`lH0AbK\>WbKS2Tc-FY^dF$=erm1\ld/MAkcMl,icMc&k +d*L(biQqhUd*U+ac-Of9dMC3UcHjnee^DdfbKJ/Ucd'eYbK@uNcMc)hd0%_=bg-46#LLfDd*L(b +ci28kchbuidEp86cNqh@cHjkacd0o8cQ1BXcHstecH4/LcdBtKVkU/m]$TL)n+HPUrr)fqrVcfs +rr2rt!CBorVc`ps8W&spAb0lqu?]prVlis(B+:5rVlirrVH9\oCMMDo_%nNp@\(Mrq$0`s7Z`k +p\4CRo^i%Rrq6<`"Shffq"Oa\!r2Teq"Xj_#PRi`p\=U[q#9tZp\FLPoC_hNp%@tMp%S7Vq>:*e +qt^$R\T0\]0e+=k3b=l*k4S]PqY9m_p@S1UnalDAo(MbJnaQ#:o_A=_rVZQjr;HQkqtpp$g;/U7S7'l2(GZrVZZn!;uip!<;loJcE[g +J,~> +g&M*O#ljo'rVlfrrr2osr;I`8r;$!OiRc;bU5Xu"Z+@BJY-G78XK&4rVl6PlVuEP7V50ucV5C)b +V50o^UnjcZTq\h +VZ*LnV@]MsV5^MpWN*&%WhlMgVkp6[V?j#qVPg;eUS=L[U]7%iUSO^bV>d:iV&H/)V5^PtW2-2e +Xg571QAh$(\B!1_nFZPTs8N"as8W&us8N#ts8W'4rVuoI^Z+hNlh(5Wr;6Hkr;?QnrV?Hmr<*'! +s8Dfo%K?D-rqu]mrVQEdqYBmap':Beq"ad^q>:0hs82im"o8#kqtg0gq$Quqqtg0bqYL$aqYp9t +q"FCSp@\.Sq"jpdr;uusr;QQsq=jUVp\=a`rqZcnq"Xaarql]ms8)fmrVHotqtp6dqu$?gqYg3q +qYU0grr2lorVl`pqZ?Wkqtp +bQ%VA)#sU6rr2ihmc<-K_5s#jWkcj$`lH9Jc-6./"3\p4c2Podar/ILc-FSXc-4DTbfn8Pai_fL +bKJ,Qbfe5Tl-B+L'$e_Ebg"G\d*9k[bKS;\e^`'mr6>8e&^APEb/qlRdEp7fe'l^gbK\B!c32D9 +bKA!)bQ#]dbKS30c2Prdbo4gKc-atdb/VB?b0A,BVjj?a_U$s"nauYUs8N"as8W&us8N#ts8W'4 +rVuoI^Z+hNlh(5Wr;6Hkr;?QnrV?Hmr<3-"s8Duorr<#trr<#trX8c*rr)lsrVZTlrVZZns82lq +r;?Tn!ri/srqlotrr2lprr**"rr2lor;QZpr;Z`qquH]or!`DrqYU-cr;6?dq"X[aq>g?jq?6Wh +q"t!gqu6NnqZ-Kkq[*,rqtg0dr;6BfrV6`qqtp?krr)cnrqufn!rDfkqu$Kk5Pk9Sq=sd^r;?Hg +q>1!erVH?equ6QdjM$"//0c;`+W;:Q?'i_#qY^6eqtTmXoBkVujQ>^ml0%0hjlu4)q"t!grqu`o +rri?"rVlfqr;cirr@S$IrquTdp[%)/m.C5,U7\Nsa4B>?p@6S7Un+:$kk=uRqtpBlr;HTnrr;us +rquourV_~> +bQ%P?rr!l7p$LencG6KIR&e'HaiDHEc-=GSbK@rMcHjeZbl5j?cdC(ccd'k^cHXY[c-+;Sc-4GW +cHXYZcHjh^cd0n_cd'k_cHjh^cHje]cd'h^rQYSkcHa\[cMl&hbK^%5$I?u@c-4J_e^Vpir652c +rlch5aNMoVcd0tdda61[c-FV\cd'k_cHjh^cd0n^cd'h^cHab_cd'eZbkoZbbQ?&8cMl/ic3)D> +cd2U9(XUUXbfIfGbg+DEVjj?a_9Ug#o(;bVs8N"as8W&us8N#ts8W'4rVuoI^Z+hNlh(5Wr;6Hk +r;?QnrV?Hmr<<3#s8Dutrr2rtrVlfp!<2urrVliq!rW#qrqlipqYL3hrVH]qs8N#ss8N#rs8Drs +rseu-s8N#trr2rsrr)lsrVdW3rr)`jqt^$\o_/(UqYU3fqtg-`q"t!gqu6NnqZ-Kkq[*,rqtg0d +r;6BfrV6`qqtp?krr)cnrqufn!rDfkqu$Kk5Pk9Sq=sd^r;?Hgq>1!erVH?equ6QdjM$"//0c;` ++W;:Q?'i_#qY^6eqtTmXoBkVujQ>^ml0%0hjlu4)q"t!grqu`orri?"rVlfqr;cirr@S$IrquTd +p[%)/m.C5,U7\Nsa4B>?p@6S7Un+:$kk=uRqtpBlr;HTnrr;usrquourV_~> +g&M*O#ljo'rVlfrrr2osrVeJJrVcTfp$:YkbI=10P*_oGZF.0MZ`pL.VPgDnWiN,!Wi2emVPg>h +V5:&dV50pdV#mHhV>R1mVl$Ahm\g)^"/i#nV>d@lV>d@lV&#r,WMcMcTq\<[WMl_lVPpGmW2?Dg +VuEV&WiW>&UnOQ^Xfnk,kbnCTsrr2inqu-Kkr;-Wnq=s^YrV-Eir;QX(qt^-d +qY9m`qY9g[q>:0f%K$,'r;-9grVZQirVZZkrVcZnrVufprVl`pr<<3!rVZQir;7'$qu-Hhq>'mb +rVlcmqYU9jrVlfos8El5qu6Kip?0o(@4`cQ,U+3B&/mcY[GprWrqdT-p@[n9gt19;j5T(ViSik] +n+6>OrVc`orVlfpr<)uss8M`j,lIW>rquQcp[./1m.C5,U7SHra4B;>p@?Y8Vk0R"kkP/VrVcTl +#ljo'rVZWorV_~> +bQ%P?*rQ!9r;-0TjkS1rXIl&YYeJ)uc-FSXaMu9Ab0%rPr6#5ebKS2RrQ=uYs2tAb"Nnp2bff4o +r6#htbKJ,Qb0/&UdEftXaiVcPd*^1_b5KNub/qfLbKS/RcHj_S`5TmFdEp4ac0WXTbKTk,#0P-4 +b/qcJrlb>a+NqpOc-4ASbg"AUbKJ,UdETV'mbrVlcmqYU9jrVlfos8El5 +qu6Kip?0o(@4`cQ,U+3B&/mcY[GprWrqdT-p@[n9gt19;j5T(ViSik]n+6>OrVc`orVlfpr<)us +s8M`j,lIW>rquQcp[./1m.C5,U7SHra4B;>p@?Y8Vk0R"kkP/VrVcTl#ljo'rVZWorV_~> +bQ%P?+8l*:qt]sPjP.tmWh>u[YeA#tbg+JVaMu6?aj&,Vbl5ifbg$.4#L1K:c-=JUbPo]ebKS3. +blZ28cK`Xnbg"ATbfn5Rbfe5SbK\D\ccjMQb0/)YdE]nWrQG5^'$8;=bKA#QcHF2E`6-EQd*Kt\ +m*,OUqTT5gc-=JUbKTt1s31Mf*mW*Wc-=SZbg"ATc-Xna`O;_;TWQ&Wgue(tq#(-krr/8as8E#u +rr2rts8E`2s8UT`j7DX'oD\dfqYgBir;Q]or;Q`p!<2urs8N0!s8W)ts8W&srquirrr)fprr)lr +rqm-#qYC'dqYU0dqY^?lrr<#t!<)ips8'g[p%S:Y +qYp@#rVl`kqYgBjqtp?irqcTlr;QZpr;QZor;Z^!rr)fnqtpEjtn)`?Vg>CrMio&eSjQQ((q"t$grr)fp +rr)ctr;Q`qpAH97rVc`nq"OOMkNqR-r77U6XLQ=%j6u^4d]]R?TZ$'hrr2lpqYgd#rr2lorVuip +JcE[gJ,~> +g&M*O/-#VJrVlfrrr2rtrr)fqrVZWnrVQKaleg:<^TEr_O.E,JYdCdFZ)t(.Xo>I/Xfeh.WiE%u +WrB!tWr8moWW/t&WN)u!WiE&dWrK$uWrB!sWr8msX8]+GX/r:rU7n9UVPp8`VQ-c%Y,eM!W2co# +Xfeq7XeqedVlmA4YH"S_WWoH&Wi;qqWrB!tW#_k;XKAS(X/r=uVlHo)ZEC*pOHH'5]$&^bmIU)M +oDSgkrr/Yls8E#urr2rts8E`2s8UWbiq)L%o)8UcqY^?ir;Zfrr;Zfr!<<&ts8N)uqYpj#s8W)s +rVZTjrqZZmr;HTmrW)utrr;uurr)ctrr<#tr;S_Ts8W)trVlfpqu$BjrVZQhqYC$bq>'pbr;HTi +p\F[\p@nI]q=sd_r;6BeqYpNnqtpBlr;-9fr;ciqrVl^.rVlfpr;?Nns8N#rrr;roqu$?frql`n +#lFQ!qtTp[q>:0j!rVomrr2rr!ri6!qu%<0r;-$Fe[Tp$:f^Ig8Oc':*fqu$Zqqu-Nmrqufnqtq]9r;?Njp\+=KlL"!1qpqO7XguO(jR2a5dB0@? +TYp$lrqufqrWN9#rr)fprr;p!rr;usJcE[gJ,~> +bl7qIrVccpr;HZpr=SbjiRlPt[\K.XWjKCUaNVoQrlPhsbKS/PbKJ,RbKJ,RbKJ&ObPfT`b6?&3 +bKS2Rk0*qNbfe60bQ#d+bKS5Tc-FY_cH4,H`lZHKaiDKGcHjh\aiDKFbl5iqd*^(V^qdt7dF-Cc +bO!FQbPKEdbKS2Rb0'\+s2tAb)pZdTbKS>YaiMTKbf[l9XIbuZYeSN1*jrVQKkrquWhr;?Wp +rVc`n'E.q0rVZTls8W)trVliqqtpTV03er;QWorr*'#rr2lprr2rr"9/?"rdk*fs*t~> +bl7qIrVccpr;HZpr"\nki7H;o[\K.XWjKCTaNVoPaiV]KrlkGerll2%c-FVZc-4DVc-4ASbg"DV +c-=PZc2>igc-4E"c2Yufc25^)c-4GXc-F\_cH=/Ha2lEJai;EFc-O\YaN)?DbPo]ocd9kQ^V@_1 +d*pCdbj2s4+pEoBY`5rVuckr;QTks8W)rs8W&us7uZlrsSi+s8Muqrr2lqrr;us +(&e(.rVcZlqtg-bqtg-bqYBsar;HTnrr;rpr;HTorW)orrWW?$rVc`or;Q`r!<2up!r)E_rqZTh +&,Q2"qYC!es8Dilrr2ilqY^9lrr)fpr"K&.rr)cmrVuosrr)irrVQKiqtg~> +g&M*O2uimVrVlfrrr2rtrr)fqrVc`qrr)fko'#)gcbm)\Q'@GrSuAiuZa6p@Z*:F7XKAY,X/rD' +X8K%&X/rD'WiGlq"feW(XK/DiX8o=#XT#@#X9Yl1Y,n_,X/Gol*2]^2UT:Z*Za$X4WN*&%YH+\, +Za-a6WN*,+Yc[T"!3>pss/Q7'X/i8rX8f4"X8o=#WZS:CY-5"0Xf\V$W2Z_lS1*jrqlTlrquWirr2oqrr2rr$2jc"rr;uqqtp'm`qu$Bj!;uiprqucms82opr;HL8r;-0]p@%>8mdpA-US"[!aO]G?p@?S3 +VP'[&li$hZrVld*s8N#qr;HWorVlfrrr.KK`;b>~> +bl7eErVccqr?)(C3j +rUp-ks8N"ls8W&us8N#ts8W'4rVuoJ^uFqMlLFfPqtg6ir;?TprqufrrW)uprWrK&s8DlnrVuos +rVZWrrVlfnrVud%rVZTlqtp6fr;6Hj!rMonrquorqYL-f"oJ5qrVlfqrVulpr?;(7r;69_p\FRW +q"t'hqu$HnrqcHerr;upqu6TmqYU9krr)iqs8<9%rVZZprquZjr;HTpr;Q]qquZipr;QTnr;Z]r +rqucls8)osr;HWnrB^G\r;Q]qrr2lqrVZQjr;#dEgU!BFVkKcYVPKl]]@l`OqY9g[p@n:SoBtr0 +m-jN8nF5u=oC_kRqtg-aqYL*er;?Wnrr)iorql`n!W2fnq]Ph5p\+=LlgF34r77X8XguO(jmMj5 +d&a+;UW)QtrqcTmrXJo,rqu]mrr2lqrr;usJcE[gJ,~> +bl8sfrVccprVlirrVlZbl/UXMagn:?T:VdZ]#)M1bK@uObfe,LrlG;cbg"AUr65Dhc-=JUbPB?c +bKS5Tb0'.q!6Y;a0$MSbbg"DUc-FSXc-=JR_o'I3`lc9;b0A8\ccXAMa2uNIa2cBMccO/E`Q??J +rlQ)$bfn8Sbfe5SbKS2RbKS/Qbfe2Rc-4DTq98l^s31PfrlZD-c-Ob_c-=PW`l5s6]Wn<+S=?Lj +aj],1n+?GRrVlcgrW<-!rhBGmrW)utrr<#urY5>2s4+pEo'5N1r;ZZjr;QWls8W)rs8W&us7uZl +rsSi+s8Muqrr2lqrr;us%/p,$r;6EiqYBs`q>($bs7liqqYU-dqu6Knqu-?mr;HTnr!!&urVliq +rqlirrr;uss8N)urqdT.p\=U^qYBsar;6Bequ6WpqtpBlr;-:$aq>0sbr;?Knr;QZor;QTnquQ]mrVI`8qY0^W +n*BE0oDI17T<5ZFf&Z8mo$FJ8TVBEkrVlZlrr*B,rr2inrVlfprr2rsrdk*fs*t~> +g&M*O#ljo'rVlfrrr2osr;Q`ps8F&;qtTdNk1\;-]<7ooN/X!kT;ANcW3!/)XfS\.XnSplXl-8\ +X8]4#X8At4Xfeh.X/i>%XKet2Yd1O=Y,\J#WrB(!W!]Z3ZEUI4X/rG*X7`OoX7WIpXfSW!XoGIL +X/`2#XKJ_.XK&(iTq@gC0fr;?NlquZcn +r;QZoqZ-Qkr;lipr;Q`p!;uiprr2rr$NC#%qY9j_rVlcorr2lps83*"rqlHdrVQTg+6D;?l/gsd +kNCm`kO\WMq"FCUqu$?hq=jUXq>1!cqYg0jq>1!fr;QNtqu$Bkrr)cmrr!-#rVcZlqY^9grqn#; +qtp3`p%@h@mdB`Ee>&\>\B*4]n+H5!Ybmtb`9[F%qtp?frr;uurdk*as*t~> +bQ%M>s8Dus+T;66o^Ctuf$D.>Wh,NDTrYH-]Y2%q`5T[4`5KX5_o)2ds2>&X`PqPhnAY=D!6+rT +rkoDd`5T^6`5fs<`5KX4`6-3CbPo^'ai;9;`l,a4_8+%4b/qW>`5]d6_Sa@2`5D&^!5n`Qr5AZS +rl+oU-H![:_o0R7`Po^/]tCk[W1fZJT;]'0bLk_6n+HGPrr2lorVuipQiI*b!<;op'`J(3e\L2: +m-O?Bs8;`lrVZWnrr)cos8N)uqYpWrs8W&ss8N9%r;?Nlrqu^%r;HTnr;?Hir;6Bjr;QTnr;?Em +qY^3erqZfoqYL*frVl]or$qUAr;HQjqu6Nip\Od_q"jshrqlQhr;?Efqu$Eiq"XaaqY0g`r;6Ei +rVcWqqu$BkrVlZor;6Enr;HQms8;rqrr)iqs8<<(rVZNeq"t$hrVc`prVcco#6"Pup\Ojcrq@Mr +gudk_j5fCdj5B+lr;HEap%\F^qu$9apA"I[qtp6gp]C9fqu6Nmq?Qoqr;Q]or;?Qm#lOZ"r;?Eh +r;6Kk,Pq<7q=jRTnEfT2o_[.5TWYfGe`?2lnBnG9S=mgdrr2flrV?HmrrE%Ls1eSa~> +bQ%M>s8Dus)ZBR/o^Cttf$;%;X.GWFTrPB-]Y2%s`Q#m8rP\u]aMu6@a2dtr!6P5]!lrC'rl40@ +*5oh9`l5s;`Q#s<`lQ6CaMc'=`Pp*FaNM`KbfK_"-cEm;_8OI=a2Gp6_o9U4`Pfa8`l5s;`Q#p: +`l?!:`l5p:`Pojnb2_Trr2lorVuip +QiI*b!<;op'`J(3e\L2:m-O?Bs8;`lrVZWnrr)cos8N)uo`#F#s8W)srVlfprr2rrrVZWk#l=Gq +q=sa\q"Xj_#Pe,kq"a^\q>U6jq#L3cq$$WlqYU3frqQWlr;Q]os8EK+r;HTjq>1!dqY'XYqYp:% +qY^ +g&M*N'*%q/r;HTorVccrrr<#srr2lorr)lp(AmgnjPJS:`jr+?PE:rjPE_;uS=cIIrgs:cT:__S +TDtM_T+R`gT:hmOTV8'PTV%mLTV%jJm[sNN".u0VSc55\Sc55\SH,8\TGX;oU8F]`YHb71W265^ +T:MI?S"#qs-?d+RFAmJ$MTrVlfprVZZps8;its8N"ls8W$:s8N#rs8W)trVuoJ^Z+nQm.C;Wqt^0hr;?Tp +rr2rt$i^,'s8DoorVc`orVZ[!rVuorr;?Kl#Q=Z$s8Dorrr)fprr;p3r;HQlrquZkqu$Elrr;ro +r;HTkqu$Hj*W5m7r;?EeqY9m`r;6?fs8W#lr;Z]jqYgEkq=j^aq[r]&r;HNdp\Xmbp\Fa`qYU3h +rVZZl!<)in%K6;*r;?Qmqu$HmrVlfor=Jo*rVlcorr)ckq"OR\r;HWos8W$'r;6Bhr;HKdqYpEm +rY,,&rVuinqY^9gq>:-ir;$-]q#(-j#lFGprr2rsrr)]k#lXc%rVZTlrr)iqs8Drr1B%4OrVcZm +rVZWnrVQNjqY9dVn*B?-p%m.3TWYiGf&cDon^OnCSY3jar;Z`nrVuosrVuco!rr9!JcE[gJ,~> +bl8"Ks8W&srr)cnrVl^2qtBI>i7l]&^9XT*S"67IUSXrlZ*L[?riuU1Ycn&1s0)I,$F-h>Z*L[? +ZEga?rilC,!3kmrs0)L.ril4%s/m0BZ*UgCZaREQ\\cA)_8![p\$iZMZa$b6YmdqEZEpjBZa@'E +Z*:M"YQ_57Z*LX>r3@`UZEga>Yck13YHY=;YHP%+WN)kiS=H1KZG=Z3f]),]p%eC[rVlcor;Q`r +r;Hctrr/Yls8C6ir;Zfrrr<#trW)utrr;uurqcX&rr<#t +rVc`prVZTmrqu]m#Q4Puqtptr;?HkqC2=?rr)]j +s8Moir;HKeqYgElqY9m_qYU-er;HNdp\Xmbp\Fa`qYU3hrVZZl!<)in%K6;*r;?Qmqu$HmrVlfo +r=Jo*rVlcorr)ckq"OR\r;HWos8W$'r;6Bhr;HKdqYpEmrY,,&rVuinqY^9gq>:-ir;$-]q#(-j +#lFGprr2rsrr)]k#lXc%rVZTlrr)iqs8Drr1B%4OrVcZmrVZWnrVQNjqY9dVn*B?-p%m.3TWYiG +f&Z>nn'SA:S"7F\r;Z`nrVuosrVuco!rr9!JcE[gJ,~> +bl8"Ks8W&srr)cnrVl^2qtBI=hqHN#^9ON*S"64HUSXrnZEpmCr3I9JZa7$FZa@*I['[6L[^EQP +[C*BL[C!6FZ0nptYu%a2Z*:L=ZE^^@Z*LX>ZF%!H[C!ET\@]`#`50-u\[SrPZEURYe9rr)lsrr2lrs4+mDo^2#;rr;lkr;QWl +s8W)ts8W)t!<<&ts8N)uqYqK5s8W)srVlfprr2rrrVQHgr;-9eqt^$]q"am`)u9@,q=sd^qYU-c +q>0p`qY9j[q"aa^qtg3fq>U+;q"t'ir;?Tprr)iqqt^*dqtTgUp\FX[q"jpeqtBd]r;-0`r;-9e +r;HTlrqc]or;7$&rr2inrr)`lrr2lqrqu^+r;HTnrVc`or;-3_q"t!frr2rtruqu$BjqY0jc +r;Za0q=spgrVQHhr;6:0js8N#rqYUWtrr2lor;HWnrr2rrrr+\Orr2lp +r;HTlrVlcmr;?Edp@Rh>m-XKBe"WM<\]<:_nFc;"ZDX4a_Wh!urVZWos8Musqu-Zsrr.KK`;b>~> +g&M*N%fcM+r;HTorVccrrr<#srr2lps8Eo5q=jIGinW#*_n<7OT:1q%MiNp]O,o6YNW+q>O,f7q +O8k="O"ZNSO-#KdOH5H_O,f3ZNfK*VLl.4UOHc<0Sskq.OH5E]MMR(FM2dOSLkghGNK=(#!frA% +pQ#<7oT'!6oT(#QNK&sZOH5EZLl.4TPaJ)AZ+@fpe_K6QoCr+[rV-1*iqY0md +qtTsarquQcq>:'cq>:-iqtBd^rVQEer;6?fqu6NnqZcooqY^6equ6OWr;6EirVZQhqtg3fqu$Bj +r;?Nkqtp3bqY^9gqtg-bq>:-is8W&rqtg3fr;6?eqtp6grV6-`qtTgXqY^?ks82lorqm?'p@e@] +r;?HirVc`qs8N#rrr2oqs8E#urquisqYpEmrr2rt.fKAHrVc`pr:p!Xn*0'%p%m.4TWYiGf&lJp +o$ahAT:s0cqZ$QorVuosrVuco!rr9!JcE[gJ,~> +bl7eEs8W&srr)fqrZD%5p[d_1gssWh_7-SGUn*m@R[p%@S!f_5R@9S6R[WW5s-i8CrgEhVrga"X +/=N&sR@0M5S!fV2SY;[NXKet0Wi2_eTq@mFS"-"?T:MC;R@KkATV%gHS!r9)s-iqV*h&LbR[]h: +R[BG0SY2aTXL,RSa3W>mj6cF1q"jmcrr)orr;Q`rs8E3#rr2rsrhBGmr>Ye9rr)lsrr2lrs4+mD +o'G]6rr;llr;QWls8W)ts8W)t!<<&ts8N)uqYp`us8W)srVlfrquH`qr;-?qr;6BhrVc`ns8<#s +qtpBj')VP%qu$?gqYU-dqYU0frVlcnrql`l-iEuBq>1*hq=aX^q=j[^rr)]gq>:'cq>:-iqtBd^ +rVQEer;6?fqu6NnqZcooqY^6equ6OWr;6EirVZQhqtg3fqu$Bjr;?Nkqtp3bqY^9gqtg-bq>:-i +s8W&rqtg3fr;6?eqtp6grV6-`qtTgXqY^?ks82lorqm?'p@e@]r;?HirVc`qs8N#rrr2oqs8E#u +rquisqYpEmrr2rt.fKAHrVc`pr:p!Xn*0'%p%m.4TWYiGf&cDonBnD8SY*g`qZ$QorVuosrVuco +!rr9!JcE[gJ,~> +bl7eEs8W&srr)fqrYbV/p[[Y0gsjNf_RHbLV4F!@S=cFFSXQ":rgX%\S=KAF!1rtV!h>gPl^S'J +S=H/LT)Y?4S=Q1>S"-"Lqu$Ems8Dios8W,u"o\H"s8N"ls8W$:s8N#rs8W)t +rVuoJ^Z+hNlgt,Uqtg6ir;?Tprr2rtrr)otrr2rt!<2ipB)_i1rr)fprr)iqs8Donqu$BgqYU0d +q=j^]q"X^^qtp6cq>1!dr;6Ehq>0s`q"aa\q>'mbr;6Bcp%J%NqZ$Qlqu6Tnqu-Kip\=X_q"44Q +q>'g[qYgEjp@nL`qt^*dqtg3erqufn#5\5nr;6?frr#"Xqu$Bjr;6?fqYU3fr;?Nkr;HQjqt^'a +r;?HhqYC!`qu-Nos8DonqYU3gqtg0dqtg9iq"OX^q"4=Wr;QZpquHWnr"/\tpA4acr;6EjrVlis +rr2lqrr2lrrW)utr;clorqufqrr +g&M*O!<;ur"TSK#s8Vuq!<<#s!WW,tr#GS)m,m6Ze^)7I['-C#StDUCR@0A,Q^F,,R@'B:RK&WU +R@'B%R0K%HR@9V7Rf8[/R@'>-R[KG'Od))lL4Y,8MMd4GMMHe:NK]QeOHu?$PEV/nQ'n)/QBdi+ +R@'>/S"'AD#+(aHR?s8-qO%DPR@3u?!h#FCrgE\OrgEeQ&tGViW33VFaNi>ii90S$q>C0hrVl]o +$NC)*rr2lqrr;usUAt8m!<;op,lRcCe\C,7lg"'>rr)cnrVZWorr2rtrr<#trr;usrVlfrrr2iq +"9/?#rr)cqrqu]rrr)fmrr;orrVud+rVZWnr;6Birr2lor;6?er;-`qqtp'per$(t3qYU-c +r;?Ecq"t'gq>(!hrV?9dqY0aXq>L9fp%A1[rqlWkq]#J3r;-3^pA=jfqY0[ZrqcBcqYBp]qYL*d +r;-Ei&,lD"p%S=[qtg0drVZQjr;HU5rVZWlrVcZjqtp3dq=XCSq"4(Ip\F^`qY0daq[`Pup@e=Y +qY^r;HTjq"3t8jQH+2e=rS;\B*:_n+ZG% +Y,@nc`9@'srr;us!<;urs8W)t!rr9!JcE[gJ,~> +bl@S>!<<#s!WW,tr!rPom,m9\f[J!\]XP)DW;`XsUS4?ST`1PbTqJ(VT`Um\U%tA\T`^s[T:t\G +s.KLdTV21U.%m9,T:_gOT:MLET::t%OHc*!R@0M/OHZ0.TqA!SVk]oYT:hsVVkjT3rVlcnrVcZms8N#ts8M]k!ri6"rVlis!ri,qq#16j +!<)lqqu$NmrVc`n#Q=Z#r;6?fqu6Esqtg3dqtp:!\o_8.QnFQDMqtp6aq#:.$qY9dXq>0scrVlcnrVuosr;HWms8Dio +rr)lr"9&5urVlfor;cirr?;+;rVH<]mH*Elo)$q2T<5WEfAuDpo$OS:StO$dqYpKorr)otr;Q`r +rr*!!rr.KK`;b>~> +bl@S>!<<#s!WW/ur"]%ulfR-Yf@.mZ]sk2EVl?VkUSOQUrM'=e!2AnV*294'U7n'^Vo_AC`q=XFWrVl]lr;.H2rVZNep@eC_rVH9]qYp?cqYL$_q"jjaqu$ +`r?&:!Zn*p&LrqcKgrVZ`o +rr)lr&,Z+sp@._GnF?5Jp[n4Uq>U9kq#C4(qY9g[q>'g]qu-Qor;?QnrVZTmqu6HlqZ-QnrVufq +qtp9oqu$Bhqu6Hjq^218qY^9foBG/iipQ]pUS"WsaOfG>q!uh7VOjI"lMLV[rr)lsrdk*Ys*t~> +`r?&c]XP;X\%0#V[/RNF[^W`S[^WfV['[9O\@8rUm^N5)+h+tl +\[oMk`5p-Le(EO:0krr2iprqu`os8Dn\s8W'5s8Doqrr)lse\C,8lg+0@s8DlnrVZZo +!<)or!<;fms8W,u!<;ur"o\>qr;?Hir;uusrVlfrrVld!rVlfprVlfqr:!Zn*p&LrqcKgrVZ`orr)lr&,Z+sp@._G +nF?5Jp[n4Uq>U9kq#C4(qY9g[q>'g]qu-Qor;?QnrVZTmqu6HlqZ-QnrVufqqtp9oqu$Bhqu6Hj +q^218qY^9foBG/iipQ]pUS"WsaOfG>q")q:Vk0R#lMLV[rr)lsrdk*Ys*t~> +`r?&:0j!WW/us8W'"s8N"^s8W'5 +s8Doqrr)lse\C,8lg+0@s8DlnrVZZo!<)or!<;fms8W,u!<;rqr;HZp!<;rqs8>[kr;QZmrVcWj +rVc`prVZTms8W&qqtKaUp@\(Ko'l,;mcs$#lgO?3mI'T=q#($\l0%O.p@RqJq"jdXp%e@QnacDN +qXa+?me$;Mq#:"Ep%7kHoCVbPq"=1GnFunYo^;,=qt':Or;-9cqYU3hr;6Ehr;QTgp\F^^oC)2B +rVlZiqu-Hnr;QZprX\o#q=a=MoC2;Dq=jOUq>($es7lWk')MCtq"aa\q>:-jrqu]nrr)cmrql]k +s8)forr)lps82]k"T/,pqtpBhrVIr1$eqX`t/hr=)$et\k=\&d1\meHD%Xf%b``Tm@#rVlcq +s8ITL\,Us~> +`r?&dYQ(P(`]Y_\0a2>d7b/_KBaN)9;_oBjAa8X'^`Q-'@a2\+ts2G,\`l@Vj +s2H"uaN;NFbg+Veg"kWJkjJ$6q"jmcs8W)urr<#trW<-!rfmH_rY>J3rVlfps8UWaipuF%o`"mg +qu$Ekrr)orrr*W3rr)fprVcZmrVlcorr2rsrr;usrr30#rr;usr;-Bjrr;lurqu]krVR?+qYL-g +rVH3VlfdNojl>@YhV6ibh>c=]iSrnVhrF+up[-_S_9glgf\#'Go(2D@oCVVCo(VtPlJL7JiTTUp +mHj'8j8\1Ik3;0rl/q0tq"O1:j6ZC&kkG)TrVZQjqu$?fqu$?dp\Fadqsrk(guRqrp%S=\qtg-_ +q"jpdqY'RSkh>(XgY_;bmdB];mdKiGr;$-br;6Beq=s^Yq>C6ir;-6crql`lrqZNhs8)fmq>:*d +"Sqoiq"Xja-i!N5qY^p[ch9Vk9[%lMLV[rr)lsrdk*Ys*t~> +`r?&HOI2N$ +Nh!JkZC[DPV6@JIaNMiPai;NLaN2NGaN)6Do'c/Dq"3k/f\51*fs8)`jrVHQk!;cNgr;$QlqYBp]rqRr:q>'mbrVH'E +g=b?Lqq%X:XLH:&ipQR4dB0:;TZ$*ks8Durs8W(Ls0r#Y~> +`r?&d*KnWc-OSSb0.uK`Q$$EcH42NaN2QIb0.lHrlG,^%`ul9ai_cJb0%iKb/qcJ +rlP2_(X1.Kd*^@rgu.5UlgXK=q"jmcs8W&trr2rtrW<-!rfmH_rY>J3rVlfps8UWaipuF%o`"mg +qu$Ekrr)orrr)otp\t3ms8E#uqu6Nls8E#ur;H]prr)rrrqu]pr;HR]r;6Bjs8W&op$h;3l0.6h +i835Cg=b-3g"Y<;g=tQOpA+46a2?V8]mHs9(rT!q=?fpV< +lKRHon+cYEjQ#UulKJ!ArVcZkr;6EhqYU3fq"OU^rql9Jgt^uZo_%tTr;6?dp\=U_r;--Zp#t,i +jP/SWn*]W8o'Yu>qu$9bqu$?gq>'g[p\Fadr;?EeqYpBlqYp1$fqXNV"g"u)mf;,(@\&d1\me?>$Xf%b``Tm@#rVlcqs8ITL\,Us~> +g&M*O!<;ur#QOf&s8W)us8Muts8Doss8;lqr=8]!p@Ib>l/^j^hqd&@g&9S&f@&:OfDO8$fDO;$ +f.bk/f\"g,f%A[-d)Wf%W2#cAPcMX7Vj!=2R@^:]^;nIFe(!(+g==^)g"4a'g"P-YecsXTg=k31 +f(mqpf`0S&f_j>5f\,!3g"kQEjlbprnFH8Iq>:0hs8E0"rr;usqu6`ss8W#r!rr9!UAt8m!<;op +'E.t2e\C,7m-OBDrqlQirr)fqs8Muts8Dp.s8N#rrr2rsrr<#ts8W)us8DotrVlfpqYp9g!;ufo +-N*cVhX9gi`1N6cri(+D][Gg&kN(afkN;+#na##U +`5^0Wgtg`:da$+^bg"J_f@ep4g#)/kq!$MaiU#XboDAC[q"OLTp%.bFo^hM>p%nX^lIX+qb1#>7 +nFZJKoC;;hX14?qY'dcrVQEbp@Rt_p%\CZq"FCSq#1$fq#1$g +q?6WjqYU0gqZ$?oqt^'_q>L*gq#U9drq[i:qsWCje(X*`fVP:C\&[([mIp+uXeq\_`9I-trVlfr +s8Mus!ri6"rr*!!rr.KK`;b>~> +bl7bDs8W)t!<<#s!<;urs8U0fq>^9oq>0sbqu-Bk +q#pTjq=sdaq#C-jq"apc*;o^&hUBs-lMB/0Trb`Df&Q/ko?se>T:s6hqu?ZpqYpWrs8W)t!rr9! +JcE[gJ,~> +bl7bDs8W)t!<<#s"onT#rr)coq[NDrp@Ie@lfdHii838Dr7ZVPg"G!/f\"g.f[nd.f@\a-f@\^, +f[na-f@S[-f@\a-f\"g.f[nd.f@S[,f@\^,f[na-f[nd.f@\a-f\"g-g=b37f@Sd3f[A![['-O( +Q^kG)`ibc!SY2g]\&?M*f@\a-f\"g. +g"4j.f@S^.f\5*7gu%)PkNhR*o_/(Vr;?Nlrr;usrr2utr;Qits8W#r!rr9!UAt8m!<;op'E.t2 +e\C,7m-OBDrqlQirr)fqs8Muts8Dous8N#rs8W)urt,20s8DutrVZTmrqu`nrr)fprri?$s8Muo +rW)oqrr)fqrX8Z"o'>>mg==Trai==s&]DZ.`5KX6`5TpTmdT8VU6VJPX*:_YcemjFiT'%^k3DF* +leTh(`mEDoh:pQ0cHXVXc-Okjg"Y66hsC.5l.XbJm,[0tqtg-`p\+:QoCDJEoBu)?qYg3Sf>tnQ +e)BT]o_8(NnaGr;p%J"HmH;a$^VR4eb0\\li8*)CmJHq[pA4gfqt^![o^iF^q"jg]p@\.SrV?Hf +rV?Ki"Sqojqtp?gs7lfpq>'g]rV6Eg!VlKiqB,Y4n(uOBg?SOeV4k!"a4B;~> +_#OH5)uom8r;HTlr;6?cp%._BmHj-&l0.?okih3lk/QTak!8+nkNM*jj5]4_kiUsaf#4kmZd%.B +Um.LISsl4JZF@QohW*b\l/gmbkNM*ml/gsdk2taelK@6gk3;-okND"'kPs]DkPjWCkPjZ]l0[s0 +o(2PJq"ad`r;HWorVZTmrVlcorr*!!rr/8as8<$!rr2oqs8E`2s8UTaj7M['oDJRbqu-Nlr;Q]o +qZ$Qo!<<&ts8W,u!<;ur#Q=SurVlirrr)lsr<30"rqu]krW)oqrr)b)rquQ_lf?pUeBZ1S^:_%h +^;It1`P]X5_nsLKlg*<9MKO?"JUiNG\^&aTccsebf%oHNiR5NM]#N.Je'?%Q_SEmu^;@q7cHsna +g?ne7kL.Z2l/LO`n*TK-l0.WX%\$3*Nf^\k7q"t'hqt^![o^qhNq=s[Vp@n@\qYp9uqYU0dqtp6equ$Bhrqufn$N0euqYL$a +qYC!arql`l+8u-+gWe$okPEi-TWP`FfAl8ln^+A6SY*g`q>^Hordk*Vs*t~> +_#OH5)uom8r;HWnr;6?cp%.eEmHj-%l0.?okih3lk/QTak!8+nl0@NrjlPXgl07Emg;p_(\'WpQ +W0j?YU7S!TZadcshrNq_lf[ccH*r@^qRIq_T0mG +d*L(mmJHeDda$Y4in`kfmHj0'ki_'fio9"ti]lMgnF5Yl_R6JE_VXJAn*]N,kN;!omdBK)eZXsr +Ob&F\Vm3b@Yctjonb`.Wqu6Qkq=jUTo_%tSq"FCSp\=^`rqQruqtp6eqtg3er;?Hkr;ZX$r;6Bf +qYC!aq>0sequ?L7rVZ-=c-Fl&qUhX;XglI(j6cR4e$#^CU;lNss8MurJcE+WJ,~> +_#OH6(B=C2qYU0dqtp6bp%.bDmHj-%ki_0lrT>'\jlPXejlY^ek2tdfk2k^ejlPXdjlY[dk31nb +k2kafjlY^ejlY[ekN:sjjPo4\jlkpkjP.ecXgld7bGgo*WM?)ZWO07PdGa6Ol0@Bgjlbe*k8i[E +ioT=_jltpeioT@fkN1gfjlPXdk2tdfk2k^eroO1@'^"N>kNM-olg=02o_/%Tqu$Els8W)ts8N0" +s8W)t!rr9!QiI*a!rr9!rr)lr'`J(3eA1,:lg+0?rVZQkrqu]nrr)]nqYpNps8E#uqu6Nls8E<( +rr2rsrr;usnc'@&s8W&mnEAlff[.d[]t:hb\\,\l^&GZ;]=c,8lg3E=N-Kl-K7\oJ[`[%Gbfe8Z +fA>WQiR5NM]#N.Je'?%Q_SEmu^;@q7cHsnag?ne7kL.Z2l/LO`n*TK-l0.WX%\$3*Nf^\k7q"t'hqt^![o^qhNq=s[Vp@n@\ +qYp9uqYU0dqtp6equ$Bhrqufn$N0euqYL$aqYC!arql`l+8u-+gWe$okPEi-TWP`FfAl8lo?se> +T:s6hqu?Zqrdk*Vs*t~> +_#OH6"98>urr)d'r;HTkqYL!\p@\(Mr:9p\rpn/%"7l'To)A.]o(2MFrp_E.p%@k>inibal-??" +V5pZ"ZEpj9Wl!WZnEoW2n+-&>nac;@nFQ>FrppNfn*orAp%._EoCDJJo)nRToCDkMrpg?dp%S:Z +r;6Eirr2oqs8E9%r;?Qmrr)fprW<-!rg3ZbrZ6rVcWir;QWkrquWl +rquotrVc`ps8<'!rVc`prVl]srVlcorVliq"TJAur;?Hj"T85sr;?QkI/Ns@q![D)i8NYOf[7d] +b/qlTeC;pmcd9n\g?n_/iOb%pKSY2*HB,&?_7HnU[_Bc-gZ%&7]Wnl_dFQjqbfRlA^V7M&aj&/[ +dF6k;qYB7#cedpGf\PE>gY1<3f$i$nd*^7jdEU%mkj@ETZ]]a4f&#BLkN1jci8>U7kN_Hqb+F$' +E+Ed4M40rlGC#F]g[Y+:qYU6irql`ks8*B*qt^$`qu$Ekr;HTlr;HTlrqclqqtp?jqu6Qoqulur +r;-9hq^;49qY^6fqYL0io%_C2e*$S[UnFj"aOfJ>p@6P4VOjI!kkY8Xs8ITL[/YX~> +_#OH6('"72rr)iprVZWmqtg0ap@e.LoC;AMnceRSo(2GCb4>u2oCMPCnac>Gp%87T-h[6/oBYJq +k3qW^Xe)GlXK]%;ZDjk@hX'_!n*ol>o^_VGoC28@p&4IinaGu=p%@qHo(2GCq==^ZoCMPOnH/:Q +o)A5"o_%qQqYL-grr)irrr2rss8DorrVcZmrVuipQiI*a!rr9!rr)lr&cMb0eA(#6lg46ArVQHh +rquZmr;-Ejr;ccprr;p(rr)fprVcZlrVQKar!WK$qtpgY1<3f$i$nd*^7jdEU%mkj@ETZ]]a4f&#BLkN1jci8>U7kN_Hqb+F$' +E+Ed4M40rlGC#F]g[Y+:qYU6irql`ks8*B*qt^$`qu$Ekr;HTlr;HTlrqclqqtp?jqu6Qoqulur +r;-9hq^;49qY^6fqYL0io%_C2e*$S[UnFj"aOfJ>p@Qh;W1]m)lhpe^rVhBJ[/YX~> +_#OH6!rr8trqd0$qu$Ekqtg0`p@e.MoDJ/IoCDG@nF?&f3md]i9nF?&;md]o>naZ2>mI'N9oC;;=naQ& +gY1<3f$i$nd*^7jdEU%mkj@ETZ]]a4f&#BLkN1jci8>U7kN_Hqb+F$'E+Ed4M40rlGC#F]g[Y+: +qYU6irql`ks8*B*qt^$`qu$Ekr;HTlr;HTlrqclqqtp?jqu6Qoqulurr;-9hq^;49qY^6fqYL0i +o%_C2e*$S[UnFj"aOfJ>p@H_8Vk9[%lMLV\s8ITL[/YX~> +bl7bDs8Vlns8W)t"onT$rVlcprr2loqu?Ksqtg0dqYL$/qYU'pp\=U^qY9gYp\Fgb)u]d8qt/pn +^::DIX0&S9Z)>%]nF>MniU$10p\t!gq#C9lq@38pq"X[]q>'g\q>0p_q>(3hqYL$dq#:'mqYU0g +s8W)ts8W)trquirrqurus8N"[s8W&us8)^0rVuoJ^>A;Eme6\[q=sgbrVZQjrVc]os8NT.rVc`o +rVlisrr2rsrr;usrVcWm"98B"s7cKorVlforVuk'r:f^Hk2kahkiLdXgYLZAj5o=ZhV[5Eg>qo* +r9_b'Ng,fiM2.._VPg2_U8"Hf_q3o+e&8l5bh(V%e'?%P^V.@t`Q-*CcHk"tn+l\/^mBDBfAPZQkih9ojPo4]kjRiaX,VXTF*ib0W2>DmG`oJcmJ?k\ +qYgElrVHNrrVZWmrr3'!s8Vuq!r`&qo`"mh!<2rp-2[]@r;6Hls7Y9h`R*iGf;"t@\]NF^me?;! +XJMJ[_s$srrVlcprr;uurdk*\s*t~> +g&M*O!<;ur!rr9!nc/Uf#QOf&rVlcprr2j$qtg3dq>'g\rqQ`mq>'m_q9&P&q>0s`q=sa]qu-Hi +q=sd_qtg3hs8Vugj3>0p_q"X[]q>'j_ +"8Vfiq>L(#q>0p`qYBs`qtp/^mBDBfAPZQkih9ojPo4]kjRia +X,VXTF*ib0W2>DmG`oJcmJ?k\qYgElrVHNrrVZWmrr3'!s8Vuq!r`&qo`"mh!<2rp,5_B=r;6Hl +s7Y9h`R*iGf;"t@\]NF^me?>$Y,@nc`Tm@#rr2iqs8E#ur;Hctrr.KK`;b>~> +_#OH6!rr8urqlorr;HWorquiprql`ls7lfoq>'m__YF*($MjSqq"FCTq>1!drr4YMp>sW9]!AE> +YHb[FW41CKo&AE^m.9rFq"XUWpA=^]q=jRUp@n@Vp\+=Tq"OOVq"sgcq#C-jqYU9irVd!#rr2rs +rr2otrf-sXrW)uprY>D3s4+j?md0B8s8MihqYgBjqu$EkrVlis%fZG*rr)fps8W)ts8N#trr2io +s8E*"rr2?c!<2rs"9/2imf)Gqm-EingtLN:gu%#Eg"+a,eC3=Dqtog,Ulh"2Oc,$VS>E!Rrgtm? +Z,G8RiR>`W^Wb_hs^C7jO2<(hVHuIj5JtThqm2ErRs0bi7ul5hX:.0 +h8#A(U=\>_l0.?qkN(X_jll1!d&W.VH#n=hQDg[;F*NkUf'W>6r;-BkrVcTm"9&/rrVlfurr<#q +rW<&rrUg*hr;ciqr$D7>rquZlrr;]Ja2QEhqq%U8Y.;[*ipQR4d]TL?TuH +bl7bDs8Vlnrr<#trr3'!s8Moqs8E#ur;Q`p"9/8tr5\d9qucrurr)cl2uNXPr;QTirVulnqY^*R +g;L7oTVfH:XgH^QkfCNWdbX*Tp%\@[r;QWkr;-6err2ilqY^&#@n+ZhZp@S%Rqtp3cqtg3dqYU3grqclsqu$?h +r;QZoquZipqu-?mqu$Bkq[WQ&rVZWlrVcZkqu$?gr;HL#r;HTnrV?-Xn*B/uroF(?s5XdSlKdWo +j5oC]h;ISkq=NOUV>d5GUnsfVR\$@YYb[ef_VFA=hpfs!f\YKs8a3)lknb;V8 +eB,hYfB)Srrq$0^s7?9]2"U;1q"=.EnbE"UkL-c4]AD]6m-O0/md'*"kNMI.iQ8O.Unk*$_9L-/ +UoCrOi9pF?qtU0d$i9bur;6Bhqtg-bqYpBkr;ZWtqYU3gqtom\s8+)>qtg9jqt^0eqtAmc^s2-@ +f:nn>\]NC]me?;!X/)8W_s$pqrr)iqs8N)uJcE=]J,~> +g&M*O!<;ur!rr9!nGiOfrr36&s8N#trr<#tr;ciqr;QZoquZipr5np;r':5\rr)`kr;HTnrr)iq +qtg9krqcKhpZpPOZ)=7l^:gYUfCe@K_8k0fm.C/Pqu-NorVZZlq>C6kr;-9frVcZirVufpr;cco +r&#@n+ZhZp@S%Rqtp3cqtg3d +qYU3grqclsqu$?hr;QZoquZipqu-?nqu$BhrqcZl#Q">pqYL*er;QQpr;6BjqZ$HmrUbi8q"sgKd^>g]hWF%gm-a?1lfdNpkje<( +agS4FUo_&Ac-!AgWOgF6meQkZq#:'sqYU3gqtpC-ep>3d(c0>,WU7\QuajoD=p[lq +_#OH6&c_k/r;HTkr;HZqrr<#trVccprVlctrVZT5rVud^rVlfpqtpC_kN:d]h;7)Ff\>NZq=NOW +WViVJTq%LjE]kigpRcI(;$hV$?%`kfF(^r+13`5K^=e)Tumo&SU9drqQru +qu$Bhqu$?fq>0sequ6NnqZZinr;?HhnGN=`-iEl +T:s6hqu?Zqrdk*Vs*t~> +_#OH6&c_k0rVlfrrr2rsrr)fps8W)ms8N#?s8Muur;6KmrVc]o0E:tIrVlcmrVuoro]kAcbe^fd +T"XIdfWhZaXg,L]g["S5rquWiqu$?is8Mupr;HWjs8W)trrE&srrW3"s8DrrrVulss8MurrWiE% +s8N&ts8W)t!rr9!QiI*b!<<&ts8W,u)u]g:e\0f.mdBW=p$hDu:n*ff;o)A.Zo)A1X +ncn^Vo(2GCnbqqYnac8MnH\XVoCDMDoCMhL!:g'X61XX=o^q\AlfdKlj5f:`k2kagkNM6skN1ji +kiC^_lLXfBim#B^bg"AUb/(d-aO/JU]Y`.[o(22.hV[>SjQ#1th&Y8&g"P36eC)dqgZS(qlf6dM +cdU_7nFQ8BoCV\Hr:L$^2"L,&n+65Em,?@2d,O9Sm-O0/n*TE'kj8$=nDr9NcHt.ti9'(Mbg+bp +jQuI1oC28p[QS0URRgll2(AVr;Q`rrIP!Xs*t~> +_#OH6$NL,)rVlfrrr2rtrquirrqufp!WN&mrlY9?rr;oqr\sfRrr2rtrr<#rqu-Nmqu-QprUfC5 +f$(t?V4PEeqUi-\['I-Ud,FKks8W&qrr2lnrVuosr;?Nmq>^Korr2utrVm'#s8W)urr2itr;HTn +rr;rqrr)iurr<#trW<-!rg3ZbrW)utrr<#urYth9s4+g=nF#`7p@[qCn+?DJnF5u:nF,i9o()eM +!:p-ZrUKs[r:0jXrU9pZo()>MnGi"Yn,;eUnc84ZndY-Yn*]]8nac;Bn*B,rro!k:rT+"?/a)?\ +jl>Fak2Y@UkOSBSjQ#1th&Y8&g"P36eC)dqgZS(q +lf6dMcdU_7nFQ8BoCV\Hr:L$^2"L,&n+65Em,?@2d,O9Sm-O0/n*TE'kj8$=nDr9NcHt.ti9'(M +bg+bpjQuI1oC28q"3%=W1]m)lhpe^rdk*Vs*t~> +_#OH6$NL,'qu$Bhr;Q`qrr)iq"o\H"s8W)ts8W)=s8MuurVZWn4T59Ys8W)us8;clrr)`ms8W&h +l/:.9^pp54^?bXIZEUR9ZFnE:m.^JWqt^*cqt^-er;6?equ$Hnrr2fps8N#t!<2rs#6+Z&rr<#t +rr)cos8Dios8N0"s8W)t!rr9!QiI*b!<<&ts8W,u)u]g:e\0f.mdBW=p$hDu:n*ff; +o)A.Zo)A1Xncn^Vo(2GCnbqq_nac;Co(2GDoD\C^o`FdYp&4MOoCDD?nac8Cp%%V=kiCdajQ5Rg +kND!ikj%Eoio9%[iSE>OnFuP6cc=5Td*BnX^q7:tc-jVD_UR`=oBYJohrBnac5>nFlAQo'u_M#P7NVo_%bC +oD\5!hTT:s6hqu?Zqrdk*Vs*t~> +bl7bDs8Vlns8<'"rVcZirr2l-rW`?$s8;`krVcaOrVlcprr)cnrr2lqrVZTlrr<#tpZ9Z-[+G9S +`L3O%VQ-c(]?/^fnbW.^rr<#sr;HTnrr;oss7uZos7ZEqrVlfpr;?Qmrr2oqs8W)t!<;op#QOf& +s8W)us8)`prrE%qs8W#ts8Musrr2lrrts8"hXTjhhVmJPhqmDWjPJbNhVHuBhV[5ih@8B!hV[8L +hr!ALhr*DLrnd\2!oDhlrn[b7i8EMki)&=hi8Z:fiSrnVhq[#EjlYUZg"G*7hr3JK +gtLK:g=tE?i8]#`I_me64uX/)8W_W^gprr)iqs8N)urVlrus8W)t!rr9!rr<#t!<<&t +s8W,u!<<&ts8Voo!rr9!oD\mks8Vuq!<<#s!<<#s!<;inrVuiqs8W#r!<<&ts8W)t!<;op!<<&t +s8N6$s8N&urVcfsrVlisrr)otp\t0lnG`Ifqu-Zsrr2NhJ,~> +g&M*O!<;ur!rr9!oDejh"98>ur;Q]qrVulor<)urrVlco`;Tu>s8W#mr;HKk-iO&Cr;HWorVlcn +r;HWps8McSc*k%4r;=R)W3E>*ZF7Nmh!+G-rVc`urVZTlrr2rr!<;los8Vfl"9&6!rr2lrrri90@bg!J*tgtg];f[\I$fA5B>e^r[@m-Noprn[n9gu%&HioT.uh]^q8h:pW9 +gY_&Mh:^H2dad.2hr*MQiSrkUio8qUio8kPrnRnZ:fiSrnVhq[#EjlYUZg"G*7 +hr3JKgtLK:g=tE?i8]#`I_nG)V'YGe+g`p3I$rr2iqs8E#uq>LHqrr2oss8E#urr2rt +s8E#urr2rtq>UBnoD\ahqu-TqrVcfsrVcfsq#:6lrVlisp\k0mrr)otqYgKprr2rt"TJH#s8W&s +!<<#ss8W)t!<;fmrr;Kes8Vuq!rr9!oDa=~> +_#OH6"98AtqYpEmrVlfqrVuisrVc]qrPJOZ:fiSrnVhq[#EjlYUZg"G*7hr3JKgtLK:g=tE? +i8]#`I_n+ZD#Y,@nc`Td7!rr;ulrrW3"s8N!!s8N#ss8W&us8N#ts8W&us8N#ts7uWu +s8N#trr2rnrr +bl7kGs8W)srVZZor;clsrUKmes8N!!s8N#Xh!!WrquWirr)cmrVuosrW)urrr;uurr2rtrqud&rr<#srr2inrVlco +rr)uts8W)t!<;op#QOf&s8W)us8)`prrE%qs8W#ts8Musrr2lrru'A#h!rQ"rX&')c3aN;QFaN)BCa2l?B`rMf`Q$$@b/qfIaND`NrlQ/'c-XeY`P]R2a2uKFa2cbL+eaaN2NGaihlObK@uJ +_ns=.^V@b1bg4SV_SF4=e'Q@_b/_KAb/q]D`lH*=`Pom=a2Z0?`lH-@a2lBErl>/_aN4A$s2OrV +/B5`NaN2KEaN;NEb/q`GaiMWNd*'DFf(.FeSuoTFe`?/ko$FD4S=[U[q#:3i"9/?#rr)iurr<#t +rW<-!rr2rtrW)utrr<#urW)utrr<#orW<-!rq$-krr<#qrW)usrW)usrW)unrr)lqrr<#rrW)ut +rr<#trW)uprW)utrr +g&M*O#ljo'rVlfrrr2Nhs8;rtrr)iqrVc&[rl>#Z +--=6Lai_iPc-+5NbKS8Vai;9:`Q63D`l5m8`lcTPc-FbddEp8>cNDA2`Q8&#)p$":`5TjBcdC+b +bfe5Rai23:_o9gCaND`Mb5BH_b5]RSaND`NbK.]Ba32lZcH+)LaiV`Lbfe/Oa2>d3_S?q")q;W1]m)lMLV\rqufrrWE3"rr)co!rr9!rr<#t!<<&t +s8W,u!<<&ts8Voorr;Thrr;lp!<<#s!<<#s!<;inrVuiqs8Vim!<<&t!<;op!<<&ts8N6$s8N&u +rVcfsrVlisrr)otp\t0lnG`Ifqu-Zsrr2NhJ,~> +_#OH6#QOf#qY^;__o'I5`lJ(us2PMd`lH3CaMu6?aN2O&aWSdN +bfRoGaNDiSai;?>a3)WMai;<>a32fScHt(kda6A?cNDA2`Q8&#)p$":`5TjBd*^4cbfe5Rai23: +_o9gCaND`Mb5BH_b5]RSaND`NbK.]Ba32lZcH+)LaiV`Lbfe/Oa2>d3_SLTurr2rsrr;fns8N0"s8Vuq!<<#s!<<#s!<;inrVuiqs8W#r!<<&ts8W)t!<;op!<<&ts8N6$ +s8N&urVcfsrVlisrr)otp\t0lnG`Ifqu-Zsrr2NhJ,~> +bl7kFs8W&qr;?L"r;HTorVc`qs8Mcmr;QTla8Q/?rr2lrr;Q`r$3'o$rVlcos8MunquHWlrs&K" +hnlk,Xo>L2\[o&A^@_Hrjlu^Arrr>sqYgEmr;Zfrrr3'!s8W#r!<)or$N9o!qtp\@K0L\d#^V]Y(ke\c')j]=P\n`504%^;%S( +`PT@']XbP`]YM=q[C!KY^qI7f\$i`V^rOU=_S3[o\GWf:\@MUMs1&6A\[frji'?s18?F]=\'Ts19Ge]t:e_]#2Fs\BjWoU7\Nsa4BDAo^U8.URRjkjnJ`OrVl^% +rVuors8W)ts8N#srrE&srrE&prr`9#s8Mus!<2]l!ri6"qu6Wq!<2uts8Moq!<2rs!<2TirVlcq +s8Mrr!<2uts8N#t!<2ip!<2uts8E0$rr;usq#CBnrr2utp\t +g&M*N#ljl%r;HTorVc?fs8E#ur;I!%rVcZlrVuorpAb0l!<:.>"TA?!rVZTl!;uip$2jc"rVlco +s8Mumr;6L-rSb]+['?sEZb3rWVSMp*o&]-5rVlusq"amerr2rtrr2p!rr<#rrW<-!rqQNnrW<-! +rr2iurr<#tNrStTs8W,u'E%n1e@s`'g;US2\\,J[ZaR9J\,NuN]",A_]",D`]=YYd]Y(kg]_oGJ +]XbSa]",D`rji!=s1J9C!5/rji'?s18?F]=\'Ts19Jf]t:e_]#2Fs\BjWoU7\Nsa4BAAp[lq; +Vk9^'lhpe^rVl`ps8<9(rVcZmrVuiprr)isrqcWsrr<#trVllsq#CBnoDeghqu6ZqrVllsoDedg +rVuosp\t6mrr2utqYpQprr<#t"TSK$rr2]ms8N#t!<2`m!ri6!nGiOfqu6Zqnc++~> +_#OH5#ljl$qu$HnrVcHis8<6'rVZQjrVlco]`.s0#Q4Q"rVccqrV?BgrtG=g_n!+XZEpmM]<\Sc]=beg]DK5H]=GJ`]",Db]Df>C\%&u[rO`*B#eRa^ +]=GDZ[C6%C!P#]>]DoDM\@8uY]"5G`]",A_]DfJC]*>gS[^`lZ^&G_q^r==2^qI@n_8=.._83mt +\@TAh_7[1_\\>km\[]/X[_'>qb/hH6]XkWN[fO"Lrjr-?"1YnP])B2>\.QDJ'^qI7d\@]Db]">Yf\@TAe]=GG^]"5D]]">Parjr'?pq-[?]"7mO +rjr*>s186B!kc.Wrk/9C,.tV$\@/ud_n*A(n("/)XLQ=%k3r!7d]TI=TuH^Ko!rr9! +rr2utrVllsqYpZss8W)srrE&lrr`9#s8M`ls8Moq!<2rs!<2TirVlcqs8Mrr!<2uts8N#t!<2ip +!<2uts8E0$rr;usq#CBnrr2utp\t +bl7kGs8W)srVZX(rVlfrrr2rsrr;uss8W&ss8NQ-s8W)trVlfprr2rsrlY6Brr<#srqufrrW`E% +rr;urrVc^Fs8MrprqlTlrVZQjrVZWegr$CpVm!nR[A1A'q;'6*XKJq19YcXn+Yd(C7Xfee)V50rcWj&_0Xfek0X/`5pX9>]0YH>#*Xob`.Y5YR#XT,=$XSo:# +XoPU$XrjaGVkgDqUo))pe"`S<\B!1^n+H.pWhc/V_WLXmrVlfp"9/?#rr)iurr<#trW)usrW)uq +rr<#urW)utrr<#rrW)ulrr2rprr<#qrW)usrW)usrW)unrr)lqrr<#rrW)utrr<#trW)uprW)us +rWW?$s8N&uq#: +g&M*O#ljo'rVlfrrr2"oeQ%rVZWnrr2lrrW`?#rr;urrVc^Fs8Mrp +rqlTlrVQNkrr2rkh8Qe&X0]^_\#$e0qq]H>gZ\2%rr;ops8W&prW)utrW<-!rr)lsrr<#trW)ut +rr<#ur<*)urVZZns8N6$s8N&urr*!!rr//^s8E*"rr2oq'EA'\^"_c$^94QAZE0q!VP^2gX8]7! +XT,=,XKAS+Y-+n/Y5YX)Xotl-X0&N#XSo7*Y-5%3YHP,-Y6_;5XK8P*X/rK&Y7.S9XK/G*YHG"1 +XfSW'XW+@AXKAS(Vl$AlXKA\.YI(^CY,S>"YHP47X/Q#q)QBmEZ*(%'Wj&e6YHY43WiN8+Za@!? +XfA=ur2E/aWN<2$Wi<"uX/i8$X/`.uX0/b7Z*(('V50reY-"e,XfSS(XKAS,Yd(I;Xf8D+Z*1=4 +Y-"Y!UnsuhYct73Y-4t.WiPlq"Knr3XfqW)!j/W.riQ(!s/Q.$rN6(%!3Q.$*NZ<>Uo^YnVSq`J +US+a!a4B>?p[ch:W1]m)lMLV\rqufrrWE3"rr)iqs8;rtrVcfsqu6Wqs8E#urr2rtr;H]rrVcfs +oD\ahqu-TqrVcfsrVcfsq#:6lrVlisp\k0mrr)otqYgKprVd!#rr;uts7lTns8Muts7cNls7$$f +s82css8N#hs*t~> +_#OH6"TSK"r;HTns8V`j#6"Jurr;usb5VYEs8W)srr2rsrr<#trWE3"rVc]o.f]MGrVl]krr)cl +rVlcpp"[KmWi<8?`3uJSo(q1cbhM@Np\t3krr<#squ-Tqrr*!!rr2lrs8N&urr)otrr2rts8<'" +rVcZlrrXfSY- +Y-"h/Xf\b.XfSS(Xf\\+Y,n\*XK)9#$a$S7Xfeh/Y-5"0X8].!Wrf<%XSo7mXK/A#X0&P,XKAS) +X/rG)X/W/$X/MnmVlHo(Yck=?\$WEAW3!5,Yck10WMZMjXK\q1VkpArZ*1=6Y,\J$XKSq9Ycb+. +W2TWn7]<;fXK&;"WiE,#WiN2#WMur$ZEpg=WMZMfV5^W"XK8P*X/i>(XKJe4Z*:@0XK\t5Y-"k/ +W26;dVlHu*Xf\b0XfJJ&pT+M#YHP(3qlU"&Y-.c+qlKgu!3H.$riQ7'qlV'CX/DbpXJD`3l-lE# +XglF&jmVp6dB9C>TuH9ms8N&tp\t +bl7bDs8Vfl$NL,)s8N#trr2rtrVlis!ri6"q>LHqrr1(?!ri6"rVl`ps8E-#rr<#prW)uqrW)us +rr;p4s8Mc]k1e4sYG.VebO=H.]cl$QC>DGe>8h>\]<7[me-%nWhc/V_WU^nrVlcprr;uurr)j$rr<#trVliqrW)uqrr<#u +rWrQ'rVccrrr)fmrqlZnrr<#trW`?#rr<#trVc^!s8Muqrr;rr!<;ops8;ors8NK+rVc`qs8Mup +rVlirrr<#trX8c*rVc`orVlirqYU9k'*%t2s8MrnrVlfprr2rtr;6KnrVliqrVlfrs8Dus!<)or +!<)fo"9&6!s82css8N#hs*t~> +g&M*O!<;ur!rr9!mJm4c!<;Kds8N)uaSu>@s8V`js8Vrp!<;rq!<;rqs8Nf-nEJfW_Qou1Wm1(p +`4`OVW4((Br;R6)r;HQhrVlfprVlirrr)lsrr<#trW)utrr<#urW)utrVuj%rVuoss8N&urr*!! +rr//^s8E*"rr2oq'EA'[]@c)cZ(dtjWMH/WStM^KTDkP[TE1aZrh97a#GIldTq@sNU&CYaT`q*_ +Tq\6Trh9@drh9=cs.]mpTqJ!MU8+HWU]$tmV50o`V50mcUcbEGT:VXJUSFKRStMaJR?j52SXc4: +PF.i.S"HCHSXuIJVPg8eU7RmHT:hsUV4jKLQ'.E$TVA0SU8"@[T)t[ZU&LecU&C]'TqIsDR%9qH +VPU&]TV%dJUnjcZTqJ'PU8%X^"JVQ]S!a2@'UY;WS",t;SY)UMV50l[Tq@pKStGtS!2'1^#GIld +TVA-SUALVcTV8(VT`:VaT`(SaU'dTeU8"EWT:MUOV>cl!QC>DGe>8h>\]E=\n+ZG%YGe+g`p3I$ +rr2iqs8E?)rr2lqs8Muqs8Doss82fqs8W'(s8Muqs8W)srV?Err;6Bir;?Qm"T8/prVc`q!WN&r +rWW?$rVc`qrVcfsqYpNms8N&u#6+T"rr<#trV[H0rVZTms8Murs8Muqrr)fps8Mllrr*Q1rr<#t +r;6Hlrr)iqs8W#orr;rrs8Doqrr<#ss8E#srr)orqu-]rrr<#qrW<-!rq$/?~> +_#OH6!<;los8VTf!rr9!b5VPBs8W)trr;uss8W,us8Vrp!<;rq!<;ur(]FC6p[@>%d(uu^T;g'( +j28O:Vl7#Lmem(orVZWlq>L^TqMCYrhB=a"JDBZTqV@V$D3uaTqJ'Q +U7ncl$QC>DGe>8h>\]E=\n+Q>"Y,@nc`Td7!rr;ul +rs&K&s8Murs8Doss82fqs8W'(s8Muqs8W)srVQTnrVucqrr2lrrr;orrVulsrrN,trVd!#rr)fp +s8Doss8)`pr;Zcrrt,2.rVlisrr)cnrr;urrVuosrX8c*rVc`orVlirqYU9k'*%t2s8MrnrVlfp +rr2rtr;6KnrVliqrVlfrs8Dus!<)or!<)fo"9&6!s82css8N#hs*t~> +]Di!4s8W)ls8W)*rs&K&s8N&urqcWprql`qrr2rsrW)orruq7,grR+@b2Md5Xg>F:WN*5>cIC_; +p\b$jrVQNlrVcZlrr)fp!<<#ss8Dios8Doqs8N)uo)B-ss8W&qr;HQkrVuorVuQ_ps8Yd:gL]"#2UZELI:[CEmK^&YhE\c98B]"@mOrOW-B\[VOF$b*^[^VIUu]Y(qk +]`#DA]DfGS]t_=q]XkY_[^EWV]=PPb^&G_U]t:kd]",;Y\%&rW\%0'J\Gs#<\Gj#G]"#>_\[]/\ +\[]-I\,a)=\Gs#<\G`r<])9,=]-=hq]#2Cp[C*Q[eaqOqU92#IeD]fem`_Z,SY!a_q>^HorqZTm +rr;rqrW`?$s8Dlos8Ms's8Muprr)cmrr2oq#6+T!r;HWnqYpWrrVl`prVliqs8E#rrVZs"rVZTl +rVlfps8E&tr;Q]trr)cor;ciorVc`qr;cirr;cirrtrr)iqrVulorVulsr;lorr;Q +_#OH6!<<&tT)SfiqYpQpqu?]q#64]&rVc`orr4/?n_VF%^Wba,d''jdY,eY1`6d&lmJ$PXs8Dim +rr)fnr;QZnrW)utrr2lnrr;rqrr;uurepgTrr;p6s8N#rr;?Tpe\L&.fu:J2^;.Fo]Y;(i\brr; +\c0,=\H97M\GWl;])9,:\,a)=\G`r=]"@pO!k>eOrj_s=s1AZM\[f2Z\[o>^])B8G]t:kh]tCuU +]E#MA[i`2q_8*ap\%'#[\[oDb]Y;"f]"GYd]=b\a]=ttm^q]l_&A,Nc]YD;"^qRIj['[6N]"J$V +!5/9@s18r42j>,.b7p_nrpk +[CO'&o@p:>Xh)R&iU?O3dBKUDU;lHos8N&tq>^Ems8Doq#6"T%rVZWorr!0'rr)corVZTmrr2j# +rr)cmrVlfos8W$#r;- +JcFa0rr2oss8N#t!<2ip!<2lqs8N#t"9&5urVlg?r:&L`]Y;SKm`quB[]QR1ZGOr;hsC+8rr;ro +r;QZnr;?QmrVcfsrr2oqqu6WorVlis!<.oVrVliq)#sU7rVZTns4+pAm+K@f\A#bl]=bkk\[hXJ +!4i*=s1&3?\@DII!4r*=r4"#_\@8uY\[T,[]",A_]"#>_\[f5]]=Y_g]=PP_\%&uY\@K5`rk8?D +s1K\j]=bei]XbM[[^j,g^V.1e\@T5]]">Se^:Uhb]=PPa]"#5\rk/9Es18lS\@&fW]YD4q]=G>U +Za@3P]`,VF]`#D@])fLTr4;j=!kPqOrO!$B]"Gen^V7@n]tM)W\cBAA]F_ck^V.:k\[T#T\@T;` +\\#QS^(.ig]",D_\$icU\@8rX\c'&<[fEr;\I,pX]"5G^\@T5\\,Ef:\c0,=[fEr:\H'5=\c98c +]!o8g_RR"]\\H\dgT%!M]#W=Zme-+sY,J"e`T[-trr;uns8DrsrVc^"rVuorr;HZpr<`N'rVZZn +r;?Qnrr!'#rVZTlrr)cps8E-!r;HWns8DrsrVuisr;HQurr)cmrVc`prVuitrVZZp!ri/rrquir +qu-Nn"9&,qrr2irrr2j#rr)fprVcZnrrW/urVld.r;6Hmrr)cnrr2inrr2iorr2oq!ri/srr**! +rVc`orr2lrrqlZorr;otrr)cooDa=~> +bl7bDs8Vfl!rr9!oD\mks8Voo!rr9!]Dqp1!<<&t!<<&t!<;rqs8W)ts8<3%rVZWnrV?*bng*_p +n'8/D]YMCqXf/(oZchY2rVZQls8W)urquZmrqu]ms8N&trVlfqrrE&srVuisrVlfers\o,s8Muq +rr)fps8W(rrrW3"s8Drsru1n7qu6TH_rLIYjP8SLj5T(\l/gj]iS`YOhtu=@hr*GOio8qUio/kU +iSjdos5+%=hr!ALhqn@i#2nJ"io/nVro*k9s5O:BiSi_Phu;I8hr*JQir7p:iY1;/iSieUi8 +m.'lNh5mET\ActXn+H.oWhc/V_W^gprVlcprr +g&M*O!<;ur!rr9!mJm4c!<;urs8N)u])Mj2s8V]i!<<&t!<<&t!<;rqs8W)ts8;rsrr)lr.Jri2 +oCVVGn^+SL^;@e#YH"P#[E\"5rVZQls8W)urquZmrqu]ms8N&rr;cirrrE&srVuisrVlfrrrrE% +s8N#tq>UEo!'g]rVcWkrVcWkrVcZn'EA(0r;Q`rrr)`lrVlirr;?QorVl^5qY^9frVulq +rVQQns8Drprr2flrVlcprVlfqrVum)rVZWnqtg6hrr)fprW)orrW)lqr +_#OH6!<;ur!rr9!pAb0l!<;ur!rr9!b5VPBs8W)trr;uss8W)t!<<&t!<<&t!<;rqs8W)ts8;rs +rqururVH3do-EktnB\AH]tqRtY,S:s[*7h3rVZQls8W)urquZmrqu]ms8N&rr;cirrrE&srVuis +rVZYSrrW3"s8Drsru1n7qu6TH_rLIYjP8SLj5T(\l/gj]iS`YOhtu=@hr*GOio8qUio/kUiSjdo +s53_3!oMqoro*n:!o`.uro*k9s5OLHiSi_Phr*DLi8NYoirA!;iWeB"iSieUi;VUGiT9=gkMk@V +jm)7$mHj91md0r=%dE-9hr!JUj5JtVi8a(croF:Dk3;0qrp(!Vj5AnXkN:pfio8qUro*q:ro!h8 +s5FUKio8qWk2kRWgYC]IkND!hro>*[io9"YioB+[jQGaikih9qlg!d$lfdKpl0.jrNOAj6Z=2s4scP +Y.2I#j6u^4dB9C>TuH9ms8N&tq>^Em!WDrqrW)utrW2ooqYg`uqu-NmrVulrrVulsq\&o.rV?6b +qYBsdrqu`orqu`orVZX.s8Mrorr<#trVQNkrr;uqr;Q`prqm]2r;?Eis8Muqqu-QprVlcps8;cm +rr)iprr2oqs8NH)r;HWlqY^ +bl7bDs8Vfl!rr9!oD\mks8Voo!rr9!]Dqp1!<<&t!<<&t!<;rqs8W)ts8<-#rVHEks8N#truV.7 +p>sZ8YGS5#\&,qfX1RBcoBbl@s8W)us8;cnrr2its8N&rrVlcrs8DrqrVlferrW3"s8)`prrE%r +rrW3"s8DrsrtYM1r;QQB^YA/AlKR['mHs?4oCDD?rpg!Vrp]pUs6p$Yq==RUs6p$Yr9jXTrpL!Z +n*ol;qssdWqssaV&+K#SmdBQ5naQ&:nF>u7mJQAYmI'E0n*oo>o()bJ/b/H)o'c,>nF#Z0mHj0* +lfd[&lK.'em.9f7l/q'hlL464o'bi+lgaQ;oCVVPn,i.LnG_kXnF?&JnG_qho_A.Mm-3g$mI0N3 +mI'H3melMRmf)Yslg!g&mI0Q7nF5o7mdK]:naZ)8lg*s,o(;SFo'u5=rpTjUs6g$YnaZDFs7$-Z +n,DeVn,DhVmgJXTnFH,?o'u>AnF-AH+Re^cn*004q"=.&WMQf.`RX&>p@$5*Un"$nkkY5Vrr)iq +s8N0"s8W#r!WDrqrWE3"rVcQk,5qH +g&M*O!<;ur!rr9!mJm4c!<;urs8N)u])Mj2s8V]i!<<&t!<<&t!<;rqs8W)ts8=DGrVQKls8N&t +s8W)rpug)@Z)FY+\\u@oXhE`goBbl@s8W)us8;cnrr2its8N&rrVlcrs8DrqrVlfrrrrE%s8N#t +q>UEo!Fo^hVAmdK];p%%SB +oCDD=nF?#ImfW"Ko^VqJ(A7Y'p%.\@n+68Iq"OCJlL+97o(2MErU9mYnF6GG!q>aMrp]pW&G5bk +na,N*lg=00md9H2n*^,B!:KjT+7&4Xm-X92naQ&:mdBQ6o'u8=mHa**n+-,Co()>?nG_nUnGhqY +nF?&Do)J4\nF-AG!:TpVs6g?bnaQ,>o()>BnaQ#HnK%)cmdKE+p\=FNc`*bE\Ad"ZnbD_'YGe+g +`p3I$rr2iqs8E#ur;H`qr;QZts8Muqq>MT:r;HWorVulqrVZWorVZWnpZ9oLdbO$YrVuloo&\s& +r;Zcq"98B"rVQTnr<3-"rqu]nrY#.pj6QI +_#OH6!<;ur!rr9!pAb0l!<;ur!rr9!b5VPBs8W)trr;uss8W)t!<<&t!<<&t!<;rqs8W)ts8<-# +rVQKls8N#truV.9pZBlmdK];p%%SAoC;;:n*ofF +mMG6Yo'bo/lLOcGo'bu3m-sZ>p%@nBl0\K@!qZ'TrU9mYnF6GG!q>aMrp]pW&G5bkna,N*lg=00 +md9H2n*^,B!:KjT+7&4Xm-X92naQ&:mdBQ6o'u8=mHa**n+-,Co()>?nG_nUnGhqYnF?&Do)J4\ +nF-AG!:TpVs6g?bnaQ,>o()>BnaQ#HnK@;fmdKE+p\=FNc`*bE\Ad"ZnFuM$Y,@nc`Td7!rr;un +s8;isrVZZo"98B!rV?F:rVZWnrr)lrrVcZms8DlorqGO(c-kD1p&4piqt'"4o)/OerWE3"rr)`n +rr!!!s8Mrorr*`3lf7=*rVc`prVc`orVulqrr)fprr)fprr;p8rquZks8N#qp?^u0q#:9kr;HWo +r;-BlrVlfpr;ccprXSo)rVc`orVlirrVlfrs8DrrrVZX#s8N#rr;Q`rrUKo<~> +JcEXfs8EB*rqlWmrr)lrrr)io(\d7K_m-2C\AGq_W4h9]h93gbg>hMlrr)lqrWN/urqu]nrr2is +rr)iqs8<'!s8W(Us8W'#s8N#rrr2rr'*%g^^r=OBbfnAWaiDKHc-=GTrQG;cb59B]bl>rfc3qnB +cHXSXbfe5RbKBh-s2kSibfe5Tbg"E3c2u87bkoZbbQZ88bKA#OrlkDcrlbGdaN4A&s2Y2^rQ>/^ +"j5$6cHXQ2aT9H%rl?;&_o'F4`Q#p:aNDWC_8XUBcHXMQaN`5ed`otU_nj@9b0'_-s2tAb+3_pO +b0.uQbfn8Rb0.uQcd:%abfRuJa2l<@`lZEIb5BH_as"sM`P]X5`Q-'?a2Z*:`Q6-Bai_cJaND]N +cHjh^c-4ASrlY/^rlbGgbg-44s3:trbg"ATbfe2PbKKn-0?_S`c-4GXc-FVZc-4GWb/VKE_SXUD +a2G9XVm +JcEXfs8F>ErqlWmrr)lqrVZWnrV5d7`NuVK]#;@gWk[Wah93gbg>hMlrr)lqrWN/urVZTmrr2is +rr)iqs8<'!s8W(Us8W'#s8N#rrr2rr'*%g^^r=OBbfnAWaiDKHc-=GTrQG;cb59B]bl>rfc3qnB +cHXSXbfe5RbKBh-s2kSibfe5Tbg"E3c2u87bkoZbbQuJ;c-=JVbKS30bQ#clb/hZGaN2KFbPfZb +b6?,7d*U%[rQ.gT`lH6Ea2Q*?b/qcJbg4Y]bKA)Ye^i=#dF-V$h:U0%bJqE?c-+5Pbfn5PbKJ,Q +bKA#Oc-4DTbKA#Oc-Ob`cHODPaN)BB`l?-DbKBb+s2lM.ai209`Pom=a2c3=`5Tg=aiV]JaiMWJ +c-FY]cHXSVbPoZ^bPo]ec-4K4c2Z&rc-4GVbKS/Qb0/!-atLr^bg"AVcHXY[c-=JWc-"&Hb/2$@ +cH!l/U8P<0ak,YCp@?Y9Vk9[%lhpe^rVlWmrVd6(r;?Qnr;Q]nrr;rrrr)ls!WN&orYYV3r;HZq +pYsB/X.uW!^sM09rUep]^"iA]r<3,uqu$Elrr;ous8Mupr;Z^&r;ZN8]$Td@s8Dior;Z^"rr)fp +rVZTmrr;rsrr;p+r;6BjrVu`P`P9smrVlfos8<6$qYU6js8Dfkrqm-&rVcZlrVlirrr)co$2sf" +rVlcnr;Q]prVucurVZQirVZZds*t~> +JcEXfs8E9'rqlWmrr)lrr>PV5rV5a5`3QDG\\l.cWP7H_h93gbg>hMlrr)lqrWN/urVZTmrr2is +rr)iqs8<'!s8W(Us8W'#s8N#rrr2rr'*%g^^r=OBbfnAWaiDKHc-=GTrQG;cb59B]bl>rfc3qnB +cHXSXbfe5RbKBh-s2kSibfe5Tbg"E3c2u87bkoZbbl>oibfe5RrlkAbs3(PeaN4A&s2Y2_rQG5` +"j>-9ccsW2aX>-KaN;QD`5]j>aN2KFbg+GS`ll`XeC2dicdUS%f$Vdd`PKU=b/sY,s2tAb+3_pO +b0.uQbfn8Rb0.uQcd:%abfRuJa2l<@`lZEIb5BH_as"sM`P]X5`Q-'?a2Z*:`Q6-Bai_cJaND]N +cHjh^c-4ASrlY/^rlbGgbg-44s3:trbg"ATbfe2PbKKn-0?_S`c-4GXc-FVZc-4GWb/VKE_SXUD +a2G9XVm +JcEXfs8E-#rr2rsr@S$Ir;6EjrVH6[mGZL6]s=B%Wm0qn`2oW,XLZF)kk=rOrVlfrrqucor;HZq +rqulpr;QZorW<-!rpg!irr<#prr;uurhoenrW)onrXeA@^:C\UX/MhdS"$"CSsu5KSH#,[SG\o] +S=Q4BSXo\M#b@QYSXc7@S=BMJs-j7`SXc7BSXuGPT)tUTSbo#YSHb[VSXc7AT)G2]St2GNSH#)Y +RK/lWSHPIPR[]lITEh0bU7[pFT:c+S*hAdhS!o\0R?s2+S"64?OdD]2S>)scY+_5MSXl1:rgWqX +"J)'QSXobOrga[nSXl:@S"-"?T:V[JTV%gHS=KSJ!1j+\s.9IdT:V[IT)P;\Sct[VSt2FBrgO._ +S"-%?St;SRT`:VdSt2FBrL3kYSXobMrgadqSXuIGStDXHSXuCBSXc4>S=H(=SGo)ZScG>\SgL)& +TUqdKSsu:ER?sS>S=Z:EX1,slgZS"rn'7o.S=[X^q>^HorqZTmrWi>us8MrnrVuiq"98B!rVlcr +s8Drsr~> +JcEXfs8E-#rr2rsrA"qR!hPsRq48%dSt;RGSt2IESXl@CSc,)XRfT%N +rgsXkSXc7CU8"?TU8"9LSGo/\T`:W2StDUCR\-1@StVpVTUDIOVPU;t\$W'(S=uUFS"6% +SXuFFrh0:`".l'SSGeoYS=Q5MSGo&oSt2IFT:V[ISt2IDS=Q1?S"-"Q=ceIXOp%$S8W1]m)lMLV\rqZTmrWi>us8MrnrVuiq"98B!rVlcrs8Drs +r:r;Q]qr!*0#rr2rsrVlfqrVuj?s8Mrrn$/4fhYI0K +qu6Tmrr;uss8W)sr;?NmqtpBmrr2os%0$5)q9Gq8a6`a(rr;us$NL,(rVulqqu$Korr*'#rr2lp +rr2rr#laf$rr2iorr;us&HDb.rr2inrr)corqu`prVc?fJ,~> +JcEXfs8E-#rr2rsr@S$Ir;6EkrqlH_mc)^:^9aT)X3U+p`2oW,XLZF)kk=rOrVlisrqucpr;HZq +rquiorVc`p!rr9!MZqR!hPsRn=KZN!hPsRrLEhU!1j+\"J)'PS=]\Qs.V3>S"-+CStDXH +St2IDR[K_:R@KnCUn3pDV5'c_Y-bL2S=?1DR[Tb9S"-">S=H.@rgs+[&tYYbS=H(=S=Z@ET:hjL +St2CArgNnYrgs.^"eM?XT:__SSc>8bSXuFDSXf\K#Fq9RSXl@DTDkM`T*([USXfYJ!h>gPrg`tY +'qUtfT:_^IT:VUFSXc7@S=?%=S"-#JSc>8]Sc53-T:hjKT:hdFSY;I +JcEXfr;Q]o1Aq.Mrqucpr;?Nnrqc3OiR#0@_;b.G\>?"%Yck.2[`-n_p\k'irVZTjqu$HmrVlfo +r;HZp!rr9!nc&[is8Vrps8W,u!<;ur!rr9!Z2a_#!<)lq'`J%2o]P#Zb.b9eWMH/XTV8!KSY#hQ +!20=`rh'UiTV/!NTV8'PT:c+Us.9:apR_MYTV;@XrLs7a"ehT^TqS.YTDY>^U&CVoTqJ'NTqJ'N +T:VXITq\4YT/*(5TV%mOUnXHQTq@jGTqe9QTV.jCOGf!XR\640H\IQ>MNF$dO+Db^Ems8<#squ$Ek!rMonrr)orrr)otrVliqs8Ei5qu-N]^n$[ZXL5F6 +R$4/Xn,(qQ]A3/[rrE#prri?"r;6EfrsA])m]28Fg%bOEqu6s$rVlirs8MuprquirqYpm#rqb3U +\^g6KrqQKorVZEi"TJ>rqu$El!rVooqu?Tnq>UWtqu-QnrU^&>~> +JcEXfr;QZn-N^ +T`1S_TF.9`TV8!NTqS-OTDkM`T)bPYT)tUWU&L_`U&UbhTqJ'PTqMCWs.BFeTV2:Xs.BRiTV.pN +TV2:V"JDKaUn[g]/>Ao6Tq\9plh7L;Sp\t0mrVQTtrr)cmrV- +JcEXfr;Q]o0)Y_Irqucpr;?Qos8)?"%Yck.2[`-n_p\k*jrVZWlr;HZqrr)ut +rr2oqs8E*"rr.fTqu-TorVdN0rr;WRgsjK\[BHR*T:V^LT:MOErgs1`rh'1_$D*o`TqA!OTqJ$M +rh0:`!20(Y!hQ'Yrh04`s.BOhTV/!PT`1S`TE:g[T`1YbTE_*_TV%pNT`(JbTq\Ud#s6cqHWnI4Irql^$rVZZprr;uqr;QWprqcX#rVlZE\@L/[rV-?lrV- +JcEXfs8<-$rVcZnrr2lrrZhIAr;HWnrr;usqsrb"iUm$+];hs>\?r95W33PMlM^\YqYpKo&H2P) +qu$EjrVc`prVlfrrr.cSs8E#urr2rts8[^ENO[C*BL[C3OC[3rDj[C!9H['dBR\$WNN[C*HQ]=c#(fAZ&fqXMk2 +Un"!nl2(GZs8MiorVcs"rVZQkp\tNurVccrrVlfprr2rr8,WAdihr$;^=M<'d']L3X5sFrU-nMVUkSCr:]XFkNh[3rr;uqrVlcnrr2pKq![P5lL4ED +s81m'cJ\BprqZ0Ok32@/o()SQp[e"Lo'GT,nbE.`qtg6is8N!5s82HUlKdj1r;QWjq"FCRna,K) +o)&Icrq$/?~> +JcEXfs8<-$rVcZnrr2lrrZ_C@r;HWnrr;usrU]+)j7`B.];hs>\?r95W33PLlM^_\r;?Tjrqu`n +rqufrr^Em"TSGuqu-9h#laf$s8W&srr)iqs8>Icrr:uUPbl+Fio8=mT9cP +JcEXfs8<-$rVcZnrr2lrrZ_C@r;HWnrr;usr:At&iq<3,];hs>\?r95W33PMlM^_[qu-Nprr)cr +rr)fprquourr.cSs8E#urr2rts8!#naZGJ +mHX!,qYpKmr;-0Xlg!m.oC_hTm]hhNfD>OGp[RS6mIBlJs8Mrprr)corr4PEn*B6'n+HVYqr?#J +i:['Jq=Eq7l14T?oD/=[o^hbHm-*g+q#C?jqY^?mrr*]5qt0:@lg=BCrquWfp@\+Km-*a*qu?Wo +oDa=~> +JcEXfs8th1q#:9XbI=XVYd:aK^:^>DhZ!B>l14ZJrVQHg +qu6Emr;HQm!rr9!M?!VT!<<&ts8Nl5r;-s5'E2Xjce:rUJUQUTE8Gj2Aahp[,l=jj^oM[)M,! +r;ZW\g;UP.]u\LJg[sm=Nhk2$rpJI[[]m9_hXpjIqYL3jrVlirp#*p([C*g%n,E.Ab/W'%qXrgi +[]m?if>c/)q;f`Ef#t\4^<57*s8Murs8Muq)uom#c+:?q`7XGMq= +JcEXfs8_=O_>M.O_8=(g_Z7R#_]cn7_ns:/`50:,_SO(*`5g!GfAYlXp&+I2 +Yc+4g`U!I%rr2`nr;Q]orr*0#qYL-grr<#trVuorrVulrrVue>s5'E2Xjcb9rUJUQU9*/Gji>6o +p[,l=jj^lL[)M,!r;QQ[g;^\3^WOpRh"0p?OJ^V,s7"db\?``hh=UaHqYL3jrVlirp#*p([C!a$ +n,E.Ab/W'%qXrgh[BR +JcEXfs8qLQ_Z.LR_Yq@]_Sa=/_8=+,_SO(*_o)Dh!5nfSr5'es_SaC4^9jo3R$TZ$-ms8N&tq>^Bl +rr)iq#Q4Gpr;HWps8Muss8Dorrr2lrr-/1tTTQA*n,*(Rg:F&\h"]sL_;4kQ_oLlg]=##bjRrHM +qX*"V\@'&mcd^bAmB_kMebfC8g;pb.]#ie#s8Mlkrr2lqs8M]LaLnpf^t8&Sq;KK9fC/S/iQ8O4 +]@,?Pd-phmbg+e_] +JcEXfr;Q]orr2lps8E6$r;HWnrVlfrrr*]-lIj@qZ`C(0\[\0'hZ*,n]u%qEl1Y)U!<)in"oeJu +rVuosrr<#qrW)urrr;uurquctrr<#rrWW9"rr;usZ2ae%rr)fp$iKu&rVH6ZnEAf`f)F5"e,.Pr +e'c[ne,Ibqe*,6[e*tfcd/_YpdJqVpdJM>oe'ZRkrmNdRdF$CidEp7fe'l^me_/a3f$MFSbLP"N +UmdL1Q(";9SX,/%]?.USOHc91Vm!PC_T:$PeC3m7s3^kprmLnrdIkone'c[ndaHUme,Ic"e'c^n +daQ\Ddf.YodKe7Lda?IhdF%sB!n#KGr6bSormLepo[3`gpX0&jpX)nT:r$S +Yfc#"n'SJ>WiMneSYjKor;HWes*t~> +JcEXfr;Q]orr2lps8E6$r;HWnrr2lrs8Ef/lIj@qZ`C(1]""<*i;`Du^Ve:Lm/$\\s8N&ss8E#u +rr2rtrr2rtrVcfqrVliq$i^,'rr<#ts8W)us8N#trrE&"s8DrrrVc^'r;HWnqY'OMkht.Frmh%t +qpGVrdaHUnrmCeqkgKL[nC%?a!7Uqps3^npqpIUUdF$CkdaQXme'ujqdaHUpe^N%"gYU`;d`BDP +f@.@0SsPb1StVjNR>mfObIsX6QD(4VZ+@ckb0SVgrR1boo@!Zds3gnq!RfBgdKn=MdaQXme'c_E +dK\1Ke'c[ne,@_odJqW"e'c[ldEp:grmLqre'n6C!7UqqrmUMf!7U\j!7UYis3q"r*7N?_dF6Ok +daHUpfA,BLlL+HHp!^.CT:s6ir;Zcqq>^Ko&-)Y.rVlfrrV,F"`mNuBqYU9kr<3,urVlfqrB^G; +Sroqdg$JG2q;BB;k4@<5XjHb%U78s*TqS'S^"`5Wld*#;TVABdW2dSsn$J%LfD>*i[\KIeTr5KQ +nGiF_rqnDGrqP6\W2$#UUU8>9o[C1Rbj=uZ]qq0fU9_(s[H7&1WMd)'Tq.pX^Z"qds8Muq)"ut/ +XIl2]U9Mf#p@$D8VlHemT:Mk#lhp_\o`'F~> +JcEXfr;Q]orr2lps8E6$r;HWnrr2lrs8Ef/lIj@qZ`C(1\[\0(huE8q^;A(HlhUMZqu$]urVc`q +s8N#ts82cqs8;lrrrE&rrrW3"s8N#trrE&"s8DrrrVc^'r;HWnqY'OMkht.Frmh%tqpGVrdaHUn +rmCeqkgKL[nC%?a!7Uqps3^npqpGSqdF$DAe,IcNe'c[ldF-OodaQe$h:pN.a2H3Qd^l`o@'Y8ZE'[iU8kuep\t3lrV[T,il8'lTqe?d +b2`3adBfaNX.u;XVTA*$rVlHhJ,~> +JcERd"9/?#rr2lprXJf)rVlcps8Doqrr)cnrqm`8rq5X9cb?`iZ*9h%kPaDLU8P'!aP5nJpA"O_ +rBg=Xp%age\!iS1W& +Q'e)5U8Fc]RZs_lgsa!D\%p)1e_:#[%,g.(io8qThr*DMiSjdos5=7Ahr!ALhr*GOrnmq:hVR/I +ro!e5ro!h6q;;Y8lL"'3q>Km0 +X/)8W_s.$trr;ulrt>>2s8MuqrqtloUR%^niUd$Irr2lqr^["frr;rpr;ZfWXd59DXhN$8l/q!h +oBsntS&b$SR"M*0W2lVWS\O:UeZPI8VQHhhNfU1!n?@bGg$mS!SXQUdWh#fffDPRH/cPe?]9o%b +Yc==eYhn`bSY3dYj2%4KTrt>dP_uHnkf9'NS"ZaVT:2[ulM^_]r;Zd +JcERd"9/?#rr2lprXJf)rVlcps8Doqrr)cnrqmc9rq5X9cb?`iZ*9n)lM]eSUoCH(bi%jYp\Fad +r;Z`prVuosrVuos#QOc%rVlfor;QZsrVlekrr`9#s8Mrprr2rt&H;V'q"=+?j5JtTi8>2 +s8MuqrqtloUR%^niUd$Irr2lqr^["frr;rpr;ZfWXd59DY/&??lfdHqp$g>&S]C3TRY@N8Wii+` +T>B^]fifqU7ejNm`(oo_WBptSX#tS +WhG`;X4up]RZO)8W26,TVoS*$rr2iqruU41URn6aXIGZ[`ou^'T9kn>Y-+=YUsJi9rVlirrq?AB~> +JcERd"9/?#rr2lprXJf)rVlcps8Doqrr)cnrqm`8rq5X9cb?`iZ*9h&l2BYPUSt6$bMVXVp\Faa +rr;p%rr<#ts8W)tqu6Zqr;Zfr"onT$s8N"mrr`9#s8Mrprr2rt&H;V'q"=+?j5JtTi8HeiSWVSinrPFgY(-)b.4n%inLc*R%'_AVQ$JfS!Btpgsj-H +\&6A7f%g5^rSe(@i8,XjYH44^XN'Jh^n6s[UTUbjP,-G!s8Drsrr2WkJ,~> +JcERd#6+Z&rVlfprVeqXrr2lprr;onrVlfprr2lps8MrmqtKR=d_r`&`UEKJY,Sq=mHX!(md'2nmJcJOmJlPNmJQ;Nli-67mHj6-md9B,m-F$*mHj3*m-O''l0@U$ +m-F!%jl"b7^pC/GZD!o.l/oC>T;SZ`St;UITW,`]m-NotkND(-l3$A?n*U,?rTj^RmI'E0mJcGU +mHa**m-OZ;rTsRMrpB^OrpBaPr9XUQmHs6=m/H>Nm/QGSm-F!:li?AMli?GKm+(J2m-X3+m-X3* +m-O--rp1Khn*TE-nF?,Cq>:-]c`kL?)YT +JcERd#6+Z&rVlfprVeMLrr2lprr;onrVlfprr2lps8MrmqtKR=d_iZ'a7AuSYcG@DY->:E_pRE4 +qYpKmqu6Qos8Muss8E9'rVlcprqu]nrW<&trhKJtrr<#trVc`pr=o2/s8W)sr;6<`oC;>=mHX!( +md'2nmJcJOmJlPNmJQ;Nli-5ZmHj6-md9B,m-F$*mJ?0!lg4$,md9E-kMk1?_R6SO[%j>6lfbgG +UT:MoUSFQWUTDAimdB?'l07L3liZ\En*U,?rTj^RmI'E0mJcGUmHa**m-OZ;rTsRMrpB^OrpBaP +r9XUQmHs6=m/H>Nm/QGSm-F!:li?AMli?GKm+(J2m-X3+m-X3*m-O--rp1Ben*TE-nF?,Cq>C9d +e?PsFU;lNss8N#lru(h9rr2lnrqsp1P`M!%aR/p)rr)cns8N#trr,@br;?Tpo?XA!PFA,@Y.Mg1 +mJ61oT:Ej^eY%bm[`?LoQ^P;6j2I[^Z,=_sV36tZS\ajrrr2pprr;Mh +Ln;0$aK_MGh +JcERd#6+Z&rVlfprVeVOrr2lprr;onrVlfprr2lps8MrmqtKR=d_r`&`prcOYH#.@Xfo(A_U.30 +q>LUCU8k;kU8"?SU8l&bmHs-#kih:0lN?MAn*U,?rTj^RmI'E0mJcGUmHa**m-OZ;rTsRMrpB^O +rpBaPr9XUQmHs6=m/H>Nm/QGSm-F!:li?AMli?GKm+(J2m-X3+m-X3*m-O--rp1Khn*TE-nF?,C +q>C3`d]]R@TuHMg?eV%bFY3AkLH2\TXDe\YEkQ`f&FW?S?TlP];1RNV;UsMMlYar[@*Mc`mM`+S=ICbs8N#t +;?$UbWJ@%SbK$i]Z/"W]S".+AcDcho^=1-%O,^9kiPh:GS?g)JX-f?^h#@?Nr;?Toc'OTj]?SC$ +Tq8:2gpNZCS$'fPWJleGo`+mhs8N#ks*t~> +JcEXfs8E#urr2rtrr2rt#6+Z&rVc`prr!!!s8N#trr2rrrVmr:n`\ril1j\hXJiP9Yc=Y"Vm!qi +n,<:_qYpNprquco&cVh1rVc`orVlirrr)fps8W)rrri?$s8MurrWW9"rr;usYlFb&#QOf&s8N#r +rVld+s8Mupqtg-_q"OLRoC_h3oa19`p%J(Oo_%qOr:L`sp\+=Rp%.kMo_%tPo^qkMo_%qWoJlI7 +q"OLVp%._Co(2D8f#YP/Wi;\i\u_U;j6XXVU8OrfWO'F^c.M.Go_8.XqtKgYp%.eIp%J(VoEY'] +p%A%Pp%A=Vp@SFXkOn]Ds7HBarq63]s7HBc`q9K,p%A%Prq%'#p@RtLp\4L[r;HQbc`Et6S\s^g +s8N&tp\tp*s8W)qq>U?%MjKruPITfPrr)fprr;pArqu`nrr2inrVuQ=YbIMIP*MK3\'jd3_3pk6 +jOC)mYgMe&GfZSHYKG(pR\\!dm+]@LP,.%-Y_oI=g7=4r[)g_@\"&JZh!jXljQGXsm&#T5\&Zb1 +]ZKI+^6tS(b.3n)^#JYLa.JNre)808Pd&U$j1qF^W6tSCqu-Hlq7_`V`Sg1NgUEW@^X06UU9`23 +kes$JWp]lbrr2QiJ,~> +JcEXfs8E#urr2rtrr2rt#6+Z&rVc`prr!!!s8N#trr2rrrVmc5n`Jfglh^+pY,\tAZ`U=0Wj0Ir +nc/Xdqu-Qnr=8i,s8Murrr)fqrr2iorVlfrrrrE%s8N&urr2rt!<0&!s8E9'rr2rsrr)fprXSu- +rVZQhq=j[Yp@InKp=o6Ho_%nNp%@tMp@eFW'DD1op@\+Mp%J%Np\+7Op@\(NpAX\DoC_nQp\FRV +oCDPHoBOuN^TsrAUT(o/UV5dW`2'60X/W50_TC*VjmVpL9fp\=ITo_%qOp&4O\p&Facp&=UW +o`4XIp%n=\o`4X`p&+I^o`4^*o`Xp[p%J+YoG.&mo^hbMp\F[`rVlK?ZDjOk`U!I%rr2Zl'E.t2 +rqlNjrO7]OSNjIoBsPdT#Tg?WL'p>m-Mli +S$C2_[%+#8l0[ +JcEXfs8E#urr2rtrr2rt#6+Z&rVc`prr!!!s8N#trr2rrrVmc5o&nuilM9nlXf8b=ZE1+,WNa7n +nG`Ibqu-Qpr=f2/rr<#trVlfprr;usrVc`qs8Mrr!ri6"rr2rt!<0&!s8E9'rr2rsrr)fprXSu- +rVZQhq=j[Yp@InKp=o6Ho_%nNp%@tMp@eFW'DD1op@\+Mp%J%Np\+7Op@\(NpAX\DoC_nQpA"@R +o'u>Do'+cJ^9O`=U8Y]+U:fRS_kX$,Wi3#,_8smRjmVm:q>C0cp\4CQoCV_Lp&+I\p&Facp&=UW +o`4XIp%n=\o`4X`p&+I^o`4^*o`Xp[p%J+YoGI8po^hbMp\F[`rVlK=Yc+4f`9R7"rr;ulrtGA2 +s8Mokrr'S\ +JcERd!<2uts8N#ts8E*"rr2`n"oeQ%rr<#rrW<&trqud5rU8=OYcY%.WNNP0Vl[l"qY048n+uqY +r;6KnqulurrVlfqr<3&ts8MumrX/W%rr)fnrVccprNZA,rr<#ts8W)rs8N#srVucsqtg3hq>gEJ +q>g?jq?Zonqtg-`q>:'eq#^Hkqu6F[q"jm`q>C*aq>:'cqtp0bqtU!cq=aLNkMY:_oC:VLXK&+r +[&L.B\#?ainCk[g\%9>sg?eP0rVlZgq>0s`p\=U]q18D/qA/o(qYU0frVc`oo$4;3S=[X_qZ$Qp +rqZTlrYYV3qZ$K&NL6<(Qau8Us8Muss8;forqu`orce>=qu$E^gW6q/Whc&GQ*/p)^6kJ1k1?N# +_<:jug8gUD`Or%9Xk3OOo@g@3Uu1aHLSrtZR>mf9Z+.?GR#RcVeBPe>\@L>U[[*GZY.)*`fCe[I +RA%.-YEc!AqZ$TU[$%<;jMRFT_X%6tc)[Y;c2I\?rV[r +JcERd!<2uts8N#ts8E*"rr2`n"oeQ%rr<#rrW<&trql^6n^tX_YHP+1ZF7$;Y/fc(qqW[hiq>:$cqu$Ekrr;]AZ)F=i`p8Fqu?Zos8W#prr2iorr.-?r;6EjnCu$qZE0pmPaJc8lGK*_`T>^NS]'dms4j`FYfFJU +S?LWGs7P0OQDWX5Z&,I;fUIqpWO'1JY*tEG`73&I\[]9,kd["OVQdVGa4^4Y^RM"0`3GZ-i;EWT +jgLDPf]L/CSAagpq9>t9VTo)>r;HRES"Rdis8(?MO/M:Cr;QZorr<#t +rW<-!rr2qJ~> +JcERd!<2uts8N#ts8E*"rr2`n"oeQ%rr<#rrW<&trqud8rp\OSZ*(73X0K(:W3+)&qtTFo +qYBp^qtp2VDm.U;SrqcEcq>:$aq>0s`Jbna0(A[k(qtp^Bl)#aC/ +s89?cR%BY2\`Wehrr)lsr;?Qnr;HWoGQ%I:r;H->aLSRVV4*U7Z/Fl`R[qFZf;P4Wkl:\;XI693 +]r%:%f`(pCgTQm=i:F1/W8?-pNh<8U\[no2NhOD@c+pm"]%cDWQ^stV\A#u8p@>qdU:J1GQD`X; +s8V/fPGd$o`1*76m/Qn+X/)W;rVufor?D11\s'DWp\t3f`L3.(aKqA/`p`s(f<114lMpe]rVlfr +s8N!!s8N#ss*t~> +JcERd!<2uts8N#ts8E*"rr2`n#6+Z&rr<#trr<#tqYqE2q=3Op^8d`oVmsOIVnh?^hoUEm#laf$r;HTorVa#$#6+Z&rr<#tr;Zcqs8<'!rVcZFr<3&s +rr2llr;Z`qquHWnr!rT$rVl`nrquZkrVcThr;QXBrr)Zcn`f)idDNW1dHg,BY,8J3\@JT6XJ_i( +h"LC+lfm^%nauYUrr3?)rVZWlqtpWg0^+ +\Y,=ngA_-Gfrpa=hsmn)UY"+kNKTU"U7D4K>,/O=\?DNiR)%S&VNI7>T:i4"l0c9TTYEQ'Qs8;lprr2rt +rr*!!rr2osJ,~> +JcERd!<2uts8N#ts8E*"rr2`n#6+Z&rr<#trr<#tqYqN6qt&t#_5s<%XLuEUWP[cfiQ/j\hW=>, +s8N#sr#>Y,S8/hY?g3mHa-- +oCi"Yrr3*"rVZTmrW<&rr.4h1rVud*rVlcps7XsIW1]m)lhpe^rqZTmrr;purqufob+Fr]Q);al +rVulqrr;oorr2lqrVcWkrql!:k4A*0khF(VQ&M0QiQIsa^uj=FRE=mss4j]BYK4>MR^(ZJs7b9Q +RA]$8ZFfqXUmR%^=Irg4_&[_0,QT9Yk^i6J9bR\QRNXMX;m^n%1*]X"-7lMgfDm(ALXfB1#> +R`4gsqTc%2VpPDBr;?Njm(K()jS8`SpqrJf[`#PAT$$^)q:Vs8XQoi`rr)iqs8W)t!rr9!rr7K~> +JcERd!<2uts8N#ts8E*"rr2`n#6+Z&rr<#trr<#tqYqH4qXWat^T3uuX1Q3QW57Qbi5`XXh;n,( +s8N#trC9ks82lo +rqm9%r;HWmrVl`kr;HTjqY^?k-iX)?p$q;-hU9?U^=2H8c*+%N[^iuLUogSk]&!,Rm-O$'mdg&H +rVlg"rr)cmrdk%.rVud-rVlcps7OgDVk9[%lMLV\s8MiorVliq=8r-tr5tXsOd2femJ[(arVlip +r;Q]orr)fmr;QTYh<+=um-!*@WK`=/a5G+6RD@tTp`.>s8ViIYaDUt4YFR$kn]s8($> +Su9s6s8;fnqs;"h]]Akes7jL!R^U/AR\%[orqY6NPH='Lr;QZorr<#trW<-!rr2qJ~> +JcEIa!ri6"rr2rt!ri6"rr)otrVd$$rr2rsrr;us!<<&t-N*i@qtp?ls8) +JcEIa!ri6"rr2rt!ri6"rr)otrVd$$rr2rsrr;us!<<&trr",>rVccrr:B!u`4EIg\#cg[kiBdd +WO'@Yd,43^qYpKmrVlcorr*-#rr;upqu-Kms8<'!s8W(ns8W&us8;lqs8W'#s8N#rf)?*Vrr)fp +rVZWmrr2iorVdE-r;?Njr;Q`pr;QZmrr<#srVlgaLe4;YhK$T +pXlU6VVq$OMP\tWUQCqAZEp^9Za[ck]s+E'OI!W?hT*%0WgT$9UX%i7St*1'ZCeA^r;QZY]p5JF +kf&gR`:3`ubbpu1e,KCEr;QW\_5=m(p\t0`^mUe)`3l&*bObW*euXt6lMpb\rr)fhs*t~> +JcEIa!ri6"rr2rt!ri6"rr)otrVd$$rr2rsrr;us!<<&t+T23:qu$Ems82EJd_iW(\$i?@c0+-, +XJiG=_p@3*oD/Cb!r`,tr;?fus8MomrVlcts8N"is8W&us8;lqs8W'#s8N#rf)?*Vrr)fprVZWm +rr2iorVdE-r;?Njr;HZnqu-KkrVulprVlg+/X15j\fBiD2 +rs/Q$r;HQlrr2lpJc=a0s8qu?EBXHfX> +nZn"If@H[WRAI0oXfSh:^rO-mVj`^4]]%Yc['?TtOd2Zci4tnQZbNc:YN,Q\r9(_WV:=\HPa98W +rUnC4S>k!:s82`nr9V7s]]&Varq!pnT"2eIR\%^oqtJ[COK7[Hqu6TnrV$8A~> +JcD;@r;Q`ps8;or(]Xqu6Nprr)cms8Duos8N&s!ri6"rr*'# +rr;usTE"rjrr2utrr3#us4[JPr>Y-bj`hWjV+qu-Nl#5\5qrr)fprr)lrrr)lr"98>us+116rr<#tr=8i* +o?XM7SY!a`qZ$QprqHF,rVuorqY^?ms75("iplmCrVcZns8N!#rVlfprVle +JcD;@rVliq*<,p8rr<#qlIa"\ZH21rf!M0LYHtL<\B!1^p&4jgrVmT2rVlfmqYpKmrr)fnrVlfp +rr;usTE"rjrr2utrr3#us4[JPrU?\fuCY0 +X/2Yq\%&H?cKO9-Y,JA)[_BrCm.1#Os8MurrqururVc`prVuitrVlfprr)otJc=p5rr<#s$i^2" +eZu0JU;lNss8N#lrtPG3s8Dflrr<#hhq6rYqY^ +JcD;@r;Hfsrr)fprtbIqf>=hua5u^=Z_=8!ZEUOA`ms/Br;QZrs8N#rrVlins8N&s!ri6"r;Hct +rr/Pis8N#t!<2ut!WN,Qrr;p&s8Dlms8W)srV6@IrVlisr;?Nmr;?QorquWfp@e=]rU/@Y]<\K5 +Uo_#6WN=D/il81#WNW_Cb2;OTqY^?lrVucurVlcorr2lrrWiE$rVlcprV_p&=I.V2qD0o!4.Ngt/'UVSUj;f[%[Ze)Aip\[JiQdcf<0 +g=4*ITp:hMcb5p=\];"GV:"o6q:`-BX4$1NPaBAZrq=[=T;^3:s8)`o)t:b:Xk!+DrU%7bT"W7P +R%V[qrqFp@Ml>n?r;HWps8N!!s8N#ss*t~> +JcD;@r;Hcqqu$Hls8O&8p$Lf!mJ64oVk:-(]sk/BV5h8eo_SI^r;6?hqu?U#r;HZor;?Qos8;it +s8N"is8W)trrE&Ks8W'(s8N#rs8W)srVlfrrVuitrVZWms8+_Qrr)cnqtTgMj4W#Cq#9,Q +hnG_P\&btKTt/4SURo!Op$T\bPd&Qr`Kut0mf*"/Y+_c?rVu`nrVlQ4R$\]%ipuTnYa(cte$G=4 +b4GT*dA2f)lMpe\rr<#trW<-!rr2qJ~> +JcD;@rVd!!r;?Qorr2p9rV,aAjR;s8c)ID@]t_+^WMcl6iV*3Jr;HTnrr;rsrX&N$rr)cmrVcZm +rVclurr/Pis8N#t!<1OKs8E<(rr2lrs8Muqrr2rrs8E#srqls!s8Drrs8N!BrVH6UjOi#Aq#99c +YHkUI\[T#SYb\8@lgs,^c.:n=mIBuMrVm3'rVc`oqtpu]V(n/cblXINMbb-ZAGUBi1l@1`oZ^ObI"=fjm_X(lg=*3l,'dGfB2&- +Tq/a:\"KM.ah+CB]&*/N`1*'ueE4f>RD\IlpsH7 +JcD;@rVcotr;?Nmrrj6ld5bc%2<]Y:nZW2?Z2i:[!Fr;HQkrVlcorr2lps8Dlnrr<#r +rW<-!rh'5jrr2otrmh&KrWrQ'rr)lsrr)fprr;rsrW)orr%.gHr;?Qorr)fnq=O(7f[]!Vro:Yp +ZF7P)Z&#C>hkH.-`T6LKbHn4cjm_X'lg4$2keXRCf&bi) +TU`O6[\';*aL\1>\_d#K_jZjqdcJK9RD\IlpsH7 +JcEXfs8E#uq>UEo!<23^s8EB*rquZlr;-6br;QTn(A-=s['Hs@Z*gs?V6%Ytp\!h9n+Z\Vrqcfq +rVlfqqucosrr;rqqu-Zsrr/Yls8E#uec,UK"oeQ%rVc`mr;ccprVufor?V=:Mh":O=n*p/NrtbV3qu$Ekr;6Hkr;?Nmrr)cns8W&ss8N#ts+111rr2j) +o?aS8SY!a`qZ$QprqZTmrX/W%rVlirrVZWns8Dlrr;Q]qs8W'grVuorr;?NmrS43/QD:n-ahb0O +PbH=X_3^J+jj^6%aQrm+fr:77bhpR#%GV;^sIKr3_h\!ND]a3r#0P``E>qYsFYWJ[@` +f@7-nS\`^^S"R: +JcD8?s8E?)rqu]nrVQHgrVHO/p>!Qo['[-F\$iH;Y/]Z$q!IG>qu-Norr*3'rr)cmrVlcprVc]o +ScA`h!<:UKs8N9%s8W&rrq?9nr;HTnrr)dT-fSYE^Dca'"4\]_piOccp" +jhmIS`:![$dArh4c2Rb?rVZWle=V_n_:$T:S +JcD8?s8E?)rqu]mrVH?dr;-F6p"R?kZa-jA[^E67Xi9Gup[%29qYgHorr)iqs8N#q"9&5us8Dop +rgj)hrW)uKrr>id)X#9]>`n2iNK#V['d9JYcb7=_qan^ +p[7SIqu7E0r;HZprVZZor;6Hlrr)cns8W&rs8N#ts+111rX\u,rq4aEW1]j'lMLV\s8MiorVd0& +r;HWprr)cnrr;rq!;uiqs8W,u8,`JfrVZTlrr(WJNg?HL`lc0&Ss?%phntkK`9#LITZHI!s4XK= +W6O8DUm@dc_muP(Of%./YD/t4kd["HXN8l3Xd,'YlMCNXm&Gu;^t@2ER%D1C\"'/&dE]"bT=E%] +Vid(Ff&af9R`+Xoq9c76U +JcEXfs8E#uq>UEo!<23^s8FPKrr)ipr;?Nms8W&qrVlfpqXs1*^8[j*\&,tgXh*B`k02$"iook) +q=sdar;Zcqr<30!rVZTlrdk+9rseu-s8DinrVlfpr;?NlrqlcprVS8Gqt9@:e]GP0V5()qYH,e@ +m(B3mY,eM&ZFe63lLt/Trr)fprVc`orVlcor;QX!r;Q`qrVuorrr<#urW)utrr)R?3W'Ss5A(Vr.'NN2tV!fs-j- +SYMpIQD2Uus8DrsrqZTfZ&G'JXItZ7UdJj1C +rVQTn+QgA0R\['_R?jbjl0,jKT?d0/qq.j4[I*tjrr2lqs8W)s!rr5trr7K~> +JcD8?s8E9'rr)iqrVZWnrrW/srVld6rV,^3^oO92\\uCoYIi`ilHml2k3Va@Xg546bPU\>VP^MsW3!89bM2@W +r;Q]orqQL#rr<#srVlirrVuorrr<#urW)utrr;uurdk+6s8W'.s8Murs7Y!KWM-'+lhpe^rqZTo +r=T&-qu$Hms8MuprVlirs8Dlmrr2rts8INHs8W&rrquZmo#mhjP+JPJTUD%:]BAS&USc5te"NAY +li7"@YaVQ?o]0IM`hf5sS +JcD8?s8EK-rr)ipr;?Nms8W&qrVld7r:]L/^T+'.\AQ1kY.ENel-IZ.jm2L6rVQNlr;uorrr2j! +s8Door;HVGs6Taprr<#squ-Kmrr)fnrr2oq!<2rq,Q@W7mH)sE_6^,Yc+4g +`Tm@#rr;uns8W$0rr)`lrr2rsrVZWns8N&sr;6Kms8W,uJ,TEIrVc`nqu600Ul^b2V59fOPFfAJ +m)PisbNI?JT$H[%s4siGW7(:u[@35BStD:2R&Js7Z]2'>n(P(6Q(FeHR[9hpq#C +JcD;@&cVh1rVZZprr)irrVZQjrVc`or?(n,khXe6_R6M;U<`?,e$lutY.2^9o(i4`rqu]mr;HHj +s8N)uJcGHDs8E#ur;Q`r"o\K$rVZWnrWrK#r;6?grr2lqr#tt;r9DP<\\#ATY-kmMW0aj^q:<*c +b1#)%ioTLur;Q]orr3'!qtg3f!<)op$NBu$rr2lprr<#trVZ`qrr)lr!<%KKkPkP\rr*B*o?aS8 +SY!a`qZ$QprqZTorW`E%rVccrrr)cqrr2j&rqu`ps8Drrs8Vuqs8DusFRdqmVOX$>R%^h1k4nQ# +Z)uIIihWF/p&4jP_l^H)qYK3r[%O%hWM#c`jnQHX^>o(]gUWl=PEqlMdI$r0p\b!eq>C0L]qUs^ +P*`2km.8f6YKcS4m*rbGR@gdjQDi[3dA=/'oD\L?^pLi3r;QZorV[`8q!#u)SX5_:[aa[>m*2c? +fD#7AiOc#$nGiIcrr2rtrr*!!rr2osJ,~> +JcD;@%fZM.rVZZprr)iqrVZQjr;HZq(]F!jhq-2m\$)I#ch%1g]>1t_^!l6?r;Q^!rr)fnrV?Hm +rrE%Ls6TahrVuorr;HWo!<)lo!<)osrr+)>s8MB2]tD+mZa73U\#Pk(p%m7M\'!1QhrQ]q3%$qXr[VTTte0UU\kCrqZ8_drVlco*<,`tbH@D&R%Un;m.p"mYd2mTrVYWdVnMU"rVc`p +s8W)t!rr9!rr7K~> +JcD;@%fZM.rVZZprr)irrVZQjr;HZq(]3gghU]ui[]Z3scLUtc]"bb[]?oa6r;Q^!rVZWlrV?Hm +rrE%Ls6TahrVuorr;HWo!<)op!W2ips8Ms?r;Z`]cFgd(]<\`P]XFf,[.O1F\[T`1g>CoPm.L>W +rr)fq!WDrnrVulsr7`gq')APaA)QeF*>3p\b!eqYgBP^8%0bPF/DomI]#:Yg2e8 +mFAtKR\-mjQ)NR2dA=/'oD\L?^pLi3r;QZorV[`8q!#u)SX5_:[aa[>m*2c?fD#7AiOc#$nGiIc +rr2rtrr*!!rr2osJ,~> +JcEXfs8E#uq>UEo!<26_rr*<(r;Q]orVlfpr;6Hlrr)crqu-No(\HG!]!/d0s7j-r\Zqg+\&["R +jR2d@rVZWrrVlfqs8W'"s8N&trW)usrW)utrrL?mrW2uqrr)los82utr;?Hjr=Su+s8;fnrqu]ns8W)srVlfrrr2rt"oeQ%rr2rqrW<-!rdk+C +s8Drrr=AMHXJMJZ_s.$srVlfrs8MrrrVcitrVld%rVlirs8Doos82ctrVlfrrr)iq)?9[7s8(s. +`4in"c/JBrs7l$3biSls`lRcNrDrLIeD'?WjkJD;e'QCYUmSUUqq&jDoDegajN>0I^!#C/s8Mig +rr;rprVliabItL#`nBk\qs)e_jR;BheC`6ufZL:\Xl9->bLGqRrV>m=f\c/qs8Dp7rVuoff>>&1 +bMr9rrU].%fBN/2r9rFdf_,4B"98B#s8N!!s8N#ss*t~> +JcD;@rr*B*r;Q]orVlfpr;6HlrqlZmrttFa`OrLilMpdqU:mt2Y.r98i9Be-s8MuqrW)oqrW<-! +rr2rsrW)usrW)utrr;;nk.77j^q[:c^:UbWXiC)7nClU_q>1*l +rVZZn"T/,rrr;lps8Dut"oS8rrVZTlrr;rsrW)utrr;uurdk+6s8W'.s8Murs7XsIWM-'*lhpe^ +rqZTmrW3&trr*3%rr;utrVcZoqu-]rrr2rsrVle;s8DrsqWQAH^qR\2j7iTRqXE%\k5Y(naRfB. +rU]!uh!ORnh:^E1da6"2R^h_^fZ;tCs8VoWbeLg)bi8HurqQ6ds8Drrs8VQ4^:_2$g[bCCm+BnO +na,,`g==[)bH-u2iVM`\eF!#/q +JcD;@rr*B*r;Q]orVlfpr;6Hlrr2iurr)corr3i.gVg_0]]oIn]V3!FUTD)NfAGc\q#:6jrVcls +rr2oss8N#trr)otrVcfsrr2rt"oeQ%rr2rsrr;uurqHEorr<#nrr;uurmUlKrr<#trW<-!s7uWo +s8Muts82cqs7uWos8;lrs8W&us8;irrVlfrrVZ[:q=*\.g">!6me5bQTWc)C['dTYZ`pOMp&FO8 +g?eY3rrN)rrr!*!r;?NmrVcZnrY#2/rr;oorVl`mrr<#trVc`ps8N#trrE%Ls69R`rXo20rVlfh +e$,dDTuH^Em!WW,trWrK%s8N&srVZ]mrWE,urr;urrr*f8rVlinkgIGa]tqtQpAb0g +n'oVEs7F=PoD\\ho&8*QmI',lf[eR"cc)`K\*NtEa56Igs7k^!^:V,'iqWQQq"OdfrVc`qs6e+F +]=u>>nc/OQf[]*QleU+EeC3'nXHfpHqWH&OmJ$STmbc[Sn,34arYb\7s7+^X\@g#Ep](3`jjr&J +qYpE]gs4RFrVcp!rr<#trW<-!rr2qJ~> +JcEXfs8EE+rr2lqrr)iqs8W)_s8N!)rVlirqu$Elrr)ipr?_C=rVulqr;HZoq"4:Po(;qOX,jd/ +^;.=bXff1TiVWWRs8;clrquots8W&s!<<&t!<<#s!<<&ts8N9%s8W)ts8N#trrE&0rrW3"s8N!& +s8N#ts8N&urr)otp\k0mpAY*l!<2ors8=PKrVcZmr;6Eirr;ompu]o?Z_XClX2sMg^7_^D\>l@% +UoVJjn,34`p\FgdrVlisrr:-irVZQir;?Zqs8Ms#rr)fps8W#rrr3Q/s8W)us8N#t +rr2lqrr;usJcGHDrVlfp&+e/LV4F3ql2(DXrr2rtrquforXA`'rr;rqrr)lrrVccnrWW9"rr;rq +rr2rrs8;or!W2`mq%*8rrVcZmrr2cjrVl`gpAP!i+Sb[+r:o!STV]g"p>WrWQcAFhqY9pbrr2lo +q=jRVq>C3j1&_+OrVlfpr;-6apA"FZr;Q]mqY9gKa.JpBmf34(P*N]Cr;? +JcD;@rr*9'rr;upr;HWorVlfps83#sr;ZfrrVn5@p@n:Sq#C#jPJ"uR`PT3n[(acFrVlcqr;6Ej +r;?Qns8Doqs8W)t!<<#s!<<&ts8N9%s8W)ts8Drss8W)VrrW3"s7ZEns8N#es8W&us7-'gs8)]r +s8N#srrW3"s8N#trrE&ts8DpNs8DoqrVcZmrVZWms8W&qqWQ>G[AKgtXifqo^nS0Q^94E7W3FD% +nbrLdqYL0grVlg*rVlfprVliqqY^?ls82fqrVulurVZWmq>UBn"9/?#rdk+6s8W'.s8Murs7XsI +WM-'*lhpe^rqZTlrXA`'rr;rqrr)lrrVccnrWW9"rr;rqrr2rrs8;or!W2`mq%*8rrVcZmrr2cj +rVl`gpAP!i(ARUur;#-YU8Q6*puKA_RE4mqqt^-frr33$qYBm\qY^ +JcD;@rr*9'rr;upr;HWorVlfps82urr;ZfrrZhIBq=XLUp%SLYY*-E;_8F$sZEh-djS]#Us8;cl +rr)fps8W)ts8W)t!<<#s!<<&ts8N9%s8W)ts8N#trrE&mrrW3"s7lTnrrE&IrrW3"s8N!!s8N&o +rW)utrW)uqrW)uorW)urrr<#ur\4BNrVlcor;HTlrVccrrVQERd)<;fV5137l05sVZGF2UVl?St +aPZLcs8DcirVZWnrrE#srX8](s8DckrVlfpr;?Qn%/p2)s8Doqrr)fps8W#rrr3*"s8W(Ls69R` +rXo20rVlfhe$,dDTuH^Bl%/g)'s8DoqrVulqrVuco"o\H"s8Doqrr;rsr;Z`sqtgu!rVZWnrqcKirquK`rVld=q"FL\q:rHQVT\K'j27=Qa6rj%q>:-js8Munq"OR[r;HULrVliq +rr;urqtg-_q>'pds8W#oq=s3qT:X*ls89j!Q+Z;Xr:g$crr)ipqYC!drr;lp(]XI3q"FFVrVlco +rr)`jr;Q`pr;6BfrVc]ts8N&urr*!!rr2osJ,~> +JcEXfs8VT9p#a]?^:Uqe[BR*=S?q)Bd& +JcD;@"TJH$rr2cm!WN,trVud"rVlfprVZWkrtPJ2p<^7X\$WWT]",8U[*SIGp[e:\rs8T$r;HWo +s8N#srrE&srrE&qs8W)prrE%hrrE&os8W&us8N#trri?"r;?QhruUmteA]5:]=bVY\?):0i:GBs +Xh;]qb0SMjlhg_]rr)j.rVHBfr;HTlrVZTlrVQNkr;QZsrVuosrVlfqr;Q]qr;ciqs8N!!s8N"K +s60L_rXSu-rVlijeZu0JU;lNss8N#ns8W&us82cnrr;rsrr<#trVum%rr)fprr)fprW2uqrr)Zm +"9&)orr)isrVca2rVlforVuosj1:V?W5?W`S<9r6q>C3ks8;rsqZ$Qn"98B!rVc]qr;$?nrVlcq% +I_E0Mjh&m_juR[eFW\ +JcD;@"TJH$rr2cm!WN,trVl`prWE,rqu-Els8$kqu6Zqo)Jah"9&/qrqZR9rq>O(`4rsr]=+uRX.?WTo$OG< +]>_h4cI(A1qZ$QnrVm$!qYL*eq>L?k#Q=T"rr)fqs8Ms"s8N#rrVc`qr;ciqs8N!!s8N"Ks60L_ +rXo20rVlfhe$,dDTuH^Ko!<;rprVliqs8N&urr)ls#6+T"rr2lprr)rsr;QZjrr`5r +r;QZp!<)lr(&e.2rVlisro:MTOJfq8[%!/YiqWELrrW/srqcZor +JcEXfs8EE+rr2lqrr)iqs8W)_rsSi+s8Muqrr<#trVcZn.0';Gs8N#rr;HTlr;6?equ$Bfo]!ir +X/W5.\@/N<`:*BUceImXp&+afrr)otrr)otrVcfsqu6Wqs8E#uq#:LX!rr2rtrr<#i +rW)ulrr;p!rr)fprr48Cr;-0\nE]K6q!,u'T:`$c\%BAp\Ylsrq<#T+`nBSGq>^Korqlcnrr)lr +!r`≺H]rrr*9)rr)cnrr2lqrr)iq!<<#ss8N0"rVcEgs8W,u#ljo'rVlfrrr.KKo`"pirr*K, +o$=D6SY!a`qYpHmrr<#tq>^Ko"98B!r;Q^)rqu`ns8N#qrVc`prVQTorVld%s8Muqr;?HfqYpF! +r;HTlqu$Bjrr)d2r;HZor;HQcgUj8KOckcdV9eo9r;- +JcD;@$i^2+rr)fps8W)srVZWus8N#trr2oss8<'!r;?Hkr>,;*ji=g6Y-PUP]!8?Xnb:qeg[=V) +rVZ]qrr<#trW)usrW)uqrr<#urW)usrW)usrr<#uroO.]rr<#lrW<-!rp]sfrW)ugrW)umrW)ug +rqud=rVH9]na>l>qWuD/TqSHk]"Po#\uE:#qrl#5akc=VrVlfsrr2j,rr)corr)cmrr;urrr)cn +rr*0$r;Q`rrr<#trr;uurr2lqrr;rirdk+3s8W)ursADKZ)OFk`U!I%rr2Wks8E-#rr)cors\o) +rVccqrqu`nrr2lnrr;rrrX&W(rVcZlqt^*drr!*$rVZQjr;HWnr=f,-s8DlorV#'\V4!O3OcZHe +q>^Hl!r`,trVZ`nrqufprr2oqs8E#srr*l8r;6Bhr;HTnrqu`nq;fSoNJ*+LPG6.arVucnquH`p +r;uusrVHL/s8MrnqY^ +JcD;@$i^2+rr)fps8W)srVZWps82crrVlfp*;o^0r;HWkp>j6$YH4t;]XY2H`piZYceImXp&+af +s8N&urr)otrVcfsqu6Wqs8E#uq#:LHqrr;fn!<<&t!<;rq!<;Wh +qu8DLqY0[Qm-aQBlcQB'TW#-*]YDP!W4CpakJY'Th!=V1s8W)srVZTmrqucprVZTms8Drsr,>0s8DlorUnsYV4!L1OH69bq#C9h +r;QWtqu-Kkr;QTnrVlfrrVuj#rVZWnrqucmrVZ]ps83E+puBDlN.ZnIPG6.arVucnquH`pr;uus +rVHL/s8MrnqY^ +JcEXfs8E#uq>UEo!<26_!ri6"rVlisq>LKrrr2rnrr;osrqu^0p[%"tcb6HUTVSa:nDUsTUp%8O +kP"oT%K-,$rr2iorr;urrVliorr<#urWE3"rVcWms8W,u_uKQ3#QOf&s8W)us7uZor;QX&rr;ur +r;HWnr;HTlrqe)@rVZZps8M]Uh9a!EXL$%7lGTj4_S*+MVPL)g[F"@?q +JcD;@!ri6"rVlisq>LQtrr2rsrr2rtrW)utrYkb7rVccmm,m3Q_6U&8VQ\G=j1M:eZ+/'Bq#::& +rqu]nrqu`os8Muqrr;lps8W,u"onPur;Q`prr<#uroO.`rr<#trVcZn"o\H"s8N#es8W'*s8N#q +r;HWnrr)cnrVuiss7cKms82fqrVuj#r;HTnrVlcq+8>-[d_iMu[a"7,`iuni^Ta`9V5C6#dI7&0 +mdBW>r;?TorW)oqrW)usrW)uprW)usrr +JcD;@!ri6"rVlisq>LBoqYgKpqu.N4rr2lqq<[5"cbQf`U8>$?n`%0XV6IJRkP+uU%K62%rr2io +rr;urrVliorr<#urWE3"r;HNls8W,urr30$s8W)rr;QZpqucrus8LRKr;Q`p"oeQ$s8MurrWE,u +rr;us!rr5trVcp!rr2lqrr;otrr)io!WE#qruh%$i6fEMYdM^BlG]s7_nN=QVPU/h[F"C@q +pA=jfs8MutrVc]qs8Doss8)]ps8Drss8)]ps8Drss76/?s5s@]rrr;HTlrr;rprVc`prVuotrWN9"rVlfnr;uoor;HR,s8Mupqu$6RdCH^KorUBdds7lQns7Q?ks82fqs8N!!s8N#ss*t~> +JcD&9s8Mio"9/?#rr)iurr<#trW)usrYkb7s8D`[hor[<][#R#`i#c>Z`gXI`m_Jlr;Q]prVultrVlisrqQNnrr)isrr2otrr2otrqcZprp]r<~> +JcD&9s8Mio"oeQ%rr<#trr<#trW<,urVld>s8N#mn)D^.[D'uLl,]j)ZF-sD^W=gXmJ?k]rr)cl +qu$Ekrr*K-s8W&srVZWnrVZTlrr;usi;WuZs8W&qr;?Ksr;HTorVc6cs85J3p?UYkg>M;krVlcn +rVl`lr;Q]orVlfprqm!!rr)fprVc]os8;urrVHL%rVZWor:8q&g>_Jlr;Q]prVultrVlisrqQNn +rr)isrr2otrr2otrqcZprp]r<~> +JcD&9s8Mio!<2ip!ri6"rr*!!rVc]o)#sR0mGZC)[(XcHkf9X%Z*^a@^;nUUmJ6_Z"8r&nr;HTn +rXSo,s8Drqr;HWnr;HZqrqHErrVuorqtpBjs8)oss8W&HrsA])s8Doqrr)iqrquutqu-Kmrr!B, +rVc`prVZZorVZWmr;6HhruM(1jkSD1^q$nYWi2\tj7L^%Y/.iTXKoCM`RaAOrr2oss8E6$r;?Nl +rr;us!rr9!rVllsqYpQprVuosp&G'kJcFI(s8EW1rr)iqp!^.DTV9?iqu?ZqrqZTnrr;rqrqu]q +rr)iq"TA?!s8W)t#ljl%rr)ipqu$Hls8;oorqu`n!<2urs8N#r!ri6!qu%6.rV#R8gtUcQp\k*i +r;Q]nqu$Hmqu-Nl#6"Q"rVlcor;Hitr;HWnr;I-'r;HZno&\TZip?@9rr2oqs8N)trr<#tq#CBn +rVllsrr2utrr2utqZ$TpnGe"~> +JcEXfs8E#uq>UEo!<26_!ri6"rVlisrVcfsrr*$"rr2rnrr;osrqu^9rr)]hq>0gKi8jA"j1qe/ +b0%AuV5:&maQNBur;HZprr<#trVQQur;6Ejs8Munrr<#urknd9rWW?$rr)irrr)lr"98>trVlcr +rVl^&rr)clr;?Nnrr)irrr+PKqtg'ZpA=^F\uM^+U8+cp[C<-:iVqlIV6dhKaOobIo(;eYrquZj +r;HTnrVlfrs8E#urr2rtrVcfsrr)otrr)otp&>!krr2osrVlcqrr*!!rr2oss8E#ur;Hctrr.KK +o`+jg&,">OV4F3ql2(DXrVlisrqufrrW)utrr;uurr)fprW)onrW)usrr;p"rr;rnrVca!rr<#t +rr)lqr<<,trVlforquotrVc`p!rVrlrqcoqq"ajerr)fp!rD`krr*-"rVlfnqu-Km"98B"rVlcr +rVlcus8Musrr)lsrr!9'q"=7Oq>:-irVcZlqYpNpqu6Wq!ri6"rVcfsrr)otrr)otqYpNp!ri6" +rr2rtrr*!!rr2osJ,~> +JcD;@!ri6"rVlisrVcfsrr*!!rr2iqrVliq!<2op*rc-7q>:-clJ^mrpZ98q^!+^7Y,A1rZ-2A. +s8N#trr2rt!ri/squ.3*qu$Emrr2lqrVlcorr<#troO.`rr<#trVcZn"o\H"s8N#es8W#ts8Mus +rWrH!r;QZnr;6Ejrr;p(rr;rqrr2lorr;uqs"=] +JcD;@!ri6"rVlisrVcfsrr)otrr2rtqu6Wo!<2op*rc-7q>1$`l/Caop#Nrl]Z\L3XeqtnYfZ)) +s8Dorrr2rt!ri/squ-`rqu$Emq#:K +s8Mrnqu$Ekrr)fps8W)trrW3"s8Doss8)]ps8DrsrrW3"s8N#ts8Drss8Drqs8N!!s8N"Ks5j:\ +rr:-irVcZlqYpNpqu6Wq!ri6"rVcfsrr)otrr)otqYpNp!ri6"rr2rt +rr*!!rr2osJ,~> +JcEXfs8E#uq>UEo!<26_!ri6"rVlisrVcfsrr*$"rr2rnrr;osrr)d;rr;usrVc`qr;$0cr:/IV +Z)jt(YIVHYYHc79qYL-hrr30$qtp2['Zs7WNE,)jT"o.cIUq9lgt&SrVZTm +rr;rrrW3&urVuos!<<&ts8W&s!<<&t!<<&t!<;`ks8W)trr;rrrVulr!rr9!rr<#t!<;ur!rr9! +JcGBBr;I6"dB'18T#9ghrr)fps8W)rs8W&us8N#ts8N#tr<**!rr)]m!<;op!rr5un,F"!rVccr +rVZQkrr2lqrVlcprr2p)rr;usrVZTns8DlpqZd#urVZWnrqQKnrr2j!r;HWps8N!"s8Mrorr2rr +s8E3%rVlirrqu`krr<#qrr +JcD;@!ri6"rVlisrVcfsrr*!!rr2iqrVliq!<2ops8N,urr2p5rVHEirq"m^Z`^C0Z+Ii`Z*VX@ +qu$HlrrrE!qu$?hr;I<+rVlcqrr)cnrVlcorr<#troO.`rr<#trVcZn"o\H"s8N#es8W$)s8Doo +rr2ikr;Q]prVQTor<*&tr;6Kl!<2ip,PC3J_nat&s4scW\@&fSYH+b.WjLpgpYO9Liooe%r;Z`n +r;Q]qrVQTns8W)trrW3"s8Doss7QBkrrW3"s8N#ts7cNks8N!!s8N"Ks5j:\rr^Ko!<<&ts8W)ts8<'"rr2lmrW)uprW<,urpTk!rr)fqs8DlmrVlfprr)iprr2os$NC)) +rr)cms8W&qrqcourr)cnrr2]m!<2ur"T85ts8W)t"98Aur;Q]qrVuj#s8N#trr2ioqYpNpqu6Wq +!ri6"rVcfsrr)otrr)otqYpNp!ri6"rr2rtrr*!!rr2osJ,~> +JcD;@!ri6"rVlisrVcfsrr)otrr2rtqu6Wo!<2rq*rc3>rr)irs8;`ir;H3?_Qp;EWN`tM\ZiB_ +m/-\YrVm'#qtpV]4jjM&]f_YX'X/`Y9[^E9&1ce%.=m.:/TrVZTm +rr;rrrW<-!rr2rtrr2p!rr<#srW)uprW)usrr +JcCE'!ri6"rr*!!rr2oq,Q@ZArqu]ms8MuprVH!<_m65;YI_HTW2./inD`'Kg?.r$rr2p)rr)fp +rr)fps8N#sr;uusrr2lrs8W&8s8;j$rVliqqu-Qprr)lr!WW,tqZHcprr)ir0)khFo^:r#f@%mZ +[&9Y7mJGM2Up@55\?N'9mToDJUdrVZTlrr2iorVlcn +rVlco!;ufo!<2ops8E*"rr1%>J,~> +JcCE'!ri6"rr*!!rr2oqr;H`prr2p8rr;rfhSlk%W3O"N[]?:@kk!lge_K?Xq#:9m%0$5(rr2lp +rr;usrVc]orr)lss8D'Z"o\K$rVZTkr<<,trVuipnGiOf$NL,)rVlirqu-Qprqus!rVc`or;cio +s!.L=p@.A+g!n?c[]-(?meb\7VR3V<]!8EC[CjfSrr;cdp\Xsh#64]$r;?NlrVlisq#:s*t~> +JcCE'!ri6"rr*!!rr2oqs8F2Arr)fps8W)srql3@`3ZG@Ye.ZXWMRAmo&JBPgZJ&%rr2p)rr)fp +rr)fps8N#sr;uusrr2lrs8W&8s8;j$rVliqqu-Qprr!3(rVc`nr;HTns8Mus/cPV>n*/c_e'5b; +W2%5sqq.aAZ`ppLYcY.:]?TgDrqQ-ZqY^s*t~> +JcCE'!r`0!rquisrVcfqrr+>Erqu`nqtg3fqtK^Ji6oTUZ)4(`Wm1"l]W%^.\BEk#q>LU?jrr2ilqu$HmrVccqrVum*rVuosr;?Nlrr<#tJcE%Ur;I6"dB079T#9gh +rr)fps8W)rs8;lqr<30!rVZQirV6BlrVujEqZ$HPa1Spm]=YYc\@9)cb21ste*Ho2r;HWps8N#q +r;Q]orqlTkrr)orrVeGLrVZWmqYC*ir;$-aqt91-db4$Wgs"IGs8DoqrVlcnr;HWnrVliqr;?Qo +rr)io"9&5us8;lrrrE&@s*t~> +JcCE'!r`0!rquisrVcotrr)iqrVujArVZWnr;$$Qimc#]Z`'LhXO$Ft^8n-6\]`t$q>L +JcCE'!r`0!rquisrVcotrr)iqrVujAr;6EjqtTgMiR>fYZDX:dX3U4p]rIp2\]`t$q>LqYpKms8W#or;HWorVccqrVum*rVuosr;?Nlrr<#tJcE"T +s8N&u%/&)RW1]j'lMLV\s8Mior;Q]o"TSH!r;6Biq#:L?kq=sg`p#t/Yg$S:abh;ajrVc`orr)cm +rVlcorr;rpr;Q`qrVl]srVlfrr;Q`r!<1.@J,~> +JcCE'!r`0!rquisp\t3js8;rqrr!i9rVH9\mbl@'Ycu(0qU;C@Yd(40[_9]0jn/NNr;HWms8E3" +qu-QnrVZZ7s8W&us82d#rVZTnrr)fnrVZ`qr;S>Ho]Or[iqWH0]W/-?X/N21\ZV[3f_+RO\\#c' +eDT]bo_/1[r;QWms8Muqqu-iurVccrrVuoprr;uurdk*Ts8;j,p!KnY1Wb15tZnCGnBo'k5BZ+o;Z^SSU7s7uNhr;HWl"oSAurr2lqq>pNmrqlcp +r;Q`rrr2rt"9/?#rltIn~> +JcCE'!r`0!rquisp\t3j,5qN>rVlcprqlH_n);O)Z*D:4qp_RDZEpX7\%fu6k4JWOr;HWms8E3" +qu-QnrVZZVrrW3"s7ZEns8N#hs8W)ts8N!+s8Mros8Muqr;HWnrqcX=p?LJgjSJi7^9"QGXfAV9 +] +JcCE'!r`0!rquisp\t3js8;rqrr)lr)Z'4#n);O)Yd).2qp_RCZ*LF3[_Bf3jn/NNr;HWms8E3" +qu-QnrVZZorrW3"s7lTnrrE&Ns8W)ts8N!+s8Mros8Muqr;HWnrql^Hrq5O3g>i#-iOu:qZ`L.0 +\@Sl=ZJ"s^Em#lX]"rVulqrVZZn!ri/srr2rrrVd3'qu-Nls8CKOTU_VQTcB_pR%'q[bJ^Eh +h"L[Cqu-KmrVcWjr;HQlr;6Bjqulopr;HWor>Y1Wb15tZnCGnBo'k5BZ+o;Z^S\[8s7uNhr;HWl +"oSAurr2lqq>pNmrqlcpr;Q`rrr2rt"9/?#rltIn~> +JcCE'!ri6"qu6Nn#6+Z&rVZZprVliq*W,g8s8;Wj8ZB_<< +qu-Nsrqu]nqYpWrrVlZn)Z9U7jg:hukPs\OVoS/ncDd>0nrr2lp +rVjt>J,~> +JcCE'!ri6"qu6Nn#lal(rVZWorr2oq*rPp6s8VuajOr,Fqu>*BX1>dDVl?`![)1Pis8Dlprr3<( +rVlfoqu6Wprknd9rr<#trW`E$rVlcnqu-Nns!IaFr:p!VmHCr +qtfU;jQc1*r;HX'rr)fpr;-BkrVc`nrquirrr)corr<#t!<<&ts8N)uJcE+Ws8N&u$22lRWM-'* +lhpe^rqZTorW)utrVlfrr<3-"s8Dlnrr2lqrr;p+qu-Nms8LWUUS=KQR[a;F#b7g'a0_23f_bXI +"9/5rrqcWrrr)imru1h7s5gV`^ZYXY[&1n1nBS#&YMJ6OV7uR$qtU0orVlfprUp0nrVlfprVc`< +s*t~> +JcCE'!ri6"qu6Nn#6+Z&rVZWorVdo;r;6Hms826Fg",6]s3dgF\%&Q;W2cr*_V4\_rVZZorsA]' +rr2imrr;us_uKc9s8W)t#64Z#rr)clrVlfr-N=&Cq"F:Fk2+\3]!fTDqqA0AWk>mJZb!]NWP%3d +q +JcCE'!ri6"qu6Nn!<2ut!r`,urVlio+o_N@s8MuqqtU!es5:GcVQ-]"[CWfKVS)3oqXX.Nrr<#t +r<<3!rVulr_uKc9s8NT.rVccpqYL0hrr)fnrVc`p/Gneke]5;.Yct:/UTW;CgT[9IZEC1,ZFIN` +f^S_5r;?Hgqu-Njp\XsgrVZQk$3'o"qu$Ems8Murrr;rrs8W&us8N#trrE%Ls0_n)rX\\LXehS[ +_s.$srVc`qs8Mrrs8E*"rVc`p$2sf#rr2imqY^Bmrr2lqrr;pHrr)cns8D'&^r!d_S=?+O\\#f, +c*!2'e,'+?r;Zcnqu6Wprr)ckqu6Toru_18rVuops8UuNRCqPQfV=_Cjm:*cQ)`X,cbS''s8N#t +'E.k-s8W≺HWos8MrnrVuimrVliprVc` +JcCE'!ri6"qu6Nn0)knNrr)fqrr2lqqtpBmrr;urrVQBcs8V#gWMuu$Yd_9TYG]%urqc3Tq#:rr)fnr;Q`nq>L?mrr)iqrV['%r;6EirVuosrVlfrrVlisrW)utrr;uurdk*Vs8W)ursADK +Z)OFk`U!I%rr2`ns8E*"rVc`p$2sf#rr2imqY^Bmrr2lqrr;p>rr)cns8D'&^r!d_S=?+O\\#i/ +c`iV/ebfCBr;Zcnqu-KtrVZKgrr2os+8l!6s8Vuqs50N<]]/Y;UQrFPm)c)hWnd!f^sr&Wrr2p2 +rVZWos8DimrVlfrrquZls8Dfmrr;oprVjt>J,~> +JcCE'!ri6"qu6Nn#6+Z&rr)fqrVlio+o_N@s8MuqqtU!es5:JeVlQo&[_'#OVnDrr)cns8D'&^r!d_S=?+O\\#i. +cEED+eGK:Ar;Zcnqu-KtrVZKgrr2os+8l!6s8Vuqs50Q=]]/Y;UQrFPm)c)hWnd!f^sr&Wrr2p2 +rVZWos8DimrVlfrrquZls8Dfmrr;oprVjt>J,~> +JcC<$rVuos$NL,)rVc`pr;HWorr)lrs83#urr)cnrVuoq(]O!]aLJFSWN*52YbADcr9VhKbM;FV +rVlfurqu`hrW)urrW<-!s8Doss8Muts7ZHlrrN-!rVcfsnc&Rg#laf%rVlcoqu-Kn7fN8XnaZDS +o@:UbXJ`#!Z*CF,Us8Jm`2orB[_Kl2g#;5fqY^9krr2rtrr)`jr;HQmrVQQnrquZlrqu`orr)fp +rr)fqq>UBls8N)tJcE.Xr;I6"dB079T#9ghrr)fps8W)rs8MuurVlco$i^2+r;$9jrqucqrVc`q +s(;6/s8Monrr2Z[kj@BFURJ!si8s=pg9Hm8_Ud2YdGsour:]@5inN#9k4JK?j42H#e`6<"r:.ss +NN:1K\XJVZcIfk+Q`T$5f#H>:rpAY%j5/;2dbs]orr2`[hUBj$hW +JcC<$rVuos$NL,)rVc`pr;HWorr)lr#6"Jurr)cnrVuoq(]O!]b.=j[X/rY:ZD+_hrpJ4Pbh_XY +rVlfurqu`hrW)urrW<-!s8Doss8Muts69L_s8Dp!s8N#trr2rt"TJB!rVlfp!<2or7JllNo(i:X +f>5##WiNA3[Bca.ch6MAY,ek<_9(3]iTg(4rVccrrr<#trVQKjrqu`nr;Q`qr;6Hlr;HWorVc`p +rVcclrr2lrrrE"Ks0Vh+rr^Hn!WE#rrk +d^ks3X3]J6V3nCBo%1q7q>Td>i8`\DcI1YAr;Q]km,$4 +JcC<$rVuos$NL,)rVc`pr;HWorr)lr#6"Jurr)cnrVuoq(]O!]agnXWWiNG6Z(eVgrU&%ObhVOW +rVlfurqu`hrW)urrW<-!s8;its8N#ps8W&us8N#trrE&srrW3"s8Muts7ZHlrs8W&rr)iprVZZm +s$chZnacJTo[UaeXf8A)['[*9V9\\q`N?/F\%p)6g>V>gqYgBms8N&urr)`jrVl`orqucqrquZl +rqu`orr)fprr)fqq>UBls8N)tJcE+Ws8N&u%/&)RW1]j&lMLV\s8Miorr)rsrr)d'rr<#rq>C9l +r;Q`prVlisB)V`/rqlWmrqGjEmGbpVR\[m[jm;NlZB_-$f@.mjjS&TOp?CPqgt(0@o_J(=f$;Um +jRrKLo#mA[X3/l$Rus_sfY4/KXPWL!`n:(cmGQp_hUKj!i:?gFrqYp;e'QV$jk\hgrr)orrVd$$ +rVc`qs8L:CJ,~> +JcCE'!ri6"qYgj%rr)fprVZWnrVZWm#64]#rVcZlrVccm)u]^0mG6%(\#cU3YGJksp=H[GWOg4$ +j6lR8qu-Hqs8DoqrVllsqYpQpq>UHopAb0l!WW/trrE&jrrN-!r;H]rrr#+^rr)]eo'GPsf?Vt6 +s6[S#XfAD(Za-d9VQ%i3o\[j0ajoD:o_JLds8;lqr;$0drqu]ns8Muqrr2inrr2lorVliss8)os +rr)fprr6.aKNPSr7AHb^UgG;UUf%Ir:oBsZ_jP!\%o>anGiIcrr<#q +rr;uurltIn~> +JcCE'!ri6"qYgj%rr)fprVZWnrVZWm#64]#rVcZlrVccm)u]^0n))I0\ZW$;Z)>;&pt<*NX1ZX* +ipQI7qu-Hqs8DoqrVllsqYpQpq>UHopAb0l!WW/ts8W)trrE&ps82csrVlirrVum]rqlK`mci`a +d+Iddn%l'.XKAh<[^33'ser;?Qorr)fprqu]nrr)cnrr<#u +qZHfrrVc`ps8NE)s8W)srVlisrdk*Vs8W)ursAAIYc+4g`U!I%rr2`ns8Ef6rr2iorVlfpo]+`g +p&+^crr2rsrVc`p#6"Q"r;HTnrVp:"d&<;/d.[J=s5LJVSZJrkT;90Zq>BR$\\5GQ[*@^rf=\,Y +V5q5[p&![WR>@36Yb@JKT!u\LV44[FlcQKPp&*FOZbO)OT;/sLnbi1DbHn(AX1,mN^@;1$rVlis +qu6Wq!<17CJ,~> +JcCE'!ri6"qYgj%rr)fprVZWnrVZWm#64]#rVcZlrVccm)u]^0mbZ7,\?2g7Ybo)"pXlmKWk6C& +j6lR8qu-Hqs8DoqrVllsqYpQpjo>A[rr2utqZ$Bj!<<&ss8P:^qtK^Lki(1?fBrV+^oFQC3hr;Q`qrVc`pr;?QnrVZWns8W,r"9&5trVlfrrsA]) +s8Muqrr<#tJcE+Ws8N&u%.quOVk9X$lMLV\s8Mios8Ef6rr2iorVlfpo]+`gp&+^crr2rsrVc`p +#6"Q"r;HTnrVp:"d&<;/d.[J=s5CASS?&`fStisVq"s?u\%K,LZcqIme[qcSUoM#Vo_RIRR"q!1 +YFq8GS[QGFUmeIAlH-9Lo_d=NZbO)OT;/sLnbi1DbHn(AX1,mN^@;1$rVlisqu6Wq!<17CJ,~> +JcCE'"oeQ%rr)forW)usrr;rsrr;rsrW`?!rr2lor;QXDr;HWor;6ElrV?*PimPTIYcl4>m)H-' +XKet1[`6kYn,*(\rVlcnrr2os!<2ip!<2fo!<2]ls8E'!rr)isrr)isrqcZnr\ONNrVlcnrVlci +mc<*I_n3=XV75:Zn%,C%ZEL@.US=Na]\<&Vp@.SCq"jjcrr<#sr;HWo#lX]"rr)iqqtp?k!W;op +rr2lrs8Mrurr)fprr>&XhM?AR&\`kZ')9Wpr]:sVlZ\_R%Ue>o&[ooSXc=HUSO3U +l2UVXq#: +JcCE'"oeQ%rr)forW)usrr;rsrr;rsrW`?!rr2lor;QXDr;HWor;6Elrqc?VjOD#QZE_XFm`;Q. +Y-bI8[`6kXn,*(\rVlcnrr2os!<2ip!<2fo!<2]ls8E'!rr)lsrr2otrql`nrr;mHrVlcnr;Q]k +n`JWR`P&a`Vn(^an[tg-['Hp;Vl$Ap^>/J^q"""Kq>:*hrr3&uqu-Nn#lXZ!rr)iqqtg9j!W;op +rr2lrs8Mrurr)fprrUR[R>^uk@KZC%A]T;TEO +bd="4TqS!HXP*6tZ_!#9W2lSXOd`Jh];D$uf\EftYO2,-TpM[YUmd[DZeG!3a/to&T;&*VQE'3L +qY^-fs8N)uc2W:~> +JcCE'"oeQ%rr)forW)usrr;rsrr;rsrW`?!rr2lor;QXDr;HWor;6Elrqc75[`6kYn,*(\rVlcnrr2os!<2ip!<2*[s8N#t!<2lqr;Q`o/,fJGr;?Qnq!dD"cc!K)XerVb +rp[OtZa6p?X/;_jXhEK_rV,jPo_JC]rVlfurVZWnrWrK"rVlcprqlQjrW2rqrVlfps8W)s!ri/s +rr2rt!ri6"rVlis!<.QL[/^1*s8NN"d]]R@TZ-3ns8N&tq>^Ko"98B"rVldAqX2nCXLQ^Fqu$Bl +s8N#qrr2rrrr)iqrVZWorr;]=W0a@-q#::lhR/r?R\-=DPFTDLp#!$@Tq\-U^!Y$0SsuCGS"$J2 +o@C4o&[ooSXc=HUSO3Ul2UVXq#: +JcCE'$3'u)rr)fps8W)rs8W&us8N#trt58/rr;urrVlfprVlfrrVZTmrr3i7qsrh$e^`aQk.mjh +Ye%HRWN3SJe*Hl0r;Qcrrr)iq#lXc%s8N&trVcZn!WW/urVuj.rVlfprVuoss8Muqrr;urrVlfr +r;HQqrr;uqs8Mpp#cDHo&cM%89r7\QON01*Q[@<&GdI,YbM3OR/\Ac=gR[0qc +\uCmV\DZ>]RZ!cJ^9*icTYAXaVO4=0e#8"un+OYkOINMf[%W\Q`So+GSscXl\>,4EWoa6Wrr2lp +rr2rsrlP1j~> +JcCE'$3'u)rr)fps8W)rs8W&us8N#trt58/rr;urrVlfprVlfrrVZTmrVm]3oB4l[fB2ej_Pj<: +]Y1_QXLcF$lh^VYrrE&trVld%rVlfrrr;urrVZWqs8N#rs8E?'rr2lps8W)urr2lrs8N!&s8Muq +rr2lpq>^Hm*Vo*Xb.P-eYd1^DUT)T7ou*`*WN<>2\A65;jmr$rrP+ob;^o3^%e((ISVsa8rT9,PI]X4ArS&O@3YF_/_]XX`"MQ5e;qu6TnrVlfrrr1%>J,~> +JcCE'$3'u)rr)fps8W)rs8W&us8N#trt58/rr;urrVlfprVlfrrVZTmrVm]2oB"]Wf&cSe_5F*6 +]=bMNXLcC#lh^VYrrE&trVlcrrVc]ts8Muqr;Q`r!ri6"rr)otrr2rt%0$;+s8W)us8Doqs8N#r +"9/8trqcZor>tb#gW@(7Yck=>ZD+;Cp[lA#VPpQ!Za[]je`?8srqZTorr)fos8W#ts8N#tr;HWs +rr)iqs8W&mrW<-!rr2rtrdk*Os8W)urs\SLYc+4g`9R7"rr;ulrttb8s8Muqs81EOR$!f@eFEJ8 +rVZTlrr2lnrW)oqr+>p#cDHo&cM%89rS+cSNKU\2"n+OYkOINMf[%W\Q`So+GSscXl\>,4EWoa6Wrr2lprr2rsrlP1j~> +JcC<$rVuoss8W&ss8N)urr<#trr2utq#C?m!<<&s!WN&sru:q7q"XRIcEO+E[_T\aX0Jh:eai_8 +oCi%YrVlfrs8N#rrr*6&r;HTorVZWnrVl^(rVl`orquZmrr)iqr;6Km#Q4JsrVZNhr;QZpr$VC< +q"F4Clh12Bca^$QUo1?&]tL;;`:*KP[]QgG_TgcrnG*%`rVZZns82utr;?Nmrr<#srr;uurqufp +rr2rsrpg!irr<#srr;uurdk*Ws8;j,o[0e;S=RR^qYpHlrr<#tr;Z]os8;r7n`QNL\,NfX6a$`9GjQN0^NbhUf90QDVdai6/*` +SB(3OQB/?"gVBDDXju:EVjaR3e>e>(nb'\mRAn +JcC<$rVuoss8W&ss8N)urr<#trr2utq#C?m!<<&ss8Mus)ZKU0q!6;4VQ@;E_mHPPZ+/?SrqZ0Z +qY^rpJ1FXJi"qYID9]W2.H'qUi<]Zb=B,ht&hXGa+Kot[>jWQF,S[ZZibdCZ'BY0Q%]\!DrSj8T#WrVc]qs8N#trrE&Cs*t~> +JcC<$rVuoss8W&ss8N)urr<#trr2utq#C?m!<<&s+TD?=s8W)sq>'dNc`s=I\&#neXKo%>eai_8 +oCi%YrVlfrs8N#r!rr9!r;?WqrVcp!rr2rmrr<#rrWiE"rVlcnr;HTn./j)@qY0OHm.UDFd(-3T +V5UQ*^:pM?`UN]T\$!$L`R +JcC<$rVuoss8W&ss8N)urr<#trr2utq#C?m!<;urr;Zfq.f8u(ca]pKV5gi3\ZDpUkjd]_eCs-Z +rVuosr;HWnrVlfor;HWns8Dlnrr)fp'`J%2rr)cnrVlfprVlfprVQEdqYU6i/H#21mH)sD_7dnM +q;])cY.D-KY-+n)RA%^jqs<5"l0n06pA+R^s8W&qrVlcos83'!rr2lrs8N#srrE&rs8Drrs8N#f +rrW3"s8DrsrrE%Ls0_n)rX\YJXJDAW_s.$srVc`qs8MrrrVdE,qu6Nmqm20MVOWs\j8/fSrVld! +rVQQns8Dq,s8Murs7O[;S#4R,rVl`O[@ +JcC<$rVuoss8W&ss8N)urr<#trr2utq#C?m!<<&tq#;iBq!-8^Em&cDP*r;QT"MO^Q6QF>iMs8DoqrWN2srVuorraZ!- +rVliicDmA2d.dMRZb5?n'@Yk[bp5g +WLU$>fr^77mIS,aUW_luqT5.iZc0,8U +JcC<$rVuoss8W&ss8N)urr<#trr2utq#C?m!<<&ts8N)urVuos./`l)d(--OVQ7&7\ui-Xkjd]_ +eCs-ZrVuosr;HWorVlfor;HWnrVuiq"98B"s7lTns8N#tr<<2uqYL*frVe,Ap@7S5fZh:IaQ<9Z +]W&*H\[/KCY,Ie`amo;ri8a+loCr(YrVlftrr)irq>UBnrr2os!<2orrVlfrrr2Hf!ri6"rVlis +!<.QL[/^1*s8NN#d]]R@TYp'ls8N&tq>^Em&cDP*r;QT"MO^Q6QF>iMs8DoqrWN2srVuorraZ!- +rVliicDmA2d.dMUqVSQHT>'OdqsDLrMmE':R?>#;m`qGg[GL#c +W10g:fW:%3mIS,aUW_luqT5.iZc0,8U +JcCE'!ri6"rVlis!<2ors8E#urr2rtrr)otq#:9m"9/?#rqu^;qu$?irr2`]hpBEVY-"h*U9;o+ +h8ct3\&6_Ume$ASrVld"s8Mllrr;usrr)lrs8N,ur;?Nrr;HWnrVlip-iX/GrVZWnrV?'Kg:0orqlQhrr)`ns8<#us8W)trr;us!<;urrVulrrr;us +s8Vuq!rr9!JcD_Lr;I6!d&a%5S\s^frr)fps8W)rs8W'(s8Dlos82in^]'H+PF]MQqu?Zps8W)s +r;Q\,rVlirrVc`os7Oa>S#4R-rVlcRZ^.3*q>^0AVi\OOfWLF8e,01%Wg'C.p&G'ffVF4un`?7% +[bpW(TTckEkfB]kX4Gq)N2uF?^m_4XpAb0=TU`0nW0jO +JcCE'!ri6"rVlis!<2ors8E#urr2rtrr)otq#:9m"9/?#rr2irrr)d9rr;upn)2X:^9FfEX.uoH +k2"(d[C=''j6lR9rVc`p"onSuqu6Wprr2lrrrU9fqYpWrrVZBgrr;usrr;us!<;urrVulrrr;uss8Vuq!rr9! +JcD\Ks8N&u$2)cOW1]j'lMLV\rqZTorWrQ&r;HZms80S1PRNbH_!([qrr2rtrr)coral'-s8Muq +rr)lid&WY5dJ3\?s5LGRU!3?4pY2X/]]IhMPc*%/s50lBW7(A=s81NILT'h-SW^MAo@9S#\`E%u +Wgp3Dg9-IJ,~> +JcCE'!ri6"rVlis!<2ors8E#urr2rtrr)otq#:9m"9/?#rr2isrr)io*<-!ttrrJ,~> +JcC<$huETQs8;uts8N!$rVlfprr2os(@]bbXJVr6k3'jgVQ?brYeJ<3j6udArVuoq%fQD*rr)ls +rr)fprqu]nrr!-%s8W&rrr<#srqeMLrV?3`qtK=*`OrOSSY<@"Yb\_akg-H.WN!)3_9Ls1r;Zfr +s8Dlnqt^-frVZWns8N"Ks+14Es8;j,p!Kn +rr2lprr2rsrr)e+rr)`mrr2rkd&ED.cM%; +JcC<$huETQs8Drrrr)lr!r`,trr4M>e@r)aWl4&_afVGAWN!,9bLY_Bq#16ls8W#prVlcprVuos +rVc`pr;?Qnr;uuus8Muss!RdBrVc`pqtg3gq +k+.XChso6pQac/Gaf(]3f@d?fY4DA'QDWL4rr10 +JcC<$huETQs8Doqs8Dus!r`,trr4,2e%Ml]WPdl]afVGAWN!,9bLY_Bq#($dr;HKgqu-Nor;Hfs +rr2lor]gG^rr<#ts8W)srVZWnqY9pbq!$DM]sO]/U9hG9V75@Hd'0@HWj'(OcJnHns8W&ss8Doo +qY^?lrVlfrrr.KKJcGHDrr*B,p!^.DTV9?iqu?ZqrqZTnrr;p1rr)`nrnOlJN0q*-o)AXerVlfr +rr2lpAH)Q)rVlfrp<]e+UsJc7s8Lu_PFp+lrq4sAOM'`.XHTd=qYorCaJYK/f%@-bXn)8&QDWL4rr10 +JcC<$huEKN!<<&t!<)orqu8/;m,d*[lM0MSTVT$+Z)an,[(FWNrr2fkrr2lnqu-Nmrr2lor;HQl +rVlcos8FGFr;6Ekr;-6\lK7'am.]toYcP4C['-mQ_6g#Cg$e1Xd+$h1kj.^4rr;rrrqlcnrqlrs +r;Q`qrdk*#s7cQkrX\\MXehS[_s.$srVc`qs8Mrrrr*c5r;6HjrVlTTdDsVpp&+ggr;?Nlrr2rs +rr)lr@f?3&rr2rkcD[2/c1Cr7r8+ZAT?Qs,ptD^6^uj7KOg*O7ro1/PWQFW.s7=[8LSaP(RuFZ1 +n'\+uZJt/gUm\=5eub"6meOe^U#Z%Lrm.C1XgY0rVpkD>q;/ZJVW.URrVliq!rr5tao?k~> +JcC<$huE?J!<)orqu9glmH3BclhTYTTVJs*Z)an,[(=NLrVl]irVlcmqu-Nmrr2lor;HQlrVlcp +rVc`prVZQjrqlQhp$Co&j6la5d'Bg_]XG)S_SWaYZeP$9g="R.k3MI+qYpL+rr)irrr)fnrr)fn +rr2rsrdk*#s7ZKlrXJo%eZl*IU;cHrs8Murq>^Hn)#aC0rVZWnpug&Fd,altrr2inrVc`ps8N#r +s8HL+qu-Nns7Xa:R\nC%rVulSZB_00p&=a?WL(E_f;Xn:g%kX+Yah]7n,E@Yd\hr"o&uX)[,LQ) +WKspPm)PumY1;1.Ofe'I`/gVOqu6T@URSBnW0sR4p\t!F\ +JcC<$huE?J!<)orqu7c2mH3<_lM0JRTVT$+Z)an,[(FZOrVQ?`r;?Hfq>:-hrr;ourr)fmr[RmG +s8Moos8Dfjo]t]"ipHO1c`sU[]="lO_8UEnrWN9"rVZTmr<<,trr;us +JcC<$pAb-k%KH+NYc+4g`Tm@#rr;uns8N!7rVZQkr;HWikL%>sjRrHMrqu]mrVlfrrr2lrraPj' +rVlfrpT?WS>jX!rr;To&O.kV2rr16>S?92tRA\O.rqYE\QDW[@rVc`qr +JcC<$h>[QUs8Vfl#64]$qt^*eqYq5scEXCT['Hmn+?MVrr<#tr@n6LrVZQks8W&t +s8Muprr;rln`\l_cGdW2]$9I*`hfZ@\$E->\@oVhalW9np@J(VrrW,or;6Hlrr;m"qu$ElrVcNj +s8N9%s8W)ts8;its8N"Ks,d9ZrXf&#dB'.6S\jUdrr)fps8W)rs8W'#s8Mrnrr!'#s8VriqYpKo +!ri,qrr)lr!<)ors8?F+rVlcos7OR4S#=R'rVl`MYa(m)p&Fd;WLUieeu4_7g&(g1[@s8$j8T#D +a./'mpZ7m,\DQ`'X-p?PkJj?eXOG\"NN2CB`/1#DqZ$T@SsQ[sY*klrkkaepXH]^Es8;ios8E*" +rr1%>J,~> +JcC<$huE6G#64]$r;6?iqYq5sca'UW[Bm*@Zad$;g%t^AnFc\Xrr<#tr@n6LrVZQls8W&ss8W)s +rr;unn`Siad)X&:][,m2aJZ)H\[8QF]"c%pbNJ]uq"FR]rs8Q!r;HTnrr)fprqu`irr;uurdk*# +s8W-!rr^Ko"98Auqu6Nurr<#pp\OmgrrW2tr;QZprW)orrr;q+rr)ip +rVuQ6VOOL/oDS^ghQiKBc1_23eu>1VjjpAmYM&gQjL(\S[H%8bm)P]WZhW[RPIf`BeZG=LiT\F] +S?CDnXcKRNqo"A^iqi]Tc_$T0_698u_!([cc`NJ3j8]&UrVuius8N#>s*t~> +JcC<$h>[QUs8W&s!<;rq#64]$qtg0gqYs7WcEXCT['Qs=Zad!:f_PF9mdg/Nqu$Elr;?NmrVlcn +r;Q]orr<#tr;Q`pq=Ek.g!@[T]=ZAQmDl*([(*HFYdqK_]uoL4qtKaYqu6s"q>C3irr2lprr*#u +r;?Nlrdk*#s7ZKmrXSu-p!^+BT:j-eqZ$QprqZTorWE3"r;6Kl#6+Z&qY0jcrr3'!r;?Qms8E#s +rr2rr@fH?*rVcchbGLc,cL_#7rS=`EU!330pXZ=6_WB@IOg!I8s5^S]TXEhZrTqRqN3`6@S +JcC<$h>[`Zs8W)srVlirrWE3"rr;us"TA8srVlfp)ZK^4nCG:VWi`S:`653Pan,Dlf%]q`Mf<0eC1@QWpff"Mk&Sqs8U91R'O`DU6_UsiRbQ1N2>P6 +r;Q]os8E*"rr1%>J,~> +JcC<$huETQs8Dlp"98B"s8N!"rVZWmrVd`8rr)E?^TjlD[(=9%Xe3f0rTMnikOA3Cs8N#rs8N)u +rr)lr,Q7Q>rVcZorUJt"ah=pYWiVtfYLi@"]=,)MWM?8p`7 +JcC<$h>[`Zs8W)srVlirrWE3"rr;us"9&/rrVc^@s8Mrdf=nJiY-Y[Ybc@8So(qIuf\u/cq#1-e +qu-Nmrr)`lrVcXGqu$;rnk#KUX&T5o@'Y-_W97HP-3O;s6%+kQ_M[hkgcu(SBUulT:<=9 +jjgE$ZdRXKWL^6Ce>\>+nGC%\S_a#>s3-q"ZcB_RQ_hjafXRQ5VW.XRrr2lrrW<-!rlP1j~> +JcC<$h>\>js8W&qr;HZqrVc`qs8Dlorr;uqq>C3hrql`p(A6nGe&f8.Z*B^dd/*OZXL,RRbi&'i +rr3)tq>:-gs!@[&kO/*BrquZlrVlcn!W2forVuj* +rVlisrVZTlrr2rsrdk*Xs8W&us8N#trrE&Hs8W&us8;irrVld,p!Tq;S"@O^q>U?krr<#tq>^Ko +#64]%rVcZlrr2oq!W;ops8Muqral'+rVuorr;QH9V3Ih'p&4mfhQ`? +e,TII!<;urs8N)ur;Zfr!<7WLT`4uk&H2Y/rVZTls8W&rrr<#sr;HWo!rVomr;HZq(AI(Le]Y\7 +Za6-ldeimaY-u!ZcJnKorr3,uq>:-irVn>Gp@@qVr8kl%ZF[ZTZa[TSW2e2/eZ"qPjOC)g +Wn7(Gp"6O6PGZ"*VimC\nGhC@Pb"l#bascaZ+mfDS$1AkW/IeKpqW;rh"C^Ib*\[.e'b^oP+o4_ +S +ao;GAs8RZLR/RHkrr2lor;HWorVc`p!r`&qrr*&tqYU6irqufr9_R`+eB5J3Za-!ecM@4VWj0"F +aPH@^r;Q]kpA+XarVlcqrUfRNqt]9gY->FHZa.$OZ_seIp@$88]#`4Gf\ku^q#16jqu6WprVc]m +!W2for;cirrVulrrIOsBrr;uurmLiGrXJo$e?>dATuH9ms8N&tpAb0l#64]%rVcZlrr2oq!W;op +s8Muqral'+rVuorr;QH9V3Ih'p&4mghm/Q@c1h5.eZ"qPjOC)gWn7(Gp"6O6PGZ"*Vid:Yn,M7= +PFSYtbFOQ]YeIT@R]b/gVi%SFpV3)ng[tLFad8I*da>LkOeK"[S!/Z'j8]#Tr;O_9J,~> +bl7bDs8Vuq!<7WLSGifmrr2lor;HWorr)lr/,];Br;HWmqY^?kqtg3er;ZfrqLq[^ETV]"#?%q"s'reEQW'rr33$r;HTjq>:0h +#laf#qtpBmrVZZn"T85trr)ios8<#urVc0`!<%KJ^]+95q#19nq>UEo!<2`m!ri6"q#:^$krr)fps8W)rs8N#tr;cimrVufqr;liprVliq!WN,trr;rss(;9/s7k6QUU/YK +rVufV]qVUYp]'sF[@kV,h6W``hY@-Mn^+S8R[g";S%.GWroh(eNgIW0Y*G +g&M*O!<<&ts8N)ur;Zfrrr;us!<7WLSGifmrr2lor;HWorr)lr$N0f!r;HWnqu$Hmr;HWp)#EXP +aM,-_[H@MUX,s6a[(43+h<+8)r;?Qo+8PHkj4r/4htHfoVj4*e]=>>\]tCqif_YO,d+7OVrr)j/ +rVlcmqu$EjrVlcnqtp?lrVZZn"8r,srr)cur;HWnrVlfrrIOsPrr-Ps8M/qUT`;Es7YBYTZHHTZ_+baq#C?`d'B@6S=c1=]&WhilG0$R +RDdRYQ^FPT\?2dDhV5H/](5[@VmPO[s8UTLWl*c\gV0YYS=cUPNh5;2r;?Nns8Dorrr2rtrr2rt +rr)oto_nplrr2Wk!ri6"r;Hctrr2fpJ,~> +eGfULs8VuqpA]^CRfo['CsTsD5=\%')_\\-Pjr8c5TlLt5Vrs&K$s8Molr;QX#rr)fmqu6Wp +r;QWtr;HWorVlfrrIOsJrqHHlrW)uorr;uurqHEorr<#trr;uurqucsrr;rrrr!0&p=-:ETVBHk +qu-NorrE&rs8N#tr;cimrVufqr;liprVliq!WN,trr;rss(;9/s7k6QUU/YKrVuiX^8%j^q#C'G +[@kV,h6W``hY@-Mn^+S8R[g";S%7PYroq1hO-mi4YEkNLZa[$8]A;2JS@S1bbGMW+q#CBDWi +bl7bDs8Vuq!<<&tJc1f2s83-#r;6?fr;HTnr;Z^dr;$-brVZTjq=X:Eg=l/sgRs\6`lZ'*YHPI\ +k5#&Tp@..m_QTf:XL[?]f<:jLZEL=-VPpc:e*-]-q=s^ZqY^?lr;?Hir;QTlr;Z`qr;QX+r;HTk +qu$Ekr;HTkqu$Ejr:Bmer!<9!r;6EirVZSErQ"m9rr<#nrW)uorr;uurqHEorr<#nrr;uurr2p4 +rr)fnr;6'2WhZ,W`Tm=!rVc`qs8Mrrrr*'!rquZlrr2rr%fZG)r;QZnrr)fprVc`qrr2oqs8Q^1 +rVu]Vd`Bl&rr2rrn^k_(l21MYn'8T"p[6GIg$nt?rVQ9KbI+@Q]$]m@r;HQ[a/cJoleogm]?8UK +c.MFLdD=9(ro:W/nbrLfkg7H'lLOE(eA8T-`k.>!jT#/UrVlfprVulrs8W)ts8W)t!<;]j!rr9! +pAY3ns8W#r!rr9!qu;0~> +g&M*O!<<&ts8N)ur;Zfrrr;us!<<&tJc2;@s830$r;?Hir;HQkrr)lp#Q=StqYU3hrVl`orBL/S +r;QZnr;--YmbHUjrS=33ZcL>-\?W9LcKG$'rV5pEe\eVgXKB+qo\$LDYI(R:Wi2r(`7F5OrVH?c +qu$Bk"9&/qrVQNmrVl`pr=Jo(r;6BhrVcZmrVQHgr;6Bjr;ZWrr;HTlJc3(Vrr2rt!ri6"qu-Tq +q>UEo!<2`m!ri6"rr2rt!<2or"oeQ$s8N#rr=APKY,@tgaR&j(rr)irs8Mrrrr*'!rquZlrr2rr% +fZG)r;QZnrr)fprVc`qrr2oqs8Q^1rVu]Vd`Bl&rr2rso@_.1lhg_[n'8T"p[6GIg$nt?rVQ9Kb +I+@Q]$]sDrr2laafVo!mGc6u^!,!Rce@jTe&0]0roLi5oD\dil-dc.m.Bi0f#,#5aM!e*j8]&Tr +VlfprVulrs8W)ts8W)t!<;]j!rr9!pAY3ns8W#r!rr9!qu;0~> +eGfULs8Vuqq#C?mJc1f2s83-#r;6?fr;HTnr;QZpqag\brVcZjo^M2"g%5-pSW9kj`kJd\X0p(0 +p&+XWm,?=*X.cGi[bpQ'XduGqY,nY$WNsFkl2:MVq=sd`rVuosrVZZnr;6Bir;Z`qr"K&.rVZWm +qtp4m*`c"pAX-c +`Ua$.s67qRf^&.ujOM,V^W4!LR,e5Er;HWorVccqrr<#trr<#trW)ujrW<-!rq??nrr<#rrW<-! +rql_G~> +`;]oGZZEL@.Y/B/[e%ic9^U1#@Z_XDPs7478]"Z,/f%Ag>meMG6JcG`L +"9/8urqQKnrqZTorr2p)rr<#trr;uss8W)ts8;lrr;liprVQZorVmE%c(phrT#9dfrqu]ns8W)r +s8W$(s8DoorVlcnrVlcos8N&s!<2urp\t0js8EN+p[IP=q#CBnrVQ-KmJ-\[;>]_?nc&FSlgt#Q +rr)irrUAk&hWXV2s8)WlrpJ\#m/-\Jj5]IpnF#iAq!dP9qZ$9Kk55/VrqQ!Lna=i>_:%K6m*MSV +PiViAr;HZqrr)iqs8W)orrE&fs7uZns8W)rrrE&os*t~> +e,TII#QOf&rVc`qs8N#trrW2trIP!"s761:r[qLSZts8N$&rr)iqs8N#prrE&os8W)trs/Q's8N#trr2fprVl`nrVQZprVm3!d&^KorquBRnG<.`2#HY" +nc&FSlgt#Qrr)irrUAk&hWXV3s8;iqs7#"*mem"QjlYt$o'l8Jqss(Bqu?HQkktG[)>Wjjo't8G +_q"#@maA"_Q0&#Cr;HZqrr)iqs8W)orrE&fs7uZns8W)rrrE&os*t~> +f)PdL!rr9!q>Ua"s8W)sr;6BiJcC<$p\ufDrVuo__6:8SZ*1:0V4XWsf&+Z\\%9&MU8"]YT%^Korqu?OmeQk] +;>]_?nc&FSlgt#Qrr)irrUAk&hWXY4s82`os6nn'mJQnNjQ5aunaH&Eq=3e>qu?EOkPYAZs7u3P +o'b&B_URc;mEqeZPi_oBr;HZqrr)iqs8W)orrE&fs7uZns8W)rrrE&os*t~> +g&M*O!<;los8N-!s8N!!s8N#srri>roC;AMnc8:\nq$D$oDe@]oDS4[oD\=\oD\:aoC25;nF6GE +/+;ook0q/QV4a]l]t^hLXM)EHQD1b"]=Yu'Z(];-kJsg9^WbR"nFlSGnG_tXmfr:OnF6#;n,DnX +nc/4[ncJFRo(_hVo)J=]nH8@Ro(%A'\+:%!naZ,;n+#l9nFQDOrVuZl!<;0[p&>O$qY'OKh7]PV +R@;%[qYpKms8N)tr;Z`ps8LBoo_njjrr2Zl!ri6"r;H]rrr2rt!ri6"J,~> +g&M*O!<<&ts8mdKoFs6rtWo'l,9nF,`1mI'B/jjLuOUn4Eg]tLSDWOoj= +P+Sti\@B;pYb9,*k/OU5^<>?sn+?;Cn*fc8mI'K5n*fc6mdTf:mI0W:nEoW3naGo8n*TNAn,Mb\ +n+#l6mI0N3meQ;Ome6,LnG_kVnE]QCn,VqCnGhqWn;-Q4mf)YUmI'u@#4CmGnFQDOrVlrus8Vuq +!<;0[o`#?sp[dk2^o!s!S]1!orr*#us8W)rs8Drsr=8l,rVZWnrr)fps8Muqs8Drsr=Ao+rVlis +rVQNls8N#ts8Doqs8Dips8<*#rr)fprr;rr"98>urqud#rqu`orVZZos8N#orrN,trVulrrr;oq +s8NW#^6=\`g$@P#LP)i!s8DoorW)utrr<#orW)ujrW)utrqHEorr<#rrW)utrr +eGfULs8Vuq"onT#s8MurqZluko'G]-l0/!.%I33ClKRTukih9qkN:oqk5aZ2k5aZ)k5aYqk6U55 +kN:mfk3(q,k5OQDk5XZFjZMbikNM'jl0@KrkN:jfkNCj_ioT4Yg;gV!R?Eu9Z*0jeS?9#_LQSC9 +X/r_?U6W@Jg: +g&M*O!<;los8O,=s8N#rrqu]ms8VZ@\ZiBI\%0&Z[^N]U\[f5]]<&UD\a-j+\[]6N\c0/?\_t(! +\H'5>\H'5=\I#dV\[])V\%&lPriRNIWMu_jVQ$Su[CsDfZ*(1+StWI-`kT.#`O`"DVlH_oX0&V6 +rj`*?[^Q1Bs0E0C\@8rW\$rlV\@B)[])K5A]",BI\cfXU\[oBO\HTUU\[oDbn@JY1rji*?lam,, +kdgc)Lq3Ssrjj&Y[Bcs:X/iD*Y-5C\jnSlUrr)iqr;?QnrVliprr2iqr;ccirVl]uqtg0erVlQk% +eS`)\ZD[%VR34jbkM&7rr)ls!<)iqp&>!iqu-TqrVliq$NC#&rr<#rqY^Bnrr2os"oeQ$rVZTlr +Xo2/rVlirrVlfrs8Muss8Murqu7*(rVZWmrr2lqs8MurqYp`tqu-QorVlfqs8N!8r;HWppsZ:0R +\Z[GMiYC2r;Z`orr)fprr;uss8NB'r;HWorVc`qo_njjrr2Zl#lal(rr)fprr;uss8N0"s8RT~> +g&M*O!rr9!rr!i9rVcZlrr)fps8W#orr;o]c*F7HX0&P,XfJM(rN?.'"L,)5Y-,(6s0)L,l`gDm +!3kmps0)L,jfncg!3kmps02L+!3l$t!3Z4&s/t^l19RjeZE^U;Z*LU8WN)trV50fXTr"TbZ+.HS +XJi%kR@LCm^q-tc^pTr0USXc\VPpQ!rj)s;Yct:5XfJS-Yd+/2#HtD:YHP49YkbL&Y5YU)Y55=% +Y4o+"Y4f(!YQ1l;YlCm,Yb&$?Y-5(6Y,eLuV50rcVPpQ)bMr6qs8Muss8Doqrr)irr;Q]ns8;rq +p\k*hrqccqrr2Zl%J]&1\ur!-W4&Xrc1_)7rWE-!s8Mrrp&>!iqu-TqrVliq$NC#&rr<#rqY^Bn +rr2osrr2rrqu?]p%fZM-rVlfrs8Muss8MurqYps&r;QZorr)irs8Drnrr`8urVulr!WW/ts8W'9 +r;HWppsZ:0R\Z[GMiYF3r;Z`orr)fprr;uss8NB'r;HWorVc`qo_njjrr2Zl#lal(rr)fprr;us +s8N0"s8RT~> +eGfXMs8W)sr"oA4rr)lrqtKj[nD;*`TV8'RU84NWU8.^`"JqohUndp_#GRl`T:hgJT!=pfSHtj\ +TV%mMT:VYRTDtJgT:VUDSXuIFT(\fVScbUVSXe`2"e;-TT:__LT*CjYT:hgJT(\fVSI;'_TV%mM +T:_dKSt5kPs.B:^rh'4]:nOGST:hjLTV.pLTV8'PStD^NTUM.4R$<_pNJrjZP*MT7VOs0;Oc5!M +Q`.$^Tr+i_O,8m[Nf9-cQ_'qGUnaQTT:MRES=cOKTV8$OTqVFX!2'7^s.B=_!2'7^rh'4^rh'4^ +rgs1^m@XEM".u0USEudMS=Q7DSt>GDs.0=bSt2D!iqu-TqrVliq$NC#&rr<#rqY^Bnrr2os!ri6!rr)cps8 +gA_9Ss8W)os8W'=rVuoqqYU6jqTA( +rhfanntuPfVl0Nm!iMuqmABr]rhg@*Unac`Vl-AbSt;UMU7\*W[Jm`e]Y:taZ*172ZFduh\[K&_ +]We-#TVnorYcXt+W2?DeUnaZXTV%sTV50pbV$*ZoVPg#Q!]ZB"&s8W#qr;?NmrVc`prquirlMhXrp$qG6jl"hAdETP;XJMS[ +S"6=P\)RDds8<'!s8W)rs8;lqrVHKss8Dutrr2lrr;I!#rr2lorVlcnrquusr;HWnrVZ]m!W;rr +quQcorr!0$qu$Ekrr)iprVZQnrVlfqr@ImDr;HTnrr)clrVZWlrVc`nrVlfpr;HWos8W#or;QW\ +d^lNRR$se\j8]/Rr=],-r;QZmrVuorrVlcorr2lprr)d"rr)fprVccorr;ourr<#qrVZZls*t~> +g&M*O!rr9!rr!!!rVcZlr;@<,rVZENag\:>QC=D>TU_F9Q'Rg1QikMb4Je^2@KYGe7gSY)aW\E!Sfrqurus8W)rs8;lqrVHKss8Dutrr2lrr;I!#rr2lorVlcn +rqulpr;QZorWN2tr;Q]pquQcorr!0$qu$Ekrr)iprVZTir +f)P[I!;ufm!r`0!rr*r9p?gG?V4*F%N/s$ZN/<7BL51S?LP:D8KS"f,Jc1-!IfOo'IK4fqIKG"L +JGjutIK"]qI0"eFrd=]nomR!kIXZ_*I/eWpI/\QdIf4`rIIhpfJ,t.MrdP$#It)nlI2@?\I!g9dH$FU\ +I"?s)K85eh[*\+6r;? +g&M*O!<;los8W)t)#O.*r:]0fVPgi8^;.b1`l,X)]tV1o]tCAWs17X1!kQ"Urk,bQs183A!4qa5 +!5/)+o +]Xtkj]Y(kf\[T#S[^isJ\-0@R]=PTQ])]FQ]DoJ+])]Eu]-k8']"5Pg^q[\"^V.=n[&g=%T!Qr8 +qY^?lrVccqrr)lsrqu`prqucls8+GFqtg-aqYBp]q=j[Zp@@J*f$;=P];0o`"ghr!NH's8MuprVuflrVQTos82cprr;p"rr;uss8N#trVucqrr2lq +rr;lrrVc]qrVlfrrrW3"s*t~> +e,TII!rr9!rr)lr)>sI2r:A^PQ^+>HXK8_8ZE:.)VPgAjVPgR4iVuNX"VZWlqVPa6g!2fUj +rhd?+!2fans/,Ies/,dns/#dorh]^oVY-keVZ*IoVPX6gs//;aWMuhnVl?_uXKAJ$Z+%$=V5UW, +['Hp>Whu\rZ*CL6Wi2eoXKSb+Xfnn-XK\q3XK/J*XK8J&WMcSfV5U>jW2QVlVZ*LnVRWQ'W9^A\ +W/%8dVPU2jXKA\1Z*LU>Z)XUqS!gP1n,*%\rX/])rVuosr;HZpr;QQmq_%aBqYBs`q=sa\q"ORY +o]tJgd)j2=[&TjkR[BS=Y-Y7*R[CG=p\t0jrr2rsrql`qr +g&M*O+ohN>s8Dlmr;6?grr;urs8VrZbbBT6MNsQqR$a/'OGo.tNW4qBMMR+FL51M&2 +KS4u2KS+r2K7no1K7nl0KS+o1K7ei1K7no1KS4u2KS+r2K7ei0K7nl0KS+o1KS+r2K7no1KS4u2 +KS+o1K7ei0K7nl0KS4u2KS"l2KnTGZs+:Z4KS+o1K7ei1JqEuS&qP[gKS+r2K7no1K7nl0KS+l. +hh1r[s+C]2KS4u1KS+o1L&Qc*L&Zf*KF3?bKS+r2K7el3K`-T)KDpQ=KS>&1KS4u2KS+r2K7el3 +KS4u3LAZ`kL51M=KnG&5LP^kDKnkYNOGAC@NKTHcN/N@>Jr,JHMMR"?Jq]#=M2$kFMMI"HN/ELL +MMm@KLkgb>K7SZ/KnTDY2hZm=KS>,4K7no1KS4u2KS+r2K7\c/K7ni.KS+o1KS+r2K7no1KS4u2 +KS+o1K7ei0K7no0K'7h(JqJ`0K7no1KS4u2KS+o1K7ei0K7no0K'7i:JqJ`0K7no1KS4u2KS+o1 +K7ei0K7nl0KS4u2KS+r2K7no1KS4u1KS+o1K7ei0K7no1KS4u2KS+r2K7no1K7nl0KS+o1K7ei1 +K7no1KS4u2KS+r2K7ei0K7nl0KS4r.K8##7MN!OSOd22lLPUP7SAXFZq#: +g&M*O.0';GrVlfprr2rtrVlfor;Q?C]WAHTbg",?^;7b-`l6!?aN;NCaN:R*!m/O)prWQWpPb/hQ@a32]M`koU2 +a2l6;`m)cI^:hD"^V7Ft_o0R8rlG)Zs2Y2\rlG&[!m&L*\]=usaN2KHbK9=t"j+s2aiMSYa9]i+ +`Pfa6_o'Fl_[F>o['6[3VQS#(r;Zcp*<6$;rVuosqu6HXgssm'da?Fgc-+;QaMbp/]!q[I*4)lM +Vk]r[U7Ia?Q^3u+S=Z@HWOpgSqYC'frr;usqu?]q#ljo'rVlfpr;?Qn#6"Gts8W&trVlisrr)ot +rqulsrVcX"qu-Nns8Dooqu-Hmr +e,TII!<;ur&H2V,rr2K=YaV,]ZEgL*V5aHp%'6S6YH=n.Y-"h/Y-7i-[''J4pTF\%YHP,.Xnf+# +YHI)m!3Yans/t@b!3l$t!3Z=)s/tgo!3Z:(riZ:)"L,&2XKDK&1odU][Bcp7X0T1@Z*CU=Xf\e5 +['Qp8WiWD.XfS\5[B6=&WiDtoVPpPtY->18Z*:F8Y-.Q's/s\O!3YXks/l@*l`U8k!3Yans/qrs +)m6BJXK8P,Y-5%6ZEppFYGnCqUnOj0kktJZrVc^UrVuosqu6HXgssm'da?Fgc-+;QaMbp/]!o/Y +\@&WFWhlJdV4jKNS!oh;TV8'SX1d6[qYC'frr;usqu?]q#ljo'rVlfpr;?Qn#6"Gts8W&trVlis +rr)otrqulsrVcWsqu-Nns8Mrsr;QZprW)oqrr +g&M*O,ldiArr)clr;6?grVulqs8D9%RXopAOHb]UIt3-'K7nr6LPGb]!euD\rdt3%rdb$"s+(-# +:On"IJ:W9%JUr?%JUi9%J:N3$J:W9%JUr?&JUi<&J:W9%J:W6$JUi9%J:N3%J:W9%JUr?&JUi<& +J:N3$J:W6$JUi9%JUi<&It<3'Jc:9$JI7![J:N3$J:W9$J,Xs3It3*$J:W9%JUr?%JUi9%J:E'" +rdt0&!.sco!eQ&Wrdk3&It.HJs*t'"$%RSXJ:N3$J:W@PJcCB&JH(0-J:W9%JUr?%JqARPJcLB$ +Je*EbJ:N3%J:W9%JUr?%JqEuQ!J5t%Jd6p[K7nl.J:RWK-%:8mK8523I"-g*Lk^VeC)akd*9bWb/hN;^:O9P*42uPW2-/_UnF9J +R[KV7T:hjOWk@$WqYC'frr;usqu?]q#ljo'rVlfpr;?Qn#6"Gts8W&trVlisrr)otrqulsrVcWs +qu-Nns8Mrsr;HTnrX/W'rr<#ts8Dlmqu6O$s8Mrmr;?Hgqtp +gAh-Ns8Doos8Drr(]XI5rUnpXWj0UsgXF-T^rFOAcHab_ci25iciDDhd/VDld'q=&d*L&5d/VDo +dF-Ijr6kVm!n,HBUX&qerm1Vkk0F1WdEg+^rQYAg!6tJbs2uV.aN;ZPdF$7`bK\>VbKJ2XcH+#K +eC2RW_o^*Ca2Z3Cbg$.5#11Z@cdC.dqTo;id*T5I!7:_mo$[Nb!mo9?LX.!dc-=GQa2Z*:`l5p7 +_8US[pbs.]st +V5UT0cK"QpqYC'grWE-!s8Mlp#6+Z&rr<#tqu$QmrVlfos8W')s8Doqrqu]nrVlfr!WDrprr)j* +rr)cnrr2iorVulrrVlfqrrN,tp](9m'EA(1r;6Hkr;6Hls8N#rr;HQjrr2p!r;HZprW)oqs8W)u +rrN)qrquirrr)fp!WW/urrN)rrr*?(rr2lprr2lqrr)fprVuosrr)fps8Drr#lX]"s8W&rrr;us +!<)cns8RT~> +g&M*O!<<&ts8N)urVuos'E.q/o[gC=SZKB6Z_a7fWN32*Yl:p-Y5kg+YlV/7rilO1Z*F;6\Zl.= +pTXn+Z*CO:YPGF&YlM#lYlM#rZ2_&kZ2_-/YlM*#YlM$-Z2_&nZ2Cj+Z3[\;YHG%3Z*CM2XT,CH +X/`5&Yd:X=Xf\e2Y,n_.ZEL7*XgPO:USOrlWMlesXfeo,Z37G4:Yd:X:[CE-&V983'rr)iqrVc`p+T;6St2CCTr%Xb%&^&'X0K@bjnAZMq>C6k"9&9"rqcX!rr<#ts8W)qr;lforr2iq +s8E?)rVc`pr;?Qmrr2ourVZWnr;Qfss8N!%r;HTorr2lqrr2ourr)WlrVliq&H)G(rVZQkrr;us +rVZWlqu6Tp!rW#srr)orrVuoss8N,uqu6Norr2lprW3&urr3#tr;Q[(r;Q]orVlfprr2lprr)ls +rr2lprr;rrrWrK#rVuorrVlirrW)onrr<"K~> +f)PdL.0';Fqtp6dr;Q`qrqu3,SUc*BO-,?KEcZDLI=?ToJ:E#sI=HcsIXV3Crd%UlH?sj`I!^3f +I!^6gH[L3fH[L0eI!^3fH[C-fH[L3fI!g9gI!^6gH[C-eH[L0eI!^3fI!^6gH[L3fI!g9gI!^3f +H[C-eH[L0eI!^0dH[:$dI!bg>$[[8JH?spaH@($cHMi-iHjb:KI!^6gH[C-eH[Pd=s*aWI +IK"WoHMi-iHieYBI/J?kI/\KmHjb:IH[C'cH[:$dH[GU:&USnRI=$?gH[L3fI!g9gI!^5;Hk(UQ +I!pEiI!^6hIXQTjHN&7AI=?KeG^"CXG^"=TH@:9mI!U'bI!U'`I"$HcFaSjqH?++QH?OCOFEVqT +rHeHgom/6;H@(!dH[L3fI!g9gI!^3fH[C-eH[L0eI!g9gI!^6gH[L3fI!g9fI!^3fH[G^=mX?(& +IXZ]mI!^3fI!^6gH[L3fI!g9fI!^3fH[G^=mXAYoIXZ]mI!^3fI!^6gH[L3fI!g9fI!^3fH[C-e +H[L3fI!g9gI!^6gH[L3fH[L0eI!^3fH[C-fH[L3fI!g9gI!^6gH[C-eH[L0eI!^3fI!^6gH[L3f +I!g9gI!^3fH[C/>HQ%<]It)lmH$FU^IXm!%Knb5=PD+CE\Dm;_rVHL.rVZ]a`jE.[ZELF6XfA=t +VPU&]St#_J$CmZXS=?(BUo1/irhg1%Vl6W"][,[3rVQEgrr*#us8W)prs&K&s8N&urqlWpqu-Nn +r;Zfr$30u&rr2inrr)iqrrN)rrVl`prr*3'rqu`ns8N#rrr2os!WN&ms8N!2s8Mupqu-Kkqu-No +rr2lorVZQlrr3&trVulr!<)lrs8N&u!WDopr;cirrVc]rs8N#t!WDrqrXA`(rr)fprr)iqrVc`o +s8W)trVc`qrVld%rVZWos8Doqs8MutrVHNns*t~> +gA_BUs8W&rrr)im!W2for=Ao+s7Y?_VmF@ff@\HkaO1"=$J!SQdEp7fdaHLiqpPMl"4GTEd(7U+ +d*^86d/VJnd/;;kciDJmd*pABd,WLRd.5Qcd*^8?d-K']cdC.grmCbo):?m_f@es4dE9\Ze'lR^ +`Q69Jd*g=ebKS3/c5G$TaN)QVf$DL`e_&I&e'ujre'lamd*L"armCYls3UqsdEp5(d/_PBd/_Ml +dJqS_dJqSndJqROdJhKBcd'k^bf\)Ob0.uM`PKO6^r4:(VP1 +e,TII1&q7Qrr2lrrr;]K[[NnlYI(X;Unk0#Za@!@YHG"/Xfeh/Xfee.Y-+t2Y-5"2XfSV9XoGL$ +XTP`.XK8P+s/bdns/anUs/[3BY-+n0Z*^sM[B6@*X0Ah.US4K^Wi`J,Wi)epri-d8XfA1mWNrh2 +VlI&1Za$d@Z*:L;YHG#,XT,C&XF[LCXoGI.Xfek1XK8P,Yl:mKY,nq;Z+%BPTq/F:o)J^hrVc`q +rVZTms5B`?WMZHgUApo1TV80XVP^8iWN)ttW2Qi'Ycb(,W2HPq\&-DDkk+`Mrr;us!r`&qrr2iq +s8E#uqu6Wqs8<-!rr2rrrVQWorr;p>r;QWms8W#nr;QZnqtp +g&M*O3<0!Vrr)fnr;6BhrVuiqo@0UgJVJ],JU2EH#o= +F)ns8$Z^<0EH-#>E,p#@ErL.[EXHl.EH-#=EH6,@EpIcMEcZ>FFEI%q"a"m0F)lEcH,?EH6)>EH?2AqJug\F*)MEEq4;OE[PpNF)uGFEcQ5AEcZ>EF*)VOH[^<_D/O?9F`1u, +C2S!3F`VM=DK#Mn*H?.>C2%[6H?3tDG^Oj^FEDYJF)uAAE,TW4EH,soEshg#qu&r;Q`qrW<&r +rVlfos8W&us82fqs8W$$r;Q]qrVcWnrr2rr+T26:rVuoqqY^?krVQKirr2imqu$ElrVufmr;HWn +r;6Hls8 +gA_BUs8W&rrr)im!W2for=o80rU8%3TXrS%f[S6of%Ja.e^;bCdJhPqe'c\Ae,Rhre$d^)e+M/h +df@hoe,Rhre'QMHdF-IldaIO3s3_"udaHP3dKS%HdaQXmmaDVkTfTT;fBCg[b@Ds8)uurqu]mrVc`ns8W&us82fqs8W$$r;HWp +rVcWnrr2rrs8N&rs8N`'hVIJkrVZTlrV,U6h!4b8rVl]ms83i8r:&b+lM:JSkh+&!d,!^@n,NFb +qu-NnrVc`or>P\6rVZWoqsE>"nG`FbrVccnmG[0op\k-jr;QWrr;6HjrW<&trVc`qr>,D2s8N#r +rVlfprr2ipqVp5mp&+ggrVZZpqulutrr)cnrr;rprW)utrr +g&M*O!<;op(]XL6rVuipm`V>eV7!S5XJMhsZ*LX;X8]-uX88ptX8T1#XT#94XT,=!X95T+WiGrt +!3>st!3>=bs/YIe"0JZ+X7<:kX88ptX8B!uX6$DcX/rD'Wr9!tXT,=:XK/D%WiWD.ZEL7(Vld82 +Y,\D"X/W)tX88e.XK/:uXKf"2W2m/.Z*1@8YHG).Xob],Xo5=#Wr/n$WiN2%X/jaOs/YIe"0JZ+ +X6ZkeX6?VbX.ucqX8f:#XoGRPYd1O=Y,ne3[C +g&M*O"TSK"r;HTl*;f[4s8;cY^5d>dLjaJfCMe-:GBJ"HDJsN5EH;%u!-%pUs).aN!,_[Pdr-sY +Df0H2DJjB1DJsE1Df9N3Df0K3DJjB2Ci!s*CMe!.D/X?1D/F3.Ci!s)Ci+*.DZ"DTDJsH2rbi!Y +Df9N3Df5Pm!,hdSs)%1A"`/$nDf0IjDZalqDf5Pm'l@i,Des6,Ci!s+Ci+$*D/F**Df9OmDZjrr +Df0FkDuX\SDuX\[Df0H2DJjB2rbhaQ")`'rDZ+JRDZ4JPC]A,aCi=95DeWcqD0'c9C1h9sBk_C" +CMN`\'l7Z!BPha/DJF!.FE;G?E,fl8DJsFlD>e;LD$XrpD/3s*Df0FBDZFYRDuX\BD?XinD/X<0 +mV`)BrbqgRmVW2ED/F3/DP_7SDJa91E;jhWE;jc%DJsE1EHZb\KSbM>NNV15qYg?jrVuinr;Q`N +Q]S/BU8+N\VPjBks/?g8XK8J(Xfek5ZaI3HXf/%hTV8EubMMjis8W#srr;orrVc`ns8W&us82fq +s8W$$r;HWprVcWnrr2rrs8N&rs8Ni*hVIJkrVZTlrV,U7hY5nDiNnq>^3Q +fZM:^gu@A`s8W#orVlfprVlco)ZK^6r;HZmmGQplrr2iorVuc^iT9J$rVuiorquorqu-Hl!r`,s +rVliq(B4:4rr2lprr2lqrquclinEVhr;Q]or;Q`o"TA?!rVZWns8Dlp!<<&ts8N0"s8RT~> +gAh-N!r`,rrq[l:r;HTlrr)TK]W&'Md+$UqeCiU0f%&3qdF-Ope^N!se^`1GeP"EBe^W+!e^W." +eCE+!e^`1!e^W+!eC<$ueCE+!e^`1"e^W."eCE+!eCE'ue^W+!eC<%!eCE+!e^`1"e^W."eC<$u +eCE'ue^`a1s4&XLe^`1"e^W."eC<$ueCE'ue^W+!e^W."eCE+!e^`1"e^W+!eC<$ueCE(Hea:rf +eH=CQe^XKH&_,@]eC<$ueCE'ue^W."f%&=?f)=/!fIke+e^i:#e'lgse^W$re_&[5gY:H9f@A?u +eCN7%e'c^pe^i:%f%AX,e^N%!f)F2$f%8LPf*p<`f\"g+eCN:)f%AXRf)aIQmahEg1=k"+e'upu +eCE+!e^`1"e^W+!eC<$ueCE'ue^`1"e^W."eCE+!e^`1!e^W+!eC<%!jOF4[H.:BpeCE+!e^`1! +e^W+!eC<$ueCE+!e^`1"e^W."eCE+!eCE'ue^W+!eC<%!eCE+!e^`1"e^W."eC<$ueCE'ue^W+! +e^W."eCE+!e^`1"e^W+!eC<$ueCE'ue^`1"e^W."eCE+!e^`1!e^W+!eC2pte'ukGeGmqsd/M<5 +c-"/O`PBI3\Z)mboDegfrVc`pr;HTniiAWKVl$>hW;W\(W2HMhV50l\U8+N_Wr9"9WhuM_T:r0e +\A["Zm.^GVrr)cmrr2rsrql`qr;clsrVHKprVZWmrqZTor]L5[rVc`pk.J+HlMLSZrr)<9]suJ] +s8;inrr2lnr;?NnpY*HudI6to`il)0WjfXWi;W`OqY^?lrVZTmr;ccpr>5D1rUeaT\D7,aqu-Km +pXZsmg%,(>r;?Qms82lqrr3*"rVZWnrW)oorr2j=r;HWnrquWmpqj5Zm/6k^rVZTmrquZkr;Q`q +rr)cnrr2lorr;rqrr<"K~> +d/X(D)u]g9p>*3LSZ/ltXJr(tYH=n,WMcYnWiN5$Wr&jsWW9+!XT,=$Wj\u+XT,?uX8ohW;W\(W2HMhV50l]UnsuhXSo:= +XJhqgTVAEl]ZAdfmeHe]s8Dimrr2rsrql`qr;clsrVHKprVZWmrqZTor]1#XrVc`pk.J+HlMLSZ +rr)<:^Uhnerr)fnrr2lnr;?NnpY*HudI6to`il)0Wj]RXir8rSqu$Hmrquco!;uip(]=71o[pgd +h#IEOrVc`if"8cOo)/Iar;QZpquH]prr`9!r;HWo!<)fos8Duq+8u3;rVZNlpqj5Zm/6k^rVZTm +rquZkr;Q`qrr)cnrr2lorr;rqrr<"K~> +g&M*N"98Auqu$Emq]Ph:qt&F=Ljjl)G&:o*CiF?3DJa-'Ci4-/DJa6/DJa4hD$4WgC2.P_CqOWa +D#\;NC]eEgD/K8g!,_[Ns(_[PCMWlblYZW;!c)Lan7qu;!buLdrbV7ErG;LL%W#orCi!m'Chmj' +CMRd(rbVLL!,VXOs(q7Cs(h^QDZ+DRChmb_BH:_tAnPdjB4YXeCMn*/DJa3)B4YXdBPD*kA7]Cd +rb)dUC27QuB4u$pBkhC!Ci0/f#&S0nD/3m$q.g"GC]/)"D>n>QCM@MPCB%uKC2!c)La +n7qu;!GZEKCo)"KC]\HkD>nE#D/*`rAnPgnCi=H>G_M09/a4TJ?q#13krVZTmrr;usqu?]p!<<&sqYgQpr;HTn +q>^Ko4TGEZrVlfY]X?#Lqu6QnrU8:N\^L-LrVcZnrr)`lr;HZig;1POn,)4dYG%Yi[_0K9rr2ck +r;Q]or;?Qm!;uip(]=71o[pgdh#IEOrVc`if"8cOo)/Iar;QZpquH]prr`9!r;HWo!<)fos8Duq ++8u3;rVZNlpqj5Zm/6k^rVZTmrquZkr;Q`qrr)cnrr2lorr;rqrr<"K~> +gAh-N!r`,qrq[l:r;HTlrr)3,Wia.XaNr>egt^N3e^i:$f%A[/f@AF&f@SUMf1jiJf@AF&f%&@& +e^i=%f%/C%f%&=%e^`7$e^i=%f%/C&f%&@&e^i=%e^i:$f%&=%e^`7%e^i=%f%/C&f%&@&e^`7$ +e^i:$f%/@#kg_B:e^i=%f%/C&f%&@&e^`7$e^i:$f%&=%f%&@&e^i=%f%/C&f%&=%e^`7$e^i@' +k1BXarn%2$&D,L`f%/C%f%&=%e^`7&f%06?s4.8'f%9lO!87A(rn%2#"4u2YgA]b;gYLW:f[\I$ +f@\[(e(31)f@BlP"kM5ReCE.LeHOOUf@\d0rn.2$"P25Yg"?8Vrn-Mf1Y11.e^i=%f%/C&f%&@& +e^`7$e^i:$f%&=%f%&@&e^i=%f%/C&f%&=%e^`7$e^i=$eEGG4eCE.$e^i=%f%/C&f%&=%e^`7$ +e^i:$f%/C&f%&@&e^i=%f%/C%f%&=%e^`7$e^i=%f%/C&f%&@&e^i=%e^i:$f%&=%e^`7%e^i=% +f%/C&f%&@&e^`7$e^i:$f%&=%f%&@&e^i=%f%/C&f%&=%e^`7$e^i=$f%/L+(tR0_cHaebeC)U` +_njF8]r@g@k5PAXrVc`p#Q=T!n'SeUZi7?3ZO="?XK&8!Vkp/_TV).T(nm_&WMl\jV5C)`TV&$] +^>&8Xs8Muqrr;usqu?]p!WW,rrr;rsrW`?!r;HZqrV$72rr)fprnF39\_[&[rVlc\`ho +d/X(D+8u6=lc>lqY-"\&W2Zl#X/W(uWMuo!Xf\\(WN*#"Wqi^qWjo,0X8oYH4n8]X=K*\E*\irr)iq#Q=T!n'SeUZi7?3ZO="?XK&8!Vkp/_TV24W(o*q,X/`+rVl6Mj +V5'oj^tn\`s8Dlorr;usqu?]p!WW,rrr;rsrW`?!r;HZqrV$72rr)fprnF39\_[&[rVlc\a/GWF +nG`@`qu$Ekqu6OPrq"I@Y/KMkc)6tuUoLDm[bh#_r;Q]orVlcmr;Q]nqu-KkrVZ')U7'7*s82iq +rq44#VTJ6)qu-KnrW)ors8W''rVlfprVZWmrr*r9qu$HmrVc`nqtpBeZ^\blqY^ +g&M*N"98B!r;HQor;QRss82#sQ&1NQG&Cr(C2@X!CM[g&D/XB4DJX-+DJj<,CMdp'Bk_eUCi!m'Chmj'CM[g&CM[d%Chmg&CMRa&CM[g&Ci!m'Chmj'CMRa% +CM[d%Chmg&Chmj'CM[g&Ci!m'Chmg&CMRa%CM[d%Ci!m'Chmj'CM[g&Ci!m&Chmg&CMRbcD&[A0 +ChdQk?smGUCMn$+Cib/dNe<.hhYmHNrr)iq#Q=T!n'SeUZi7?3ZO="?XK&8!Vkp/_TV24V';D;$ +Wi;nnVPg;fUnX]f^YJJ\s8Mrtrr;usqu?]p!WW,rrr;rsrW`?!r;HZqrV$72rr)fprnF39\_[&[ +rVlc\`i#EBn,E4^qu$Ekqu6OPrq"I@Y/KMkc)6tuUoLDl[GCi]r;Q]orVlcmr;Q]nqu-KkrVZ') +U7'7*s82iqrq44#VTJ6)qu-KnrW)ors8W''rVlfprVZWmrr*r9qu$HmrVc`nqtpBeZ^\blqY^ +g&M*N!WW/tr?;+;rVlfps8D&pV6J(baNW)ag"Fs)e(*""f@S[,f%/I)rmpqt:"IqJe^`7%e^i=% +f%/C&f%&=%e^`7$e^i:$f%/C&f%&@&e^i=%f%/C%f%&=%e^`7$e^i=%f%/C&f%&@&e^i=%e^i:$ +f%&=%f@AF;ei2.1f%&=%f%&@&e^i=%f%/C%f%&=%e^`7$e^i=%f%/C&f%&@&e^i=%e^i:$f%&=% +f@JR(f@]HA"5)5Vf)F;$ee$Hae^i=%e^i:$f%&=%f@JO?fDX;#f.PY)e^i='f@\d1f$r:%f@JI# +dad%'e^`1!e^rC&eCE4)g""U'f@A?udacq!eGe"tf)OA%eH==Me("BJs47>'f@U#Qs478%mFO5J +f@JR(e^i=%f%/C&f%&@&e^`7$e^i:$f%&=%f%&@&e^i=%f%/C&f%&=%e^`7$e^i=%ea(e7e^i=% +e^i=%f%/C&f%&@&e^`7$e^i:$f%&=%f%&@&e^i=%f%/C&f%&=%e^`7$e^i:$f%/C&f%&@&e^i=% +f%/C%f%&=%e^`7$e^i=%f%/C&f%&@&e^i=%e^i:$f%&=%e^`7%e^i=%f%/C&f%&@&e^`7$e^i:$ +f%+'UeCE7*f[eO"daZk$f$DLV_T'^4Y,/Ves8Mrqrr)lsrqlZjnE8ikio&bPhV-W4e'cObaMl$1 +]=G>RXJr%kUS=BPSXuIHTr"TXSYE=4mJHh[rr2lps8W)rs8W&trr;rsrrN,trr)utr;H6ds8Dus +s8N\`Rujr0p](6mrT1_]OL=TXr;$@-rVlNE^V&"_lb]3\WkcZh[_h,*rquWm!WDrqrVZ[.m)>?M +`;]c3r;?Td]T\u)jnerPrr`8urVlNj"9&5tr:g3potR]Ul2(/S"9&/prUp3ir +g&M*O!<;rq*<6$e3riGIg"0S`,XlukQ +XTPW*X/tups/Z4#pT4Cs!3H.$"g"i.XKAW#X8o(Yck+.Xfeb)W2Zi!X/`2#rN-%$s/ZF)WMur#XfVK'*NZBFXK/D'XK/D'X/i>&X/rA& +XK8J(XK/G(X/iAbXS&[qXSJt"X/rDgXo>EeXdlKmW`ZC,Y,eV&WNVoq>C0jo=U9Z_WCXmqYpZsr;HWgrr`6!rr)Wl +#6+A4Yg;V3p\t?or;6Hcs8Mrus8Doqs*t~> +g&M*O"onT"qYU3fr=o8.iO=r/P_XBrAS5^mC2%F"DJjClE!(#rE,Y_n!,_^O2f!5FC2.NuBkqHt +C2.HtC2%EtBk_UgAn5C]AS5[hB4u$oC2%I"Chmd!BPM@"C]/'1CM[g%C27NtC2.HtC2%Et +BkhBsBkh?rC2%BsBk_SD/O-(C2eTXNJ3.ag&1b5qZ$Qns8W)qrVH$Hj5T(Vi8 +gAh$Ks8Nu9s8N&ur;Q]S];MpQbKJ2[e^W1$e'lgseGe"ue-+=Qf$r4FeH47Ne[a02e^W+7eH47N +e^Dqge^W.!e^i=%f%/C&f%&@&e^`7$e^i:$f%&=%f$r4Kec4,!eb%>me^W+7eH"+teI'gTdaHUn +e^i@&df%Q!da6:ceCE$rdeqT+e'uq!e^N!tf$r*odF?^re,7_ndfn.Gd*gFnrmUnsrmUns):d6e +f%/C&f%&@&e^i=%e^i:$f%&=%f$r6ue,n1MeEbWdeCE*)e/[#geCE1'f[eX(f%/L,f$Vdb`l?'7 +[&^Xkrr;rprWN2trr2lls!@XAqYL!YnaGi/k2YCSe^;X^_nWjkY,J+fT;&V@`W,u6qu$Kb]U#>. +iVWWNo^D/5nFcYUrVc`oq![M6n+HGLpA+^eq=O.Bm-jT>o_8@Yd)Y)5p%J.Sp@Ib@o(W.]s8<)s +p$M#2rq$9bq>L9k!rr9!rr7K~> +g&M*N!<<&ss8Nu8rr)iqqYg?M[\0G%ZE1"(Wi<&"WiE/%X8]4#WW]E*XfJN%XoGI&Xo,92XTkl- +X/rG*XSo7&XKAW(X9,N*XT#@%XSo7$XR`LnXSo7&XKAW&X95T+Xf_5s!3Pjos/cC)Xf\]'Xo>F% +XT5I$Xo>I)Xfei&XT5I"XoGI*XfSY+XSJt2XKAV+XKSk3Y-"e,Xf\e2Z*18.WsPo/W2->mXK&;$ +riHp:XfSY-YHFt-Xfee+WN*)&XK/G)Y5YR'Y5bU.X/`2$Y-+o*XrORHY-"e,XfSS)XfSV+XK8P* +XKAV+Xf\\,XfSW&XT5HfXT>N*poOLtrN$C/XK8P*X/i>(XK8Q%X8oBtXT,C)X/rD)p8e7rr2fq# +riDZm"g"]&X0&N&WtDM>ZEUL6X/iJ3Z)=7sf_YUFr;Hitr;Q]oq>V`=r;-9boC;;9l/q$`g=Fa" +ai2*1[]ld.TqS6^YH"CiS#aj'rVZcprVlfos8W&us8MusrX/W(s8Muor;Q`qrql`qrdFhGrr)iq +rVliMRZXu2pAY$ir8YG\Ogal\p@ItPo^2#8p\Opekge,?leJt=T!d&*f?Dn9rr;ojoC))8o_SOb +rr<#qp$hM?hS5P?`W,u6qu$Kb]U#>.iVWWNo^D/5nFcYUrVc`oq![M6n+HGLpA+[eqtBRJmd^#E +&bYr!psR=EnbDqTp@e+Hmdg,Or;Z]uqXs7?mJc_Zp%eRbrW<-!rr2qJ~> +g&M*N)?9[4qYU0fr;HZprr;lNZB^K5LNm]NC1qD^D#nNmrG_dS!cW-urGDUPrbVUO1i$i@BP;*o +BPD0oBk_6pBkV0oBP;*nBPD-nBk_6pBkV3pBPD0oBk_6oBkV0oBP;*pBkcmJ")2LbC%u?EB5)'n +BDH6@B``$`C&VlIBa/C3js8Mofn*f]$^RL8&s8Volr;Z?# +QD;7Squ6Han*KE1p%nUbrVlcjn*96-p%S4Sq>LL9k!rr9!rr7K~> +gAh'L+T;??rr2lrs82fqh6j/d_oBjHeC<(!daZgse^W.#f%'cL%b9(Ye^W+!e^W'seC2mp]$gi2 +e'lgqe*tledf\+Ke'c^o"k(lKeC2n/e-4=NeC2johp_VR"4P]Fd/MGkck"ONd*^7fcHjkdda6@j +e'\0D'@P:Ve'laldF6RldaQ[ndF-Lmdf.Vod-T-ad*^:jeC;t;eGmu"eC2mpe'eKKe'lgqe*tle +df\+Ke'a-&s3_)"eCE.%fDX;!f+6H]dEp.Y`ko9eXOI%Grr)iqrquourr2Tj"9/8urVZR5qt^!] +p@\.MlJ9h)\$)a+US=BOUnFaCs8W#orVc`ns8W'1s8Doqrr)fqrqQ$NnbN1arr2iqs8E#ur;Lg: +rr:W;O0[F2rVc`nikD%HZ0Cr;air;W\[90(m/HkCe'Zgt]qgm]XifJLajTGPs6\@Q]=l#%g?nb7 +qt/ji]=G\iYa_!$s8VrprVuH&Q_D4Tq"3Ig_7dFpd-(6(rqc*<`4*4kbg+Phn,)nDe%`?",f7jK +b2<-mbJ2m%le0b9beq**_pdiCrVuZQa1&Rpa2uTXl1b/U!rr9!rr7K~> +g&M*N"onQ"rr<#trVujL3EYFq_qXfS_-X0/S*X/rG*X/rG*XK/D'XfJN"XT,@#X9,N*XM1h: +X8oC%XT,C&XSJt%XKAV+XKDB$s/c:&rN-($riH1'riH=+Xf\\+riPss"0JZ,XnJguXfSY,nuVkn +rN$"$rN-%$"K\`-XK;E'!3Gmrs/Z4&qQ'b#XK;6"$EUA4XK8J(Y-+n/ri@ZRXfS\-XK&>(Y,nS% +XfSP(Xfee-Xfee-X/rJ*WiW>(XK/D(XK/A%Xfeb,poXS!riQ4'!j/W.riH=)X/i>(r2]n#qlBe" +rN$1'XfSY,XQlnhXKAW#XT,F$X9>Z,XKAW(X95T+Xf_Q's/l*uriH:'XK8PtX8oC#XT,C+XKAS+ +XfS>#!j&N+rN$m:X/`.uWiN;)XK8S+Xfeh2Z)aOmc1h59rVlfqrbeq**_pdiCrVuZQa1&Rpa2uTXl1b/U!rr9!rr7K~> +g&M*N+92<:qu$Bhqu-QorVu`GXHep.K6h]ZD/O6-DJsE2DuO\VDf5Pmrbaf9D/O6,Ci+!'C1q6n +BP2!lB4tskBP;$kBP1skB4kmjB4tskBP;$lBP2!lB4tskB4tpjBP1skBkV2FC&_rIC&)ESBkV-l +BP1skBkV0oBkh?rC23Z\s(DOJBkh?srFu:Hs(MRMCMIY_CB&)BC'86cCMIS]C(P)oC2%EsB4kpl +B4tpkBkM)VBG5#lBP2!lB4tskBPD*lBP2!lBk[K[s(VULC23]]s(_=C");UdCAr#kC27U"Ci*s) +D/*d#Ci!m"Bl%R"CMIQsB4u!nBP(mkrbDFJ%;BQmCMIQuCMIQuCMIV]C]A5MCCb6!CM[j(C2.Ep +BPD-oBP7rr2c_gVgS1^rt$Lg[=q6l.!PY +[j8l;b0/`AqTQb3nEelXe',_B]>N+]pAP$dj2\X=_8j[BfBN&.rW<-!rr2qJ~> +fDbpOs8Voo)uT^5fs.H\_8XLAda?LicdC1gda?Lle'c[ldJ2/id0%hEdEoJP"jkZEda?JAdehGl +df.Yndf7Yodf.T/da?FhdEp7fdEp:hdEp:gdaHOid*^;?d/q\BdJVAbdJhMidJqYld0S1Id*^7h +dEp;?df7_pdK7hEdeqK#da?FhdaHOidF$=frm:_mrQtbpdF-CgqU#c!cd:%_bg+P[c-FV\ci22l +cd:"arm;2%dF-FhdF-Fhcd:%ddJhJndEqm?!7LhnrQkSkdJ_Ghci;;ici;9)cd'h\cHjkcdEp7f +dF-IjdEp:hdf%Poda8!@#L^uGdaHLjdeD/hd/MGlciDJmcihbCdF$DAd0%bAd*hp@s3_(tcdC1h +d/MDtdaQ[ndF$CkqpG\rd*U4gdEqg=s3LqsdaHOid/MGjd%A_cci_\De^j`Ms475%&(oLbe^`-r +c,doA\uVgWq#:6krr;rrrqZNirp]q#q=3_0gX+'WYFh>eV4c0/qu$BjrqZTmrXSo)rr2]Sc,7fb +o_nggrVldprVlirrr;urrVlisf:%`'fCf.Bs81ikTTceFk.R=YZE'FWR^(62o[1.V^:^J7P*MQB +a1e^ei;`DqYF_2PSu&sFm/-J4_5NceT;\HJSBq68=Si'ss7*jjT#'LUg:F5WT9kqGa6!-so[:"9 +Q'n>FX0'.np$Bl+Ruro-Y,SG@o_,\baQM?dXKeb!R[9PJc0PB)i4l"TT:haLX1HpOrVuiorVuos +s8RT~> +g&M*N"98B"rVlfpr=Sr)pXH:;VQR&&YHG"2XfJP*ri?F.Y-+n/XK8P*XT#@%X8oC%XT,C(Y-"h? +Y5bU.Y-"h-XfSZ&XT,=&XKAT%XT5O&XUhM9Y,n_-Y-"e.Y-"k1Y-%W)s/Z7'Y5GC*Y-"e-XK;,t% +BQ\6XK8S,XKAV-Y,n`&XoGL$XT>N*riZ:'riZ7&s/lj6Y-5"1Y-5%3Xfeh/XfhK%s/uC(qQBh"$ +EU;0Y-+n.Xf\b0rN-p>Xf\e0XfSY-XfSY-Xf\Y*Xfee.XKAV+riH1'q5jn)YHG"1Y-5&,XoPU'X +p(r1Y-"h-qlL"&Xfee/rN6+&qlL4.XKAY.XKJb/YHR]'s/l:'riH=+XfSV,riI3DXfee-XKAY.X +f\b/XK8P,XK8P*XKAY.XfSV+Y5>@"XT,C&Y5#+#Y-"f'XoGI+XfSY-Y-"M&#d(84Xf\\+X/c/u' +WS79X/`2#XKAV+Y-4mtTZZs)r;HWos8Drrq>L3inGa-uo'>Amd`]J3Tq8EbU^Em% +fQ>)rqPU"_p.04rVuiprr,jprr;uss8Muqrr<#MRZ=T'p&=sjqr>JdQ+,r?^7M%(XIGECZI/=;d +^Zd$]rRWdQCY>&^TY90s7OgGTU_RGVn1CHrV,6fWg]9IW1]BFci=#IqZ$Qpn\:E^_;t%<\u;?qQ +^Fhojn\rKd]oC0RA$X^Y/&rgmEMr-PE_fGX/sD:pU?j=l/&nOZDs[hR%:G*li-_<^S70hTUhgX]% +?ELs8Dlos8W)us*t~> +g&M*O"onT#rVlfqr=],.r;QH=VN[+$KRA#aE,or9DuO\UDuFYTDa82ZDf0E0D/X?/Ci+$*C1q9p +BkV3pBPD0oBk_6oBkV0oBP;*nBPD0oBk_6pBkV3pBPD0oBPD-nBkV0oC2%DJC+sF +g&M*O"onT$s8N#ss8W$2rr;cDYGSS?`lH9Kcd'bYcHje]UX'V!cd0tacd:"acHab]cHjkacd'i8 +ci;9>cd'e]d*Bn^cd'e]ccsb^cHXY\d*U(_c-Ob_cHjh^cd0n^c-FV\cHc=5s3:ttcHXY]cd'h^ +d*MX8s3L_i$I6uDcHOS\d*L"_q9KMqcd:"`cd:%acHjh^cMl,icMc&pcHjk_cHjh^cMl,lcHXY[ +rQQG.bKS8Xcd'k^cdC1gd*L"`d*U+ccd:"bcd'h^d*g>?ciDDjd/MAkci_V@daA'?s3CSfs31Je +s3(kqbfe5Sc-FY]cHXZ6ci;8mc-FY]rQYo!cHje^d*Bn_d*9qacd)@4s3CVirltMirltYmcHjh` +rm)P/bg+V^cHae`c-=S^cd'n`cHt"ed*L"adEp5df@nref<>of@JO'd*'PP_mueIdJ*P8s8W&ts8Muqs8W&brr)d"r;HTlqu$Hm +rsSVpl-?E&Xf8):mJ-\["9&9"rqcY/rr<#srVZ]njM@X\VSD$^rr)`mrVl`os8Doqrr)fprr:ZE +OKR4.rr2rpj1_.N\E2DBN/aO5Y+UrCZK(8cS!pCfZ(RALT[TsWDAkeX*a +S=ujYR#RZbs8Q$nrr)lf^6P5*hqG]6RAI$\Q^abfn,;7NQ'nAGVOj*AY0Z7\Y*tcNU7e*HTXO4Y +V1l53e"MtqSYi +g&M*O!<;uqrr2op')V=JX.H2mYcb(0YHG"/Xfee.m]HPlr3!c;s/mcRY-+n0Xfee.XK8P*XKAY- +Y-5%3YHP+3YHG"2YcY%2YHG"2YH=t2riHI/YHP(1XKJb/rN6=-Y-"k/XnJn,Xfeh.Xg"t1Y-+t3 +Xf_T*s0)I)#Hk86Y,ne0YPt[+YHG&-YPt[3YHY14YHY75Y-5&+Y5b[4Y-5"3YHG%3Y-"i)XoPR% +Y5b[;Y-"k1Yd(F:Y-"n3YHG"0Y-7i-!3Q7'rN-=.Yck44YHP,-Y7n(@Xfnq2YHY45YHY:9Y-5%3 +XfhZ,"Knl1Y-.c+"g5&4Y-"l+YQ(a.Xfek2Xo>I'YPt^)YQ(a)Y6V/4YHG"1Y-7f,!3c4$-a0\T +Xfnn1YHP(2Y-"e.Yck11Yct41YHP(0Y-"e.Yck43XKJ_.XSo:+XfSV+Y-+u(Xokl3Y-%W)s/c=) +Xo#8uY:?]YYHFt-WiE,"WiN5%X/`2!WN3)"X08\*SY=6uq"k$jrVuosrVccrrTsOZrVZ['qY0=& +YFr)"V9/-"rr*#us8W)ps(VK4s8Doos8:roUme0qhtI'Jqu-Kmr;Q`prVlfprVlfrfq=G0fCf.B +s81ijTpN@RgT$9pUTgtsPaAc=mD5BbXh(j5Q^XVS_QK6$gATm3R@^CXUn4?if_"IHVjs?RWMc,C +S^RQ<;u-Fks73mhSAO1;]:PFeXeV5PUVlR!ij"c:UT(,_R%1D.l. +f)H]gs8W)ts8W)urr)cdcD-J]Ne`(,EcQ5BEH,snEW9t_EH#i6Df0K3rGFE.Chd^#CMIX#C27U" +CMR["CMIU"C2.O!C27U"CMR[#CMIX#C27U"C27R!CMIU"ChmhMCi!m'Chma"C2%EtBkhEuC27R! +CM[d%Chmd%DJa3*Chmd%ChRR#CMIX$D/F'(Ci+$,Ci!s*Ci+$)Ci!m(D/=$*Ci!s)Ci+$)CM[j* +Chmm*Ci!s)CMIU"C1q?uCM@KtCMdj$CMR[#CMIYaC&r-drb;UQD/*d$D#S2_Ci+$*DJa3*Ci*s' +Ci!j$CMRbcC]A2dD/O90Ci400E,]`5DJsK5Df0E0Df0IjDuOV[DfB]8Df9T6DuFYSDuXbYDJa9/ +r,;OO"DhpmD/K8irbVpWCMIU"C1q?urbMOJ*c#M+CM@KuC2.O!C2I^!D/:0krVuosrVccrrTsOYrVca(q=a+"Y+MksUr_rurr*#us8W)p +s(VK4s8Doos8:roUme0qhtI'Jqu-Kmr;Q`prVlfprVlfrfq=G0fCf.Bs81ijTU*.Ng8U'lU9Cbo +PErQ9m(f0]XLYX1QC4DO_6'#ug&0[/R%:1TURe-efCS7DVOO-NW2H&CS^RQ<;u-Fks73mhSAO1; +]:PFeXeV5PUVlR!ij"c:UT(,_Q^b2*kglr,R\6FLT:;O`mI[91Zes9,Pb"DDW1B*>YM&^:^n-pm +Z`'.PQD_sor;QWlrVlfrs*t~> +g&M*O"98B"s8N#ts8W$2rr;cDYGSS?`Q--HccsYVcHje]p!gr6>>hcMPip +cHXSYcHXSYcd'b[chbodbl5imcHXSXcd0n]c2>lcc2Z)hcN_\>c-FVZc2Puhc-H11s3CYhrltYk +cHXSWrQP>drQY>cs3CYhrltVjcHac8c2Z&hc2GrcblQ,7rQP;d"3f$8cMl&ocHXVZcHje]ci2>e +ciDDkciqhDd*L(crm:eocd2R:$.$oBcd:"bdF$;=c3V\?cHXPUbfn?2bl5lebQ,oecMu/hcMl)g +bl>ofbl5ipcHXSXcHXSWc-=GVrlkDe"O>9:bg$.4"3o'6c2Pugc2Gp4c-FSXbg+MXc-FSXbg+MY +cHje[c-O_[cHje\cd'e[bfn>Vrm(Pg!m]->OKQpY^o!Qo^uEnCPb5M6c* +g&M*O(]XI4rr)fprr)cmqtp!4X.Q8mZ*1=5YPkU(YP,.!Y6(l1YPbO'Xi7FEYHG&'YQ(a*YPYL& +XoGR'YPt^(Y5tf0riQ[5Y-"n2Xf\e1Y-"n3riQ@*Y-"l+Xo5F&XoGU&Y5b^)Y5bX(Y5b[3Y-"h0 +YHG"2Y-7W's0)I*ric=(s/c@*Xf_K'riQ4(s/u@)"0J`0YP>7#YPbO5YHFt.Xf\b/Xfek2Y->/0 +YPbU)Y5YX#Xp)#2Y-+t3r3$%&!j8Z.rNH1%!j8Z/riZ:*s/uU/Yck43Y5YU.Y-"n2Ycn&/s0)F) +s0)F)s/l=(!3Q7'!jAc/riQd5Xfeh.Y-"h-Y-+t2Y-"l+Y61r0XfhZ,s/uC*s/m?FY-"h/YH=t2 +Y-"e/YH>"4YH4k0YH4n1Y-+t3riH7'Xf_T*s/c:(ric@)!3Q1%s0)=&ri_or'!8@@XfSV)WiE%u +WiW8%WiE%urN#t%&ZM@pan#9)s8W&ts8Muqs8W&arW<&trr2lqrql^&r9qk4Y,%]-lhg\\rVult +rqcX,rr<#srVZ]m`gMsNQ))Lfr;Q]o<;ujqs8Doqs8N#qr;YWJPd&a1rVZ]nikD.Q\EMSFR[:%s +iQn9WUY+bER[LG)bcmP2^=Uo?QD<($`Kl[kdFH+4S>3s^f;b.1]@>-2S!';hs8Q!mr;HZe^QtJ/ +f>=AOT"We)\>,%ZiU=aUQF+rg`i"r^Xio2,TU<(8ftO&EV6oO_YDKC7eu"LmVT.*!T95M[le/4s +UsIoGZC$TAbOGE,qYgBls8RT~> +f)PdL!<<&t&-)Y/rr)ccbbC2ZNJ;k)ErL1\F8p7[EY`Y8EcH,?EH#o:EH#i7EGfZ4Df'?-CXd/% +D/=%SD#eDMD$4ZjCM[hdD$4ZlCi+%gD#S8[DJX-,DJa6.Df'9,Dte)JD#eJQD$+ZoDJ];hs)7mR +s(i$[D/O9/Ci+'-D/K8i")VpmD>nGND?"DQDJfAh!GcNEC]A8ND#\APC_CT&Ci!s*DJjirc%jTrbqmVE;OPQDZt#tEH,o9rc.pX!c`0urc%pYrc%mUs)&BdDJjB2 +DJsE2Df'<-DJa6.rbhmXDf0FhD#\>XCi+!(Chmj&C]/&LC]8,fC27X%C2@[#C2@[&Ci!m'Ci+$* +CMRd)DJfAj%W-*#D/O3,DJs?-Des3*rbW-_Df'9*DJa-*D/=$*D/B2es(q^P#]+9lD/O6.DJo;f +!,haP!H)cRD?t)sChmj'CM[j_D#\>tDK'T9EH#f4DJa3.F*;bQH\.'2LQf[Gq"k!irVuosrVccr +rTsLbrVlfqr;cirrVZ[&qsMY0XeVK)lhg\\rVultrqcX,rr<#srVZ]m`gMsNQ))Lfr;Q]o<;ujq +s8Doqs8N#qr;YWJPd&a1rVZ]nik;%N\*)ABR?jeni6J'SU=\PAR@(5%bHI>.^"1];Q(lju`0HIg +d+#n0S"daZeu=q-]$ej.S=AOT"We)\>,%ZiU=aUQF+rg`i"l[XNJu' +T9lk4fY*iAUpK=[Y)'13eYS:iV8^lrT95M[le/4sUsIoGZC$TAbOGE,qYgBls8RT~> +fDkgK)ZBU3rVlfprVlTBYG\Y@`lQ?JcHaYWc-FSYp!3T^rm(Pf`6JG/cHc..!7(Sgs3CVgr6G;d +!RAsebQ5u4rltJe+j\HYbK\AYbfn>Wc-4ARc-FVZbfe8Wccs\Xc-=S[c-4E1c2Z)cbm2J;cd'eY +bg$.4"O508cd)O7"O>B=b00b.s3CVgs31Je!R/jdc2Pugc2#Wgc-4JYc-?42!6tJf"4,6:cMZ#f +c3;VDdEp4drmCbm&^etPcdC.gda?Ffcd:+gd*L):dJqPnchl)hcMYuucHOMWcHOMWc-FY\bg"H4 +c2Z)hblGucblZ,4bl5libfe8VrlkGerltGdrltJe)U$@LcHaYWbKeG[c-FS[c-=JWbfe2TccjVX +rlc&$c-4JZc-4GXcHFJVbKS8Xbfe3-bl,fdc2c2iblc89cHc=3"O,-8cd2U9"jG69cHOM/cMu,l +cHjh`df.\seCE+Kf+-Hbe^Mjfb/V#mVp=u3r;?NorVZZgs8W&us8N#rrrW3"s8Dp0rVZQiqY^9i +rqFpGVk'?olMU\]rVlfos8W'4s8N#rrqucn[>LEWFQda]mR&JL&pZoJUOfQI@Y+;K;pA3LJR\-kJosBa\f$pU\ +T"F(Tg9d<3\DPGuOM:8^o\$:)RE4msqucrurr2osJ,~> +f)PdL(B=C5rVulqrVQKadArq+3Xfek1XfSS+YHP+2XKJe3Y-"h/YHY46Xf_T*rNH1&$*UM6 +Y->+4XK8T(Y6;#1Y->,/Xotr5Y,eZ"Y5YR&XoYZ.ql]q%!3Z.$"g4u2YHG&,XT5O'YQ(j*Y5kg+ +Y5ka)YQ(g.Y-"l+Y5k^'Xq7_`1W@$iqMlcXHo6us8Vup +rVuE%Q_D=D[$dAmi:ls']oSN/gTR!Ce*m%s^6Ok`a2][6T;g96qqSQLTsX+[[ZIZEeu=n,^#eqC +[[NAiho_FM^@D*mfrL+#aRK3,"9/?"rr2qJ~> +g&M*O!<;ur&cM_/rr)`kn]IMbN/N@:G&h[&FT6C]EtWM7F)l>CEcH,>F)c/u;EPZVnDuFV` +DfBZ5DfB`:EcH#9E;aeUE#EY7E,KQ4EcQ/=E,fl:E,or;DJsN7Df0K5rGN$_EcQ/u;E,]l;D/aH4qeugYDf9T5E,T]7rbqaS +!HE/ZEW:(VDujrtr,2UTEW0qWDuX\VDfB[pDuX_SDujlprbhjUD/K8i")VsrEW0qWD[(0$Ec>r9 +Er9nXE,PVm!cW'qrbiNjEH,l6DfBW4DfBZ8F)u;?E,TZ6EW0nWDu=PUDf0LmE!C5uE,fi8E;FMP +E;sh]DJsK6EGo`4rc%mUs)8!VDuOVnD/=-1D/F3.D/O90DK0Z7DK'T8DK'N3DfKc8rbh[QrbqpW +E,bVks)&<`DJsE1E,TZ6Df9T4D/Q"cs)/ioE,p#AF)l2:Df0E2FE_qSI"I-1L6BFAp\OpgrW)op +rq?BlrW)utrr<#trr<#rrW)orq[NK%rr;cDYc+.a_EWFQda]mR&JL&pZoMW +OfZRB.^,GBdJ*OmZ^d\pl1_THXk2+%PFoMLo\?jCP.BJmRukASqt/RBNL@lWrqllts8N#ss*t~> +g&M!L')hb)q>:-jrqu`he?5^T_8j[ArltGdrQY&]s3:Sh!mf0;`6SP2cd0o9c2Gohc-FW6blH&c +blZ,6c2Pofc-6.0r6-#&cHXV\cd'bZcd0k\cHje]c-4JZcd'e[rQbGfr6G>e,gO`]cHOMXcd0k\ +cHaVYcd'h[bg+S\cd'_ZdE]t\bg"M[bK^"2s3Uel"4#6onbfe2Rc-=JWc2Q#gcNVV?cd'e[ +rltMgr6G>grltSkcH`32rltSkdF/!B!RfNtfDjD5eBlIa`k/:Mc1Lo2rVulss8N#trrE&as8W)t +rri<#s8N#sr=T&-o?aS7StNsarVlcorr<#tr;Zfr(B=@3rr2for4SAeU7@dejneuTrr2lrrr$p< +rqlTjrr2rOTT6,.q>U-aKCc!deNe@psbn%`lOpC\)d>as3@.#XMM_0Wh?o^ +rVl-*Tp2bFoWjL[g!QIXY0ce=kJF!Z[+E'XRaV68s7*R[S&Odos8Murs8W)us*t~> +g&M*Orr33%s8W&ss8N#q&,";LT;JitY-"e-Y-+n/XRiRoXT,C(Y-"hEXokf/Y-%])rN-X4Xf\\, +Xfee.Y-5%3YHG(4riQC-Y-+n/rN?+$s/ZR2Y-"e,Y-+k-XfhZ*0W_CZY-"e-Y-5"1Y-+n0Y-"k/ +XKSh0Y-"e.Yck.0Xf\Y+Y-+n-X0&S.Y-"b,Ycdu,#Hk;5X0/Y/Y5YX)Xokf/XfhZ*"0Sc-XSo:$ +XoPU"Y5bX(Y5bU.Y-5%3Y-5&-Y5YR'Y5bU*XKAW(Y5YR&Y5GF$X;.k@Y,n\)XKAV+XKAY.Xf\b. +XfSY,ri?+%ri?7)Y-"h-riR]PXK/A&Y-4t/Xf\\+Xfeh/XfSY,Y-+t2XfSY-Y,n\+YHP15Xf\b/ +YPkU,XfSY,Y5YO)XKAW#XoPU'XoPU'Y5bU*Y-5&.XphD6YHG(5YHG%3Y,e`)YQ(d)YQ(^)Y5YX& +XoP[)Xotr2XKA]*XoPU"Xokf/Xf\G&s/c:(r2gp>Xf\\+X/`5#WN)u!XKSk.S=R[hq>:-jrr<#t +rr;uurp0Uarr2p#rVuosrr2lrrX\YLY,7kd_rq!trVc`qs8Mrrs8Ef6rVc`pqu6N,Q(F_?S\4(\ +rr)iqrVulqF8u7:qu$Hms4X-+XP +T$H,fMkd_p]Xb,6R]O95T:!Lms8(rnQ'05gs82fos6mUeTtnaPPb-=urVuZBSsRI +dJkKks8Muoq>'L#SVr>\JpMNXE,p#AFE;MFFE;PGF)uGEEcQ/?rc.pX"*8R*F2rA)F*)MFrc7sY +&9;i5EcZAHF`qnKF*)MFFEIM')0Bq@EcQ8FG'.nKF`heJF`_\EEccDDEcZ@$F#eAdG'%bEE,T]8 +DK'Q5E,]`6E,T`9Df0K4E,ol8F)u>BFEDSDEH?8EFE;GDGB@nJF*)YKEHQDFrcS6a"E\^,F*.D& +"*AU)ErC%\FEMd+FoQUcF`dV(s)e9^r,hs]&9Di1Df'?/Df9N2D/X<1DJoGjs)&*\DJj<.DJa6. +rbi6`D/F0/Df0H2E,]`6E;jbZE,TZ4E,kkq#]=U$E,]f:EcM(t&92`3F)l>CEcQ5CFE;MDF*%>& +#]k$,F*)MEEHD,%!d&L)qK)^Yrc7sY)fg"?F)l;?E,fi8E,]`7E,KZ8DJjH5E,fl9DuO_cEccDE +EcZ8?EccDEEcV/#s)JNhFEDPCEc>u;EH#o;rbr!XE,ff7rbr3aE,]f:E,fr@FE=@%,]e'LF)c/> +FEMbLF)Pu6DJsN9G'8(VJVAl4OMC/Vqu?]qs8W)ts8N)uli7"arr3-"s8W)trr)lr&+n8OV4XI! +kl(MZrVlisrqufrrYGP4rVlfnrqsHpSt_aG]]K"hrVlfps8Mtu*eX1l'8R)8b#qWPYYP0!\' +qu6Qnn%>!\^rW[CT$mE4s7k*8Qc@+ARCD8Ps8UE9Q`\-A1om=]j8JuEc(p]3m.[lJYM.EuQES^. +roh7qQF5>ZQ($/$rr;MtOIO5Vrr;urrr<#ts8RT~> +g&M!L(&e(,q>:-irqlWfe?5^U_T0dBcHa]6bQH/:cd&]>s3:kqd*U+bcHji8c1B-[c-611s31Mf +$d?lAcHae_cd'h^d/2,pd*L%`cd'k`ci25iciDDkcMu3;cHjnacd'h^dF$7bd*Bh[cd'h\c-FY\ +cd'e\d*Bn^bg"M[bKS92bnn[Ocd9t`cHjh^cd:"`cHjh^cHsn_cd2O7!71Pf&^ShNcd0tbcHab_ +cd:"cdF-JBd0%hGe'e*A!n,QHrmCqse'lgqrmCkqdaJ-DqpPAj#L_#Hd*g@gci2;nd*L#9cNMP> +ccs`6c2c2ic2l8:r6PDf"OGB;c-H=8'$nkJcd0t`cd0n]cd0tbcHXV[rm1\lcMl,icMc&hd/D;j +cMu5odEp4bcMc#fbQuD9c-4ATc-4E1c2Gidc2Pofc-H=7s3CYj"45B?d/MAkcC3)Zci_V>cHlL; +rmDV1e(*(%f%/?tc-=;AX/O;8qu$Emrr<#trr;uurp0UarWE3"rr)corV[9#e?>dEV8_Zrrr)fp +s8W)rs8W(7s8DoqrqcWkd\i7aNi:4jr;QZorr)lqr;HZpqtg6jrr:ZEOKI++r;-EjiOkeEYi=H> +NNVRDs8Bm!Peu4mVkg]Mgq&fBddu2"SY=0PQ[tHgPaIr'K86&*YFV3'rVuib_j-2"s8Vrnr(m=^ +]9T#"^T!KrgACjKqVS9>]tU##\F07os3[U5ZGF)ESA"(_s74X9Q*K]KY`,d?d$p6)fD#7.`2/g- +dC,:5fDkgLppQ6YbO>H1r;HTns8RT~> +g&M*Orr33%s8W&ss8Drp$hVfGT;JisY-"e-Xo>I)XfSW$XoGI(Xfei)XTP`.XfT@@riH(#rN-"$ +s/l7&!3c7%r2ot$riQ1$"Knl/XK;E'!j&N*r2ot"rN.3DXfeh/XfSY-XfS\/Y-+k-Y-5%1XKAV* +XKAY-XK8P,riH[3Y-5"0XK/G)XfS\.Xf_T*s/[*?XK8P+XKAY-XK8P+XK8S,XKAV+X/i>'Xo#1# +XfhZ*s/u@&!j/Q*r2ft#riH4&X8/gsX8]4#WrT0uXT#7%WiN3"XS]'tX9u#0XfSV)X0&M*XT#@2 +XfSS(XKJ_.XKAV+XSo7%Y,qT($*UM6XKJ\.XK/H%Y5bR7X/rG*XKAV+X/rG+Y,n\)XSf1(Y-"k/ +Y-%Q's/l7'%Bch7XKJ_0YHG"1YHFu*Y5YU,Y-5"1rN?1&$a-V6Y-"h/Y-4t1YPt^'XTkr1Xfeh/ +XJ)`rXSf3uX9>T(X/`/uWXc,6Yc=7c`pig$rVulss8N#trrE&as8W'#s8N#rr;Q]o&H;IUZ)OOs +`T[7!rVc`qs8Mrrs8Hj7rVc`pqYpB?ViljrW6Oc.rr)iqrVuiorVuloqY^Bms4O',Xk*.BqYpEO +]V1LojPI&#YjD;frl11g`88G3VRG+5]U5>@p"[!JUW_)RK:&$lR[o[sM4h;]SXd^us8;?(Q&EW] +s8)Zk:]KssQ(GS%WKj@7qu-Qjhl3!V^7:Crmem+be"r_E_n2Y6^?>Ipo[g.3[IF!tNj7EgSX$S8 +q>]d#Vjb$@[ZmK;s8Dum[Z@3,n,E@brVc`qs*t~> +dJk!]s8Muoq"O3sRtuiTJ9Q$ODK'W;FE75!"`e[*EH#mnEnGND>nD]D/O3.DJa0*D/O60DZ+DQDJfAj"Dr$oD/T;j$uU!& +Df0E/Df9K2EcV/!s)A!X#'+^'EcZ8Ar,Vs\F*)L&FSp1]EcH.!F;f4@EH?2CEcZ;BEH?2CFE2A@ +F*)MFEcH#:EW0qUE>ie9EGof:EH6)>Df9T7EccADEH?5CEH?2AErL1\F8g4[Et<;2EGof9EGof9 +E,fi9EH1ts#]F[$EH#l:EH7[m+EDIAFEVkOF)Pu5D/O<5FEMbPItWN-NkarTqu?]qs8W)ts8N)u +li7"a"98B"rVZZor=Ju&eZc!IVT%csrr)fps8W)rs8W(7s8DoqrqcWkd\i7aNi:4jr;QZorr)lq +r;HZpqtg6jrr:ZEOKI++r;-EjiOkhGZ/aZBNj%dHs8L!$Q,DFqW26oQh7K#Fe+DD&StaBTR"CZk +Q'n/+KSZ8.Yaq<(rVuib`0H8"s8Vrnr(m=^]9T#"^T!KrgACjKqVS9>]tU##\F07os3d^8Zbj;I +SA"(`s7=gAR'cAXZAl*Dd@?H-f_GI2`MT'1dC,:5fDkgLppQ6YbO>H1r;HTns8RT~> +g&M!L(&e(-qY^9irVHEbe#oRT_oU!Fd*U,?=cHuO9s3Ubkrm2S/d*U1fd*L%`d*^1ac-Oebd*Kt^cd:%bd*ML6#LCZ@cHab_ +ci25fci;8pd*Bn\cd'f7cMu,hcMl,ocHjkacd1#"OPK@d*_dKd0V3J7PoW!bQgWuIU +YLE.Akea$[[aMRHT%s7`j[V9JE,rqlZnrVc`qs*t~> +gA_9Ss8W)rrt>>2rr2lnqt8@:Su&WpY-+n.XT#?pXT,C.XKAV+XKAS*X21n;Ws>c0Y,nb+XK;B& +s/Z@*XK8P,qlTk!s/lO,Xf\b/Xo>F%X8f7$Xo5='XfSS)riH1%ri?%"$EC/.Y-+n.X/rG+or\4p +!NW=#XT>N(riH.%!3H1%"g"c)XKJ])X8oC$WtVS8X/rD'XKAS)X/rD'X0&J(XK;?#!3H1#rN$1) +XK/A&XT#9rX9,H(XT#6qWu.k;X0&J(WiE,$XfSS'WN*##X/i8#WN)uqWs#Q+X/`3!X9Yf-XKAS+ +XK;B&riH+$riH+$$a-S4Y-4q/XfSY,XSf+1XK/D(XJr8&XK/J+Y-"b)WrB++X/rG+XKAS+Xo>I) +XfSZ'Y5PL&XT#@%Y5bR&XoYZ+rN6(%"0AZ-XT#=3X/rD)XK8P*XKAV-Xf\c*Xno.!XT>N(Tr\Eu +XK8S,Xo>F%Wtqe;XK/A%WMuu'Z)aIg`UEU"rr;uts8N#trrE&brs\o*rVlcor;HTos8N#sr<`5K +ZE'k%`om3urr)ls!<2iprVd?+qu?W^cEO.OcKP*'rVZWmrr;rss()')rVlirg74>2eFNV:s8Lia +UR/FNh5Q44m/-e[`0Hb3hnZ+c[FO*HS"eF(h7&uNbL;i7W3C0jot?W^\\=o*XP3LJrqG3HR(9anR>\?;rVliHW1UB2[[s#'k55/KeZ"qDnFs&D[,'0(QEf!6 +rT_=rRCCVPP+L8)r;ZMtNhstgrVl]mrr)fps8RT~> +g&M*O!<;in%f?"omDbTML5(2$Dej3.rc%pWqJc[XEH,r9Du=PXDK'T9EH/m:s)A0^F)uABrc%pY +rcJ-\s)\9_ErL(YEWpH%EH?8Frc8'^rcJ0]!HN8\ErU+ZE;jhYE,p!uF8p7jF*)JCDJjB5EcH&9 +DfB^pE;sqXDuanWE;stWEW0tlE,fr@F*)MFFE;PEF)uJGF)uGFrc8NhF*)JCF*)DCF`VSEF8g1Z +Er^=]F8p:\Esm)2EH-#=EH6)>E,bbq!H;uTDZ=V\DJsH1Ci+',DZ4J^DJa3,DJX''Chmj)DJfAh +$#OKqD/=$*CMRecD@LH#Df0E.Ci4--DK'Q5rbr'[E,]`6E,khss)AQiEH-#?EcH/AEcQ/>EcH'q +E>!51EcGu9EcH&=F*)GBE,]i=F8Kq\DfKc;EcM(t!HE/YEVsbbEH6,@E,]i=EcH,?EH1u!!HE/Z +EW:%ZEVOMNEW9t_EH#l8DfBW5qf/HQs)B3&EH#l2eFNV:s8LiaU6`4Jgo-"0lhg\Z_j$P/hS5n_[+*mDR\A4$gpWcJ +b0lW3Vlm51\[/3;_8`gOSAtF)qWl%eMoG_rq>C.js7F!iT"2S3Q)iX7r;QHGW0b'+R>\BS_@nFs&CZeWs$Q*Ad2rTV4oR'tGNP+L8)r;ZMtNhstgrVl]mrr)fps8RT~> +g&M!L)u]^3qY^6gr;-?ae#oRT_o^*IdF-FgcHjk`c`PRocNV\CdEp7dr6Pr"d*^7fdF$=gdEg4g +cd2R;$d[,Dd*^4dd*U+aci28pcd'k`d*MR8s3EmUcd'h^dF$=fcd'kadEg+ad*^7ecHahbcd0ta +cHaebd*Bn]cd:%bcHab_d*Bk]dEg+acd'e\cd0tacd;[;$II,GdF-FhdF$=eq9]/f!7:_ms3Uel +#0tQ@d*^4frmD5&daQXneC;sreCE'urmUnss3gttrm`OKdaQate^W're'upteC2mpe'lgqeC2ps +e^W*tdF-Ooe'cXkdaHUndEg/d/_Pm +cQ(d/VK"d*^:hcdC1fd*hp@r6PYrd*Btacd2O9 +!71Yks3L\ks3Cblcd2U;!7.Fes3C\lrm1Mhs3VV2eCW@)eC)aibf@DuVp+c0r;Q`qs8W)ts8N)u +m/J1,rVc`orVZWms8W)trVlfed&s@CV8_Wns8Drqs8W)prtGA2s8Dins8W)nm-XKBrVliqr;HQm +;uQarrVZWms8LlGP-3!prr)llc`<_2_s89ZpRE+*oSt<:=gpiQ=ddu7uPFBbRUQE4J +nal>9gYqDP]UkP.pAXgG_4Hb,s8VlmrDimj^6YD*`2/Wod.7,6n]dSj^Vc\%W8ICLqp(n$WP#a8 +R^(T?qW>beOg+3BVMMS3cD-`/d.@8%_Om(%fY3K4bl@\BmB;JAaR0!,qu-NmrVlisJ,~> +gA_9Ss8W)rrtbV6rr2lor:SI;Su&WpY-+n.XKAS*X7NFmXh1\7Wsc&4Y,nb+XK8P*XKD5u%BZ_5 +X/iA*Y,n\)Xfef*XT,=/XKAS*X/i>(XK/J*r2]n!riH."!3H1%/$,eOXKJ_-X/rG+Y,n\)Xf\\+ +XfJM(Xfeh.WN3,%XfSP(XKAV)W3!/'X8]4#WrK+$XfJN$XT,F%X8]+%XK/G'X8B!uWrT7#XoGL& +Ws,N(X/rD'qlC.*XK/A%Wi<#!X/u<#*NQ9AX/rG)XK/A%XKAV*Wi<#!XK/D%X/W,!X/`9#Ws#Q+ +X/`/uX9,H&WrB+!XoGI&Xo>CLY-"h-XK/G)Y-+k-Y-+k.XK/J*XK/A%WiN8'X0&J%Wi`A(Xfee- +ri?%#'rn=;YH4k-Xf\b/XfSS)Y-5"0XK/E$X9u,4XKAV)WiiG(XT#@%XT,C@X/rD'XKAS(X/iA' +X0&J)Xf\\,XKAS*XfSW&WrT7#XT5DqX9GZ+XKJ\-riH.#(9FRmle]=HRDS[spYru[P/mV&=Si$ps7a?sTtn[GPc3%&rVlH8Ss[:0T8TZ*q>U?> +UR8*r\tu",hYR6:ae4p+nF`f?\(oE0R]t65s6R[tQFPS\Od+)irr;AhN1e8Zrr;lorr)fps8RT~> +g&M*O!<;in')VFsmDbTMKnb)#DJF!+EH#i6mr&AHDfB]8E5Q\qE!pZ+EcH)EM3DK'W9E,T]8 +EcQ,;DfKc9E,fi8E;jnXD^'4CF*)GAEcZ>CEcH/BF)l>CEcH)>EcZ8?EcQ,=F)c2?ErL"^EH6,@ +EcZ=$EWpN)EH-#>rc.sW#&eI"EcGu6r,2OQ$>j^"D/F0.D/F**rbXW2D/F''CM[a$Ci+$*CMRd& +D/F')D/3p(DJa9.D/O90DJa3-Df0H0Ci+*/E,TZ4DJsK5EH6)>rG_aUs)9$!EcH&:E,fl:E,T]6 +E,or;Ec>i5EcH)>EcH&;Df>Vp'lS&3F)c2=EH-#>EH#i8EcZ8?E,T[oE;X\ZE,Tc:E,ber!-%pW +!H<&XE;sncE,TZ6E,T`8E,fl:rc.sW!c`0urbhgVDuO_VE2.FQE$94?Df9Z=G'.eACh[NqCiF<2 +EccVWK7T#qlh:5Ts8N&urr2rt!<2?b+9)6;rr)fnrVccrrr2lqrU\F?WhlT3k5#&Urr)lsrqcX. +rVuorqu-QprqPjIp%nXds8Dlor;KOks8W&qrVccqhOTh4bO#6,s7jp@TqK9efV=>-lMLV[_318. +h7K;O[+='DPb-@rh6E36cJYL\^Z"bUoBP,jlJ9.FRDS[spYru[OiIG$=S_sps7X3oTYJICPGch" +rVlB5SX7+/T8TZ*q#:3;U6hmn\YPe(h>.$6aIe^'n+ +fDkgKs80f[na+e^`7%f@JL&rmqG,e^`1!e^i:#r6kl" +da?Ije'e3B%aWPMd*^7ecd:%eda-7ermLho0[nFseC2gpe^;godF6UndF$CkeC)amdF-Lmda?Ij +daQ[nda?Ike'ugodF-Ile("BFrR;#"daQ[peGdnsdf%VseC2psrmUYj"OkfHdF/!Bs3[=as3Vn7 +dF$=ecd:(heCN:*f$r'kbJq2qW6Ou3r;Q`qs8W)ts8N)uli7"as8W,us8;uurr2j(s8DN:ZEC+( +a6EF"rr2rt!<2orr;Hitrr;rqq#:Eorr2oqs8W&s!rVrmJ,]K2Xcf-Xf_#%6jgpb?UsAA[Ul2JA +qZ$K.OI=5K^n[X3fA=$%T@ +g&M*O('":4rVlfrrr)lrr;608X.H/kZ*(8/XT5N&XoGL$XoGI'XfVN&"0/E&XSo13XK/D'X/i8$ +XKAV*WiE,%XK2?%s/Qm9Xf\\*X/rG*XK8G%Xfee.XK/D'XT#7%XKAW&XT,@$X:))1X/iA)X0&S- +X0)B('C3X/rJ,X/rA&XKAV+X/`6"X9,N)Wr/srX8T+"X7WIrXfSS)XT#=(XK/G'rN)]p"g"i- +Xfei)XVS"=X0&J(WiN2(YcOIha7/p&rr;uts8N#trrE&as8W)us8W)ur;lrtrr)lr$1u]RYc=_E +kkY8Xrr;uurquforWN3!s8DokrrW/urr2lrs8Dpjr;6Bjs6$MIR^(N;qY'$^QBS2mn(OXuZKqGg +rPF_ebMpC8Upo%8\sB&?p"cm,s7b0Y[E%%CTpW4GqtAXRUmoU.s&K!srVuN,SYsW[ +ZBh)nj8Jl7]oe`2iOG)>`p`on]9JG[a2Y?RT?@$1h6<'1\+'$iMmhNmUme^Dp&+0sUm8LKbF4?t +nc/@1T89&YmJd+`rr;usrr7K~> +dJk!\s8W&qq=s?tRtcTMI<9CDCi400DJeu_s)%dR!cMsocYil(Df>;fs)7mUr,2aVDf9W7E;jkW +E;OQ#DJsN8EcH&:EH6)=DJsH1DJsN5D/=',DJsH2Ci+-2EH#i6DK'RnDZOfsrbhdUq/79kEH#f5 +EGo`4EH6#9DJsN8F)c):EH6/AEH6,@EW1"WE=6f,E,]f8DfBW6EH(nq&8lH,EH6&r9 +EH1trs)86^DK'N3DK'Q5qelFNs).pUDuOYSD%(ls)&WmDJjH5DK0]7DfBT4E,TW3 +DfBZ6DJjClE;shaDJsH5EGof7DfB]9r,2s^EH#i7DJsH4E,TXnDZarsDf5Gj!H;uNDusrsE;jeR +E11\gE,TW4EHH>DDes-"A7]IlDf0K5H$t6nN4nNMqu6Wps8W)ts8N)uli7"as8W,us8;uurr2lr +rX&2EZ`g=,a6<@!rr2rt!<2orr;Hitrr;rqq#:Eorr2oqs8W&s9`4ebrr;/`P+&Z.o_S:C\sAMU +cgKJ_N3V[Fs8B`qR`aU*UnbBNhmo#FeF_P#Pb$@k[#Lm3s8VfE] +g&M*O!<;ur&,lD&r;HNgo?sh>Zc(#2dJhVqe)o-[e%F31df\+Ke'e0Cqp[:JeC2pre'ujpe'lgr +daHXpdaQ^re'lgqeC<(#e'c^pe^i:"daQ^reC)gqeCN1Ke,Rtse,Rr(f\+m,ec+/"eGRi! +eC2jprR1_q!RfBpdf7hrdKn4Ida?Omd*U;@di$]fe'caqdF?e!e^Msre^MsqeCE."daQ^qqpYMn +s4%M+eC<$ue^`7#eCE(IdhC6^eC)gre'ljteC;sreCE+!e'n=\Y+nD\)Zu/ +V2VVBqYpB,N02'8^Rq(&e_7BmS^Hr[XH9")oZ<8OVp7gY&j"S[Hbk]r.'Ua8Z,8r;-B] +]9Jl(g;ftMR(V&"[\&Y`kk`r/PGl@@\"JhGY0P_>TST8ad'K$rRBl,LWJ%8)c6AL3YL`@AkJ3UJ +\*2kXNgdi8b,LM]TucU!s8Dlos8W)us*t~> +gAh-Ns8<#srVc]o%/p,%p=$+8VQd;,XfVH&!3YXis/aYN!3G[ls/Z=)XKAT&WrT-sX8f7*XfSV+ +XK8K#XT,@$X8oC%X!k*OX/iA(X0&J(Y-4t/X/`8(Xfee+XKJ\,XK/D)Y-"h,X0&M*XK/B#Xo>C' +Xfno&XTbf.XK/G(riQ4$qlTn$s/Z='XKAQ&X:2,0Xf\Y)XK8J'Xfef)XT,C3XKAS*Xf\\+Xfnq1 +XK2<$s/c:&ri6a5WN*#"WiN/#XK8J&WiW8$WN3,%ql1g?WiN2%X/i8#X/rD'Wi<&#XK&;%Xf\Y) +XKAY.Xf\\,Xo5@$XU2/4XK8S,Y-+k,riH.&s/c7&s/uC(/?Z4[WiW;&XKJe0X/i>(XK/D(YH=q- +X0&P*X0&J)XfSV+XKAY,X0&M*XfhW)!NW7"Wt)87XK&>'XK/J*XK8J(XT#=&X/u6$!3H("&$2n7 +XKAV+Y-+k.XfSS*X.ZR&XKAV-Y-"e-XKAY-riH+"s/Z[6Z)aLiaRT-)rr;uts8MusrrE#arrW3" +s8)]qs8N#r$NKkO[&p1%aQiX%rr)ls!<)iqr;I*&rr2loqu$Ekqu$Bkrr +g&M*O!<;in')h\&m`:oRKnXqsE,BH0Df0K2q/?:NrGV^Rs).mVr,:#$!cMson8J>E!,qdQrbqdT +rbqXN&TD`0E,T]7EH,l4DJj9-DJj=jC]J>ODuXVoD/XB4Df0E/Df9N1D/O92Df0E/DJsE1D/F0/ +Df5Pk"`J9qD/XCmD\-f*EH,r9DfB];EcQ/=EH#mqEW9t]EH#i7E,beo+)l4;DK'Q3D/O<4E,BN4 +DfKc8D/F31DJX31E,KN0DZ+JoE,TZ3Ci+$*DK'K1DJa<1Ci!s*Chmd#CMIR!Chrucrb_XN(2I`' +D/=!&Ci+!(CM[m*Chmj)D/='-rGMXPs)&$ZD/F0-D/]Dk8Sr9\DJa9/Ci"$.DJsB0Ec,Z1D/4$/ +E,TT/DJsB.D/O92DJX0/Df'<.DJa9/Df9N3E,KN1Df0H3E,KT5D/F0-D/XB1Ci++iD@1?#D/F0- +DK'K1DZ4PSDYe8QDJsImDYnAPD?+OFDZ4PqE,p&CEGfQ)A7K+^C2Rm*E-Qh^IZ2#,p\Y!jrr<#t +rVultrTsOcrr<#prW3&urr!3(p=6LNUSYuqqZ$Qns8N)tr;Z]o$iU)(rVZQjrVcWkr;Q]qrrrE" +rVuosrVcco8cSe^c_65[YKG>=\Y+nE\E*23VN%hFqu6N/NKV9<^n@:*f%[TqT$m/_Xc]4-ou`JS +W6a);Vi6P;gtAs#S[Hbk]r.'VaSu0@qu-Ekn[t-Y`7rA/OdWo8e@2*5Y3>`7VN[srbIF7.PHW +g&M*O!<<&ts8N`1r;?Nlqtfp4YGJPCb0JGbe^j]Ks4-Pe"4boNe&9c9ebmnsec+(udf@hoe,Ro3 +e'umrdaQ[pe'c^oeCE$teC2jqf)F/.da?Ooe^W+"f@SU)e'\0Es4%,!qpk_r!7Uqs-e6ete^i7" +e^W'te'ut"e'ZOje^i4!eBu^qdaH[pe(<'odaHUme,@_pe,RigeC`=!eCN4!e(E=&dF6Upe'c[n +e'umrdaQaqdEp=mf@86seC2jndaZgte'c[oe_&O+eCE1'g"=m*e^i=$e'ljuf@JL&eC;tHeGn"t +eGn)1e^N!tg"Fp'dam%%e'ZXorm_&!df.YndO +gAh-Ns8<#srVc]o%/p,%p=$+8VQd;-XfVN(s/bLfs/aYN!3G[ls/Z[3XKAS)XK/D%X/i8$XT#@% +Xu!2]XKAV+XKAV-YH=n.X/`5'XfSS(W2d&'X0&P-YHP(/WiN5'XKAV+XKJ\,Y,n_,XK;6"rN$s? +Y-5(3Wi<)&Y-"h-WiWD*XKAS*YH+S%XKAT'X\c+"WiN2#XKS_(X0&J&WNE;'WN*)%X/`2#X/rD' +WiN8&WMur$YH=h)XKAV*XKJb0X/i8#XKAS(W2ZhuXK/A$XKAV*WiE/&Y-"e+WiN0!X8]+'X0&M* +WMlirXT,7FXfee,WN3,&Xfeh.X/i>)YH=q0Y,eS(YHP+2X/iA)XKJ\+XT#=CXK&A*YH=h*XK/>$ +YcOh+XK&A(XKJ\+XfSV+XfJQ&Xt?cWXKAS+YHG"1XfJS-Y,eV)XKA_/X0&P+WiWG+WN<;+XfSV+ +Y-+k,X0&P,ri?:*YH=q0Xo>F%XpV;4Xf\\,XfSS*X.ZR)XKAV-XfSV+X0&P-Xf\Z'WrK.0Yd(7$ +TZHX!r;Q`qs8W)ss8N)tm/IIms8W&prVlirrr;usr=K#(fU<1PEj,C^7Ce& +f\3d!U!iMfY`u$>r8kASQCa\AR['r)o^U8,P`_3$UmQjoa8Z)7r;6Nd^m1A%i8qhEO.<&@P`r3$ +q#BftU7IL+M`R9!T!-T3kI["=QBRH"R[peNq6uEfh:%dPXk!.DkeE[Q^%(mFV37+1R?`ktVp"E) +s8;`js8W)us*t~> +g&M*O"TSK"r;HQm'`Iq*n&_,VL5(/"E,9B/Df0K3E,b\ms).RLs)A!Vs)%dR/T#BCD/O6.DJj<. +DJa6.D/F0-D/O6.DJje8RCMdm)D#S;OC]J8MC`7/.DJX*( +D/aH3DfBQ3Ec,c6E,p&>CiF<1DZ4SQDA-l'DfKZ2D/aH1CN+60CM[m,DJ];hs)/<_Ci+'.CM7L& +Des3*rb`EdD/XB4D/*j'Ci=6.BkhF$DJNs%rbVXNrb;[TDf9N1Ci+"fD>n?&D/X?1Chda&D/3j" +D/jK1CMds-DJsH1Ci+'/EGo`6DJF!)DK'N1Ci+!+DZ4JsCMe!,CM[j*EGfK,D/*g%Df'6*D/=!) +DJa3,D/=',ChmhaD>n>ZD/O6.D/=!(DJj6)rbNZpChmp+CMI[)D/*j)Des3,Ci40-C2@a'Chmj' +D/O7jD$=`kD/O3-rG;IMrG5hXDJjTrqs]sPf2@jS=?q>SXlFAPcN@,n^"2!Od)E4R"U@:rr2`j +qu63%PaT2AjM@7ES"uaAP,m40s6m^sSW\kf3gcP1Y0l_#\s//=P)u*"S?hGT[Z7KFd[6#qeFrk( +^7:D#nbLS/P*MB%Q&q3-bNo-,r;- +fDbpOs8W&ss8Dus&Gc+ldB9=O_TL0Qe^i=%e'mX5!7\a5s47(ts3q%trR:hrr6kVl=jkgKdEg1h +f%8F$f@JI%f[n^%cHX_ef@/-rf\PE +gA`5ms8W&qr;6EirVulsrqlWed]9";YHP(2XfSV)WiPjrriQ1$s/K8) +Yck..XKSn7YHG(2X0&S/XfA:oVld,%WN*//[BZ^*U8G&tYcOk,ZE^R6W2cu)Z)jq*YdC^!WiN5&X/W%sY-PC=YHP%+W2m21Za$[9Yct:4s/ZF,YHFq)VQ'Qr(p:*K +YGS.uWMm,*Vld8/Xf88#YHFq+Y-Iu326a3_X/`5&ZF7'?W2Zl!Vl-PtZF-p:X/r>#Y-b@/W3*>/ +Y-"h/XfA=uWiN+uX/i>(XfSW'WroN0YH@f)"0AW-Xo5>pXo>C%Xo>C$X8oC$XqRn;XK/D'YHY$u +T?$Ktr;Q`qs8W)ts8N)um/R(a!r`&qrr*K-rr;usrVlNAZ(dVW`9I-urr)ls!<2ip#QFc'rVc`p +rVl]prr2lqrW)lqrVulsr;ciqrEK:"r;Zf[aL%h8S"$.XaPcjnq<#l2cgpu5rR\Khh1@maAS?RA71#Yd<$_s82cns8(9T^!uNFkK:35VPZ\[\(UHR +r:Smj^oF<>Z_jJ#deEOk`j`"FXgt6p[dEq3Yg2Up^UMDIqYp';^UVefq<-;DXe`;7UQhY#mf*4_ +qu$Hms8RT~> +g&M*N)#sR4qu$Emrr)lrr;6!+SV`,VIW]RFCi95j%WH?)E,]]6E,KN0DK'Q4rGX]5E,fl8DJX-+ +D/='+Ci+$*D/F**D/=$*Ci!s)Ci+$*D/F*+D/='+Ci+$*Ci+!)D/=$*DJa7]DZ=VVDJsImDZ4SS +E;aZ]D/O3+BkhO)Df0B.EHH>DE,fi7DfBZ5BkCjeCM[]tBPqm6EG8uqBl7p.C2%L'EG]E%BPMI( +CM.@!EcGl+AS>mrBkhR,DJ*NrEcZ/E,]f:F)u;?F)u86AS>t%E,KZ:Des-&D/jQ5C2%I$Ec>c)B5)1"C1q?uDfTc2Bkq[0FE2;: +CMRd'CMRa)EHQDFDes<1Des'"DK9]4C2@a(DJgV7CM@R'FEVbGE,90#CiOQnDmEH?)3B5VHuF)Yi0E,]W,Bl%[)CM@U'E,fl7C]7ufBkq[/DeWcqBk_-hBl%a0DJnDoE,ou@Ec,W*ARf1\BPD3tE-Hb^IuV51q"t'jrr<#trr;uu +rp9[arW<&rrVld-rVlirrr)fgeZba7S]'dhs8MusrrE&prs/Q's8Doqrr)io!<2urrr)oqrr)lr +s8;rsrV]t"rVZ]qkK($-SXZ+CZH(kss7k]u\BXR@s8CNV\_QT%]Y)SRkg?oRi:uT[[`.G/pu08r +TUMUX^tJ8WrU/+CUm\!c\Z`9ks8Vomr;ZTB[_1)Vp?'K(WhlOYWOCIPrquHFc+p +f)PdL'*%q/s8N#rrV?6[d]TLT_o^0Prmg,[!nPlN`mt+=#M%DVe^`1"eGe"ue:#fre'cXkda?Ih +cdC4id*L(ff%/9tf$r$qf@SR#ccjbgf[A0oeCra4dEBb\f%S^&d+$b%e^)Lfe_8a*c-b2#gXF?j +e(E3scd^Y!cH4Daf[A6sbL"tndF?LkgX+!feBu[leC<$uda?Ije_&L&e^rC!dFd!se^`1!;:Eq@ +e'ljsdam.*e]u:\eCW7%gY:6)cHXbef$i!ldam.)d`p%`e^i3sd*pV"f@&!mfA#'3e^MpoeCE's +eCE.&f[nU"e_&L&cd1.pe^2P>bsTk+d*BkZdam%#e^i6scdC:peBlLfe^`0td*L+heBuUgeCN-u +e_&[2cHOhcdGEHte(WI'cHO_feBcIkf@\a/f@9fJ&CJqYh:U-#d*g=dcICJ"gXcAN'$\VIf[%RZ +dFHUhd*U1fccsb]rQl/(e'ujqeC2gle_&I%d*L+fec+/"e>(OteCE+!eCFQIrmDS2eCN:(f[eU% +d*9hV]r\0VoD8Cas8LsVs8E#ur;Q]o%K,eFYb[e^`Td3urr;uns8W&us8N#trrrE#rVlfrrr2rt +$i^)&rr2rrqu-Qprr2k+r;HWoqt&q#ai)6Ih!P"jnAZBjlPk&q!dA)o)8@J +iTTq4s8;B@bf7cVlM1;Us8M]Qe]cCqkNM!rrr)`nr;Q]`iooq/r;60KeBQ=mjnA`Ro]"EO45ANM +l+rdX[+"3rdad12g=4*.Nl(D^hV%>lo',<'pAFmdo&o$"p#joUgY^]Fgo6:/dIdD9r;Q`qrr2qJ~> +gAh-Ns8<#srVc`p('":2r:SI;Su&TmXKAS+XfJM(XfSV+XoGL$X_Y#0Wi<,+ZEC.'Wii_8X/2c"[^3!0 +UoUc'WiNA1Z)FItZ*UR8Xer/*Y,\V&XL5($WNZ<(s0)I)AZVr3Wi`M,Vl?_sUSOrjVlQu'XfSS* +Y-+t2Xfo%;Y,7qkY-G48[C39=W2Qf%YcXn&WiiV1WMQGhXKAM$Vl?f&Y,S:sY-P@;XK&8"XKAS( +XKAY0Yck+,XKJ_+VPgN"Xf/)qVaIMeXfJD"Xg57:YHY..W2m,-YH+Y'YHY44Wi<&%YH=e&X0/P) +Y-G@>VPL>mWOAt)XL#15Vl$MuY,SA&Yd(I=Yc[i(3jH,uWi)hsWhuYoYdCgBX/i>%Wiie4Uo1B% +Y,ne/YHOt)W2cksW2ZeuXfSY,XK&8&ZEL@0WN*##riQ4$T<8-oriH.#(Taa@XKAV+X/rA'X0/Y* +SY+!nqY^?mro!hVrW)urrr;rsrXAGKZ_sCh`p3F#rr;uns8W&us8N#trrrE#rVlfrrr2rt$i^)& +rr2rrqu-Qprr2k:r;HWoqt&q#ai)6Ih!Y+?rVZHWhs(( +g&M*O)#sU6r;HWorVlfpr;6$+S;;oRIl7 +FEMM8A8#n%EH-,FEGTB*D/aK4CM@R&Ec>`(B5)-uC1q9qDK0W2BPML.FE288CM[m,rbd%#EccDD +DJX30E,93%DK0Z3BPD0qDJsH1C27a0FE2;;ChRHtEH?)8C2@m1E,TQ-D/X?0C2%O(DJa?6G'%D0 +Dea'4E+Nj*E,9,tC2Rm%B5MO(EH,i1BP;*nBPqm0B4PXgB4GFcD/jZ:C2.O!Bl8*2A7oh%Df#Dj +Ir/n4AnYmmB4u!oBk_!in_DC0b1Q%Sr;HZpp#X`Jd+mgJjmi?L +r;Z`prpSn2o)&@_p?'oNd+[XVs8MZMe^Zb:g?%V:R[pk9ki("Chr*>A`gMq+o_RJ"nbMeAk3_p@ +rqu?Nj6ZI%f$rI3g#UqfNMOtorVcZns8N#ss*t~> +f)PdL('"72s8N#rrVHB^d]f^Z`lcQTe^W.2e,n1MeAg&=eGRhueCE(Jec4,'e()pqdF-JBdJqPm +d/VL7daQ[lc-F_[`mE8be'usrdb<@&e^D^feCW4!f\"d)cd'nde'uagcI:@reBc@beCW3qc-t:p +ccXGWe^`$jcI:4dcHs_We'lgrbg5%laNi;`bfe;WbKA)Taii)]eC)q$f?_gsf[A6sd*9YOaNM`K +0?M;Yd*g=faNiAccI:CreC)^idF?Uld*gFoe^Mpmda?OmdE]t]daHXod*L.ieG[d7e(34)e^W$o +c-FYZbgFqhdEg1if[S3gaN)BHe'ugkc-ObacHk(oeBlLdbf7H7a3;lVdEKVPcdUFoeCr^.cHaee +f$Mgtda?jua3iMge'?+\dEg%]dF$:edaQ[qf%/(OteCE+!eCFQIrmDS2eCN7'f[eU% +d*9hW^9"9Wo(r:`s8LpU!WN,srr2j*r:84:V4=-pl1tAYs8Mios8E#urr2rtr;H]rrr2rtr;Hct +rVc`p!r`,trr)ls2?*OMoBu&8nb2n\rr)ioq=aX`s8Mokq"jsgr;$0bqu$Ejr;6EiqYC!crr<#q +p$qM@p%nXcrs&Gtp$qYIqYp@krr)iqrVlipqYL0jrr;uooBu,?q#(0lm)Q!%al2UCY)]'lhU]33 +XNThmdB/.ff_t[Bq"jmcr;-9grr2rpq>'mTeub.Gkj%6NR>nE+qY^ +gAh-Ns8<#srVc`p&-)Y,r:\OC'XfSV+XoGL$XTPZ*XK;E%"0AQ(XSo1'Xfek1 +XKDH(rNH4&Ei#J.Y-"e.Yc=b0YcP".V5LDtXfS_2Ycb")Wi`D+WhlYrYd1L5VPpZ%XJVnsYct4, +Vl[//XJi,%Yc4\)VPgQ!YHOh&[B61&Yck%)X/`(pWMlPdW3!"tX0/S$VQ[/%WN3%tUS4K]VP^2c +UoCJu-`Ei?ZEC42Za-d:XK/J-YH4b)Y-"e+W2Q\pWiN(pUSb#jXK/:tWrB%LW2Zf!Yd1O:XfSIu +Vl6GgWi`D'WN*))Xf&"lUSOrr['Hg7WiW8"Wj&b2ri9t:Un=4"+WNEA+Y-G10VlR#(XK&9!WrK.%XfJLpXoGF'XKAT'X8f:#XT5I%X8f7/Y-4jr +T?-R!r;Q`qhu<`Vs8;lrrVuj'p!^1ETVBEjqu?Zpq>^Ko!<<&ts8W#r!<<&ts8W#r!rr5trr)ut +rr2oqs8O&;r;-$QmdK]>r;ZfqrquTcq>^Kor;$-arr2ipq?$QmrVcX)rVH?dr;Q`rqt9LJo(DkY +rVm3&q=X:LpA4[`r;?Qos"sZMqYgHns8VrfnFH;Lrr<#ba/5fWiU,L*Nh+/Hf!qNXcKOTBY(r=q +rVZNfr;HQkqYU6jrtYG,q>0O1Xcp9YlK$'TNN_17r;HTorr2osJ,~> +g&M*O"98B"rVld+rVlfpr;6$*Rtl]OIE;je(D?=`oDXq`GD?k*!EH#l:F*.D(=*/J% +Df0E0Df'<,D/XB6FEM_LFE;S@Ao)I*D/O9*B5MHtBkCgdCN+00FEMYCC1qC"D/X0#Anu='CLq!g +D/X3$ASQ+#C1UskDfBK+CN=K7E,f]5GQ)i8EHQeVD/sfAE,]l=E,Tfl4Chmm%Bl7m.Chmj+EcGo/BP2("G'8"HCi"QCM7U)EcZ,4BkhL)D/!a%D/3s,DJM0rVlisqt^'amaeM(\EN5=adJ-lh>7'JrVulrrr7K~> +eGoLHrr!6&qtp$8Z)Y:RbKeQ8e,[t[eH47Ne]-,=ebmnue^W.Ke,e+Krm^qr!7Ceo&(&SFc-Xqh +dEg%YbgFVQc2Q-rf%JO#f[n[*e'#n[eCE1-h:L#sbg=e`cd'eaf\"d%c-F_cda-(\f%AHsbKS8Z +e'ZLecd'_[dEBPMb0A/Ja4ASVc-t%\a2uEA`QccPaj/Gfe(EF.dF-_$df.OAbK%ZIcd'h\aiMZQ +e^Vmke^)Fcda?One^W$pd*U1he^Mmkd+$^ue'udjbg"M^e_&L'da6:bdaQOif%J^,eBuRccdC"^ +dF6LhcI(1nd`p%^aMlBRf@A3lbK\>VcICFnc-+>Ub/VHCbfS#Rb/23Fe'uq#gY('#bKePa=OGXQ +e'Q^k`mNGgd`oqYcHjh`e'ZFacI(.mf$r*mbf\/Wf%\p/dF$ImdEp._dF?Oab1"MOc.::Y]u.k5 +da67adad""cd1%je^iF*dEKh[d*^7fdF/$CT[WtlqpZY8eC2jpeCE1'f@\^)da?@cb.b!WbOPE+ +s8W)us8N#trrE&brs&K&s8N&urr)isrVld-rU\@:V4F0okkb>Xrr)lsrqcWprr2rtrqucrrr2rt +rqufqrW<,urVQTor<)urs8N#trr)utr;HWo!WW/tr;cirrrE&trrW2urr2p%rqucps8N#sr;lip +rVuorrr2rr!<2uts8N&urr+kVrr2rss8W)urr2lqs8N#rrr)`mr:.srMPn(tWgK*Sf'_A'QAqWN +]r@<[ZKqPgs8W&rrr<#prXf,/nCadhPeb8HRuF#`mJHk\rqueH~> +g&M*O!<;ur%KHG,s8Muqp!B\/Up$s!XQQ_cXO=3NXRN@gXSo4"XT#:#X:q_>Yck42WiWD0Z`pR5 +X0&S(U8\'nHa'l[Xg548Z)sjtW3!2.[^NHAVl6\uWiE%sY-YI?Xf88"Y-"Y!WN`\3XJr5$YHb:4 +XKJ\)Xg"e"Uo12iT;/ZlUT(K#VPL,eUSOojUnOWeXfAP0YGeD&YH"IuX/VniW3!#"WhlGfY-G12 +Xg5%,XKJ_1Z*CO9Y(*RSXKJe0W2HVtZ*1:2X/W"pWN*))YH4e'Vl?_tWi`S7['6a8WMc_rW2H`" +XK/D'Y-4q+WNE(oY-tjKZ)jq(W2?MrYcXq)X0&G#VlHl#X08OsUoU](Z*UmHY,J7tXfeb0[]ca< +WM-H#YH=h&WiW>)Y-+h(Vl6]#ZEcEnXK&4rW3!;5[BQa6Y-+k,WiN>.Y,JG/XJ`>6[%j7iW3*>- +WiWD0Z`gF0Xg#%8[Bls4W3!-#Y6;#1XK8K$XJ)cqXT,F&X9>T(X/i?"Wt;;3X0&P(StO0oqY^?m +rr<#trr;uurp9Xhrr<#ts8W)rs8W)ursADKZ)OFj`U!I%rr)ls!<2ip!<2uts8Mrr!<2uts8Mrr +rr*!!rVcWms8<&trVulrs8N!!rVZWnrW3&urVZcrs8DrsrrW2trVlg$rqu`os8N#srR$Oi)mG54:NMF)!Wg8dR +li6q`s8Murs8Murrr)iprr;uefr9Ca^r +eGg0\s8W&qrr;urr:%aqL4k5/G&mS#!cW'rlu;uCs)?D)!cW'rol0qLrG_aUs)MsuG'A.RF`VPA +Df0K4E,KH,DKC#IGBJ"KFa7t@E-#u:EcZ&2D/D/XH5DK0`:DJjB5F)l2;EG]N6H[U3]D/*g"AnZ($Chd^%E,TQ0EHM5$Ap/-*BlA'8 +Fa&+UEGB3(EH,oE,9<-D/=$(Ci=B6 +C2S98D0LGQBOPOfDfTc2CMn07EG]N0EH#o>EboB$CMn'0rbq^PSo=UG")i-uDZ4JgCMIQuCi!s, +FF8asKp'=@q"t*krr<#trr;uurp9Xhrr<#ts8W)rs8W)urt"eNYGe+e`9R7"rVlcqs8Mlp!<2ut +s8Mrr!<2uts8Mrrrr*!!rVcWms8<&trVulrs8N!!rVZWnrW3&urVZfss8W)ts8N0"rVc`q#6+Q" +rr;usrquorrVlfrs8Drrs8;rsrr<#ts8W)t!<<#ss8N?'s8N#rrr;uss#pAZrVZ3/QAVTP\uM-` +Xk)pr[[)oI]"Y/0OgFBRr;ZfqrVlisrVlfprr)irrp\U?I?_Od[[W5KbO,3*rVl`pJ,~> +e,TII!<<&t%fQ8#p!p@K\AlbXd`fq[d+@(,e^)Oge^`*naj&GgdEg.dd*M^=4jVBtcIgt' +ai)3@b/;EYf?`((g!e6*_o9U:cd'_XdFHdqccsb` +e^i:$e',qWcI1:pe^`0udaQase"G7kdi?ofe'c^pe^W1'f\"g)e'cUhah=dSbjtW.rr;uUs8W&u +s7uX'rU\C;Un"$ol2(GZs8MZj!ri6"r;H]rrr2rtr;H]rr;H]rrqus!rVZTmrW<&trr2lrrr2lq +rWiE!r;HZprVcWm#Q=Z$rVZWorr2lrrXf&-rVZQir;HTnrVlfrrr)fpr!*-!rr)lsrr2rtrr;os +rr2lrrr;p]r;HTlr;6ESZ^[VXPEDNHbieiofd& +UR%FCQB.]Yl1t8Wrr)fps8RT~> +gA_9Ss8W)rrt>>2rr;uqr:J=6S>EEkX0&M)X8]1%XfSV+XoGL%Xo,7#Wr&jsXT,C@Y-5"4YH"M# +YdLmBWiE/*\@&E>Y-"n5Z`U;-Y:Qo[WMlhtY-G=>YH"P$Y-+h)W3!>9\$E-:XKSn3W26N!ZEC:2 +YHG"2Yck80XuWu(Z`'XqW2?8f\?rHI]"55NY,\@tZ+%!:Vm*D*Xg,.4WN3/%W33S;[CXKAV+Xfen7[Bm$6VQ@#)W2d)-Z*(73Xg,:C +Z`p[;XJr2"Xf\Y'Y.([9Z*gsEYH4e+XK/D(XJr(qZFn&l_7mReX08V#Vlm5)WirV.XK/D)YH4b- +[]c[4Vkp].ZE1+-XKJk:[^Ji6XJr2#Yd1I4Wi`D&Wirb:Z`gF1Y-4t.WiWA,YH>1H]!f>j]s"?4 +VlR#(WN*//Z*:C2WiiV5Za-g8Vl?c&['[0EYH=k+Xf\XpXoGF,XfSS'XK&8"ri?U1WN*&%W1KX& +nbW1_s8LsVs8E#urVcfsrVd,reZu-HU;lKqs8N#irrW3"s8;irs8N#ts8;irs8;irs8Ms!s8Dln +rr)utrr2oqs8N#rrr*0$qu$Emrr)flrW`E%rVZWos8MusrXf&.rVZQir;HTnrVlfrrr)fpr!*-! +rr)lsrr)j!rr)fprr)lr!r`,trr"qXqu#T_S"Q:8OeB/,kPFf%[@EMJQ'IuPg\CdHr;HWprVc`o +rVZWmrr2lpqC9lrVc`qs*t~> +g&M*O"98B"rVld+rVlirr;6$*RtZKKIW]Z0DZ4PZE,TZ6E,T]7rGV^T!,qgT!,qjUs)6>)!cN$s +ol'kJ>&SD#E,fi:EcZ;FGBS+NEcQ/=Df0H3Dea!'FaAF[FE;SPK7A)iGB7eHF)5N*CM[g&BPD:& +Fa/:^G]@P:EH5r5CMn9?G]IS6D/jQ6C1_4%FDu)6Df0E1rc8$[4Ec:1IWTOMG'7kOMhZS/K7SDr +H$==QItW5jDg6JEF*DhJE--8GFF/XmJV&Z5L5(>-EGp#IG]RkGEH(nu.!9f^G]RhDEcZ>CE,BE1 +GC"ITF)c/>E,g#FH@1$]Df0T=F)>i=G]s(.8TT*'JUMcdG&qS>EclMFEHZbUF*E"ZG]I_>DJj<- +DJa*#CNY/`M26n?H?47NCi4<;Ec?/EFE28:FEMVCG("OQFDY`8H?=$'CccNUF`r"PDej-,EcH#5 +C2Ig&C2\09F)Pi1Df9K0Ci+06EcHAYJq&K2KQV*ICN+<4CMRp4FE;GTTU_4.TXN)-qX`=HS<]D*Q(PVAq#:6irVliqrVlcor;HTnrr)fklcZ&hS=l1/TZ66l +r;ZcprVlisJ,~> +e,TII!<<&t%fQ8#p!p@K\AlbNccdL+_c-atbbg+f% +mcN*Ed+6h!i:HI%mdfo6kMb"^)] +gA_9Ss8W)rrt>>2rr;uqr:J=6S>EEkX0&M)X8]1%XfSV+XoGL%Xo,9sX8]1KXfek1Z*:4(Wj9(> +XJ`&%]Z.q&[BH[6Yd1C2XKAV-Y-5%2X0/_1X8])BWirY/WMlr,]!noFXg,7?YGnA!Za6g8Y-P42 +XKf%6Xfo4QcGd5nYdLmG^X1Y,eP&r3(OR['Qm5Vld2+Wi2u"X/W/#XgGdY^:1DN +X/;eqY-"_%Xgu!LZ`pR4X0&V3ZELF6Xf82!]?AdZf[\Bd['6[4XKJ_)U8+TbX/rD,Xf&%uZ`L"$ +VQ7/6Y,SJ)Y->FM^UpkVWiE/'Xf/"mZ*LL3Xg,+4XK&>)Z*:F7XtZu\[(OW=g="L&eB>kL]!euM +X/E)+Z*:C/USk8uX0/b3WMc_uZa@*EXfSS(Xf\XpXoGF,XfSS'XK&8"ri?U1WN*&%W1KX&nbW1_ +s8LsVs8E#urVcfsrVd,reZu-HU;lKqs8N#irrW3"s8;irs8N#ts8;irs82fpr;clsrVZZpr<*&t +rr2oq!<2urs8N&srqllsrr2rsrW`E%rVZWos8Ms!s8MusqYgKprr2rtqu-Zsrr2co!<)or$2sc! +s8Doqrr)iqr?;48gW.%8Z+J-3m.gSWmFfOk['[?`i:[*LrVc`qs8Dorrr)fp'E.q/q +g&M*O"98B"rVld+rVlirr;6$*RtZKKIW]Z0DZ4PZE,TZ6E,T]7rGV^T!,qgT!,qjUs)6>)!cN$s +n8A;GrG_gYr,cq"EH6&W,Ci!s,E,fl=GC"OYF)l8@ +G'A"FDK:#MH#de?F*DeIDJO39G]IY?FE),7G'J.OG(>^DPD+C7L51MGUS4'CS=5e/O+_n1MirsE +F*MkGDDcQ_G&h_KG^YF6R$X21SXGt7MgKSnIX6-VE-$,CF)lDMIX6-VEcZAHEc>r;FaAC[F`_VD +rc\SJphukG&q\FF`qnKEH#f2CN4og +StVgKR>cT?G&qeNGAh55E-)##>^1F2Dg$MNDfBT6I!p-TDK9c>H@LNrH?=(DEH?)7BP_d6EGof; +EGo`2DK9f>FE;GBFa8S'V5'QOTUh:+M1U/%F`2&8GBS.MCM@U)EG]Z:E,9<,Ed)hSFE%4sr,8EN +s)&otDf9K1EH#c4DJX0+CMRd(DK'ZFL5CYK_sR6rs8W)Vs8W&us8Doss8Dp*o[C%BT:s6hqZ$Qp +rq-3lrr<#rrW)utrr<#rrW)uqrr2irs8Muprr;p!rr)iqrquirrr)lrs8Drp"9&5us8N!%s8Mup +rVuosr<**!rVu`n!<<&ts8Vuq!rr9!qYpQorr*6&qu$KmrVlcps8Ms?s7b9g^9k/WakH+Vrql*9 +a1AXb\] +e,TII'EA(2rVcWjo[L.G\&Z\;dF?[re=G.ie,\%teGdpCda?Lme',nVe(2me`66p$p%Ib0d`]k\ +d*Bk[cd:%gg"=d!cHseTa3MuQcdC%^b0AAad`p"_e'ujoc,n8^e',qYd*9_Ud*^(\dGXTmp#=BH +f%A[?r;,mPp%S1OleU(Ckjn)pd+$OgajStrdF6Ojf]Ml(qYBq2q"=CPjk.r,da-"Saj/2Ta3)f^ +gtC-#c-O\]c-4GXc-FZ7cMu#nd*^4ecd'k^c-H:6!m]$4rQ-G0cIC\4j4D`*bf@cJcd'YOajetk +bf7Q;`ll`Ye^Msre'H:hjRN$EqFp_VjjhZ&cdC([_8+%6cHXV]beh?Cd*0JHajJVbb/VQKcd:>' +jknY9c-F\_bJ_9>dF?Lbb0A/Sc-+>ZeC2mpccaM\hX^^HoBblDng!MWe'H@a`lQKTd`onP`QcWG +ajJM\aN2NKdF-FhdF6Upe^L5BrR;e8eC2jpeCE1'f@\^)e'ZLeb.b!WbjtW.s8W)Os8Dp+rU\C; +V4F3ql2(GZs8LsVs8;rsrquotrVc]o#ljl%rr2lorVcWms830%s8W)rqu$Bjrr*-#r;HZqrr)`n +"98>urr)lqrr<#trWN9#rr<#trW)ulrWE,rrVlfp!ri/trV[K1p[@8$iTot(r;Zcoq=O. +g&M*O!<;ur&-)Y.s8Muqp!B\/V6@&'Xo>DpXU2)2XfSS(XK/D'riLOKY-5%7Z)OV$ZaI!7UoV)M +f%/$YZ)Oe,YH=k,Xfeh4\$`E>XKAFqUT:JqXg#"0W2m/.YcFe,Z*CUF$Ws#N)WiN6#Wsu)0XfeXpTZH["r;Q`qf`2!N +s8NE!e?Q!HU;cHrs8N#Us8W#trr2itrr)forWrQ&rVlfpr;HTkrr;m%rr<#tr;6EirVld#rVZWo +s8MuorWE3!rVlcqrVlisrr*'#rr2rtrr)otpAP0mqu-Nlr>P\6r;HTnp[@8$iTot(r;Zcoq=O.< +i8Wqfq#:6krW)onrW3&urr)iq#Q"#Si83J[pAOprrquWjrr<#ts8RT~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rlYloDE,a6D!cW'rno4VH$ZC!)E,]i=F)c8BErL#m +Df0K3EcPo/Dg6\VEc65[RAQjMN.,nkG'%\@DJsH4FaACXFEi+TE,g)HFa&+SEc?&BG]e"FFEVkP +F`MDAH['LHEHQ;>E-HVOFaT.AX/;)6K8>GFS?K#fTV80WU77-qLR+QuK6DDdF)5N1I!9OOFa8Y) +UT(2hV5'ZVS;huAH$XXRDK'cCF`MSNK8+u)G5ZR_F8g7lG'.nKE,g)HGB\1NF`qhJr,i![rc.sW +/ou5bLl[LHI!BdPD/siEEc,uKKReGnEc?#?H$X[WFEDSDF*ik:VPgAlW1fE,rd"`pH#RM4DuFl3 +H?F(BG'e=JDK:#MG]@V?F`qtWL5LY2F`MSHF`;,0DKpMNDf9W6DfKZ5F*@P-/Tu2WI>af+Z)+(c +UnaZRMgp"rFDYu?G^+=JC2.a-Bl/!9F)Pu:F*;\HDf0IkDuXdNDuOVnDfKc7DJa6,CMIU#Ci+*4 +I"dB1P/?Y^qu?]qf`2!Ns8NN#e$,dDTuH +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,e+KrmXopd*^=jc-">[e',_JdHLE*s7tj,`l6*H +e'l^of@Ja9gsO9ida#nUf@J3icI't^bK@uLaN`/Yaj/A`cdLFnaiDNIbK@rOc,n)Yl1tAXl-dYo +J'?=#p[dJ)j6,arlJ^FPn+lG-cdC7hbgY=qbgFebg?JA2qXX";kj% +ci4RUs8Muqp!B\/V6@&'Xf\\+U94Hs!j/Q*qlOb:XK8S,Xfeh3YcFb+Za-X+U9Vbli8NA0Z_jV# +Yd:[@[(!KV_7QqNXg"n'W3s%8X0/b4XfAA"W2H`%Xf/A-Z*(@?Z)FP!Xf\Y)Xfe_+\'*XihoW4( +WN'rVlfps8W)trVlfprr2rt!ri/srr2rrrr)otrr!*$s8DlorquZmrZD(6qYpKm +rVlcnrVuopp\Y!jrr)`krr;rorVliqrVlfp%fZD(rVl`mrr;uoqYg?jrqllss8N#ps*t~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rWc7uV#B4U"E,]f9E;jhZE,fl:rGI%#DJjH6D/F?? +HZj:GJ=*CCZ`BIHF`DMKH[9s`H[C="KmRujJUM`gKnF\sH[C'_FE;MDEcueREd2tYG^G!hEc?&@ +FE;PKG]e4`RBGI=Q]hG'S:QFa&(UH@(-t +O,8=4I!^*]H$js\E--JXIXZ]lH?jd[G'%eJG^4UbMO:-2S=F\pVQH\TIscTlIsZB_I"?]kH@0mT +Fa\ddFEN"_HZF%FG^Fa]I>X,AH?=@YIXHEaFE`%UEc,oBG^=d_FEVnRH$am^G(,CCYc=%IMO's7 +T8Il8H[U$XG'eU^G]I\FGAhMKJ:DlhFE)>@E,T]8EGfZ4UN$6O#&nL!DJsN7rbhaQ'5VH"D/F00 +FFAn#L6KOCq"t*krn.8Nrr +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,e+KrmX<_d*^:hcHX_ad)j/EfCAn>rr)35_naCB +h;?uDjQ,Rji6fa!iSW>Ck2Oq9cdgUrccX8JbL4tc_p6ulh;@5Jd`]c3b'V7Rai;HUmem+amaoIr +bL>VNo\eDhU9g%g"=g"c-Y%odb!O;e]l:ek4JH= +iml?!cI:M+j5/8.aN2WRd*^J!gY('"bK\MliS;u1d*0VVe_8d2f@AX9g!%^jg>)\`:"[e3`Q?6C +ce$t.g=+6ca3)]Vf%K!Kp\!Xud+7+Cn_VL1aO/Vngu78LeBZ=`b0&5igt1$)h;-Dsa33#de'6>" +kM4>'ce7./gYL[Nf?V@O`mNT"ioAeCdEg(]cd9q[d+n-fmaAhbf'<&%hTO!jgX=MrXJht +d&a(7T#9ghs8N&ti;`iV"onT$rVulrrVuj"qtg9gqYpHlrW)oqr!*&pqu$Bjr:p6irW)utrVuos +rW)oqrr2g!rVlfps8Vlns8Vln&H2V.rVZTlrquWjrr)fprVlfr#6+Z&rqu]mrVllsrr3B*rVZTm +s8Dlorr;onrVucurVufnrVZ]qrVuj(rVZZprr2rtrr<"K~> +ci4RUs8Muqp!B\/V6@&'Xf\\+U94Hs!j/Q*qlTk!7BWbpYHG+5XK8Y3YGe.j\'j6miS_qeUnOfq +]t_1n`5Ka>^Ta`G^V..h`ko-dYdLsJYH"IsX0T18UTV2A]t_FtZE'u(XF%"LX/`>8dGX-Ed(-*N +XL-()f#"r)]"uS9b/2-Gg)%gYbn+kZ+Ifg_S!7[Y-"h2['?d@^t%Gp\u2O@dGWctYH,1HZ`UC:[C$d\Z)4_4 +Z*V*]`4`U^WMleqWiN2&X/hbms/ZI-XK/D'X/`6"X:D;2X0&P(StO0pqY^?mrn.8Nrr +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#Bb_E,bPiqJ])GE,]`5Df0E.D/O<3DK'cGH?F.K +LnqGb[BuW`G&__VMMm7HNfKLEX/qtUKnP5LQ7^tVNZOUH@Ud.N0'3_Kn"N"H[CI,NJN4@ +NfJX4FaJguJU2j,P_j^/IYWf;M2R:HHuj7KIu0)COGJC5H$O^bJ:;ouOJT7\N-Tc2UTge_IsZp/ +K6qrqJq=GdI<0ghIt +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=P4ie,\%se:,lrda?Fhd*L%bdETePbMDjio(;hHe\]#@ +f]VP\k3hd4o&J*BiUcX+kjIcpf%&L4hq68sbLGA*d)OZ!lKRR#m,HU?aiV`KaMl0Ch!b"5q"!@b +_TgWqrq"jh`lZ`lnaGW&o(hV#ajfG[hUchqQn,h;IJ]kiCLFbKnc!lKdWnh;[\ScI(J3lg3s&jkJ,% +`Q?HYjR)C"hpKQebg4PZf&H9!puBQ5_TU`pfZM1Te(j!Lo'kere'H=cf&lGdj58h_m+'2$dG +dFRFDhTa-kiofCbn+,Sf_84ITl0Rg)2Uh!k+&agAS*kkXu5cct;-gL`uqZ$Tps8W)sr;?QnpAY3mr;?Km"9/8trr2lrrWE-!s8Doq +rqurus8W)errW3"s8;j4rVlisrqlWms8W&pqYgBjqtp?jr;?Nmrqufps82lrrVuosrr"&?rVc`p +rVlfprVlfpr;6Ejr;HTlr;HWorVc`orVuors8RT~> +ci4RUs8Muqp!B\/V6@&'Xf\\+TWJ3qriQ+"!3?+$F0)LHXfeh/Y-G75Vk^6(e_\j/hTrX+T;oNF +bJhNJdalmbZ*(pkdEB\Zc,.!!]YVCnYGnS0]t^eK[`?P4b0A/I[]QX3XfSS&Wj9Iig=tE6`2of= +\BNp_^9O]?\B3=Nb/r2gcF0a\_oTa,ZDa\'XZ!K%dFm*iYb\/!Ycb17\%g#,_o^ES^U(/Wbh_=6 +aLACZ\A6/.ccj;f[7UEXK&A)Xff(Je)9**Z`'q2_o]WrWiWSA`QZcXaM#!dYHYOXd*'>A_9L33W3!;<`k8Ud +`QGosW3jF^_oU9Sa0VP7YJ83'c-7u`^:(8JXK]"8YI27!iR"j#Tt/S1hoW:4_T9?oYd:jQ`O`%R +^Ve%3cHaMH[]ZX1X8]1#Xo>DmXoGI-XfSS(XK/A%ri?U1WiN8)WLfd(nbW1_s8L[Ns8N&u$22oT +WM-'+lhpe^rndYVrr<#orX/Q!s8W)us8Mupr;Q]hrrW/sr;?Qsrr)fprr)lr"9&9"rVc`pr<*'! +s8MKe!ri6"r;IN2rr<#tqu$Hns8DikrVcZkqu-Kkr;HWor;Z`qquH`ps8W)tr?D7>rVlfprr2lp +rr2loqu$EjrVcZlrVlfprVlcos8W&ts*t~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rUi?0K$>sd#DJa9.D/3s)rbl(`G^=UWFF9.K[&^C< +VN#kBI#=>]PEqc4Una3-JsWI7TqA0UQ&CN\P`glRH@1F+O+DM0Q^aD3T:M-uH[0m`H$OUZJs)t5 +Z*UU(LOb;HVRs'tL4+Q0T;nf\Sq!Z=SqD-6Nfo?RI<0CRH@M'NW25c1Fa&=eJV&N2Od_f+S#2pB +Kn>>VYI1L$M1UD4fJV8oAP*_T*R?WboOd)<+SQ'e/7R?*&LGBJ%OF`_\FE;jdPE;sh\E,TZ4DfKdrDZ=PeChmg'D/O<7I>3T5PJch` +qu?]qf`2!Ns8NN#e$,dDTuHrr2lqrr)fprr)clr;HQlrVZTlrr2lprr)fqs8DutJ,~> +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=P4ie,\%se-"1LdaA'@rm-&=bf\,XiUup*kkFJr`4a7I +mdTE%me-MPjNu68qY0@>lL4*"h;IJ\hpTcthrs4Udc0fel0%O,mc)[:aNM`G`6$Ken*TE.o]sf= +bgYbQnCGe#`RF#Ao&o'%qre^;aha2Q +ci4RUs8Muqp!B\/V6@&'Xf\\+TWJ3qriQ.#s/Z1%s/Z7'Y5PJJYHY11W2[&;eCM^cgkdC?9hbgFVIYGeJ)YHkmff@@mIWNXfee-Xo>DmXoGI-XfSS(XK/A%ri?U1WiN8)WLfd(nbW1_s8L[Ns8N&u$22oT +WM-'+lhpe^rndYVrr<#orXSl)rr;uss8MrmqYgHorqufnrr;p&s8Mros8Mrorr2lrrWE-!s8Dcm +s8N)un,EIgs8W&ss8N-!r;?L%rr;rpr;Q]qs8;iorr2iuqYU3jrr!'$rqu]orr2oqs8E-!rr2lo +rYPP4rr)lrqu$Knqtg9jrr)fnrVuors8RT~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rUMpBTDJjE3DuFPQD#\?mCM[g)DfKlCG^"@YKpA[@ +TVf&qP^n"0Pbk:IR\HgfY+(3%TX;#&Tqn]cS!KJ7TU(CbLQe6tNJEjtV4X?UVP'0.I=-NmH$Fgr +RA[!\Xg>$fJrQ%o]<.6MI=I6NYH4FgVlc\KG_DBQQ%sX*G'n[bJ<-;!V3cm`It`Q*J;T_jX/Vbe +Xf\4VM3=U?]<\#eLQJ""US4BVTpq:*Mj'd1V4sWVU8+ZbUS+?YWL\cpN0pEAWM5oLSu.s7NgciC +UnFESQ]HiPOJ&;BWN)nhPDFa=I!0UZMk@5[VNHRaKT;.LJV/iDS"HIPV.HBkQ&^ZZS$03!T:27P +Z'BllLR=s,N09d,QA1!RTV@mHXgG!cI"7BOT:MOFT:1mtJ:)`oJUiK@XL>!_H@V9XZ`opUMk-]1 +LOk&6QD'RoKUAX5TV/'RQ]-QEH$FRXG'%eFrbnWPs)/*\Df9N3EH1tqs(rEcCMRd(DK']GL5CYK +_s[UEo!<2He!ri6"rVlis!WN#pr=&]*rVZTmrr<#rrVc`pr<)onr;Zcp +#64]#r;Zcqrr)lr"9&5urVZX2rVlfps8Mons8MolrVlfprVZWos8DutJ,~> +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=G.ie,\%se:5rsda?Igcd:%`bKA&VgZJ+rgYhYlh9*RV +ht$F%i99h4q<$#Iiq)Trg#;AilJ^afmc2d@f&lDahr4"rm,-X^mdKAlbfe8Q`5KpRjmD0ejn/)j +^;eL[qt&Ujb0AZ*na#&bl1XPtc.hURkLn/&c-ak^eDp,llJC4LgslAG=k2a3qsie.lhBu-eCj$X +qXiamdGO<\l/17SkNq?bf&H;uoB>/lkOJ??khk=aq!Z\YipZa@o'#,ll1F8sipH@,kMbF\i7ZH# +iUc9ihVmY`l/C=Cb/VGKb0oADr:fI4g"=j!`5BjTkj%BliT0:jkhOS;li-kNj5/_fs5qYNd,ai] +g#2;hk1/#EoBkGmnGVt2c._XYl/:I\m-a&kcc!]?b0/,enG2G'cI_4EmcW*@dHU;bd`9J\kOdue +e*-]%j58tajkA2-bg4\bdaZgte"G7ke/[#geC2mre^`:)f\"g*e'cUhb.b!WbjtW.s8W)Os8Dp+ +rU\C;V4F3ql2(GZs8M`ls8E#ur;Q`rrr)otrr2rtr;Hcrrr2oq!<;ur+T;$$kNMF1rVcWlrUf=2 +gYCW@gtguUp&+jhq=!S6o_\Obs8Doqq>UNqs8VQe)?9^8s8N#rrVZBVkO/ +ci4RUs8Muqp!B\/V6@&'Xf\\+SZVmmriH1%r2tCKY,n_,Y-"_'WirqOda,\If@7^BVm44nf?2%U +f](].Z`qI$d_ic:e(E!c`QloP\$*<_d)s2Bd+?R[^rb!Ob.Os^Z*((*[(so8bf.i\f!qQW[ERR] +_7-YT^sUla`5'aSd^u]pbg=G@XJr>,Yct^_gtpQ$^r+'%]c-a_L[CX]EjO2#^_:mqjYcY4Of#YJ?dF?7I +\&d.I_84XZe\/3!d+6CW_8jmKa1S^VVlR#*\&R+\f###8cd^Ro]s,&pg<$h*Xh)a1bdFn&h:KZ_ +aN_c=[&g@3YHFt.Xf\XpXoGI-XfSS(XK/A%ri?U1WiN8)WLfd(nbW1_s8L[Ns8N&u$22oTWM-'+ +lhpe^rq?BlrW)urrr<#trW)utrr<#rrW<&trr2irs8;j=rV#XAkj\EHrVQQlo]Y2fhV[/Dh;[bn +r;Zcln*001qtpBmrVc`ks8W&us6oq)s8N#trr2lpr:]O@mf!.^r;Q]orVlcor;?Qn&HDb.r;HWp +qu$Hhm,[[8s8;ip%0-;)rr2lps8W&prVlco&H)M+rqu`ps8Murrr<#ts8RT~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkbE,]`5DZ+MRDZ=VTE;jb_DJa0)Ci!j$CMRbc +D/O63F`qqPH\.9IWi2;XZEKgTIYXDpXe2&VY.1g2MMIe-Wgo?EX0AIkSu&BWNJENiN/3ju +Z*LC%R[9_LTp;%BX/DPVR@BS-Mi"+4WLf]SUnscOMh6;"GB8.eR]X'+W1B?DP`(*BM3ag0TUV=< +USsrSN0:'M];hEgRBa>rLkCPSX.GE>Uo9iDN1[2KQC+_]X-/4"V5p8UQ("D?R>liGH$t9uN17#] +XdYE@W3*8&PD5-qYb6r*J;p2'TSeZ$Z`TabStqm^Ko!<;Ne +)?9^8s8N#rrVZBVkO/ +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=P1jeGe"ue,e+KrmWRKdEp1bdEp+ZaNW5olLX>mh"(+! +d`9Ymo^^qjh_9M'5oB4fWh!4V)j3u]LrV,@'dFRdbmF0/& +jmqK_h),kldF&9o'FoSjn\^4khFhMmdof'd`95Cb08;mo)/(@jR)U/lf-4/dd$SkeAfMY +lM0_se*-c'hq6cHiRcDraj/>_dF8$CU=K:n*7`Qge'c^qe^rL,f[nX%da6=_^9+BYo(r:as8L^O +rVd9)o?aS8SY!a`qZ$QprpKgbrW3&urr<#tr;R!#s8W&rrr;rq,ldc(be:gBmJR"`s8(m#[B?a> +Za-jG`S'SRs6nLYbi/9qs8Drrs8DZj!<;lorr;]k!r`,trr!3$pZL#Be+s%@r;HTn*W>p5rVliq +rr2rrrVlforVQ!.]%?r\qu6TnrVlforVulsr;Z`qquQcrrr)`ns8N)ur;V9~> +ci4RUs8Muqp!B\/V6@&'Xf\\+SZN!pXf\c(Xo>O(Y'@%MY-"b'VlR/#YH4\(Yck4=bi.^Cg=Or+dDWGu\BX$kagnXbeD/'O[)(2Acb6Zo +a4Aqg]X>K"f[7[N`nfh._RR4ufAYH(\@0<.g;CSFf&,6,^:Chrf[.OWe(.N/CdC-*]aOS>A^sLZV +]t_tLcF'mpe^(h7aPPar^:_G5f?V:BWhuc!Zan34k2"G4g#(Q8bdadbdbW0YX/ikZhU&gAbM_$i +]>;S,]!&$1Xg"q.X0&J)SZVpn#Hb&,WiN2#X8]11X/`5&Y,S"caRT-)rr;uMs8W)ursADLZDjOl +`p\qu$EkrZ1t8qu-NorVlfrrVc`pr;HN[ +caqa-rql]orVc`pr;HZps8;oqs82ors8Muorr;uurqueH~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkaE,]]3D>eAPD?"MQE-lJ>D/3m%CMITuBl%X( +Ci4<;F`_eTLm4R5VNd[Y[\o:CNhNb]SW]G@\$`#jKpJO+Oc>a0[B#jhVlc\SLQn[9SXZUcZ_WkM +T;elfQ%t$FIX-&[SuJljSIXJD)6H[L9kK9)Y.\%&iREjDR,Kn,)SYHFU`O-QQI +Yb.#AWk>g6Oc5F)]W$sFMkI/BOI)lIU6CkB[&/h>SZS`LN1[JaTp(S+Uo9rNLjsc!K8G_`ZG!ZG +WNit?YGI;5OfGgdO+;eDV6d%\Nhs:kS!086Sp5rVliqrr2rrrVlforVQ!.]%?r\qu6TnrVlforVulsr;Z`qquQcrrr)`n +s8N)ur;V9~> +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=P1jeGe"ue,e+KrmYu:dEp1bdEp+Xa3E<"mIfeqg[k7/ +gM +rXJhtd&a(7T#9ghs8N&tmf31`rr<#tr;SYRs8W&rrr;rpr;HWgdAr\*\D-]Us8ViL[@*APTVJ0J +R%Ue0lhohTVQ\;7s8W&rrr2lorVHKnrVZWprVQTos8DrrrVlfrrBgM^r;HWmoA%$S^A%[*rVQKj +rqu`nrr)fpr;6Hlr;- +ci4RUs8Muqp!B\/V6@&'Xf\\+SZN!pXfei)Xo>O(Y&CDDY-+e&V5q&BbgahH_qX,#_R-o!gt'Xh;HSWNE(rY-*8U[ER[mhV$N3cbd0"\]Njf^oj?,cf<3UZ+eK1be:Hu +cJIR3`Os1BiRl,[_VF;"\?)mMf&5)nY,o4bhU'-Ye(rQlZE:FOf[@[Uce6mn_8!^q\@&p'o&7d1 +aOAr&f>b2!Xg"t/Xgl?th;mb\hpB*@[F4:#dD*E5dbs%ncFU[:i7>NAWj9k*fY4JsbgXM=][,6T +^r4dYb,_8EaMb?kd-0T<_nsRJgX=*RZ)X_'Z+A-8kM4M9gYU]!kpt`?GR@g4LT:)+?ZHVY4jLV4l +cLCl6rVc`prVZWjrW)oprr)forW)usrr2lqrr;p`rr)cnrquBC]q`=9s8;imqu-NlrVc`orVl`l +rVl`kqu$HmpYr`K_>aH1rVcZkr;HTlrVc`oqtp +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkaE,]]3D>eAPD?"MQE+Ej'D/3m$CMITuBl%X( +Ci4<;F`VYRN1$KDVNdXY]d<(Za6HfKTi$uQBe#H]WR`kVm*%\MO:HGR%(Fq\Z)$c +V6[D*QAC9KIX-C&SZ/``QD2(1UPF\gW56:nYbe%lZ*L6kL5M_1VMf_GL5L>"H$"1XIt!0D[(!?C +XK6H=R#[/gU:dq%L3S-E\tP":Q)(CSQ&_0.\%8`5Pb#%hYapoF[(WAuKSc2%\#bmMKT`IGVja0W +[&ogTKSl>)WgfNVZ*'mjQ^3eqNKLTk\Y>O_W3We1RYQ<@JU`-"N16cQ]>2.iVj3!qW5$!EQBl-P +WOTF6P*N&XYEOZmMl!qhQ\Ua#Wgo*6Vm*"bS$0;sKR8`QS;<0'^:U80QCb.\VOER$J:3$*OJ9.s +[Ap@:\[/TAQALd)Z_WY6K9N7@VN6V.]!S3%S=c73JTlUn='BTX)f-r8bGdYKlY;s8Doqrr)cnqYgKnr;Hfsrr2lkrr2lq +rr;p`rr)cnrquBC]q`=9s8;imqu-NlrVc`orVl`lrVl`kqu$HmpYr`K_>aH1rVcZkr;HTlrVc`o +qtp +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=P4ie,\%se9'0hda?IgdF6Of`l?<[m.:#AioBV-p>F3A +j7`'%eCs'TmG5q(dc0HRk2uC;map"Qp$CG_i:$'eir&iSo&\s#q=s=4da$%V_oUQso_%J+jnSi= +bJDEcrVQ!Dk3VBme]Z"\lhp>-`l-p=@9r^utUYe'?Y3 +n`e]Rg$\n?o]Y8so_S%1ce7mbi5rdQf^/.hd)O&Nl2120eF3;%e&BJViqDisg#MVsp@%>.g=Fd, +n,E(GjQZ4.p$:D[bg+MWaMu6DeD'$Lo_J7LeB7+Ws&nmRkN_U5pZL/`n+c.k_oBgRo).\!iplm#mJd+arVZZqrr2lorrE#ns8N#ers8VthnQ))p\t-drrN&pp\tNu +pZ/uS_uK`6r;Qcrrr;us!<)Zlr;?WnrVl`pJ,~> +ci4RUs8Muqp!B\/V6@&'Xf\\+SZVpnrN-($q6"qFYck+(Uo_/LdalgebM2+7aL/M$h:fo^_9U`a +`Nu\Waj8>YcJRj8^:hhFd([$-e'PhJhWNkKaiModgse_AB\Y-#1[i7u/Ye)AW]W3*DEg![[La48nsda#nI]",Z7n`/-Ge_K': +d(luiYHb:3X0/hA`6HliinrD%ZI/((f>u+ZeD8qlc+Lj@h9E1&Wia%diQJXJe'#A/\]iXM`6$W_ +_Pj33\[/6BeEc>Lbg"YlgX4!PZ`^@3Z+/!7j3PESa32]Zh93@BdFu[JVl[S[grm",_UdAed*U%X +]^Ko!<;ur"o\H!rr<#qrr +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkbE,]`5DZ+MRDZ=VTE;jb_DJa0'BkhF!C2.Sa +D-1b"GB@hGIZU2$YcFInZb>7PbtddQ][f=W0Np`^q-_D +TrYW/VNm!kJUD`nOeSt^VOjWs`iP/QNiBe,XeVY@WMlPVMM@.fZ`/n,F+8jcF+&(JJ:Dp"T!GVs +Q^!btNJigRQbL"nJTc@5[\8Y8Pc(UZQ&V*1]t^qQTr>B2YaUWAZal`dJqf_tZ_in?KTE%@[$d&W +\YkI/tUmR-sJq/N/NM*_k +VNdC>V5(6%U61_?Z(R#*KU&REUl1)"Z*UR6X/MYSKmS,mH$=FSF)l5^Kon,E[mp> +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,\%te,[qrd=9Tpd`]YNdc9llp[[\7mech=bKJi: +q<[8.m-tWo@h.!ce$C`d_ruLd)aGho'Y/L^VRe*aj.iNp\-l$aMQ!Yo]F]Oh!O^t +eB?D/r;#XuoBt8O`6-BG`7=AUqX*>(lgF-&h:'Tjb0.oQiqE&r]"5i&cftDof@fN^iQ]6[fBW+mbKJT# +kNM=+p[@4ud`fkXcdM^?U=K:n"P)#Oe("BI'\D$jf[nX%da6=_^9+BYo(r:as8L^OrVd9)o?aS8 +SY!a`qZ$Qprq?BlrXSu,rVZZos8W)srr;usrVlfrrVuotrVuiurVlcnrZ^I+Q^aD3Z/>HVs7F^= +Pa]#'aMYj#Un4'bj4CB'U;$$ps8Dour;-?jrVuj+rVQKjrr)cmq"++Nq>:0h,5qE9q=s^\r;HQi +p@@qSq>:3gl-dK"q>^EkqtTaQq"t$hrVZ]m.J``2pA4afqX2eBf)G^Gqtp +ci4RUs8Muqp!B\/V6@&'Xf\\+SZN0uXfS\-Y,nb-ric@)7B`r$YH"FqYe\Q8f$i'ofAtr7Za7a0 +iRH0#e^DCCYe&$1gt0lph!!;$\&m:Pb/VTNagoCJj4_hr^W4^I`k/U]Y,eUKZGb>Qi76)uhs9+2 +V6\M0hTN^Na2,3eXg>dki7YiAUTh81X0SOpZ*:77b1tUcY,A4tWi`S)[,p8TWhl`9f?(P0^1_q*YcXJr>&[*7^b^s^lQZ`gm] +e',eRf$V.1Vld5)W4:@=iR#TbcI1(\^ULJOYHkICbMV3oVl6l0][Z)o^qeFP`Nc>C^!YTVYHGOY +s2betf%JKl]3Zf:r^s7XsD +QCPG/b/M9+VP0Kgj4CB'U;$$ps8Dour;-?jrVujQrVQKjrr)clq=XIVqYgElrVl`lq=jX[r;HQi +p@@qSq>:3gkgIAuq>^EkqtTaQq"t$hrVZ]m.J``2pA4afqX2eBf)G^Gqtp +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkaE,]]3D>eAPD?"MQDusooD#S0iCMITuBl%U& +DfKrEFE)DRPbbFbXK&2#]=4JmN1m_mYGeM*XIbH/OeJtbY,.hu^TE`]Ts1VmSYE'VOe&tnZDX+W +T;STXOGAC9H?k%)V6@,'Uo1`@\!;H"W4KC2QC"),N.ch>PGYXbN-&ucJp)<:IrTCYJU<'?Xf.G5 +H@1-kKo1A=]Xa&SI=RljT8nepWNN%YLQedP\Z)1LmtQOU617dO/07nPDHBV +V1j;SOIrkYQ&_*%WW')KWM,lOS[?;AUn=?XW1]B5K7JE"J:r`7LP(26PGG@k^nHR\^q-P3T5PJch`qu?]qf`2!Ns8NN#e$,dDTuHqnS!fbOi;EQRp!Tn+S$pP_`58mXTUWFNf;tO;^?tt#rVclrqY^?k +s8FhQqtp?krVZQfo^qnSr;HTnrquZhq"OX_rVZNco(MtVqu?NWd_jW2s8Dlmq"""Nqu-Nmr;ZXC +q=jRUqYgHjmaAYsrr;ilqu$<^nb;qZrVlirr;$!Wq"jg_qu$Hnrr)iqs8<-#s8W)us*t~> +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,\%te,[qrd9=uId*'MRf]_u$n`o5okP+]0c-,#; +rUoaPm+]OmalN6omb,b)j7hrkbLu4RoC;>maKMSs6RqGd+@IUmb#k5fA#-AmI^#Pm+KV(bg=f8e=tLne-+=OeC2qHeJ-Wgf\"g*e'cUhb.b!WbjtW.s8W)Os8Dp+rU\C; +V4F3ql2(GZs8M`ls8EQ/rVlcps8;T^o_JFarr)fprWiE%s8DrrrVc`pIf99Fpsl"'Un!aKd-pc0 +p!T_#W71A1nF,\dSWBu-e#f14^$Yk"rVlfnmbHakqu6Qln`&Nrq=sC:e'-(ch!Fe1qXWV%h9aC! +mIf\sd*L1nh +ci4RUs8Muqp!B\/V6@&'Xf\\+SZN0uXf\b.Y,nb-ric=(s0,5#Whuf)`R<;`bKJ&Ti8;_d[E.4c +h:gW5_lfiAc/\!=_R$SmhpfhX_mH\W['-I/ZGFuEe%).YYcYCX +eB5VHdEfM,VlmD6ZG"W>eA/Dq\%KJg\$Nc(L-$g!d'oT"XOks8DrrqsN7to)&Fbr:/e*n+lbHi7-'!e_]`iqYTpDh;-H%f^8=p +g +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkaE,]]3D>eAPD?"MQE.)V@Chd^#CMITuBl%U& +DfKoCFE2V^RAR'aU7n0T[C)]fN1[So\$WQGSVV]NUq47BR#-Zo\#Y^KPGYI`Wi;k`Lm>0MVNcXZ +KT;1TLOjl#G^+b&Uo^SjSYNI)^S-13U:%.kLP(D>K789(Q)1RWLi[NaKR7rlEcQ_^H[LO8WM5B! +Fa&+ZJVAN/[BY^EJ:a8iS;rPpV5TuEKTW7@Vj!$rO-uQ*Mhm_([%*)0Lmb?ITT=h]O/0(_NessQ +V1j8ROeB"YObo!YQ'\#PNeDh.KTi%3^Sd$a[B,jXNrG)L +OcPBbW3MtHI=Qd$T"22%Y-"%GKo`"1U6qILVNZRZKStbEPGYR_P_FaHNKB0WKn=f(KS,/T['Q'G +H\.-:WP#@"QD^mWN.d(UVm<%RKT21UMNk!H\?V]bHZjOTF`_\ErbnWPs)/uuDf9N3EH,o9Df'9+ +CMRd(DK']GL5CYK_s[Pc<1)o^VJ9dBh;-H%g$SIrg +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=P1jeGe"ue,\%te9fWkd*gCkcH=;WhsU1.khatBhX:!t +f@ApPp$:l-j3kcWd-^f*ho<:Hj7r/ubL,GFqtg*Wh8n.:p$:>O^W=gRe^2O^a2Z?TjmV[$h:UNE +o)A+%b2`3bfYkMAaN)-7bh_^[mFKA)h;[)8e&TJVdE^8'o'P2Vaisb1+OSB`qXr=^bKf2>lJ:.R +lg3fdc.D7Mj3l,lbgb:pbKFMOo(:\Z`5pWunE/<^ZG=lrVlfrrVud!rVuors8RT~> +ci4RUs8Muqp!B\/V6@&'Xf\\+T<8$m"0JZ,Xo,>LXfek4YH=h)YeA90dDs#9^;edZcbR<=gYC9* +dE9&"V7>+?iQ/0tXi]DN^ot/ff\bT@d(HBed+6ISWhcZ$\@/`IXK/G,]ZesXcbmH6bLl4:Z`hL, +fY=MbWi`G(Wj9Rmg!I7.YJ.laZE^=(Yct=Abh:L_Z`paAZQZ`cY.36;[]cd8`mi/G]Y_naeEkYj +UnOiu^:^n[XJMf!^rt$F]sFlI]#`RdcF:jFcb?ZgZaRBT\?iougWQn'Wi3&9gYg];d_)`c8\*1! +b.kg=d`/`#\\c;"_9LNU]WS9=\%K>`[BZp;Y-57RgYTrRYd_9\e)AZe^!50R_7I;!e(`*RY.;?S +Vm"%ninr+nWhucpXT,=&XfSUrXoGL&XoGI)XfJJ&ri?U1WiN8)WLfd(nbW1_s8L[Ns8N&u$22oT +WM-'+lhpe^rqZTorW)utrr;p-rr;o`g!SO?q>UElqu-Qprr*o9s8W&rrr;rprr2,pQ_:X\R%hFZ +r;QE=Vj=UKr;V9)SrBl(d]T+1]^>aur;Zfngo[a1p](3jhmTrCm-)j1X.c5b\C0a=pYWKd[A0+g +d,)dGUS4K_[aad8gW-kNp]'R*[&'LlW4C79rV"[N\%&cCU7n[2l1O;_ZdesKe$cctWhH&^[Ee(6 +pZ';tURdsa^p(T8qZ$Nnrr;rsr!!'!s8DutJ,~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#BkbE,]`5DZ+MRDZ=VTE;jd(DJa0)Ci!j$CMRa' +DK'W;FE;PPO.N5GSWo;!RB*QeQB\,L[]HL0UQ^:XO0$((SV)0=TQLOaVD"JUr5tL6na9T8.W9LQ$k5Hua7UIt)m'S#WTUV$uKSP_]Xh( +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,\%te6gYOd*g@ic-+A_jRMm/hpfondH'c_jlGe" +n)E6ai7cZ*f]i"phTjWh:9lqaNN)kl0@9[cH=DYhYQs! +dcL2mfuCeFb0"eE`mE`8o]t2Wh!=Cgg""0`d*pCql1k)Aj5K%ZiS`\IhYZllbfS&go^:_nhrjFs +jk8DNm-Nlngt^iIgX=O.o'tDQ_9(L$p$UksipHU9hojRBrpeIWcIV1Sn`&HekMk:PkkG)Oi613\ +mG$4Di9'0Ohq68ta2lZclgaE+i8*8Mm.U;7c/A3_jP8YPjQ5@Qe(X-\l-mhuaN<**rr2i`g!.q# +o(_P,hsL+)jPoIqnE&Ngn+,`"gu@J[jPAD5bKA#NcJA!_k1SSMjPoRui6Tg3na5K!jmDd2rr)ios8D?1Z)+hSlM1AWqu-Nn!r`&prVd]5rr2fps4!p4Y/@`@ +R&nm9s74I4Pc*+.q>To6c'OBof@$diS%@tdrVQWpq9kLa[d3tmp;iGd`7iG;TUV@9Q(4r#mI//a +NL5ogR(C)/QBdc$PFAr3ile3YZ1.M5X.,TKR?sGGbOOr,Q'7N*SsYV'UWVoTUPcthn@b9XT:(q- +R[^D-mcVWeQC=A2S=GqLg%G@DrVc`prr)lr!r`0!J,~> +ci4RUs8Muqp!B\/V6@&'Xf\\+TWJ3qriQ1$I]]]QXf\\+Xfee1Yck./XgQ$ld`]D5ZE^s`f@8$g +e(WEq`lZ9;]!]<#gXXahG*aZEqI7 +k.S1Fg=V5g]&XfSqNe^r*XYe/'%_7-_IUogl,][,Hk9[_#%aN2<<`O`h>e$H0UWl*B3_S!V' +cdBeH^WFmNbfI`?a2u3/\]lL\(9Wf[&:+:aP,([^r=C4]tJF+f&,6" +Yfc.\`4j",bK@]3YGnCtZbar;e'5tQ`lcigho2k;e'Z+H^;@k/`4WIice$=HXK&8"\^TKpgs*@1 +Ye8B8b.b[8e^)7QbL=hX^W+XLb.t^-`lQ-6\?W3>YHG7Of\b&na3;fPfA+KV[N*?;dE9MOd+R7! +\$X'"a1/b'f\=oo[&g@3Y,n]%XIlWpX9Yl/X/i>&WiQ-#%]cV1XfeXpTZH["r;Q`qf`2!Ns8NE! +eZu0JU;lNss8N#ns8W'3s8N#rrqufpmEVu5[*\+5rr)`mrr)utr;?Nm)?'R6qu?]GV3eC)\Y5Ip +f_tjBd&<80f_bRFo7,)SNjIEfXdY`jm/R%]s8VoCP_lj7s8M`5PFBGDc**k4S!fV7Y0ZS,bF4K\ +Q&hBH_PW]eR$X).\CorfW0"@UpR[B_8P`qQ* +XOHV#a/,)jSX5k:Q`o*8rr2lprr2oqs8E)us8RT~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rUMpf`DJjE3Df'?/DJX-+D/3s)DuFZoFb#XJUn3a( +K7SlMWMZ>^WNr_#SY;[EP)Ya'YGmkDKoi4>XI"ZrQDq:%Z(m;*Kq5-=TTtY*S!T1kIs?*]J;]VW +OG844K8#W,]9%i=XJLo'FEr@dI=@!>VPp#@I>3uPMh-7pDg6YZN1R/RH)$doR@';*QA^m-V1jDG +I?pe(P`ClpTVIp8P+ADETU_F=T:_O5OIi\[Q\BsFS$'0#Ssl7KZE0@CLo@bWL3S9+R]NW3)PFM4:E; +R[9M>Xg"FTMOLH9P*2KAYc!hAH[:!`F`VSCrbnWPs)/uuDf9N3EH,l7DJa3+CMRd(DK']GL5CYK +_s[@CnperPNO%3bXdY`jm/R%]s8VoCP_lj7s8M`5PFBGD +bc[Y0R[BD3Xj6A(b*e9XP`D0D_53KaQ^3l*\(K`bViS.QpWfk1S=Q+9SZ^3-mC&=FQ_0n +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,\%te9]Qjd*g@icHFJ`j6cM>ioBbZ)o_@n4dE^J5qYp^EfpLX'jnEoT$j8&,ibK.caoBkMgf&,lg +oB5#gjR`6?md9B+j4MuBmHW9A_9Cg,qXs1=mIU5Hg<.q6qX)hRc.(eFm,6pjp%@b9l1+H8fu2M4 +mHsQ?qYBU=f?_[ccI(D.mI9]8n*]T3o_J=He^Wg] +qsj.Ip$L\ecHt+nf$r1!e^L2As3r%=eC;sreCE+$g"=s/eC2jmccWu(WQar0r;Zfrg&M$M%K5nF +XJMJZ_s.$trr;uns8W(6s8N&trqufnd]/UmQ)r=!rVlcorr)ipr;?QnrVlcprql`p`g3+-f$LXc +QGN1mo['IsQb;,3h:^&UP*NZ9e?571]BoRqqu?]jf;FV(gAh-2Z')-4bcd7sXi&2dRZ+5ukf/m? +Qa"6>:;X0"T=MqTW0j9ng +ci4RUs8Muqp!B\/V6@&'Xf\\+TWJ3qriQ4%riH1%riLRLXfee0Yck./Y-u3jc,I5rWMcr9cI1(g +gu7,>dFHgud)a)Ddb^ +c.CIf_847Fhq?N.eBl=Q^;e[N]WA-?aP,\1dEg:nhUK3=[*RLO[A^47_pciG_p$Z]c,RfNe^1q, +]\(idgYh,Kd_rVsWiN5,]ZAILf@ns3g>(E.[\pdbd`fn\rm>/t^9bAld)WMnWiN,'a4fD%`3ZJI +^!G-G\@]f0eBlUqh:09H[`@"Re^N+$e'#P7XfJS.Z+.p2k2G+Uk2kLYgW-\,_9^KScHt.rg<$b/ +a5#CpcI::f^p9uAYd1I5Wr/rjXoGI-XfSS(XK/A%ri?U1WiN8)WLfd(nbW1_s8L[Ns8N&u$22oT +WM-'+lhpe^rqZTor_!4is8N#qs816EQAq02cgC]1rVc`orr)cmrr2lqrVlfns8L$(S%dP'ZBglq +p&F^5W03R_hW!GIc`iY#^#7JER[h"Vs8;cos)7Y`Vi@M+s8Cr^P,cgOYa1Z[`Q>QYNiUn!aHhOJ +ZGOGrYaD,ra2"^EUVbg5VhqPEhP?:/_p6B2R$"K-k-U>4OKHR?XdkWak1?>g_uB2?Q]IcFb/UKI +S\E_%Xc]$`eAn; +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rUi?0K$Z9m$DJa9.Chmj'DZ4U(EHQbkS">q&IWojZ +O.Du>Vm3e@X/W5'Y,IqXRAHs`URn*WY,7D:JrQD)Z)a=JH%(jIW2chtXfS7\LOF>eH%Ls7ML]nj +EHQ>TZ*omUR%p1-I!C$iJ:OGoZ*(()W2?8[SW]29T7D=hG?C$( +S<&DYO.E2ER$*W$W3E>#W2QP`PED?6V3$7VLRYESYbRnfWNW1ZI"\,mSV;<:KTi1$OHZ32V4O$A +Tr"HBH&el%V5pf'Wh#3&GB7hIH%qKOU8FsiXDtACT7hBGTV@sGTVA-QR#HTOQCa@nG^"FXJXrbnWPs)/*\Df9N3EH1tq'l@c'CMRd(DK']GL5CYK_s[7hV-8YPErl=e?571]BoRqqu?\7pXc=&UtYkIij"ZHcHNMX +R'+BK[@ +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,\%te,e"Erm>l8ccj\ah;m\ReBGqL`REZ$jm2L8 +qsj.Gn+HMEhV.#\qu-0Ol0RNbcH=Mlmdf\ucH=>[j6lO3q"a[Ohq$)pbL>;,i7QE!aN2NCbjP)Z +g>qPZe^)Rje'H.Xd,!mIhUL*8nFGl&g!@mhdEpA$nG)hQp.=rIm-1hWsUsmdp/;e&'&Un,3+[qtT[Bf?MCXb0JA`iU?F,lgOB4l079Z`lHZkl0Ia*nF>u+cct89 +qYCTqp@%%lbKA2]f%&7He=tLne/[#ge'c[neC<+'f\"g*e'cUhb.b!WbjtW.s8W)Os8Dp+rU\C; +V4F3ql2(GZs8MiorVf@dr;HNlqmhfUS<]GNjSSuVrr)cnrr)fprqu`orVcZnoY$K^_Va7`PDcX* +rUeL;Q'S;R['-?qNfg6cm+JM1T"XLjrVZZoCAHu/S!qS#qokV$_q;YoPbZ4WkgQ_uR_.A!R"M6c +na"N"PG6%NfuUh@d,E?MNjJ#qOGgU6p@I1DMj_`B\!rYTam\H7WK=19d%?B9rV"$hOL!L5n%>*Z +YedoBQF5`Nn\:E[ZdS:>rVZ`rrr2rt!ri6"J,~> +ci4RUs8Muqp!B\/V6@&'Xf\\+U94Hs"0JZ+Xnf&EY-"k1Y-+t2XfS_5]YhY#[B6I-XLQ0ib0Sf" +hq6H/f%]!0`kKLFiSrS:c-OMEYH"kCc-aYCX/Dr%_9UKZf\+j#^U:8FXL5g^_n<:WWi<%rXj5G1 +]Z/.6\$30H\$E*:[(j]&^9b/\bKRo9Z`0h%X/iVFdbtP.Xfen4H*=Td_8t$WgY19/bIjdI[)^>4cd^@dahtWn[_g,$Z)Oe.Wi3PSd`Ao"VQ./G +`jr7W]ZACCcI:=cZD+/(cJ.++g"+Kf\#cO,X0An>`mrhqe(<:)da6+HX/`YIaNMiRd*^1UYH5Ca +f[na+cG?idVQ6o)Y,\Q%XIu]qX8oC%X9P`*WiN2#X8]11X/`5&Y,S"caRT-)rr;uMs8W)ursADL +ZDjOl`puOc6jX-0UAd\2c>rV+*iOgE[7n@b<^ +YemuDQaPiOo"^T]ZdS:>rVZ`rrr2rt!ri6"J,~> +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rZ#Bb_E,bPiq/?[\E,TW4DJa3*CMj&hG]InQL6.RX +K6hZ[FG#X>S"m*n[]Z^6XKf+1R#m]5YHOjnS"5n'IX-L+SY;I.I!BpgP+JDEW2QP^N.?.nEHm"f +K7%f]DfU#BI%@$mM34*`IsQKmJUMfjJrc:cN.684Q'I8ZHua.JG'JS"T;SWaUnaTNQBluYMk-)[ +HZjLiS!&GMGCc!PUR@'pMkI/HT:qpLQ]6i]Q^*AVIu'PpZ`9RcS!on8L3\94S3T5 +PJch`qu?]qf`2!Ns8NN#e$,dDTuH^Em8H&Jbqu6K'OI2Q'Qal,Rs8N#rr;HWnrVlfo +rVlcor;Q?%Pb>qPi4YA6YiYiVd]8\#VmNh8Vjia1W6jqbXdboqm/R%^rr-[.jhmRVbl7L`SXdUM +]q:Rc`oH=5Y`kQhh9DCBVUk>*dA`A*`n]:i]ti%TdA`26lcbHK\Ert]i3&$-bM9UtQCl=hl,frf +XPM9sO2:eh^labbfD+gIS"6e#\t>:rir/D_Q^b>0mem%^!<<&ts8N0"s8RT~> +e,TII!<<&t&,lD&p!p@K\Auh=dF?^se=+qfe,\%te,n(FdJhL>ccse`e_/X,dETnV`m3&bh<""n +n)`H_h!4\.k1J5?jm(mYfA#$.b/D?Lhr385aj&&Rg#D#Khr*DFda$%XbgY8!e^)I_cI(.gce[I. +f%o-1bKSDcd`TPLcI^n-f$MgtioT+Rg="a!d*KthiSDr'`mY-c.D(HlcGi_[Go2iQ,rk&r\aVrS!Uh7[%3bqi;WDtXc]U5adIjor:mjXPJl_cn\Cce +W3`RoUs\f6pt`KUZISIBrVlcorr30$s8W)us*t~> +ci4RUs8Muqp!B\/V6@&'Xf\\+U94Hs#-Fr,XfSV)r2^"'Xfel*Y%b#AZ*_$N[^*'>XfSk>^;A"> +e^DUX^qn=Ng<7+=_91*F]t1ni[B$+$ZFmlYWMQSmW3s@R]tV:q\?W0:WNYckaS +[C[(X2a[Bls5ri-+(\%ou%rk`op]"#;X[(j5UYH=h6^UgVFUo_/I +ahkKgYJ.re\@fPh\?`6>[CB?QB.ul +p\*%72m +WjT"!Vpk; +eGg0\s8W)srr;urr:.jtL4k80G&mS#!cW'rWc7uV:N15jE,]f9EH#oDJsE1Chmg'DJsH6 +F*E(bKS+\tGB@nQJr#MWU8Ol\R?j,3YH47QLl[jhP(nXFL4=>bFao:,K6MB\GBSUtN;e`CLkC%t +Ec,f;H?s[OD/O?TXHZX:LG'7qGEcl\ZM3*paNJW:4D/4BJKo(eNMLp8&G^+Xj +LOjYiGCOaOHA[Z3G^+1JJ;T),E-$JbNfAsUNe_aiAoi]iOcPPXMLp(jBl%^-F`r%^MMd%7I"$Qn +IXQ?WE-m:qNK90]Mi*+0Ed*1uR@]k1MLp.uF`dV'")r0rDkh:OD[(0!Df0K4E;j\hCi+!(CMdp+ +E--M_M2%53meH\Zs8L[Ns8N&u%/&)RW1]j'lMLV\s8MiorVhDmQHB()r\aYtS=%%;[@Wtu +iVrQ"Y*,g9b*n'srV='\Pf;qfo"guiWO/dsV:,#9q;/]XZISIBrVlcorr30$s8W)us*t~> +e,T=E%fQ;%o[L.G\&QV9dF?^srmV#"eC:8D!7_"uqUBh +gssfscHsnZb08)Sbf7Q`g@tXDl,90nfCJn=rr;lurr;usrr7K~> +ci4RUs8Muqp!B\/V6@&'Xf\\+riH1%UojTsr2Y=KXf\b.Xfek0XKA_1Y-"k1YHY:8YH4h0[(F5u +cHX>=Xf8J@g#(2gX/;_kWN`\6['?X,UoLW#VP0igWhZc*YcOq.XK&1sX/iD.ZEgX5WN41XYZuXXK8P.YHG.9Y-"k2Xf/.s +Ydh6MY,eY.Z)k%2ZE^U6Vl$MtY-PLH`mrV[\[JcAWNH0&'sP!KY-"h-Y-G42VP^E!\@fJaZ`gM1 +Y5PS1YH+\'X0Ak2WMlhuXfen7ZE^U9XfAA!X0&P1['[';VPU8oZ*Ud?X/N54X.H>uZDjb&Unk3& +Z)FCmX0]1=XfS_0Whc>aX0Ak8['R!]Za9V9+L/,NWiiV3Za@*CXfnt1VPC,r +]=bSVYd:aCXf/+rXKDE%T<8-p)6L!@X/rA$X/i>'X/`5&Y,InaaRT-)rr;uMs8W)ursADLZDjOl +`pACtWNib4Z+eK=lh^Y;XI>m#mJm4crVQQkm'MhTgu,;qYi=ZCO-H!"R$X5/P`M9Ve";c8mf3=Y +eZ=[]P,G_#cfaZ:SWUA;_3(57rVnS%VOP0d\rPQrUR[iUsS`5p!0P,Up$bb +X5*LMr9M@pWn?n@rVlip"9/?"rr2qJ~> +f)P[Is8=H\-WcCi4HGIslTdH@'dPCMe0>H$O^[F)G`+CMe$3FE`+`JUVojHN&7+H?aUU +H$k!gIt)fiH?jUODKL;]LkG\U#Ch2IE,BK3E;XXNE;sh]E,TZ4DfKc7rG<3`C27['DK']GKo(PI +_X@3rs8W)Ns8W)urs\SLYc+4g`Tm@#rr;uns8W'2s8MuprVZ]o`KuL=N1e2Vr;QZorbDE3s8N&u +rVZWlrVl5uSX#YCZ)jO_SYj!`psZ(%RAd?pY->U`h!=h:hQ30?_X7C'rr)`mr9UeOXPDa9O0IX' +X,iI1R?s5,R$3Pub0llC]C#Xuo$j^tJruq;]?]R)aIJ@"gqSr>dJa)!e>8VEa/kZ$^Zb^ogpN +g&M*O!<<&ts8aNMiRdba3Ngsad$aiDWPdaHIfdF-Fgc-Fbd +dE]nTaNrMpgXOQocI1.caMu6Ac-b%lf$hsicI(+hccjPPa2lEJcHt"cbg"J[cHa\Ybg+\edEp5^ +ccstqcb[lVdE'P_c,nGdeBZ4[daZ[lbf@oTf@\Wurl52dd*pIldJhKIdF-Fgd*^7je^Msre^Ddl +e'c^ncd0t`aiDZUeC)[gdF6Lca3)f`gt'ltd+$Xse^L5A#M%;Pe^W'rdf._sf@g/Ts3hG*d*KkJ +XJsD5q>C9mrn7>MrXJhtd&a(7T#9ghs8N&tp\tPaeGCSsl+=R]#*@eY7qh^"M?%kOJBIrVulOX-o^!mJm1arVHHlq88Ab_9&=4_=HiiN0Tm+ +TU_^VXfoFgbFb*5lM^MXpXQXDS",q7WQ*c9TT?A2]9&f?rr)dWqpD1(Zc0)9TY9C_p=Zj;V:O(n +R)o3m^7_LNmf)k&UmRp]WgKd>p&4[N_ipeFoD\^es8VumrVuiprr7K~> +f)PdL!<<#s!WE#srO)YPt\K +ZFe*#dEfnN^VJ%De&A\oV4jHRY-P79YcXn(WiN%mUoL]#Up%20Wi<#"WhubuYHP+2XJr+pW33D0 +Xf81qX0Jq2VPU8rZ)XXuWiiS0XK&>$W2HPmW2?DhWN32,YH4b&VP^2eVPgDpXJi)"Z*LO/UT:W' +AZ`#7YH4\%YHb72XKSk4Y,n\'W2m#$YHt[Rc-3u1[Bc^.WiWD-XK&A)XfSP(YHb:3V4s`bZaR6E +XK/J/[^*!6WN3/*Z*1@4Vkp>nYHY12X/MqqXKJ\0YcOh'WiN+uW2HP'X0/\0XK/G%YIU['Wj/Y$ +W3N=uY-YC5VPpT"XfJ=oVQ@,2Yc=LmU8P&pY-"e+X0&S0YHG.:['dES\$i`PZEpmBYcb(/X/Vnj +Vlm;,WN32+XeqkkYdV$GWMZYrY-"h,TWS3ps/Z1$!ii<%ri5t!%]cS0XKJOoT?$Hsr;Q`qf`2!N +s8NE!eZu0JU;lNss8N#lrrW3"s8Ms*s8D&pTp;FkiqEBNrVQQqrVlfprVun)ihDBrS"umRS=H4A +WT*m.Ul:eXgYq/Vo_\[fs8LfSR\Raes8MuqqY^Bh_igM*ae+a4o'*-5Q^snGStiEkZG5#9U7/mc +rVZ]kfX@NFSt)7MaPY18OgEfUP,6k2rr"n,V3eU1YahH&jo+r.\!etZrU7OrXO-J9p!0J( +V6[1kX5*IJq +eGgEbs8W)srVlcnr:.jtL4k5.G&hJmkFFEVqTF`DAAFa8Y&S>)^IQ]mT&Vk]H)FDbc%Aor9AH$X[UEccGEDJjQDF`;YWH?=4MF`D>< +E,ff2BOkOZ@:a7rFEDPAE-->IDJ*NpEH?#3D0'rKH['^UF)c)6D/F*)CN"9N0F`h_CDf]r9EHZYOFEVnSrch:_F)lAFG'SFcN0fifI=?N^E,p&DG&qVBEcQ/< +E,fr>De`ouDg6YTFE)>BH$aaUDJX30EH,r:Ch7*hD/jT:EH#l8EH?2CF`_S?DJsK3DZ4JTEHHAF +rc)1\Fan==EHuYCEdMhFH@C0^E,p/JGBRtCEHln\H#d\7BPVO*Df0E0DK'T9EcZ>HH$k'jIsulp +H@1-fH$FISG&hJ;E-?JLF*)YQG&V>>H%:HlE,0PaeJET:;=AS#GmJZq^pt)pIS=Q.;WlNu=TocS6]TK#Crr)dWr6hC,[)T;=Tt]UcpY*'? +VUs:rRE5 +g&M*O!<<&ts8WdFQgj +b0\Vee&fYYf\+g'e'lU`bgY.hc-k.jcHFGTbg"ATbfe/SfA>A-f?r."ccs_\e()^ed*g@gcHjqh +f$r$hb0SVjf$_jhd+-^pcHXV^f@o!4e^;^hdacpudEg([b0A>]cdUImc-=V^cdC7ne'lmud*L(e +cd^ar_pI&bajAkmb0\\heC)dpda-@hb0&,diSN,-`Q6?Rf\+pVf,WAke'H1X`PfpFcHOPWaMuHP +e'cUgd*^1]aNW-4f+Q`ddEBSLaNi>gf$i$oeCW:%e"P7re^N!teC2jormUu#g&BV'dgaaPccWr& +WQXi-r;Zfrg&M$M%K5nFXJMJZ_s.$trr;ulrt,20s8;`ks8Dogk2l"'qYpNkrb290rVZTmrVccr +es2)bYI_Ha^9@/gWOK1(W71A:p#NcGT@WW4rVlisr;?NnrVc`qJ,~> +f)PdL!<<#s!WE#srGXZE^U;YHG%3XfA>!X0&V,Vm*Y:Y-,%9YGnS,ZEUF2XK/=uW2m#"Vl$>j +XKSh.WN3,(YH+\*XKAY+W2d#'WhcDhWMHAgW2m/.Y,\M&WMt$=WN*#%Z*'t#WirY.UnausZ`gI4 +XJhqoZ*pm=ZaR3FXf\b0Y-5"1Xfen=_83[e[^E3:WiN>.X/Du#Y,eS'Y-P@)AStW*bZEpjAYctC;YH+V"VP^H"Z*1:3Wi3#(Z)t(,X/i1pUSY*!Z*:R= +XJhngV5gc,Z)jt+XKJ_.XIu]pXT,@$X9,E&X8]-uX:D;1X/rJ'StF'mq>C6lrn.8Nrr +eGgEbs8W)srVlcnr:.jtL4k5.G&hJF)>Q%CN=N;DJa<2G^XjZEH-&CGBIqBB4PReD?"S`EcH);E-$/EEccJDrG6"[D/jW=F*2VE +D/XH4Ed_e5EdDeCFFSIOFa87UF`qtOF*2PADfpP_JTkm>A86%(F)c/=EHH8ADJO!$C2e<>G'%kH +Df^2LG'%eIFDko/D01&JG^4RWE,99+F*W(VEc#Z3rbqjTUN$6N#&nL!D/XB4rbh^Os(hXO%W63, +I"mH2PJce_qu?]qf`2!Ns8NN#e$,dDTuH +e,T=E%fQ;%o[L.E[`?S9dF?^srmV#"eC:8D!7_"uqU>Vpd*U,;cMl0QcHOJTbg4bgd`f\PcILn= +lfR0dlK?a8]Z/LSf@%phdEp._d+$RlcdUIre'ZUrg"+R!e^`$icI1.gci29EdEp7fccs_\e'ZFa +dFHdse'QFfdaHIcbK%]Og=t6'bLt_%eCE$sf%8OcdgRlbL"bcccsY_g!@gee^aWH!n5ZLrm^u!HIL6dcI17kcHXY[ +cdC:qg=b'-f%AX.e^2[leC)^ld`obUf@/$ke'ujqe_8X'e^r9ueCDjlhp&sdhq$!"i7,cgcdgUs +eC2[ceCr?nbLG8!e]l1Zdad%(f[\L%e^W$nc-=DPc-X_Wai_WBc.1=ibg+Yee^;[f(=:OYeC`3m +c-XnccHXY]e'laoe^i:#U"0+ks3h/!e'lgrf)F;7f$r-qcHXJFXf0J7qY^?mrr<#trr;uuro*nU +rXJhtd&a(7T#9ghs8N&tq>^Bl"TA8ts8MioI/X!Cs8Doqrr)fprVZ]orr)B,R%(hAjlkmjeuamm +]A(`8R',?Hs8N#rr;?Ejrn4?BU;#sns8N#rr;QWS]:>4ZQ`T*Eo!XjU[H%;erRnj"g?$DGQG)Va +q:<0lf_#%)a/5)p`Q"a;[,]2iPfmc% +XhD39R_%ear6V*rW7LV?rr)lrs8Doqs8RT~> +ci4LSs8Mupp!B\.Uopl%Xf\(o!3?%!"0/E&XSf4#X@97oYHY45XK8P,YHtXCXer,&\&->8cH+#I +a1%k8W4'7HZE::6YH+Y(YHFk'X0&M)W2Zu+YH"Y.ZE0q$Xfnn/Xfnt4riQR/X/W/'Y,SD%YPtb4 +Y,ne2Z)jq'U8"WlZE0dnYHk..X/N#"Y,\A!YHkC8XfS_3Z`g='Vm*G-WiWA,Xf8A)YH+S!X0Jh/ +Y-G11Vl?f'Za$a0YQ(g7Y-"k2YH4\$WNEJ3ri\AeZ*L^C +['Hm;YHY:;YHG(7Za$^=Z)j_#[BQX0XKJ\,YHtL9YHY12Xg"_(\u1pu\Z_j3\ZVQuW3?3'''Z)jk&Xfnh+ +WN*##XfSS)XfSRuXT,C+XK/D(XK;E%s/Pprs/Q+$$`BPgaRT-(rr;uts8N#trrE&Vs8W)ursADL +ZDjOl`pV90r;ZfqrVlfprVlcns8Drqn]$rc^=VNHkmH(HNfq*3e$#4E +iVid#rr)fnrr1ZST;93es8W)trVZZmj1ChJSsQP9s73UbTXa.`s&Ijg`8'P!TUNacs8:Qa_qb%d +mE);mUWCQTPdfetPa9Ags8Vo.O-@<.]VD44jT#)/Z^%QBdA2oBr:dskUX&?.oZ=#+YJ7WAS@n7h +rmRU%Vq1M>rr)lrs8Doqs8RT~> +f)P[Is8rb`$YCMRa( +DfBZ6E;jl=CM\*?Hus%6F*;G>Des<5H$+.MH$ORSEc?#@ +F`1u*BQ8*4DJsQ9Dej30EGfK*E-65@Fa/%KDJsT@H['^WFE;MLIt)Z]G'@qFDf'T?D.[L$ErBoL +E,fl9DJsK5D/*d#E-$,BEcQ,G'eOXCLh*rE-$,>Ci+*0EGo]1D/=!-F`VJ>E,99/ +G^+7HE--5DE,BH2F)c5EF)Go;F`VPArGV[QSo4UJr,2aVD/O3,C]8)KC_1K'FFAk"L6BFAq"t'j +rr<#trr;uuro!hVrr]kgutsOhBJtY*lKOrVq6DrVcWmrn=HFUV?'os8N#rr;QWS]:>4ZQ`T*Eo!XmW\)mYi +rn>'&gZHYNRDJ:jr7Sd#g\:[5aJY;t`lP$@[H5JnQ,`b%s7j6eOhK8VU7o-Xs7t9PPc<6\UQE@j +p:cccc0kW(aekf8^:9i*]BoRrd@lPtf(At@rVulsrVc`qs*t~> +g&M*O!<;ur)#aL7rVlZio[C%C[Dg;4d*pLoe'ujre'k)A#1M)Oe^W*trR:hqrm:Yj#11cGe'cRe +rldCMf%8Eud*Kq[cHjJC_U7/jahP[6bg"ATcI("_bKePbd*L1keBlRke^MmicdC+abKeM^d*^:j +eGdu?eC)doeC`9pb0ekpf@A6odacgmbK7cFd+R1)cHY,$rn)8?dF6OgbKn_kf[\L#eCN4#d*9ke +f[SI(e^DdgdFQmudEKh\ccjVVb/_KBbgFkdd*U(^air/[bfJ#Tcd9t\eCrLccXYfg=FZqb0AAarmRIg$e*VTe'c[ldaHUnec")1e^Mmibf[`(WQk)4r;Q`q +g&M$M%K5nFXJMJZ_s.$trr;uds8Murqucrsr;?Kls8W,u*WQ-]&1\rNP+NTqT"_M +R)\7Na.\Tka2=F'Z0U,6JYLlcm*hVaU=A#(PF/f;rqbK(cDmS;_T/a@ +T?HQVXbi1Eearh?rVZWnrWW9#s8N&uJ,~> +f)PdL!<<#s&H2V,r;H?:Wh?8nYH=q.X/l6%!3Duu%BHV5XK/D(XK8J(XKAZ)XF74PXKAV-YHY76 +Xf\Y(Y-bXDYHY44Xfee$S"[+"\>c'mW2m#"W2m,(WMc_tXJr/!XK/:uWi`A%VPgPuW26AkXK8S. +Yd(O?ZE^U9Y->:;W2H`%ZEUR8X0/b5X/;_dTW,3%Xe__s[B?^9WMur!W2?T!['Hj:Xfo"7Gcn*F +W3ES1YHk@5W2?PsYHFn'VlQktW2ZbmUo18tZEUO9Y,nY*Z*C@-Wi`;&Wi*&-X/;l!Z*COYH"ItWj&k5Vl?c#Y-"k.Xfnq5['[0EXfAJ-Za-g>Y,@nhZ*11-Y->+1XKet/Xg#%5YcoUU +X1,$tY.(U5XL>4'Tr+onXfSP!Uoh#,V4jfeWiN+tX0/V0YcXq*X/u<&0!;F`Y-G:8WiE2#VlmA1 +X/DntYd(C5Wi;tpVlZhoXL#@@Xf/(pXKAV+XKAV+TWS3ps/d0>XK8J'XK/D%XK8G&WiiM'SY*sl +q>C3krn.8NrrAD0g%PIGrVuW: +T8]8Pb,UK!g&:mGrV_-Arr1ZQR@_%Urr2lps8Dooo[^!uMPA,Srq=X7P*`f@m*D5NNkF>qQB8lI +rr'p%L7HBMlH,ibVoclKMR2^*SqEiomdAT!Mknq\Z]pofj8Su2Z&PL/e>ehPqt.O_T$6^(p +f)PdK('"71qu-KmrVZT`a.%j;KRJ#aE,]apDuagWE;si^E,fl:EH,r:EH?8GF`heHEH#i7DJj<- +Ci+'/E,flC2J63?up^;D012IAnPq$FE;G@Chn-=F_bZ-rc(/=Bl.g-EH,f/Bl%X(DJsK8F)c;EE,KT5 +D/=38G&M28EccGGE,KN1CM\!-C2eEFGAqG7C2Ip.DJjB2E,TZkE;jbbDJsH2DJa9.Chmd"C2E_S\+1drr)fqrVcZdeu=L`U;lErp:Jtq)gmF.bdUXe2+PaT#?rqkERN1neOWKk?so +=L'TbjYT*cE!Y=_oSpCTZc]YY)8@Gearh?rVZWnrWW9#s8N&uJ,~> +g&M*O!<;ur'E.t2rVlZio[0kC[D9i,d*pLoe"5%he,7\qe,@c%e'c[nda?FhdJhSodJhJpdF-Ll +rm;A*cd0t^b0/,[da-1_cHab_d*_j>rmLbos4%%s"4YfKdf._qdehMjeGn"te-X[TdaHUoe^W*s +rmUhns3MD+eCE'udact"eCE'te'ZLecd;U;#11cGeC2jpr7(bqs3_2#e'lgpdEp:hrR!">cdC.g +da?IhdEp4cd*U+acd:(fdEp@me'ZOida?LjdEg1edaHVCdL"=JdaQOec-FY]rm1u"e'ujre^W's +df.YndLadNc-Oebd*U1gdEp:ieC)hDe-j^Re^Ddle^W'seC=KEs3hP/e'c[le'lamd*U4ie'c^o +rRCbos3gqr&CStRdaHOid*^4ddF-LmdF.sBrmLkqrmM&!e(*!ue,Ibre("BGT[`ng*7<-[dEp7f +daZguf@SU&d*BnZ_Q^)ep%nUcs8L^OrVd9)o?aS8SY!a`qZ$QprpTmerr<#lrr<#tr[n0Lqu?H( +LPE+sr;Zfrs8C`UO,9mWVLtMmrr2ioqtp?hrr1`QOI3]Frr2lprr-[1rp$hAJ?.JsrVPltSWT;6 +UmdC+Y1i6`Nf1X7u5 +rUdX\T$6['ousA*VTn,>Tph[ORZEDmYL;t@rr2oq#QFc&s8W)us*t~> +f)PdL!<<#s'`It.r;H?;Y,AA)Y-"h-X/iD+XfS>#"g"i.XK/E$X9GZ+XKAY,qQ9[ur2ot%riR$= +X/rD$VPpT"YH4b'WiN5'XK8P*XfM&ps/Z+"!3?+$rN6.(qQ:=3Y,n_,Y-5"2XfSY-XfME"$`^;1 +XK&>'Y-"h-X8]1%X/rH&Y5bR0XfSV+Y-"e-Y-7i-s/cF*X/i>'ri?%"s/QO-X/`/"X0&P-Xf\c* +XT,C'XK2<$s/Q:)YH=k-riQ7'riZ7&&$E+>Y-"e,Xfek0XKAS,Y5PI(Y-"l+Y5ka)XT>T.riQL. +X/W/%XfSW'XTbc,Xfeb,r2pF/Xfnh*XKJ\,X0&K&W=l85XfSV(WiW;&Wi2ntXK8P*XSo%Y-4muT>p?qr;HZp +f`2!Ns8NE!eZu0JU;lNss8N#ds8W)us7ZHls8N!Ls8Moqpq2B:ZKD)bs8N&sh62lsWlLuhT@a)A +r;HNirVQTnhPlX)]]oFprVc`pCAe(rZ\!_.h"1LAlGK3VRA6RIOcZa#mDt +f)PdK)?9[5qu-KmrVZT`a.80FK7%i_DfBZ9Ec>rtE;skRE;shXEH6+!E<:0#E;+;ME#3G3EH#f4 +Df9T7EcQ/>EcZ;?D/XK=FE%4s$>j[!DJjE5E,KW7rbr9aEH,o8EH#i8DJsN7rbhaS!cDjlr,*'a +E,]`7EH#i5DfBW4DJa9/rG_dT#]=U%Ec>l5E,kkr!H2lTE!^H%EcH&9DJsE1rbhgSDu=SSDZXfn +D>nJPD@p`'DfBW5DK'Q8F`MMDFE;JBrbr6`E,]]3DJa<3Df'FjE;a_TE"m;2Df0H2EH-#Vms)/'XDJsK3DZ"G]DJsN4CMn-2E,p#?rbi3bEcH&;EGoi; +EH#f6rbqjTrGN!]Df0E/DJsE1Du4JbDfBZ6DfBZ8EGoc7EGof9E;jbcDJsK4D/XH9EH#o8D/O=j +DZXlrDl%FPDZO`or,* +g&M*N!<<&ss8E#srr*K-qtp!3YH5.G`lufZeC)amPg]fce'lgqe,.SjdfInErmLVk$I[>MdaZao +dF-LmrmD#"e^W'seC=KHs4%%so[Nces4%"r!n>cMr6keue'cXlrmV5&dF$CkeC;pprmUns!7Lkn +"4,9=ci2>lciMSDrm^nq$.72Ne'l^mdaQYCe,Rqte,@erdK7hEdJhSndJqYpd/h\ErmLhq!n>ZF +rmC_ls3^kn"OYTDe'neC)akcd0tbcd:%eeC<("eC;pncHr;Zfrs8W)ts8N)u +iW&lU%K5nFXJMJZ_s.$trr;ulrrW3"s8N!!s8N&srW3&uq>^Ko0)tnJrr2coq8]&$b4>N0r;?Qm +l,g*']@OZg[c.8drVlcorql`qkeX:(cgh&8rr$m:rVZ]hb+Pq;fVs\DcDWSB([)aJZK#oD\O< +]X,6*n_V-hUn+'TVO+F;oDSXerr)fprr)iqs8RT~> +f)PdL'*%q/rr)fmr;HTge$,jSY-5"1ri?.&Y5PK"Xob`.Y5#.!XoPU"Y5YR#XoYZ+rN-+'Xo,=/ +XfSV+YHG"/Xfei+Xo>L'XoGR'XoGR'Xo>L'XT>T.r3#jt!3Z:&!j8`0rN-(&riQ4%s/d!F%XoGO2XfSV+XfSV+XfJQ&Xo>C&XfV<""0S`- +Y5YL+XfSS*Y-.c*riQ4'!j&H'rN-1)Xfei)Xnf.!XTGZ-Xo,=+YHFt.Xfei*Xo5F&YQ(a+YHIl+ +s/cC+YHG!uY5bUIY-"h-Xf\\,XKJ_-X/`5$WiN8(Yct4$T>p?pqu6Wps8W)ts8N)ui;`iVs8NE! +eZu0JU;lNss8N#lrrW3"s8N!!s8N&srW3&uq>^Ko0)tnJrr2coq8]&$bOYW1r;6HjkfBm$]@OZg +[c.8drVlcorql`qkeX:(cgh&8rr$m:rVZ]hb+PV8(gLg:jK#pAa6jW1TTKSZBZdrU\(4\'=:=q;fVs\DcDWSB([)aJZK#oD\L:]X,6*n_M'g +Un+'TV3e=:oDSXerr)fprr)iqs8RT~> +f)PdK'*%q.qu-KmrVZQ^aIeKKJp_c`rc%mX!-"WM!,hdT!,qgTrbqRNrGV^T"`J@!DJjCkE;OYa +EGoc7EcH#8DfBZ6DuFYTDuXeUDuO_UDu=SSDuO_QDuOYSDZalqDK#Mn!,qgRr,2^WEH,r8rbqgU +!H2lTDZFbUDuXeVDu";MDZFbTDuX_TDZFbSDZ=YSDZ4SRE"Hr,Ec>u;EcH,=Df0K4E,T[nD?+VR +E;a_TE;shVE;a_TE"I#0EH#l:E,TW4E,]`6DJsIlD@LN'E,TW3Df9N2DfBT3rbqdRp2:deDJsH1 +D/XB4DfB]:Df9T5DfB]9Df0H4rG_dTs)A!U!H2lSDZFbPD[LB#E,]`7E,TW4DuO_TDZ=YRDujlr +rbqgS!cN'tr,2RST5P'SE,TW2Df'E0Chir`!GZHMD@^Z-H@U[%OhpJ\qu6Wps8W)ts8N)ui;`iV +s8NN#e$,dDTuHBeXe;#ERAd[Ip%d.:WR:>; +rqbQ^Tq.aBQ__COkho`f^o(?rr2lprr2lqrr<"K~> +g&M*O!<<&ts8Nr8s8Dusqtfj/Y,\e@a3E#^e^2XhdaZapM:;OSo[Noirm^kprmUqsrm^tso[Eli +rm^qrnC7KepXB8neC4EF"OklMdaS0Es3hA*e'cXlda?LleC;tEe,[treGmu/eC2mpe'lgqe'umr +eC;pqdeqPoddtrfdL+IQdaQ[ndaQXldJhQ#dF-LmdaQXme'n +g&M*O!<;los8Duq#klcPW2m&(Y-.c+"fn`+Y,n_!XoGQfXnAjsXo>I0XKAS+Xfee.XKL9Z!3Z!s +!3Z='%'6M2Xfee-Xfeh/XfhK%rN7!>Y-+k+WiN2%XK/D'XK&>%XfSV)XK/D'r2Tq"XK&B$X8f7' +WiW8%riH.#!3Q7%"KSZ-XfVK'riZ7&%Bch9Y-"e-XfSV,XK&?#X9#H)riHC+Xf\b.XfV?#!N`@$ +XSf1%Y-"l&XU_G7Y,n_,Y-"e.Y,nb-XT#@%XT,F%Y5bX(Y2cYaY4/RmY*Z9jXST%%Y-"k0Xo>F% +WXu89Yd(C3St=$nq>1-krr<#trVultrS[_UrrUBlr:K.'ahYX/dbjNkrp/+clM:GXrU\sp`k9(.e`?;pn)DpWqu66LeAf;@bM2:RrqYU+h<=V4 +rUo@'g@Fjkb2N?tiQp9IqZ$H[hV-oPkL[r#a3)]NY`Z$Hq#1-grVliqr;?TprVunJ~> +f)P^J(B+10rr;urr:%h"N.un3G]RkCDfBW5TPajMDJjFkDuXeMDZFbRDuO_ODuX_SDusoqDZ"G" +D?+VMD?F`lDK#;f!cMsorbq^R"`J@!Df'@gDZ=VVD/O7eD%pl)D/='+DJa6.E,KQ3E,TZ6E,TUl +D?b#sDJsK4DYnAPE;shSDZt)uDJjE4rbhsXD/X<1DuOVUDf0IlE;jeUE;a_TD>\;NDZXfpE;"2L +D#nNmqecIRD/K,e!,q";!,qIH!,qOJ!,n*>!cMsprGENiC1q9pBP;0uCi=?:H%(C!OMgSar;HZp +s8W)ss8N)ti;`iVs8NN#e$,dDTuHUBlr:K.'ahYX/dbjNk +rp/+clM:GXrU\sp`4Nb)eE$2on)DpWqu66LeAf;@bM2:RrqYU+h<=V4rUo@'g@Fjkb2N?tiQp9I +qZ$H[hV-oPkL[r#a3)]NY`Z$Hq#1-grVliqr;?TprVunJ~> +g&M*O!<<&ts8Nu9s8Dusqtfj/XJW8:`m)r_e^;^idaQ^qdu2]Uec+%de-"1LeC2Oh!7g8^s3h)" +e^`1Fec4,$e^W*tq:,Gp"k;)QeC2n6eGmtteGReqdf.\qddY]ceGdo!eC2prrm^ts!n>]KqpPYs +e'c\Ddfn1Ke'ujqjjX:\l-o^`ps];oK%(.VeC;sqdEg+acHZ@7!R]Erdh1!Wf$VXY]WJ-YpA=df +s8N&urr)ls!<(mVrVd9)o?aS8SY!a`qZ$QprpTjgrr<#trW)utrr<#trr;oss8Ms5s8N#pp@IkM +r;Q]orVlfpq=X=Op@7VFrVZ]ps8NH)rr2iinau_XrVZZo!<)or#5n8dn+Zh]rr$:)qt'.8io]_) +rVlfknFQSWrr)iop[IA*iofh+rVcQbnaue[rVQ-Kk2kk"r;HZop[e(Rr;QZnqXO+PrUoOJs8M]Z +o_ndhrV?'Wq!HJ6XMW]Qg:`i/Yiu#arVZWns8MusrrW0!s*t~> +g&M*O!<<&ts8Drrs8Duq#klcOV5^W$Y-.`*s/Z:)XK82!!3GFe"g"i.Y-"i$Y5bX'Y5YO)XKAYH +XTGT+Xo>F$XT5I!XT5HpXnAdqWrT9^X8oC#XT,C&XSf4#Y5YO'Y5PI+XKAV+XKDB$!NiI&XT5Hs +XT5I%Xo>C&X/u<&s/Z4'pT4LuXf_T(#Hb)/Xf\\,Xo>C'XfSUTXkKoWXST'tXqn+>XK8J'Y-P=: +YH+:da7B'&s8W)us8MusrrE#Us8W)ursADLZDjOl`pL9fp$q_Rs8DibkiV!ko_e[frV,pVq>C6jrVH'S +qYg*Ro)J^^me$JWs8Dcbo_@h$Z)kgrjk@D7Lp6+@rr)cnrr;urs8N0!s8RT~> +f)P[Is8@0@s8Mupn]@>YKn=_sF)Z&9DJjB0D/O6.DJj +e,TIIs8W,u&c__'o$480YeeB'dF?[od*^cNJ^i<$!n5TErm)M-cd0tce'caq +dacmm`koBkVp+f0r;Q`qs8W)ts8N)uiW&lU%K5nFXJMJZ_s.$trr;uUs8;lrrVuj5r;HWnr;?Nm +rVlirs8MrprquWirr2fmrquots8Drr+oV?:0gr=&](rr)iqr;6Hms82]mrW;uqs8N!2 +rVQTon&_2dWl3)lT8f/To)8LcrqulsrVZZps*t~> +f)PdK"98B"rVc^%qu$-9XeDYsYH@`*Sui!ol)jrd!3YpqriQ:(Y5GC%XLt\)XT#=*XKAV+Xf_Q' +poXRso;r"ooWA+okcOldriH4&Xo,:#Xo#4!XTGT+Y(<^_XT5I%Y5bU(Y5PO>XfSS*XK8V2YH=t0 +Tq00mq"k!irr<#trr;uuro!hVrr:3lrr!#trVuor +rr2j%qt^*bq"t'jrr2g'rVlfps8DflqYC$fqu$s&rVlcprquZls8Vunrr)urrVulr'E.h-s6n(% +PcD[F\t=tJ`:Em)rr2isrr)cos8RT~> +eGg3\s8W)rrVuior:7ptKnP,-F`MF!D.@I"Ci+$*D/F*+D/='+Ci!s)Ci+!)D/=$*D/='+Ci+$* +D/F*+D/=$*Ci!s)Ci+!)D/F*+D/='+Ci+$*D/F**D/=$*Ci!s)Ci+$*D/F*+D/='+Ci+$*Ci+!) +D/=$*DJe*F!,qjS!,q^Os(q^P7;QgXCi+$*D/F**D/=$*Ci!s)Ci+$*D/F*+D/='+Ci+$*Ci+!) +D/=$*Ci!s*Ci+$*D/F*+DJX0,Ci!s)Ci+!)D/O4`DY@u[DJsE/Ci+$*D/F*+D/='-DuOYLD[()t +E,TZ3D>J2ND?"MUE,TXnDZFYPD?+PQD@LN%DJsE2DJsE/Ci+',o54YKDJjCgDZ=PQD1?A=D/='+ +Ci+$*Ci+!)D/=$*Ci!s*Ci+$*D/F*+D/='+Ci!s)Ci+!)D/=$*D/='+Ci+$*D/F*+D/=$*Ci!s) +Ci+!)D/F*+D/='+Ci+$*D/F**D/=$*Ci!s)Ci+$*D/F*+D/='+Ci+$*Ci+!)D/=$*Ci!s*Ci+$* +D/E`uD/F*+D/=$*Ci!s)Ci+!)D/F*+D/='+Ci+$*D/F**D/=$*Ci!s)Ci+$*D/F*+D/='+Ci+$* +Ci+!)D/=$*DJa9/D/F*(BP1siB5)1#DK9lCH%1X,P/6S^r;HZps8W)ts8N)ui;`iVs8NN#e$,dD +TuH:3lrr!#trVuorrr2irqu6Epq>:0krr2g'rVlcos8DflqYC$f +qu$s&rVlcprquZls8Vunrr)urrVulr'E.h-s6n(%PcD[F\t=tJ`:Em)rr2isrr)cos8RT~> +g&M*O!<<&ts8Nr8s8N&tqYKa.WLpH8aN2]Uda?LldaQXmMUMaWe'lald-f9bd*^:jdaGeW)Ud*` +eC2preC<(#e^W+"f%&C(f%/I(f%8O(rR:htrRCkt!S#[!f)4(ue-":OeC46Cs4.(tj441Z!n5ZK +rmgnqs3gttrmLksrmUnp"4GZHdXfl]e,Ri"e'c[ld*Vd>s3Ubn'@bR]eC2OV_S*(MbjtW.rr;ut +s8N#trrE&Ws8Dp+rU\C;V4F3ql2(GZs8LmT+8u6>r;6Hmrr)iqrVlcprr)iqrVZNirr2lqrqu]n +s8)`or=Ju,rr)fprVZTns8;clrqu`nrXAc)rVZTmrr)`mrVlfnrVum$rVZQjrVlfps8N#rs8E9% +r;HTlrVlfqr!NE#rVlcorr<#squ-Kmrr;p8rr)clr;HWnr;Q]ffsRNGUS+!@UqbperVHQnrW<-! +rql_G~> +g&M*O!<<&trquirrr)lo#PQZKSZ'!&XSo:$Y5tf-MQZu]!j8Z-p9"CtqQ9h#riZ7&]WV::!NrR' +X9>Z,XK/E$X:;53XfSS)XK/G(X/iD*orRefpoOLtri?+%k,eT`ri?4&XK/H%X8f70X/rG)XK/G( +XfJP*XT#@(XKAUUY.Un>XKAV-qQC[;XfJP*X0/\-WiiS%T>g9pqu?]qs8W)ts8N)ui;`iVs8NE! +eZu0JU;lNss8N#Sru_4>s8;cms8Murrr)iprr2lqrr)ckr;Q]orr2inrr;iorr!E-rVlcorr)cm +s8W#or;QWmrVd6(rr)cmrr2lnrVc`pqu-Qp"o\Arr;HWorVulrrVulsr;Z]tr;HWorqm-%r;HWn +rVlisrVQQlrr2rr)ZK^5qu$ElrVZZoo\$XGT;/'HQ__CUr;HKlrr*!!rr2fpJ,~> +f)P[Is8Drrs8@$/adRg9MLT\eD/3p'DJj<.DJjJ/MD?"JUDf0H2q/64Ls)7pT#&eBsE,TW3rbW*^D/X9/Df9N3Df0K3DY7ptD/X9. +DJjP\6r;6Ejrr)corq+mOTqA*QR$XV`ir&cOs8N!!s8N#ps*t~> +g&M*O!<;rq'*%t2rqcK]dAreAb/hWMdaHOjL!oqIs3USh!mo?Brm:\m#gguHd*U1gdF#VT$dmDO +eC2preC<%!eGe"ueGn,"eHFIRe^i:Ke,\%teGn&!eG.Soe-"7NeC49Drmgtsj44(W#Lh2Pe'umr +e,Ieqe,RhreGdnqd/qbDd=K`Vdf%Sndf7Z0daQXoe^W'qa2>j/Xf0M9qY^?mrr<#trr;uuro*nU +rXJhtd&a(7T#9ghs8N&thZ!o\s8W#prr;urrVlfrr;lorrVcfqrVQitrr2lqs82fqr;?QorU?is8N!!s8N#ps*t~> +g&M*O!<<&trquirrr)lo&babWS>s3.XKJ\,Xfnq2Xfeh$XoGO(XmW@lXn/[qXno1#Xo>K2XU)#1 +XK8P+XK/E$X:D;5XfSS)XK/G(X/iA)XSK!uXS/arXSf1$XKDH&s/c@(X/l6$s/Q."l`:&cri6.$ +X/`8uX88n#XfJP+XT#@)XKAV-JZZ\hs/lR-Xf\b0YHIf,'s4O:3lrr<#t +rr;uuro!hVrr +f)P[I!<)fo&+[r8K8>V@FE256CM[m+D4thqDf0K2DfBZ6E,]`7E,T]7Df9T5DfBW5E,TZ6E,T]7 +DfBZ6E,]`6E;XVXE,TZ6Df*"%)fKV4DJsK5DfBZ6E,]`7E,TZ6Df9T5DfBZ5DtS#JDuaePE!C6" +E,TW3Du";ND$Y#rD/O60DJjCgDZ=SRDZt#sDf0H3rbh^P)fBM1D/O91DJsH2Df9N3E,TZ6Df9T5 +DfBZ5Dh2f=DZ4SSD?=WiC&Vc]BkqO&EH?>KGC>=0O-mrWqYU9lrr<#trr;uuro!hVrr4YfUo1?3jSAfRqu?Zp!rr9!qu;0~> +ci4OSs8Vuln^O_2Y0+i,d*g>@ciMP?MpV^TdF$=ech>]ecd:&pcd:%bci)5%dJhPue'c^o +eC;tHe,[tje,\%seGn(teGn"peGmu!eC2qHdfn:NeC2mrrmh%tqpk_rrm_"uma_?e!7h(ts4%"r +rmD&!daHOje'ZPAd0%bCd*R?k\^:E*qU$)-eC2pse'ZL``l,HgWQt/3r;Zfrs8W)ts8N)uiW&lU% +K5nFXJMJZ_s.$trr;uSs8N#srVulsrVuj(rVZTmrVc`ps8W&rr"&c*rr)irrr)fprqu`orVcWms +8Dcms8Dus'E.q/r;6Ejrr2lprr)fprVcZmrVc^,r;6 +g&M*N"98B"rVl^2rVZZor;60@!Y5b[@Y,n_*XK/J,XKSq3Tq]a$qY^Bnrr<#trr;uuro!hVrr +f)PdK)?9[6rr<#srr2rhc_,rIP_F='DJO$)DJa9bD^]RCE,T]8EH#o;E,fl:EH,r:EH#l:E,]f9 +E,fl:EH,r;EH#o;E,]gpE!:9$E,fi7\8N=*DfBW6EH,r;EH#o;E,fl:E,fi9EH#l:EGog^DuFYT +D\@#-Df'?/Df9N1D/O3-DJjB1DYS,XDJsN6DfK`7E,ff6r,3KkDf0K4E,T]7DfBZ6E,fi9EH#l: +E,]f:DfC8G]Pmdg*cGq5ChdZtBPVI&E-$/HH[LL,OH,jSo_J@`s8N&urr2rt!<1pVs8N&u%/&)R +W1]j'lMLV\s8LmTrr2oqs8N&ss8EB(r;?QmrVlfrs8Doo&,lM,rVlirrVc`pr;HWnrVQTorV?Hm +rVuj1rVlcnqu$Elrr)fprVc`orVZWmrVdB+qt^0hrVQKjrVZTls8W)srqu`os8W,us8W&s+ohN? +rr)cnrr)fnrr2lprr<#srVlipoB"NIcdg\.p](3jrr;rnrr<"K~> +ci8Lns8Vulo%14=Wl)lucdC+dcd'k^cd:%bd*U+cd*L(ccd0tacd:"ad*L%bd*L(ccd:%bd*U+c +d*L%bcd0tacd:"ad*U+cd*L(ccd:%bd*U+bd*L%bcd0tacd:%bd*U+cd*L(ccd:%bcd:"ad*L%b +cd0tbcd:%bd*U,=cjnCKd*L%bcd0tacd:%acM5`ccMl/hcMu3kd*L%`cd0n_d*U+cd*L(ccd:%b +cd:"ad*L%bcd0tbcd:%bd*U+cd*L(ccd0tacd:"ad*L%bd*L(ccd:%bd*U+cd*L%bcd0tacd:(d +dEp:gda?JAdf7\se'umrn'hNieC;sqdeV?"daQ^pdaQ^peC2mrrmh%ti7%hYe'n*YXjQe; +r;Zfrs8W)ts8N)uiW&lU%K5nFXJMJZ_s.$trr;uSs8DrrrVZZpr<3,urVlcorr;p(rr)corqu]o +rVQKjrr;p!r;Q]qrVlcor;Hfsr;Q]orVlfrrrr>sr;?NmrVZiqr;HQmrY#2/rr)`lrr2flrVulq +r;Q`qrVlcrs8N#ts8W&tr;ZcprVulrrVuotr;cirs8N!.s8Mojp\F^`qY^9irr;usrr)iqs8<#u +s8RT~> +g&M*N!<<&trqmT2r;Q]nqt/RLS>E^%Y->+2XKSk4Y-"h#Y5bU(Y3W4iY5k^#YPt^)YPt[%Y5k]5 +Y5bU+Y-"h-rN-7)Xf\\*X7!%mX/rD'WiGut$EU;/WiN2&XK8J(riQ(!nuDkoX/`5rWqrdqXT#:# +X9Yf-X/rD*XfhH$s/l@(JZcbjs/c:(riQ+$s0!3?XKAS)X/rM/Z*:'qVp=l0r;Zfrs8W)ts8N)u +i;`iVs8NE!eZu0JU;lNss8N#Ss8DrrrVZZpr<3,urVlcorr;p(rr)fprqu]orVQKjrr;osr;-Ek +rVZWsrVZZorVc`ps8N9#qY^9irr)ctqu$Ejrr*Q/rr2lnr;Q]mqu$Hlr;?Qorr)iq!<<&ts8W,t +s8;orrVccqrr)lss8;rsrr;us&-)Y+q"OU]qtg6grVlirrr2lqrr;ourr<"K~> +f)PdK*<6!9rr<#srr2rie#%kSOG8++E,9?-DJjB4EH%Uk.r]KKEcH,?EH6)>EcQ/>EcH)>EH-#= +EH6)>EcQ/?EcH,?EH6,?EH6&=F8^.ZE40a'E,fo=EH6)>EcQ/?EcH)>EH-#=EH6)=E;=J_E,fl: +Df9T5DJjB1DK#Mn$?:$(EH#i6DJsH4rGV^R"E/7!E,bYns)8BdEcZ8AF)l;BEcH&;qf*HlEH6)> +EcQ/?EcH,?EH-#=EH6&=EcQ,B+`MF@E,KQ1CMIQtCi435F`r%ZJr,PINM=emq>1-krr<#t +rr;uuro!hVrr:'cr;?Nms8N#srVlfrr;uuus*t~> +f)PRF'EA(0qX`OUU8>B;aj&/XcHa\Zb_OLDc1oTac2Q#fc2>ihc-FVY]$:<%rm(Gfs3Ubk"45HC +d/),nd*^7hdF%m?!n#HErm:_orR(Vmrm;#"dF-Fida?Ikrm^tshph\Trm^nqrR1_n"jkZDcd'i8 +cN;DWo(i4_rr<#trr;uuro*nUrXJhtd&a(7 +T#9ghs8N&tp\t +g&M*O!rr9!rVc`p%fQ>'o\R9UT<,6#YcY%1rNH7(U9FU"!3b7^!3c7%!3cC)Z`jA2!3c7%s/l1$ +s/cC+Xf\\uXoGI&X8T1!XST%&XKJ_.X/l6%!3>Xk!NWC6ks8W)ts8N)ui;`iVs8NE!eZu0JU;lNs +s8N#lrrW3"s7uWos8N#ss8)^'s8Doqrr)fqs8N#rrqud.rr)fnrVlfrrr)ipr;?Qmr;HWo!<;ur +s8N0!s8W)s!<2urs8O#:rVccqr;?Qnr;-Bkr;-?jrr;urrr2lqrVZZn"TJH"r;Q]qrr)ios8E3" +qu$Elrr2lprX/W%r;HTkr;Q]orVlcrrVld$s8Muqs8Murq>UHoq>CKrrVccqrr2qJ~> +g&M*O"98B!rr2lnrXSVTZAsNlKn+JjE,TZ6E;agNF"qZUFEDSGFE;PGF*)MFF*)JEFE;MFF)uGF +F*)MFFEDSGFE;PGF)uGEF*)JEFEDPC[W<:*F*)MFFEDSGFE;PGF)uGEF*)JEFEDMBq/[*fF)uAA +EH6&EF*)MF +FEIM'$Z^<1EcQ8CF*)MDEIi2FF8U%rEH#i6D/F**DK'WUHo +q>CKrrVccqrr2qJ~> +f)PdK!<<&srr<#s#l=,Qaf1l4^<6H!s31Pfq98obK$=;@rlkMic-H73!7&$ts31Je"jG69cHa], +c3;Jrm1YkrQkVoe'n +g&M*N!rr5trqm]6s8W)rrVQ6Jaf1Z!XL#+3Xg#%5YHY46Y-*>Zp9+J!Z`aA5r3$4,YHG&%YPt[, +YHG%1oWA1rrN6.&pT=S"Y-.](!NiHpX8f:#WrT6pX8T+5X/rG*X/i>(XK8P*WiN5(Y-5%3ric@( +JZl\h"Kec+XK;B&'X"R=X/`5$Xfnt/T9l7bg[Fq7s8W#r"9&9"rS[_Urr!is8E#srVliq +"oeJuqYU6irW<-!rV?Hmr;Z^+qu$Hjp@S1ZrVQNls8DilrV[0&rVliqrVlfprVlcnr;HWo$2jc% +s8MuprVlfpr<<,tqt^*err*<(qu-Kmrr;rqs8N#ss*t~> +gA_BVs8W)srr;io'EA%'ikUn0I"d<'G'.nJEccGFF.dV0F*)PIFEM_JF`heKF`__JFEDYIFEM\I +F`heKF`_bKFEM_JF`heJF`__JFEDYJF*"d3(iseAF`_bKFEM_JF`heJF`__JFEDYJF*%"rs)SNh +F)l;BEcQ5CF*%;%%FEDU&F9$CZFT6CbFEMbLFo?L`FTcl1FE;O&F:!#1F`heK +F`_bKrcANhFEVbJF`__JF`VVTFM;ksEuoFEF)l8>Df0K2DK'W;Fa/:_Jr,>=KTiq$o(i1_s8;iu +rVuori;`iVs8NN#e$,dDTuH +f)PdK!<<&srr<#s(&IIbeZt^=\]W(:aj&&Pbg"DVbg"@_c)Akgbg"B2aooo3c-=K,c2Z#dblGue +c2Z#`bmM\>c-FVZcHa\[cMl&icHXW5c32J?d*L&7ciDDYciDDkcj8%Gd*^4edEp8>cNMVBcHON3 +cMu/gc2u89c@O6QboY*Scd0tcdEp:hda?LkdEg+^b/_)lSup?$nbE"]s8;iurVuoriW&lU%K5nF +XJMJZ_s.$trr;uarrE&ts8N#qs8;j:rVlfrrr)cnrql6Bd+%(Gr;Q]orVl`nrVlcprr)iq"o\8h +o(DkYrWE,urr)Zl"o\Atrr2lprXJi*rr)fps8W)urr)iqrVccq1]7(AoC_tTl.F\Vrr2lqs8Muq +rr)fnrVc`ps8Dlorr2lqrVlfprVlcorr2lps8W)srVlfqr;loqrr*3%r;6Hlrr)iprr2rr!rr9! +rr7K~> +g&M*N!rr5trqmH/s8W)rrql +gA_BVs8W)srr;io&-)V#l-?#RH%h-,H?jg]G(FjnGQ2jcG5ug]G9(jNG'.qNF`__KGB\:UGBe@V +G^+FTG'.nLG'A.Rrc\HfFa&'.Foc`/rceBcs*4Qf"*o*6G5c^[FpN57G^"@TF`r"\GHuGmFoul. +F)q4u'6A;?H$asiKo:_;K:L!CnbE"]s8;iurVuori;`iVs8NN#e$,dDTuH +f)PRF)ZTg8qXj76^S@C)_8XO>b/q`GaihrRbKS2QJ]k(:s2kJdaN2KFrQ>/`rlP5arQ55dc-+6. +a;i=FbK7iIai_cJaihrQb0%oNb/qfKbfe,MbKS*-asYBWcd9t\bg4V\cd'ncd*9k^d*U+_bg"JZ +c-FSYcd'eZcI("`bK^%4qooGmcd:"ac-=JUbP]QcbKS4^bIl$tbQH,8cd;X8*6umWccs_Yb/1EY +V7YIKo_\RcrVccrrVc`qs8M!WrVd9)o?aS8SY!a`qZ$QprqZTjrWN3!rr)fnrr2rtrr;rrr\FHP +rr2lorVlcorr2]J^8nI3Or;Q[4rVlcnrr;rqrr2lrs8N&ts8W)t +s8Murs8)`os8Dp,rVlisrr)cns8W)urr<#trW<-!rr2qJ~> +g&M*O!<;ins8<]/o^LhST9Q(PXfo"6Yck.0Y-+t2Xo>DQXf8E-Y-5"3YH=t1qlKk$riH:*Yd(D2 +XTP`0YH[i+"L,2;Ycn&/!NiO(YPkU,Xfee-XT#@(XfAE!X=(0SY,eV*YHFt-WiE2&X0&D%XK8D$ +XKSe-WiN5&X/`2!WiE,#XKMK'#-4i-XK8P+riC[Q\ul"6s/c@+Y-%]()m$3EX0&S0X.P`K[FX^: +qu-NmrVuorrVlisro!hVrr^UEnrYbY5rr)cns8MuprVuHCf]`&-rVlcmrr)cnrqm9+rr2lpr;?Qmr;HTn +r;?Qn!W2fnrr)fqr;Z^'rqGX1gZJ.se[Dj>rqdc7rVZWnrr)ipr;Q`prVlfps8W)urr<#trr;ur +rr;iorr;rr%fQD,s8MuprVuoss8N&urr*!!rr2osJ,~> +g&M*O!WW/ur>tn8s8W&rs8DZ\gTc]bK8G86JUVrlG^"F[H[0p`G_(.0Gm/G^fB;i*rVlcmrr)cnrqm9+rr2lp +r;?Qmr;HTnr;?Qn!W2fnrr)fqr;Z^'rqGX1g?/%re[MsArqufp!;uiq)#aI4r;Q`prVlfps8W)u +rr<#trr;urrr;iorr;rr%fQD,s8MuprVuoss8N&urr*!!rr2osJ,~> +eGk!rs8W)srVuoqqtK[CcF'LIYdhZrai;<<`lZKNbKS,Lb0.rMbK@uNb0%oMb0.rMbKJ&ObKA#O +b0.uNbKJ&NbK@uNb0%oMb0.uNbKJ&ObKA#Ob0.uNb0.rMbK@uNb0%oNb0.uNbKJ&ObKA#Ob0%oM +b0.rMbK@uNbKBk.H-4=Rb0.uNbKJ&NbK@uNb0%oMb0.uNbKJ&ObKA#Ob0.uNb0.rMbK@uNb0%oN +b0.uNbKJ&ObKA#Ob0%oMb0.rMbK@uNbKA#Ob0.uNbKJ&ObK@uNb0%oMb0.rMbKJ&ObKA#Ob0.uN +bKJ&NbK@uNb0%oNaiVX%aoBB_ai_d*aU$&1aiDKGc-+3,`rF-t`l5s;a2c3@bKe;Oa2uHD`Q$!A +ai;?Cao97>`lZEIcd0_Vd*Kq\bKn\cbKS5Wd*KkUb0J>Xbfn>Vbf\,Te'Q:Zb0A;Zc-4>RbKS8X +d*L(bcHQ70rlkAbs2tAbJ',sXb0.uNbKJ&NbK@uNb0%oMb0.uNbKJ&ObKA#Ob0.uNb0.rMbK@uN +b0%oNb0.uNbKJ&ObKA#Ob0%oMb0.rMbK@uNbKA#Ob0.uNbKJ&ObK@uNb0%oMb0.rMbKJ&ObKA#O +b0.uNbKJ&NbK@uNb0%oMb0.uNbKJ&Ob?rE8bKA#Ob0%oMb0.rMbK@uNbKA#Ob0.uNbKJ&ObK@uN +b0%oMb0.rMbKJ&ObKA#Ob0.uNbKJ&NbK@uNb0%oOb0%rRcd'_VaiV`NcHjbYahtNaV6nJ+nFlh[ +r;?Klh>dHQ%K5nFXJMJZ_s.$trr;ulrso#-s8DlnrVcZmrr;urrVZWqr;6Kl0)knLrr2ims8W)s +s7=4)Q'//poD\^dr;HWps8Dlorr)cnrr;#fZI/+=rVulqrr2rts8<#urVlfrs8N&u,6%Q?rVQQn +s82]lrr)lsrVc`qs8N#to$=h\f'htOXK'kLrr)otrr2os!WN#qr;lotrr*0&rr;uss8W)trrE&p +rrW3"rql`qrr)lsrWN9#s8N#ms*t~> +dJk0as8W&sqt^!YkK^?'R[p1TZa$a:WiN;+Yck2.XF[LSXoGO2YHG%3YHG(4Y-"l+XT5O'XU;8; +Za$[7XKJe3Z2Lp,Ylq;:[CEXCYViScY->18YHP16X/rD&Y->%4Yc=b/Ycb.2Yd:U:Xfo%8YH4_( +Yct74XKAY,Wi`P4Z)jt+riQj6Wi<"uX/rJ.Yck:8Y,eY+XT#@$XF[LcXW=RHY->.8YH=k+XKJe3 +YHP13UR@UQa5QO^rVl`mr;PLOs8N&u$22oTWM-'+lhpe^rqHF&rVuorr;?Nlr;HWprr)fnrW2ro +rr!]5s8Drrr;6Norr)lg`M8]]X4-bArr)fprr3*!r;HWor +gAh-N!WDrqqZ-QkrdXb9jM[aIJUi3(MM6V2H[:*kJUW)tH[U?kI=?TmIXQWnI=6QmI=?WnIXZ]o +IXQZoI=?WnI=?TmIXQWnI=6QnI=?WnIXZ]oIXQZoI=6QmI=?TmIXQWnIXQZoI=?WnIXZ]oIXQWn +I=6QmI=?TmIXZ]oIXQZoI=?WnIX_ +LRu37me6VYr;?Klh#IERs8NN#e$,dDTuH>P6 +rVlfoqu?]qrVuK.UQq"Bde*S=rVc`prr`5trVlfp$i^1e\?jWQrVccqrVlfrs8W$!rr)iqs8W)u +s!IaDrr)`ms8VunrVlcqs8Doqs8W)ts74LG^=Mc>c`F+rqu-Kms8N#srrN,srVZcrs8N!&s8N&t +rr<#trr2utqYpWrs8Moqs8Muss8E0$rr;usq#>j~> +eGgins8W)srVuoqqt]gIgW?h$U8><`lH0AaiMK?_o0Ll_Z%GNa3)QD^r4:5_ns@4aN)9<`l,X,^r".5`5p3Gb0A/PaMl6Ebf@`B +a2uNH`Q$$DbK%cMa2H'Ed*BeRa2Z3GcHFAOa2lBFbKS5Tb0%iIaN)?ua8j83aLoUo`uE+BbK@lE +`l?-CaihiH]s4K1Y/K)[nFZYXr;HQmh>dHQ%K5nFXJMJZ_s.$trr;ulrri<#s8DlnrD0q>(!gqUM:+]^#OprVuoqq>C9m +rr)utrr2oss8;os0`M%Kr;-9frVlcmqYgBiqYU +dJk!\s8W&rqtg*[leKI\Ruri,YdCX9WiZ0&"g4u0Y-+u-XoPZ.Y5b]OXoPZ:Xotr4Yck80YQh;8 +Yck77Y5YX'Xp2,8Z*L[?Yl:j)Yl:mg[CE`PXg#+:Ycb.5Z*:F:ZEUC/WN38-XKSq6Yd1R +gAh0O!r`&prqc]nqu.W7p?C,=Rtc32JW>eJK7\]-KS>)4K7\`/K7ei1K<9h,Ke7t3KnP/6KS>,5 +KnY25KnP,5KS5&4KS>,5KnY26KnP/6KS>,5KS>)4KnP,5["SI5$A=+eKS>,5KnY24re(l9JqAW. +L5(J,7LP1/+IXm-,JVAr9L5C_?KRnf5LkLA2Jq\u5 +JUrN3LkLSAKS"o:Nf/[GK7SW1LkLD4J:W<)L51S?L5#SZrIofU]7^6 +f)P[Is8%s1JEFp:WW']tD"k]Y(kg +]tqV%]t1ba\$roZ\[AZJ\\5Vb[^`r[]"Ytq^V.1e[^s8i]t;"q`5BO4`PTC']Y(kh]`#AV]Y;+n +]Y2%n_Sa("_T0^5]Y(tl^;@ee_>_4R_8*h$^:jKZ!5/6Cs1SKHJ\Je2*50"u^VIRq]"G\j^V.4e +Y,.bcYenoJl14WIrVc]os8N3#s8W)Ws8Dp+rU\C;V4F3ql2(GZs8Mior;H`prVc^$rVHEirr)fm +qu6QqrVlfp!ri/srVgX3rr)cNUQhCBR]>'9rVQHcnaZDRs8MofmIU5Fb+4Trh"LOAqsrn-jQQ+1 +rqu`hmdBT2jl>Lmp\""=iT'>"rVuiknEf>ri90P&qu#BQPG,YHnEAHSm/I"^q![A(iT^"2rr;om +rr;rqrr36&s8N&urr2rsrWN9#rr<#trr2rprr<#srr +e,TFH!<<&t')_Y'p$Uqm^TEo^O.2lBW2HPmrhp%!W2Q\oWMkBIY,VH$!3,Xk!3,mp0W1kLY->+2 +WMl\lVl?\rV4aT_XfJ@sW2Z_pX0&M*X/VtnWNE;%Vl6`#Xf\b/XJl,q#Gn;oUna]\VZ*OoVZ3S) +XKACtXKf"1VP^;kW2clsVu`fpri,pt$`U&&W2ZbrWi2nrWe%.[W>VY3W3!&"W2?JkWN)noTq%@0 +Q_qFCiU-:6rr!0&s8N#ts8N&uro!hVrr^Bl!W;oprWrK!qu-NmrVQKk +rW2usrquotrVc]oD#OA3r8"-4TV%^Tg\CdGr;$!Vq#16lqt0=Kr:A.)Og*a;q>U<_k2>=anGE4_ +rV,aJnEf8sk4&-SMEf@B3cr;--Tk2G:`o_SRer;-Em +rVc`q#QFc&s8W)ts8N!#s8N#ts8N#ss82fqs8Drsrri?$rr<#trW<-!rr2qJ~> +gA_HWs8W#orVHBgrr)ls')hk0q!?q_Z^lkpGCYC'LPCM;rIkN1Knb;8L51P?RKnb>9Lkkta$AF4hLPLV>L4k87 +reC?)r.]cX_2&&E$\sIhK8"o-IXQ]tL&Qf7K7A2nKU8scg?J5)rr)fps8N3#s8W)Vs8W)urs\SL +Yc+4g`Tm@#rr;uns8;isr;HTn#lXVsrVlcoqtpBl!WE#sr;uusrVc_3rVlcnh4p4-Ssl_6q#:3g +q"+(Orr;upo^2;Jo#mVdYMT$Lrql9Ki8j+kqu6Nlp[7J=m,d9inFuVFki(Rhp\k-jq!m_6iS`nf +p\asIX-99khsfj\ea3;6qtBI?iSj%nqYpNmqYpNnrVlg%rr;uts8N#trr*'#rr2rtrr2osqu6Wq +rVlis"TJH#s8W)t!rr9!rr7K~> +f)PdK"onQ"r;?NmrZ(t:q!mY/g!.10TqA!VXfSS)XK/A%XK/G(X/i@RXKS]+X/u<$!j&H'riH.# +!3H1"ri6@*Vl-Q!Z`gF/W;`\mWiW7rR[KnNXf8+mWiE/*Za@*EWM?;m\@JuM[(a5_\@8iMYHG(2 +W2ZkuWi;knXK\n-VlR#(XKA_4ZEUF1X/iA*Xf\b0ZEga>YcXt+WMuosXT,=*WN)u!XK8IRXLtVY +X/`5&XK/;!WiN8'X/2GZS>!.)f&5WRo_\Rbs8W&ts8N#Rs8Dp+rU\C;V4F3ql2(GZs8Mior;Q]o +s8NE)p?Lc,qZ$Qnr;HTnrr;n6rVlcorr)cps7+0uR]i`]T>9Xgs7bQtbiSX!s7G-ifBh4uS!0S` +hsU'qc+CEr^<,@*r;>^%cdB\B\%U&@gWdF?]ZoO3rV5R&_Rm:a\B3h)m)P`[RB" +g&M*O!<<&ts8Nr8s8Dutrr)cjoBbD_`3GbmO-,m'S=?%5SY;gTV4sECQCk+TUn+0Z +WhcJeTq7dDSXPh0rgFdnQ'Ro3SsYh4St2@AT;&$OS=,h8SXc1q9St2C?R@9Y:S=5_)O,oR'^!ks'mJ-_]rr;uss8W)th#IERs8NE!eZu0JU;lNs +s8N#ns8;lqrVum(rq>X=mJ?k^rVZWmrr2rqDZ0S5rVlcns8VW1R@CI`SY +gAh0O!r`&prqc]nrVdK/s8Mlckh4(hUl0\JH@gm(JqJ[SJcC<%KDpK&K)gM.KE$N*K7\Z)dt%[Q +JV&N+K"cm;JcgXWJUmQIs*t3&J:E(JJ-g^QI"6p,KRnW%rd@juJq82dDg6hdIsHX=mJ?k^rVZWmrr2rqDZ0S5rVlcns8VW1R@:@\ +S=m^^rr;cScHYJGrr;WHbLl4:[@EJV_VjqTjNYkhW3;:lMgYKgV^Y9[_:/UqYpHjrVk%@J,~> +f)PdK"onQ"r;?NmrY>J4qtK[Hin;Sl\[/6,S=Q4@S!oh:rgj(Z!1SP0Z(1i`#b7BRR[]e:S"'DI +s-j+\S!ofFS4T09Q^XP>S=#V0R@Kh?T:h^@Pa@r1QC4;9TUqaNX0&=oS=H1BU8tQ*ZEUO9Vk0KR +Tq@mHT;/0RS=#b:Tq@gDSt244R\-1Ar0e@iS=Q1?SXuFDSt2C?R[KV5S"6+?S,SiYS"-"g]d,4'SnFZMRrr2rrs8W)th>dHQ%K5nFXJMJZ_s.$trr;uns8Dp, +s8Muqs8MoW`ONtKpAFpgr;ccprr2k5rr)iqrVQTngoQ[7]<7QfXOmCMlc5Qeb4#?0jg(5Xe$bC$ +P*`,hhpf00O-#p)TSZK3(TokV0W6=T%k/F3[NgQ&jS]KsAW0EL6S$'WHXej>< +pYE6CQ(4#!W71>7rVc]obl<1~> +g&M*O!<<&ts8Nc3s8Dutrr)fnq"!\*d_rPpVOa"OOp[>5O,oBbOckihOF`OtOTpo0OckihOSk7@ +O8tFBOA(e"P)tZ_O-GrmNJrgWPEV5sQBR>eNg#Q_OHc#pP*23)Tq%@.OHPcmSti-XU7n9KOH>Zi +P)t`eQ'RYqMiEj`P)bQbOc"pRP*(h'N<5-$NrG(KOHYlkP*(fdNK0']P*5g,s,[>FP*(iWOh?en +OH5NeP*(ccOHPfiO,fL"XL,aehWsb*qYU9ls8W)Rs8W)ursADLZDjOl`ps*t~> +gAh-N"o\Arr;6EjrYGJ4s8;W\jk%YeWh5W:K7AB$IsufpIf=ltIfOr#J,as"IsufmdsVCHI=?Zp +I_L=3IKP(KI=(ds*t~> +fDkaIs8)ors8W&srYYP+n*&cde^;LMXJMhmV50l^V5:&dV59uOV#[=RV#[=(V>6q\V#[=jVG!b[ +U8+T`V4sWWUo()hWN)tqVPpJiS=,_/QBmo0US4!5O-uQ(O-Q3)R$jPAR#dc:VO3F.Q'[u3TqnTb +WMlbqWhlA\U8F`]USRmds.pX2USFW\U8"EYUS=NXUSFW^VPU)aUSFW]V5/[=^SUt+rh]Xls.pX0 +V5:&eVPU5q^rt0Vg>qYmp@e7Yrr2rrrr1[PrVd9)o?aS8SY!a`qZ$QprqZTlrr;p/r;QWP]V:dg +]@uiTrr)ipr;HQmErZ.;rVl]os3-pt[EcUcQ(H.os5^hTOhg;_rna6"UWpZLQ^"2TdaG[rP+8_b +Wg&XVlL`8dNLQ`EVONm;Q(Y1WR$+K"lH5TVS$^#7O+sISdC,L1U8biHZ]gNhmGYI9OfQ'rOc-?n +nGN:brVuosc2W:~> +g&M*N!<<&ss8N,us8N#rr=f)&n)iHVbf7E'V4O?RT:VUFT:l.T!1nb6YFbfdr1EYRrguiTS"#q? +TUhO>R@U"DTqeH[TV8*RS<]8"O,]*YPaRnuKS>MQN/!4PP)bTfRZ<)bT:CmpM2R@UQ'[o/StDUG +T:_R;PaIr.R$a/XW0a1#qu>fmP*3ZIs8LiGKr327UR@FC][YKDS +g&M*N#ljo%r;HQls8W#r'E.h$m,?RA`P&XTQ][JsPEM&lPQ$gHP5pcKPQ-dJPEM)kdujlsP*2#l +P.m.[Oopo2P*,R's,d;ErfKF.PEV,iNf]HgOH#3YO->cmQC+#&PEhAnLkL>/IXQZuM1p4pF*rI^ +EcueXH$OmnH#J(fM0j8dG^=moM2dVrOpdD:Q'$u^NffB_NfX.$"H\b-OH9C&s,m;B"cnb,Ocu". +P5gXJP*;&mP*1B[^QSY\rf[PLO,]*XNfj=)'9o,n^W=aRk48EKrr)fqrr2rsrn@DPrr +fDkgKs8Dup"8r3!rVld-rV6$SmHNWad`KJG_nj+&^5K`0^;%J"^qfHUs1e`Q^q[Up^BM?d^qmh% +p;$aErP;OM^V@S#_o'=,^q[\$_SX'u\@fVq\t5%IOd)<)S!T(gO/0(]R?!)[NK''hP)uc\[@)i2 +OH5["X0T+@\A-#'`59C/_SO++_o'F3`PfX/^:q@s]tOEZs1JoV^V7Iu^q[\#^V@S!^V596^VBf_ ++2>Y._SO(*_o'@/_Sa:1a3;r`hra:rpA+R^r;Q]qrRq5LrXJhtd&a(7T#9ghs8N&tq>^Em?i9g# +r;ZZ*O->ilR(DDWrr)fprr)fps8N#trqu]nr;ZT0QCu1SgU`f<]BfFX_P*aFli7"CV2q\1n'n5# +[cZkmVO+1.p$gJ4P+g+cc&d18an"GlNfTLGn(Fb)Ot=6*_NLM;qu,9PMN>4,i2`0D`T6'kRA.sb +_3'P^k4e;XPb#eXr;Q]ns8W)Cs*t~> +g&M*N!<<&ss8Nu8s8N&urr)fprVH3UlJpUHbf.H7^q[Ut]n*n`^&YkF^.l;R]Y2%o^:_(j]Xthk +^q@+`\@]J_RZ3>cNK]WlObSCCSue`OLOk&3L5M1QM5@bbO+<%DM2mt!X0&S1\A#_j\[oD`\[oAa +]=bhirk/ +g&M*N!<<&ss8E)us8W)ts8<<(rV?'PkMXt;`Ou2[rj`$=J[q)W!4`!<#.V.O\@K/ZrjDd79"DOF +\$<0D[CEB&K8"r1M2R7EH#e7mS_\[],Y\$rfSrj`!;%_0'Z\[oA_]"5G_]",A]J[rJ)$b3aX]"#/T['d?O\c0/N^;S:JiT]n- +r;Q`qrVulrfDkmMs8NN#e$,dDTuH^Em?i9g#r;ZZ*O->ilR(DDWrr)fprr)fps8N#t +rqu]nr;ZT0QCu4Ugq0#@]^5X\_kNsIli7"BV2q_3nC=G'\**(qVjO@0p$gJ4PG6=gcB3C +f)PdK"onT$r;?Nmrr;rsrs\i$p@@V7in`8cMu.Lc3)D>cd2+-r6Mjt!71Ges3L\kr6J$_ +cd0n_daZ^mcd'k`dE]qT['7O&bbCAuSWStoPb"\T\\lP0_7HnUZDj@\PFfP5\!`;JUnO?LS=>t? +Xh`?7eCW@)e^W*sda?G@d07nCcHjkbrQk\nc-4J[r6>>hd/M@BcFM7"ckk$TdF-Ijd*U1hfA#*; +jm;R2q>:*er;HTng&M$M%K5nFXJMJZ_s.$trr;uns8W'5s8DoqrqZTkY(iLDQ]eW3qZ$Qos8W)s +r;LO1qu6Tlk-g\S`o,djRujVuo]j>jX3L&3s59`9Y1r['TT?\RkH0l8_ +g&M*N!<<&ss8Ni4s8N&urqu]ns8Moio'>AngXap)dJ_Aod*L"`c@O<2ci25hci;8oc-F_acd)O7 +50hO#bf6ul_q)u'P+nD*Mi3[bU8t]:`P]BtXK/J!Q]mGt]#_1@MjpH4R[KS2Q^t.ic-anee'cXj +cd'e[rlc/'d*L"ad*^:hda?FecHjkacd'h^cd76h\'Go:cd:"^cHjkacd'e\d+$_$guRhlo_A=` +qu54Is8N&u$22lRWM-'*lhpe^rqZTorY>J3rVlfls8/sRSY_[9Z/GKYrr2rtrr)coD#F20rqkid +R&.g^ikh7LX4?q1`M]i_mJm4EV3A1?ptMO*]^k +gAh$Ks8W)trr;us$NL)%p@7G/h:C!"rltMgrQb>c!m]'8J^0q6rltAds3:Sh6dJ3rVlfls8/sRSY_[9Z/GKYrr2rtrr)coD#F20rqkidR&.g] +iPD%HWmp_-`29W\mJm4DV38%;pY)=&]CG*fP+0;Ss8VW2S!1GJe!>flj8\b[QCb>>s5ph_Pdfo< +ce.LPlI<;5S%%VG[$Rc8mHD6RVp3f!Pb[%5s8V0!aPZ[hr;HTnc2W:~> +fDkgKs8DuqrquisrVd3'r;--Xn*B2uiSN>cgAfh,g=_YC!o)G_le;KpgY99m!8IM,rnIJ,rnIJ, +rnC<'f\"m1g=tB8g"bE=h;@,Fe]Y_=\Y>S-i7Y9#U8"3MUTV;TgYq&Ghr<\Rh:p;l[BmZtf"\#H +S#30\SXQ%8Q_1e1'hrqu]ns8N#Ms8Dp*rU\C:V4=*nkkb>Ys8N#ss8;j0s8DoqrV?Kk^mCCR +Pb,YPqu6Qmr;Q]oEW?%:r;ZceaJ>/pZbX8SR$XS]lL)KXU!)p(rns` +g&M*O!<<&ts8N6$s8DutrVc`p$2jShmcruriSWGhgBHBeg=t?8OkTlikhH-k\_@,ZIf\YHN9] +Ssu4;R%Lq>g:-irr)irrr1OLs8N&u$22oTW1]m)lMU\[rr2rqrY,>1rVlcks89[! +Q^3l-^ZPFmrVcZnrr$j:rr)cprpn.,R%Lb&^TGlTYBmjkhF=nY,eS#W4M*PY`u$,kMa%@T>f$RR()P`qY^0` +qu?]qr;Q`prQP:l~> +e,TFHs8W#r!<)or#Q+8fnE]2oh>Z1/gA]k,g'-0`g=t?8J_R$Us4[J,"PVM\g=lP\rn@D,8)2qW +hUfuf^:U/2^u3eFQ(=J5QCFe\`mWPle^rO1f[S1rVlcks89[!Q^3l-^ZPFmrVcZn +rr$j:rr)cprpn.,Q_1V#^8mZhUqZ0`_OR@Dn,E=EW0=Cf$RR()P`qY^0`qu?]qr;Q`prQP:l~> +fDkgK"9&/pr;QZorsJ`&r;HQjr;--WmJcGMlMg,Ll2g58P3W29lg*m'!p].=\Ea1\li-/Nlg!d7 +li66"lg!d"ki_0nl0@Qtkj%HskN_JR\m!\YIqBFUqGR<\!iV\[D^PMjQGgnl0.?rlKRQskNM0olMg,Ll2g/8rp'LK!:'%=s6>1$ +c0PDprojjVlg!`ul0I^'n*flDrqd!"s8W&srr;usf`1pL%/oeEX/2>W_W^jrrr;usrr;oq)#sR3 +qu-HmrSOo=IZUngo)8Rbr;Q]qs8N#rBE.u0rr;uYWK3:5US*s8p"?C)UZ0[bT?QX$n?nIM]'&tQ_5j3AkMEV:S"Gn/S=H(Oj6!7tV97uY\WiAm +`h&*kmf3+\rVca"rr)irrVat?J,~> +g&M*O!<<&ts8O2?s8DutrVc`orVlfpr;?Ebo'bu4m-Es$l0IX!lKRPql2^)4lMp+Yl2g59rp'RL +r9OCJ.dQBbl0.?qlKdg'lKRU"lK[a%j3kQ>V5TrV]\r%tV3n0obLYP3kiqI#rTaFK/*Z9\jlYdj +kM*hMQ^k"TXg>dTYG]1phR];IX1?='iTTUpmd9<(lKd]tk5OQDkQgA +s7uTkrVm'#rVliqrQP:l~> +e,TFHs8NW/rVZWmr;HTnrr)ipq"*qQli?ANlMp2Ml36G;lKda#Ja9/us69sWlK[Wtkiq?slg+N7 +s69RK6fZY.X/;nfS\*hBaJ"im\AltOj5oIglKIHpkiq?njQ5I`k2taV]qU^YV5L8q]Xb)?^u4%[ +S=6Ojak5V;m-jE2m/H8Yl0.?okNM-olKdd#l1sTJl0@R"lKWrd^Zu'glg*p'l2KiYkiqF#n*]W4 +p%n[fs8Munq>1$frn.8Nrr&mf*4EY*H-Co@Ke']Be@QOJC1prquHCXGs%9 +dZgELm/QUaPaoALr9(quTYBXI[[iq]Q'\,7T!@A=W/RUskhs%;Q+b2/MluLJq>C3irrrE#rr;rq +bl<1~> +fDc?Zs8W&qqYC$drVccqrr)fn$2a]"qtTjVp%J+Yp&Fabp&=[bomuhZp&ap\pA"=\p&Od^p&t'^ +p@\(Pp&FXap&+FcoCDGBoCMtR<:8\k^pU>FWNEP/TVp*)kg.8ohsL+2q=aIRp%.hIo(D_KpA4X] +q"41Fh9X-Y^:(2DX/;VmbN-mHUoLW#XgGXO_p[N0nFZPSqt]sVnF?)@o_&4U"82B]p&4Rap"f?A +o`4^[o`Fj[omui+pAadnp@\(Lp%@tLoCMPFrq6Efq"t$gs8E9'rr<#ts8W)Ort55/rr)ccc`Et6 +T#9ggs8Drrq>^Ems8;oq$NL,!h7g86g[P+>r;HWo!<)orD>jJ3r;YW>KUA^AXf87rTpMG"kf0$U +`U<^'iMqs=g@*C^PIg&:WKEq!o)AU^fqjP&j3EUN`p*Kk\t,Y.jS\5XV3eO?`0l[XZb*oTOGg@( +iiA6>`8fjkQ'/i)W/dnDs8)Zdj5B4rr;QZnrltIn~> +ci4RUs8W)ts8DoqrVZTmrquTerq?ThoCDMFo_nC]o`+NJoDnLHo`+O1o`+OXo`+OXo`+Lbo_%nL +q=Xd[!;69^s7HEao_eA^nDr*:]!\cFZam?:X4$Y+d`BeomI^/Kp@S"MoCVYFp%J%Oq>0s`p%7_4 +d`BAD]U6mr;6Ekrr;ous8N#Ls8W)urs\VNZ)OFj`U!I%rVc`ks8Drsr;Z^& +s8M`J^9kf4nGE4_rVlcrrVle5rVl`ms5'&qS#WctXK&4oRA89sad\U8mJQqAWfaCm)jlF7EP.f,=NiMFF +qY^$Hi9L%6rr)fpc2W:~> +g&M*O!<<&ts8N6#s8W&qrqc]nrr)fq!WMuqp]:-^rq-6`s7?Kdo_%nLoRZ\3p&FXap&=ReoCV\H +o(2kQ-M@$"j3kfU[BQj@]!.s0dIQMH_opj!nFZMLo_%nLp%7kJp%.hNrq\DEo^Lhfai)!*Z)at) +V6A8/d&a.J[Bd-M^V\+FkOJ6>qYU-ap$qM@o()DFo^h\Io^r.Urq-3_s7Cm8^\%d&p%A(Qo`"C\ +o+^onq=jUXqu-Norr)`ip\F^bs8W&Ms8W)urs\SLYc+4f`Tm="rVlfls8Drsr;Z^&s8M`J^9kf4 +nGE4_rVlcrrVle5rVl`ms5'&qR]3QpX/W"kR%`!naI8C5mJ["BWfX:9nBmtp]BeCTP,$7lrVcKD +VM_;4c]+@5lMg:bSu''\rTV1rR'bMbRZO/K]YLn +fDkgK"TA5or;HQm%fcP-rVZQir;HNhqYU0frql`nrqcirrVZQiJc*[g!rMonq"t*h"8_olr;QQt +r;6Eiqtg0aqu?L:qtg-aqtg0dqu$?eqYKpIafqJ/U8tN-]t(;LdJ*S5q=aO]q@3B!qYU-bqtp6d +qtp6erqS>Gqt]jWqsrds`O2\AYK#Pa`Mp,W^TF6,W2-)d`T-O[n*]`Y*>Kmm/R+Zc^B]uk0B'S_<:je +]VDR@jSnAXTp)IpYa)'&jSS2OMiP@.hQ`HE_;sdsR$PVA\WicDrr38b\[0QHqu6Tnrr11BJ,~> +g&M*O!<<&ts8N)uqu?]qs8NZ0rVZTlrVZTmrr)`iq"ad_rqQ]nqtg-aJbmLbs7uHds7l]lq>0sf +q#gKjqtg-cs8")>qYBsar;?Nls8MrprV5R#[&'IpYdV6_]s=uoqu-qtp6aq>BmIf?(V,WNsY-lH$*:`58gYWiiA!Yfc2(p@@\Co_JFas8Mroqu-Bkq<@bUq=".[ +q=j^cq18D.qZ$@$qY^9gq>1!cr;HTlrVliqr;uuus8N!!s8N#Ls8W'*s8M]?Yc+4h`9R:"rW)oi +rW)utrr +dJj@Ks8W)srqliss8W)ts8Dus"TA?!r;6Kis82fl"T/,oqYGd?]_ha*s8)fmn,*.]A,H,uq>:$c +r;?Qmqu$EfkKU?/Tr>3(]u.OgZIJaKpA"@Tp\4I[qu$Ejqu-Kkqtg3eqYL$crVcZhqYp0Mf>k>" +Vm=G*lH$'7_o&dYWiiA!Yfl;+p[R\Ao_JC`s8Mroqu6Eqqtg0dqYL3gs8)NfrqcTjrq_3CcheCP +qtp?jqtTs^qYL0irqu`os8MurrWN/qq"ajdrn.8NrXSu-o[9q@T:s3fqu6TprUp-is8N#trt,2, +p\+CXrVuoss8W)srr)fpraYp+rVZQidZTTlaOJhrf>OMHRDR_#V456as8UfCMlkb$bajm.mH(O; +T"s^ms7Xd,N3qcoOI*iJs7!^tXh<`pl+j!WWlD +fDkgKs8<#srVcZn!<;urs8<6&rVcZmrr2lpqYgKpJc\?`04W3XCsn,<7arr2rtrr2rgrr;rsrZhC@ +s8VrgmcWNcjmD[*e$GXG\?2d>`4Vn3Y2&O*ah>aEk4\`Q$i^,&qu$ElrVZWmrr2j$rr<#srr2rt +rVccq"TSK!r;HQm"98?!rr2lrrW<,urVlflr<<6"rVlisJc>'9s8Vlnrr<#trr<#t"onT$s8N#M +s8;j)o[0e9SYF'dqu6QorVHKnrVZZprrE&lrrW3"s8N#trVc_5s8DrqjLCMNbN\Zkp%RU]S!pS& +a/YE(g].2kOc?["ma@bk\E2hcU7&+:r:o3YPFKVXd%6rMkPt(^S#3g[ro_"lS?9N'P-!:6s4s0, +V7kpIYEbm"jQ==JR`FF-R$#;Ws7sm2S\XFcrr2lqrltIn~> +g&M*O!<<&ts8N)uqu?]qs8Voorr7QKZ2On)rr2inqYgHnrquirrr)iq.0';FrVuioqu-Hjrr<#t +p\FaZfsn,k]Y(\WX/rbLh!tCDrVuosrr)iqs8DKerVmu:p$_,)iTBS$m*iD;Xgt^?]?.mfS$M#F +jikQ`fBN//rr`6!rqucos83-#rr)cmrVlfqrVuisrVl`pr<<3!qtp +dJj:Is8Vuqs8W,u!rr9!qu;6HZ2On)rr2inqYgHnrquirrr)iq.0';FrVuloqYgVQ6p@%5(iTTe)maehAY.M!C]ZJ!hS$V)I +k0(Q^f'3#-rr`9!rVZZns833%rr)cmrr;urrVlcrrVl`pr=/c)r;6EkrVlcprr)iqrr)iqrr)lr +!<%KJiVrlWqu6Hlr;Hitr;6EjrVkILs8EN.rq+XAUn4=!kkkAXs8Dfn!<)ips8N)upAY3ns8W)t +s8DoqDZB\7rT(JSUW_ooo_%t@]UP@oaN( +f)PdL!<;urs8N3#s8W)rs8W&us8;its8N#orrE%Ls2k<=rW)omrr2lrrYYV3rVlcps8W&ss8W)t +rVuosrVc`prVHHjru(Cee&oYUip>=#SZB6/YdV0Wb2N'orr)cmrr*#us8N#hs8W)trrN,tqu7o? +s8Mrhkg6fL^pL2J]="B"Z/+TeY,8P>`Q6?Rg#MPrrVc`orrW/rr;6Hmrr2lrrqu`prWE)srVulq +q>UEorr2oqq>LQrrr2rsrdk+.s8W)us8N#trrE&Hs8W)ursADKZE0js_WUgrrr2rrrr<#t!<)or +s8<'"rr2rlrW<-!rr2rqrr;q8r;ZQ1Oc-C!qZ$Tns7t!;P)uccY`4aOc+]g/L8W\sf:7Pb\B;ds +R?=Pi`2f,h\`35%PF08OrpI+SR'l)Vk-gV?Z,s&(R_-tgXHAL1Yhe?HPa%rW`j1en`p;9TN1R`+ +_P)scdII26rr2lpbl<1~> +ci4:Ms8W)ts8W)tq>^HnJcE"T%K?D-rVliqr;Q]orr<#prrm,__s%*fZ]LQ^k5XSPQBSSp +Wf!7WdE&GQNg[--j0Y&8UV=aQPEj/RfVa\"^!"9dNMY%mrVc`prVat?J,~> +aT);>s8N0"s8VuqJcE"T*rc3>rVlfpr;HWnrr<#srr<#trr)lsrr)fprquZlrVmZ*jk%c!dc^2W +Z_F_;]XGDd_Tq6@]Yh7a[_TJPS@.ACdB]d] +_T9sJeD'*Tqu6Tmrr`5trVl`nrr)orrr2ios8E6#rVccqrVcQkrr;uss8N)uJcF^/s8Moqrr)ot +rr2rts8E<(rr2lqrr;usfDkjL$NKhLZE0mt_WUgrrr2rrrr<#t!<)ors8<'"rr2rlrW<-!rr2rq +rr;q8r;ZQ1Oc-C!qZ$Qms7t!;OcZZbY`4dQcG-$3LoB##fU[eg]$&+#RZabn`N>Dl\Dd&#PF08O +rpI+SR'l)Vk-gS>Z,iu'R_-tgXce[3Yhe?HPa%rW`j1en`p;9TN1R`+_P)scdII26rr2lpbl<1~> +fDbsPs8W)rs8W'#s8N#tr;Q`r"oeQ$s8N%LrkAC3r;cirrVHL$rVZTlrr2inrr)cnpAQ65qu$Hm +qYC$cq"X:,\Z)?pVT%c`^S7R.[CXfKlgXZHrr)cqrr2lrrW)o]rW<&trr2lrrZq:-kMk7>]uiOJ9(cSY+1!lc,]cQ'R\rRDeLks8;iorltIn~> +ao;GAs8RZLU](Ptrr2inrr)cnrr2rr!rW#qrr+)=qu-Qor;6HjqY9R4^9+<,WlaVp_ksE>\\?SV +m.'lLrr)ctrr)`lrr)orn,E@c"9/8tr;?NnrZ:k(ki:FA]sFrDWj0k7ikqn"\@o>MU8>0/cg(?* +rVlZorr)j!>;S"#A'X-\mO +hs8@]QB7iIYaqE2o]sMlQBdc$O.!rRrVuforVk(AJ,~> +dJj:Is8Vuqs8N9%s8W)ts+10KrWrK%rqu]nrVZWfrZh@^BgqYU9jruV1>s8Din +s8DlnrVlcps8N#qrVliqrr)fnrVc`orIOsgrWW?$rr<#tr;Qlus8W)Ns8W'0s8M`B[^>;S"#>&X-\mOhs8@]QB7iIYaqE2 +o]sMlQBdc$O.!rRrVuforVk(AJ,~> +fDbsPs8W)rs8W'#s8N#tr;Q`r!<2or!ri6"Jcn\Wj9+CZ`gF'WQXf0mG$:OnGN1`*<#g6rr)cnrr)fps8N#qrVlforVlfo +r;HWmr;HTn!r`0!Jc=!p!rr9!c2[eB%fcOud^--NS]1'srqZKkqY^Nqs8W&qrr<#prr +ao;GAs8RZLU](8lrqufq2#[@Nrr2rrqtg6hrr)inqu$Hlrr)HJcF^?`ZFdcLU:K@\ilT_Z$qu?]o)ZB[6r;HWnrVlirrqu`orqu`orqu]mrqu]mqYgKpJc=$q!<;urs8W)t!rr9!fDkmM% +fcOud^-*MS]1'srqZKkqY^Nqs8W&qrr<#prr +dJj:Is8Vuqs8N9%s8W)ts+10KrW)orr;Z`trVZWmrX&Jur;HWnrqlQirr!u;o&7g(YcP+@];_L6 +jS@cVajA]!nbiCcs8W)rr;HWprr2rtlM_%err2rtrr;uss!%F>qtKUBgsX?edc^;a_5X65[CWrX +Z`^('c11f$gtCZVrVQU7rVZWnrVZWnrVc`qrr2iorr2iorr2inrVl`mrVZZos8W&us+10urWW?$ +rr<#tr;Qlus8W)Ns8W'.s8MQ:Z`g'n`UEg*q>C6gr<*'!s8Dlps8Vrps8N0"s8Vrps86a5rVucF +\\d.nrr2fmrr)<>aLTL\k/b$9YcbU\_oq?Eo[LR_\'aL'd_N5mYHY^mo)JaG]#Wn+s7P*cb22jj +oA.U.g%!t7[&p:+^sg',d-pelbIY*tcd9\Qjo,# +f)PdL!<;urs8N)uq>^Ko!<;ur!rr9!JcELb!<2`m(&n75rqu]ms8MrnrVuosrqlQirVlcos!@[B +qsDY@[A]dqYI_BLVRbOXo]bN)oD/@brVc`orVZTlrVlcorVlEgs8N&urr)otr;H]prVcirrr2pH +rVZE[l/q7&q!$#1Wi<#%[C!XhWXD"qYgEns8N#t!rVrorr*<(r;Q]nrVuor +rVlfqrVulsrrE%Ls-nE]&fgu7Pjqu$EakjS +JcC<$li._!s8W)rr;HZpr;6Hms8N#pqY^^9uh7gG8c.1S, +lLFTFr;Q`rrr2rtq[`Z)rVlcnrVl`ns8W&rrr2oqs8N&u"9/?#rdk*:s8Dp,o$X_o_\Xdr;Q\#qXa+=nGE%KinE/Gl0[j*pAOs]kMbIjqY0LE +iS3,FlLauOrU]7Aq#(-hoBbr?r;HKeo^))EpZ^Yfe)0TakiD71rqPmAiT]n&m-ONIrV?'Jf[AL8 +n+lt]rr2lrrrE#Bs*t~> +JcC<$li.@ls8W)rr;HZpr;6Hlrs&K"qY^' +l0np9rrqcQkrr2lp!W;oorpBaarXJf(rqu`pn`]?3qu6Qlrr-1!oBkf3qt]X=g=tTN +md0B9rVlEPiT'G(p[IJ,gY:]Po_\RboB>ZU?lrr)ls!<(1BJ,~> +JcC<$q#CBn!<;Zi"9&6!rVl`or\+6Ls8N&urqu]mr:KXWpXuI=]YD%cXf8>%\'O71r;-0arVZTj +q>1$frr<#trVZZos8<$!rr2-]s8E3#rr2lorVl`orA=EJqYg?ajO(u[ZDse"XKJA!cLpkQWMQMm +W2?`5cIqCPqu6NjrVliqrVlfprr2lps8W&prqufarW<-!rdk*Js8Dp*pXH:;S#"!bq#C?nrVlfr +s8W'(rVlfrrVccqrpKe2rVuosr;6Ejr;-?js8N#trr)irrV?Elr;6Egp\4RarVc`prr#C`p\Xsh +rVZQfq"agcs8;]jrr<#squ-QorVlforr2rtqtpBmrVQ9[qZ$QnrVl`mrr2fhqZ$Tor;QZmr;QZf +nb<%^qtg6jqu4k?J,~> +JcC<$q#CBn!<;fmrr3-#rVliqrqucp0E(nMrr<#tr;?Nkp%J:YgSq!__7[7\X/rG6e*Qo1rVQNl +rVlcmqu$Els8W)sr;Q]qrtrrXAPNXIu&Y +`9-jprr;rrrr<#urWrK%rr;rqs8N#cs!.LBs8Mrnr;HQir;Q`qrr;urrr;rmrVufmr;-0^qu6Qm +rr2oq8GW#Wrr2loqtTs^qu-Qmq>C6ls8Dins8Murrqucps8Vunrr;rop%8+\rr)fpr;?QnqtKse +s8DlprVZTmrUo^Trr2fkr;ZZnc2W:~> +JcC<$li.4hs8W)srr;rrr;Q[=rVlirs8W)rr;HQcp%nI;W2%&A]=+lBX/rhZlM1DXqYU9j$N0bs +r;HWps8Muprr2rr!rr9!k5Y/Srr4_Ps8MfXe]GS6Xf8;'Z)4SJp@c\0VPpPpVm!q_g?8))rquZl +s8W&rrr2lqrr)irs8N#ts8W)rs8;its8N"Ks-iudrXAPNXIu&Y`9-jprr;rrrr<#urWrK%rr;rq +s8N#cs!.LBs8Mrnr;HQir;Q`qrr;urrr;rmrVufmr;-0^qu6Qmrr2oq8GW#Wrr2loqtTs^qu-Qm +q>C6ls8Dins8Murrqucps8Vunrr;rop%8+\rr)fpr;?QnqtKses8DlprVZTmrUo^Trr2fkr;ZZn +c2W:~> +JcC<$q#CBn!<;]j"9&/ss8DorrW<#pr;Q]qruh%"gtrrY+qQY+_>[`96sqrVuiorVlis +rr;us"onT$s8N#crs\l+s8Dlnrr2rtrr<#srX8Z's8W)us8N#trVcWns8<'!s8N#qrrE&qs8W$% +rr<#trVc`os8;isrVlZns8Muss8<*"s8W&qrVm!!rVc`prrE&ts8W#srr;rqrltIn~> +JcC<$q#CBn"98B"rVZZprIH +`np=^o^VVNrVccqrr;p(s8MuprVlfprVlfqs8W'"rVlfqrrW2urVZWurVlfrrr.KKW;lhq'D0bV +TpqgqkP>,Us8Dlorr<#ts8N!$s8N#trr2?c%/p5+rVZTmrr<#ts8W&s$iL#(s8N&urr2rrrVQWp +r<*'!rr2iq!<2lqs8<0$s8W)srVlcqr;H`qrqcZprr)lsr<3-"s8Dlorr`9!rVlfr!<2uts8;or +s8Doqc2W:~> +JcC<$li.1gs8W&qrr;rqs8E0!qu$Hmrr3l1lIsP#ddd(^TqT32Xf8G/]uf!rq#(0lrr2iurr)fn +rr2rtrr)lrrquourr2-]!WN,trW)usrW2usr;Zfr,5Uotjk\D,^U^_P\_d5N^7qL,['[!;ZF.6^ +h=C@4nauYTrVulrs8Dus#lOStrr2lprr2oss8E#squ20HS,`Hd'D0bVTpqgqkP>,Us8Dlorr<#t +s8N!$s8N#trr2?c%/p5+rVZTmrr<#ts8W&s$iL#(s8N&urr2rrrVQWpr<*'!rr2iq!<2lqs8<0$ +s8W)srVlcqr;H`qrqcZprr)lsr<3-"s8Dlorr`9!rVlfr!<2uts8;ors8Doqc2W:~> +JcC<$li.1gs8W&qrr;oq/H,MFrr2`alJpL:\ZMR4h=TX1V6mD*ZGP&Hl1=iQrVcZlqtg3gs8W)u +rquWlrquourr2Ees8E#ur;Hcrrr;urs8N0"r;HQk!;lcos8OGFr;--Sin2Pse*[,"^8@j.Zb*cS +Yck+.bjb,Xd*^J!jQuI3qu$Ek"9/5pqu6NmrVlfor +JcC<$q#CBm"98>ur;?Nnr!*-"s8Dlps8;j;rVZTmrql?Tjk7bfYG8P`p>WEV[]lj?`73`2pAY*k +rr)fprrXj6M.i6p*-gue(sq#10js8N#trVZTlrVZZnrr2io"oeQ%rVZTkr<<,trVuip +JcD\Ks8Eo9rpnODVk'L!m/I%^rVZTlrVlfprr2rtrp0U_rWiE"rVlfprr)ioqu%0*rVl]krVlcl +r;QWjrVZTlrr2oq$2jc$rVQNkr;- +JcC<$li.1gs8W&qrr;oq/H,JDrr2cclf?^>\uqd8hY#j5VR&^Se'2[(NuWZ*:=2 +c11>\dF-\%jmMa8r;HWos8N9$qu$Ekr;QZorqu]rs8N"Ks-iufrYbb8o$anBSY3pfrr;lor;?Nl +rr2lqrr<#tli6q_#Q=T!rr2lqrVl`lr=]&,rqlTkrr)]krquWkr;?Nmrr2j&r;HWnqu$EjqYU9j +.KBDFqtp?krr)ipr;HWnrVZNirr2lor;QZkqYg?irVlfprVZQir;6Ejr;uusr;QZpqZHcqs8Dlp +bl<1~> +JcC<$li.1gs8W)ts8W&s*W?!9rquEOf>P)!WiiM$XN^2(bHS:abM2=Rp\Xmfr<)urrr)iorVclr +qYg9is8<$!rr2Ees8;rtqu-Qos8<3#rr;rnr;HQmr;ulor;Q]pr?_IAr;63Xo(i:Xd^l]ZVQR,) +Y-kO5chH_BWiE;,[(XW +JcC<$q#CBm"98>ur;?Nnr!*-"s8Drss8DpArVlcprUoI/`j`.QYct%.cLUSOZF%^WbU$me$GVrVlcprr;osrqcR!rr)iqs8W&qr;?Ksr;HTo +rV_.qu6Tmqu6Wor;?Qmr;HWorVlirrlkCm~> +JcC<$li.1gs8W)ts8W&s*W?!9rquEPfYt;%X08_(Xj-D,bd"LebhVOVq#(*irW`?#s8Muqr;HTr +r;-Bgrr;ous8N#es8W#ts82cprr;p$r;Q`pqY^- +YI:a9d.lqFX/iM0[D'i@lgFBArr)orrr2rr!<2in"oeK"s8N"Ks-iufrYbb8o[U=NUnY]hrr2fl +r;Q]or;?Nlrr<#tli6t`$iU##rr;rprVuloqu-HurquWirr)cmrr!-&rr2fmrVulrrr"JKrVlfm +q>L?lqu$Kmr;HQjrr2rtr;?NmrVlfnqu$Emrr)iqrVlirs8Dlnrr2oqrr*W1qtpBlr;6KnrVZTm +rVZWnrr)irrr1.AJ,~> +JcCZ.s8E#urVcfsp\k0mrr)oto_o!lr;?Nmr;Ro6kL.8XWi)r%Z*'q'aR/ige^NLHq#(*hs8W)s +rr2lprr2oq#QOc#rVc`qs8MuqrpKgdrW)uqrr<#trr;p#r;HWprVlfps8E6$r;HTlr;QWo,Q@Z@ +rU8h#aM>HqXJi+tZ.ep,Z(A#,[&Tt'[_Ki6mJQqZrVQTsrr)`lrquirrr)lso)A[hs8N#t"oeQ% +rr2rsrr<#srr +JcCZ.s8E#urVcfsp\k0mnc&Res82lqqu8;Dl.!_aXJrA-Z`p@/b4#8pf[]$Pq#(-js8W)ss8W)s +rVuosrVccpr;HTns8W)srVl6bs8E#uqu6Wqrr2rr#Q4Q"s8N#rrVlcsrVZTlr;Ru?rVlcbjP.ho +^:(5FX/iS^pYN6LXh2$CVldJFaP$%]rquTl#6"GsrVlfrrr)lr!<)Ngs8W,urr30$s8W)ts8N#t +s8DrsrrW3"s8;its8N"Ks31NCrrC3hqYU9kr;HWor=f2.r;QZmr;HWnrr)cnrr2lpr;HQm +rquirr;HWo#l4AsrVQQnrr2oqs8N&s!ri/trr!B,r;?Qorr2lorr2lps8W)Cs*t~> +JcCZ.s8E#urVcfsp\k0mrr2rtqu-Tqr;Hfsr;?NjruCgtd_r\sW3*;0YGSABmec>$eDfumr;HWp +s8MurrWE,us8W)s#QOc#rVc`qs8MuqrpKgdrW)uqrr<#trr;p%r;HWprr2lqrr2urrVZcprqud@ +rr)ipn)W3E_7d7YWN)u(g\0I/T<,W3X/;u-^rP*qrVl]nqYpcuqu$Elrr;urs8W#rrr<#t!<<#s +s8W,urr30$s8W)ts8N#ts8DrsrrW3"s8;its8N"Ks31NCrrC3hqYU9kr;HWor=f2.r;QZm +r;HWnrr)cnrr2lpr;HQmrquirr;HWo#l4AsrVQQnrr2oqs8N&s!ri/trr!B,r;?Qorr2lorr2lp +s8W)Cs*t~> +JcCf2#6+Z&rr<#trVllsp\t6mrr2utq#;`?s8W)srr<#sp[n+Tr9_h9WiW2$Z*:=/WOC=Fr;?6\ +rr<#sqtp?irr;rrrW)oprW<,urVlfqrVZZas8W'"s8N#ss8N#tr=/f*r;HZprr)fprr;usrV[!! +qu$Ekr;?QnrVlgBq!dG$dE',3\&mq-e?,@G^V$eMX/`%r^>AYZl0.L#nb)VOrVlg$rqu]mrqu]n +rq$0irr +JcCf2#6+Z&rr<#trVllsp\t6mo`#*nrr;urrr2p6qY'[]rU/(?XKJV,Za-a7X16aNrr)Tcrr3)u +qtp?irr;rrrW)oprW<,urVlfqrVZZas8W'"s8N#ss8N#trC$\ar;HZprr)fprr;usrVc`or;6Ej +rVQNlrVZWns8Vrdkhae2_RR/"m.T#6Ts2AIZE(+/W3!emqYBIBmdB]@q>:0is8W$"s8Muqrr2Nh +s8N&u!ri6!r;Qcrrr<#trVuos!rr9!JcE[grVd?&e?5[OZ`^abkk"NAq"t'Zs7QBjrsJc*s8Doq +rqu]ms8;j.rVuorqu-NorVlfnq#(-jqYL3is8E#srr2rt"oeGurr2lprX/](r;?Hks8MurrVlis +rXA]%rVZTlrr2]grr2lorr;p"r;HWps8MuurVZWm#lal'rVZWmqu-Nnc2W:~> +JcCf2#6+Z&rr<#trVllsp\t6mrr<#tqu7l>s8Dutrr)irs8Mfdp&+dVd'KdTWi`S3XfAD1eaWP9 +p@eLc"8r&nrVZZprVlcrrVZWrs8Doqrr2lorp]sfrW<-!rr2rsrr;p&s8Dlos8N#rrVZXQrVZWm +r;6EjrVQNlrVZWns8VrckM=S._7-qslh/f2TWc/EZ)Xn+VlIMhq=s7>mHsK +JcCf2#6+Z&rr<#trVllsp\t6mrr2utqYql@s8DrrrVc`qrpnsqe`ZSg`i>uFZ`U."UoqDXkP+uT +rVlirrVlcrrVc^"rVZZorVQNirW<&rrVc]qrVZZas8W&us8;lor&jVUnaohXgPmTY,Jh]oBXQ5]Y2>6gu\&&s8W&pqu$Ejrr)lro`+sj +s8N0"s8Mrr!<2uts8Muss8E*"rr.KK`;ff8&H(M"U8YJuTWPcBc.V.CoDJ:]qu6Kkqu6Wqs8E#u +rqulsrVQQqs8MuqrX\u,rquWjrVZWmrr2lorVlco"TJB!r;?Kk!WN&srr;ourr)iqr;lorrr*9) +rquZjrVcZlrr2oqq>UEl"TAB#rr2oq$iKu%r;HZprVl`mrVc`?s*t~> +JcCf2#6+Z&rr<#trVllsp\t6mo`#'mrr2lprr3f,iRHKDp?BZ"WjfC>WMHDq^XDBAs8W)ts8Dp) +rVlfrrr)fprr)`lqu-Zqr;HTn!<)ipnGiOf!<;urr;?p$rVc`prVZTlqu-Wprr)dLrquZls8W)r +rVuoqrVcTfq" +JcCf2#6+Z&rr<#trVllsp\t6mrr<#tqu6m"s8DrrrVc`q(\?S6f')eka/c2J['$@&V6@V\kkP2X +rr2rrrW)oqrW`?!rr2lnr;6HprVZWmrW)oprp]sfrW)urrqu^#s8Doqrr)cmrVQTjrAa`PrVuos +r;HZpr;HQhq"XLFj66@9hRTJYWiN;2^V$bL\CgH?bJ1a)a4/r-nbiFerqu]mrr)cnrr2rsrr;uu +rr)lsrr +JcCl4s8E6&rr2rsrr;rr!<;urrr)lr"onT#rVulqr<3&srr2lqrZ_1,kM44iYHl@7lHQ?$Vl?`$ +]?/afme6SXrVccpr;?Qos8N!-s8Muqs8W&qrVuoss8W)tr;cirs8N!!s8N#es8W&us8;lqrVZWq +s8N#r!ri6"rr)otqYpNnrr**$rVc`nqtpC>rqcHhrUJag^U:2DXg"k!Tt&tRhls&[V6%,:^W4j_ +m.^GVqu-Hm"9/5rrVlfrrVulsr +JcCl4s8E6&rr2rsrr;rr!<;urrr)lr"onT#rVuomrr2p>qss%1c+C9hcKafDXeMhrXg5XagZIu" +rVulrs8MuqrVliq%fZG*r;Q]or;?Tprr<#trquirrr;us!rr9!nGiOf!<;urrr)co"TSK"r;HWo +rr)`ns8;urrVlcrs8Dlrr;-Hnq]Z"=o&.g0\$)m:ZE9jr]&1$frpp'krVlfpr;IE/rr<#trVc`qs8Doqs8Murrqu`orVulrs8N6# +qu-NorVcZn&H2V.rqu`os8N&tr;?Nms8Muqs8E6&rqlTlrr)fp#QOc$rr<#srVld&s8Murrr)fp +rVc`p#64Z#rr;usbl<1~> +JcCl4s8E6&rr2rsrr;rr!<;urrr)lr2#mRRrVuosrVlcorr;urrr;upo'5)U]!8Wel0Q`tTrG&n +Z+S65k3r'Cs8N#trr)fps8W)t%fcP,rVuorr;HZqrr<#trquirrr;us!rr9!nGiOf!<;urrr)co +!WW/ur;uuus8Muts8)`prVlcrs8Musr;-F=qtgL?lrqucrrr2lrrXSu-rr;urrVlisrr2rss8;j.s8Dlos8W&qrVlisrr<#trr)`nJcF!ps8F2? +s8MQ7T9lUXU8+TbWj97Sc.Cn7kNV@%o(D_Nq>1$frpp'krVlfpr;IE/rr<#trVc`qs8Doqs8Mur +rqu`orVulrs8N6#qu-NorVcZn&H2V.rqu`os8N&tr;?Nms8Muqs8E6&rqlTlrr)fp#QOc$rr<#s +rVld&s8Murrr)fprVc`p#64Z#rr;usbl<1~> +JcCf2"oeQ%rr)fprr;rrrqu`pr%@sIrVQNlrVQNkrVZTlr;HNbmGH.&[]H@$T!I)>i4GkbZ+eTH +p](9mr;HTlrVlfrs8W)trrE&ts8W)ts8W'"s8N#qs8N#srrE&TrrE&rs8W)trrE&ls8W)urs8W& +s8Muqqu$?jr@ImFs8M`Vgs*UBYc4Cr`U!NUUSG&lX0/M%WNNbTm/HnOmIpDPqu-KkrVc`pr>PV4 +rVZWmrr2lprr;urs8W&rrquZkrr2lnrVlcrrVc^!r;Q]qrr.KKbl@_As8E3#r8tDYV#I2;VPKfS +T;/Bh[_'8j`lui]g>(TFkN_F$nauPLq"jj_q=j[\r;?NmrW)orrr)cqrqu]qrr)co!<)or$iKu% +rr)cnrr2lpr;QWrr;HWmrVulsrVufpr=&W's8MurrVlfrrVZWnrX&Q&s8Momrr2lprr)orrr2lr +!<2Zk!<2ut"9/?#rltIn~> +JcCf2"oeQ%rr)fprr;rrrqu`pr$MCArVQNlrr)iqs8N#rrVuiin)Da5]UBprr;oqrr<#s$NL)'r;HWmrVccrrr*!!rr2iqrr2os!<1jT)#jR8rr<#srVZZorVc`prVcZn +rr<#srr2os!WN,urr2jFrr<#srr<#nleTn'\?`03WlON,g81XOWiWG.XKAe@d.%)7oC2PPqu$Hm +!rr9"r;IQ3r;HTnrr)fps8Muss8Doqr;6Ekrr)`mrr)orrVcuurr2rsrdk*ns8W&trWW8uk-^eV +rhUs=Un4-LUT(H*]=u/%bgG"qgu%,SlKmp.o_/%SqYL$`p\=U_r;HWo!<)orrVZ`qr;?ZqrVZWp +rVld(r;HTnrVZWnrr)fnrquorrVl`ns8E#srquco%/g)(rr)iprr2rrr;HWo$2sl'rqlTlrr)fp +rW)orrr)isrq69krr2p"rr<#tc2W:~> +JcCf2"oeQ%rr)fprr;rrrqu`pr$MCArVQNlrqu`orr)fprVl`fmbuO1]!&*1Ts`_Jj1_LnZbOoM +q#:9nrVlctrVlfqs8W)trrE&ts8W)ts8W'"s8N#qs8N#srrE&TrrE&rs8W)trrE&ls8W)rs8N!! +rVZTmr[n*Js8ViYh9NgFZ)XV!`pE]XUnk8pX08\,XKfC`n,NCYn+Z_Ur;Q]orr2rtrVdZ4r;HTn +rr)fps8Muss8Doqr;6Ekrr)`mrr)orrVcuurr2rsrdk*ns8W&trWW8uk-^eVrhUs=Un4-LUT(H* +]=u/%bgG"qgu%,SlKmp.o_/%SqYL$`p\=U_r;HWo!<)orrVZ`qr;?ZqrVZWprVld(r;HTnrVZWn +rr)fnrquorrVl`ns8N&ss8;lp%/g,)rr)iprr2rrr;HWo$2sl'rqlTlrr)fprW)orrr)isrq69k +rr2p"rr<#tc2W:~> +JcCf2*<-!isZ`j;P +JcCf2)#jR8rqu]mrr2lprr<#srVlfprVZQkrVZWm*WH$;rVQKirU\me\#QF2]"GDHYLW@@hU:-> +nFuk[s8W&us8;lqs8W$)s8DoorVcZmrVuosrW<-!rqufqrr2otrndYlrr<#ts8W&rr;Q]orVlfp +rVZZos8W&srqufnrr2otrr)jDr;--Vm-*EYc//6qgo$mOZaR?R\?rH;[cd\_gs=L+jm2L4rr<#s +rr)d0rquZlrVZZprr)lsr;6Hkrr)fnrVZZprVld"rVlfrrr.KKbl@_As8EQ*rVGX!Z_*b^U7nBZ +UnjjdU`Q;*Uo15rZaR?T^V[t0aNMlTdF?^tf\"g1j7*$Hr;HR1r;6EfoCi([rr)]jr;-3_qYU$Z +oCV\Hrpi/Cp%.kNq"XOQnalJJoCDMFpA4g`mdg,GoC2;Cq"t'jrVZTnrqZ0TmdKfGs8Mupqu-Nl +rVulqs8W)srrE&krrE&trr`9#s8L:CJ,~> +JcCf2*<-!rr<#t!<;urrr<#trr2utrr<#trr<#t!rr9!r;Zcqrr2uthZ!TTr;Zfrrr2utpAb0lr;ZWm +s8W,t.fTJJr;$'Tlf[3Ubh`$ngSU[KZF.-N\$N67[H@M\gWn:'jQc:0rVulqrr2lp'`S%-rVcZn +s8Muss8;cmrVlcor;HQms8Drr"o\H"s8N"Ks31NCrVuj-qYg9PbHmh2U8"?WV50o`rhLU1U84]e +YHt[H]>)5%`lQ?KcdC7mf%AX,gZ.f%rqu`n(]=1.q=F=WrVlclqu$Fp@IkHo_/.]p[7VIp@IeEp%\F`s8Dlns8MicnF#c;r;Zcpr;6Hlr;HZprVuosrVlls +p&>$krr3*"s8W)Cs*t~> +JcCl4r;QZn!<<&tqY^ElrquiprVZfqrVlfos8!c1m+&\MXf8;&[Bus-YLN1@o^MSRs8W)sr;$-c +rr2lorr<#trW)utrr<#trreC<%Ie0if!i9pI+dEpFqf[eR&h +JcCl4r;QZn!<<&tq>C`O<@k^W+URk3r!?s8W&rrVm'" +qu-NmrVld,rVlfnrVlirrVZWnrr;rrrr)lsrVlis!<.QLc2[bA&,Z;)rpe^]]XOl3T:r!QT`(KQ +StD[KUSXiaVPgAlWiN8)YHtR>YdM'Q]"m%ss8;lqrVZTjpZL8mq>UEnqY^<]j5B4mlJC+Eg!nBq +eCW:$gYgrBf@8=#rR<4Ff\l2olI+)2f@ed+f&#`dr;QWjq!mCqcd("okOecRrVQNkr;?NlrW<-! +rr2rmrWE3"rr;us!rr9!bl<1~> +JcCl4r;QZn!<<&tq>L?ms8;rsrV[Z6s8Dloqu$9Xf"A5kXK8\:\#lI3fCo4:o(i7a"TJArqY^ +JcCl4s8s8DinrqlHXgr6RuVPg5a +Tq\)s[Unu')rqu`nrqufqlGp'Wj'4in(4_'[(XuWr;Zcor;QZm +rr;usZi>O~> +JcCl4s8=eSrVZWos8N#rs8W≺Q]oqu-Norr2rtrr;urqXWt:lLac.^8A$I^:(5KY-,.Rk5,)W +r;I!#rr;rqrr;usYlFb%$ig2(r;HTlrVccrrV$9Xr[\$Fm,#ssYck44Xf\P1k4[<3XL5:1Xg>RW +cIhFWrquTirVc`qrr2rtrVZWmrr*9)rr)irrVQQmrr;lps8DoqJcEpn*rc3>rVQQmqtKO6`NlJ? +Vkg&\U8+KZV59uaV50l]rhBFfBr%N"Vl$&UU8XucV8`3.r;HTnr;Zc]a0j7brVlcos81Wg^!Yfh +]W83>XfAD&Y,\J1^UL>FXfee,X/rD&YeJc[fs%?NWNrq9YIMa3n,31XjjC`DW2Zu-^!uKJs8Mro +rr)cos8N#(s*t~> +JcCl4s8 +JcCl4s8;rtrr)ls"oeK!s8W&srWiK&r;?NkqYU9i,5_0,lIs1c\^Tj$]qq[5X.Q&kak>_?p%eOb +rqlWjqu$Hlrqllts8W(fs8W#ts8Dlsqu$Bjrql`ns8N&rs8G.Zr:faHjknY2]st_ul0-*bVR3h> +\@/ZKXfob-rVGpHmIL&MrVHBhrqu]mrqu]mrVlfor;Q]orr2rtr;Q]orVhBJbPq_Es8W&srVm`5 +p$h8)f?hRQ[]QI&T:D=8QC+)/S=cOOrhX%uU8Ff]T;&-SS=[UmrqlTjrqufqfr11FkPG2VrVuH- +TqK'E^mp+:P*V]-OHY``SZ89ENKB +JcCl4s8;rtrr)ls&H;Y,s8W&rrr;usrVlirr;HWo)?'F)m+fXl^";]4_5XNFYG7r'c/%ROq>Lr^UC8BUS"'EQBmo+R[g"EV#I3!US=W_TqA'TTU_Ujq#:0fr;QWorn468 +\**VerVcce`M&s;cbQ')MisBtR?3VnMk-l>P)YQdPaIl(O,K0m_O~> +JcCl4s8;rtrr)ls$3'o%s8W&rrr;usr<*&tqu$Hl,5h9/leBCg][lK0^o4XJr\@\@];Y +[]m!Vkl1JIlgFB?rVl]krr)cmrVl`mrVc`pr;?QnrVlfrs8;lqrVc_Hs3(EFrr<#srr)j6rUo[F +i7H>r^UC8BUS"'EQBmo+R[g"EV#I3!US=W_TqA'TTU_Ujq#:0fr;QWorn468\**VerVcce`M&s; +cbQ')MisBtR?3VnMk-l>P)YQdPaIl(O,K0m_:Vmt=Mqrc)&R?Wr"P`qH6c1:o6 +rVc]o!rr9!Zi>O~> +JcCl4s8E#urr)rurr2lrs!.LArqu`orquZjqYgEjp$:GY^p^DDVSD0Ud'KdZ\@TQ.m/$_]!W2`m +qu6Nmr;ccprVuj&rVuoss8W)ts7ZHlrrE&FrrW3"s7ZEns8N#krrW3"s82csrVZTmrqu]nr['\?rKCY-"h/Xf\\)W2?GiVP^/^ +S=QS$qZ$HirVcWmr6h:$Yi#9UrVZZ`]Tnhlda#>!Wir:`O.NPYWjp!ZYcb=1Q'.Q0X0/\:cfN!* +PbP+YZaI'4Q_(tQlccAqS?BK7[AAtI[-7MerVlcqs8N#trrE&*s*t~> +JcCl4s8E#urr)rurr2lrs!.OCs8N#trr2lpr;Zfqp[-ka_RQhLWP[fae@2Th]=l2:n,E=d!<)op +s8;utrVlcrrVlfrrrE&rs8W&us7uZorrE&@rrW3"s7uX"rVlfprr2rtrq?BlrX/])rr)lsrVlfp +rVc^"rVQNlrVZZms"O<;j5/e^p?pG>Xg5:>]",2XXe<)\s6Ib?`6d2sme6JRs8W&qrquZkrVlfo +qu-NnrVlfrs8W$$r;Q]qrV_U?jrpRLbQaY>f\#-1/VN[(4YHOt9`4N7VZ_s(ORA6gc +Ydi$B`06L_Wj&n?ZD*\X^ZFe*WgB6Y]=G>GOHHp6rqu`orVuosrr;uurj;]U~> +JcCl4s8E#urr)rurr2lrs8N#tr>tttr;QZnrqudMq['\?rKCY-"h/Xf\\)W2?GiVP^/^S=QS$qZ$HirVcWmr6h:$Yi#9UrVZZ`]Tnhlda#>! +Wir:`O.NPYWjp!ZYcb=1Q'.Q1X0/\:cfW-.Q(t=]['m66Q_(tRlccAqS?BK7[AAtI[-7MerVlcq +s8N#trrE&*s*t~> +JcCl4s8E#urr2rtrr)ls.fK;CqYU6hqYC$dqt'(.c+0^ATWY],]%c]9b.Z$ZpAFmdr;HWoqY9pb +rr*9'rr)fnrVZWos8Dlqs8E#upAY*l!<1@F!ri6"pAP-nrr2Nhs8EK-rr2rsrr)lsrqu]mrVlfq +rqu$?cl-R&KWMQ`"Xgtd9]B&b4S!KeOZF\99ioKV,rVHBiqulutrr)co +r;ccproUQ;"^jRVd0 +p#iiMW6a],llXumRZjl$e$>:*\)I2Yo%C11W8IUOr;QZprr2lrs8KD*J,~> +JcCl4s8E#urr2rtrr)irs8FDDrVlcnqu$Ejp$:M]];V.]="WOk5*GqR&$sn][#Eqk48NOr;?Nlqu-NnrVZZn!;uip$NC)*rVcZmrVuip +JcEsor;Hs!qu$Bks8N#ss8N#srE'!sr;-0\n)N6Xe'5qN^qRIn]!\lQ[BH[4Z,#2ms8;lrrVQWk +e>\tFhYR6Mr;Q9%R%(_Go(2>:l,emB_;stIme$)9mI\o'O.O/Jo'c,Al+<:^dH^`!+5OQ!Q*8Zd +ZBgfciVN??frgR +JcCl4s8E#urr2rtrr)ls.fTDFqu$Hlqtg6hr:K:2cFTpETs(o0]A2o=bJ2<_p\k*hrVlisr;$3e +r;I!#rqu`nrr<#tR/d3c#64]%rVuosrVc`p48o0Wrr2inrVlcorr<#trVcZmr:oR*]X4]9Y-5"> +[&CY!q9PRtUT_#9c/.LBnbrIaqu-KjrVlfpr;QWpr;QX%rr<#srVZWms8DnIs31N@rWiAur;?Qo +rr2osrr2oq=8r0rqY0[Oj5&G8o[KXsT"sFXn+$)7\sB>Bl2L&lgq&u>Y0th*QBo#=qY9X7Y*>mB +rqlWmrVulrrVuos[/YX~> +JcCf2"TJH$rVcWms8;oo$i0Sqs8DuslHZoCYl:s.[L'+3XjZb8mca*7rr<#ts82fns8Dut!<2ur +s8N&s"9/?#rg*Qdrr<#tr;HKk$iU)(r;QZor;- +JcCf2"TJH$rVcQk"TA8pqYgEn'`RFF]!8QJ['dERZ)+\So_S(BnGE.`s8;fns8N)urr)lrs8Doq +QN%$cs8Vupqu6Wos8E<%rVc`nqYU3iqu7`:qX`t4i7ui(]WnKAd-Ki+TsVq`]WnWCYdqg3qYpBl +#QF]!r;6Ejrr2lprWW9"rr;rqJcEmm%fZM.rqu`orr)fprVZWmp&?]Bq"F@Mmd06'l0.?nk3(jc +iT'(coDJUcqu$Hls8:EEQF#NIs8W)uo"gig^#]+jrs8>KTUj9ss8W)rrrqD^Q`/'urVmT$Z\G4+ +q>^BkpYVd)TuG0VRA.aorr32pet8,Rrqucp!r`&qrVj2(J,~> +JcCf2"TJH$rVcWms8 +ir9)Zs8Vlns8N)uec5[K!<;ur!rr9!O8o7Z!<;los8N)ur;Qits8W#r#lXc%r;?NnrVlfps8N&u +'`RdpnbrF=Yb@ntZa@9Y^Uptnht?sJ%0$2$qY^?jqu-Norr)iqs8<6&rVlfprr<#tr;Zfr!<;cl +s8N)ud/O1Hs8Vfl!rr9!oDeji!<<&t!rr9!rr)fprr)lrs83H,rr2lqrqu]mr;?Hhr;?Nmqu7`4 +l.O%ibNABQ]WT)ra18LYUnO]a_=[cujPT(boDAIcrVcrtrVc`prr)3_!<<&trr;uss8W)t#64]% +s8N#tr;Q`r!<0/$s8E#ur;Hctrr1XOs8E#urVcrurr2inrVcco$iBl"qu$Bhr;?HirpB_Irqu`n +qYU9hs8LQBNNV(+o^VJFk.@"M\`!>_qtog0['.U:rVlZhr;6HkhPZa=`pE[&qYK]hKq-WhrVmc& +UP,,QbI!q4YL2V(p\t'8[,1i^s8DoorVc`%s*t~> +fDbpOs8V<^!rr9!JcG!7!ri6"qYpNpr;I!#rr2inrVuiqrr)cp'DM(hrVtWXUSkE*[_'Al]Xc&@ +p\b%!r;6Ejrr)cmrVulqrr2rr#laf%rr)irs8K;'s8E#ukl1V^!<2urrVlfps8N&r&H2V-rVlfo +r;HQlr;6Birr2fp*r5-Va2#p^o\mKf_pHN<['6I'WN!f.s7>F3jm)I7r;Z`p"T85srr2oqqu6Wq +rr*-%rr2rsrr;iorr;uss8W)t#64]%s8N#tr;Q`r!<.QLr;Zfr!<<#s"TA?!r;?Nls839%r;?Hi +r;6Eiqu$H\s#^5XrVcTirql`peY.u*h!jt+nb2+WR%(YEqYg?hn'eYIb3T$*qYC'drVbTNR&J'm +rVcWlo!aFIf)>RI)=ODVT#8dZT:E+4l1"HHqp)S*s8N&srVZWmrj2WT~> +N;itYs8TV.s8N)um/I.ds8Vim!<<&trr;oq$iU)(r;?NnrVlcorqud0p@7_Ps4OZOVQmM9]"l+o +\AdD"rVm<*r;6EjrquZkrr;urrr2rr"TJB!rr)Qi!rr9!UAt5ls8N)urr)fprr)lrs830$rr2lq +rqu]mrqlorr;HWoqu7`4lIs7mbi\NT]W]2uaLed^VP:#f_Y*s#jl#7coDAIcrVcrtrVc`prr(RM +"98B"s8;lrrrE&os8W&us0hq,s8N!!s8N#ss8W&us8N#trrE&\s8W&us8Dp"rVlfor;HTor!WE" +r;6Eiqu$Bhr;Q*`49#0VrVHEjqu?ZGToH51nFZ8@p?&uSS%7JRrVQK\e$Q=$lM^_YqY^6hrSFH> +VoS3'rVQK^[YLI)r;HX5m\GQ-_TTO~> +ir9)Zs8Vlns8N)uec5[K!<;ur!rr9!O8o7Z!<;los8N)ur;Qits8W#r#Q=Z$r;?NnrVl^3rVZKj +s81d!dI-k]Z*1p[Z(Retc/\0rr2io +q>L?MUQ;"amJm1ar9D%fVUYSDrtGCbSVa5df>FJFMOq<#j7iTPq"t'irr)coZi>O~> +fDbpOs8V<^!rr9!JcG!7!ri6"qYpNpr;Hs"rr2inrVuiqr##G3qu?]oj3H-Crn4Zc_SrjTTsN#) +nFleZrVuosrr2j#rr)cnrVZQirr2j!r;Q`rriuM'rW)u^rr<#trYb\7s8N#rr;6Kmr;6HmrVQNk +rr)iqrVZTlrVlis!<2ut+8l$4p\"C]nC>+SWMHH%b/hB1X24Q-e$5gY_:7cFrr2rtr!*3#r;HTn +rr2lnrr<#trW`E%rr;uss8)`os8N#ts8N!%s8N#trr2rqrr;uurdk+Is8W'-s8Muqrr)fqrVZQk +rr2oq#laf$r;?Nms8DHe!<2rs1&h+Lrr)iqq#C?DUQ;:md*Bk]e]Y(XQ*oNIs8N&ge$cR,m/?t_ +rVucps50W7TZ-?urrrAf_P+!^r;RDaT8TYlfYaPFMOq<#j7iTPq"t'irr)coZi>O~> +N;itYs8TV.s8N)um/I.ds8Vim!<<&trr;oq#Q=Z$r;?NnrVl`pr>,80s8:m$ddR.eZa7KdZD!u! +c/eBfr;QZps8W)urVlfrr<*&tr;?Klr;H?g!rr9!UAt5ls8W)t)#aL7rr2loqu6Tmqu-Qnqu$El +rVlfor;HQms8N)urr4)^-rrrrAe_4[dZr;RD`Sr0GhfYaSGMOq<#j7iTPq"t'irr)coZi>O~> +JcDABs8N#t!<2uts8N#trr2rts82utrr)iqrtP7kfZ_4@YHl[MjhRmu\\,]!fB;r.rrW2tqu6L# +rVlfprVlisrVcZnr;uuus8Ms#rr)fqs8Mrrs8<'"rVcZlrVuctrVuord/O:Js8W&qr;?Ksr;HTo +rVc-`s8E*"rr2ios8N&s!;uip"oeJur;Q`qrr2irs8;irrVl]prql^;rqc*@d)^HCVj!43V59fUUSONIRCD/Qrr)`_ +e$5sol2:GVrVZKirnOB6TuHI!rVZNV]pP4ma3MuS^8-mUZeOs-_OZXMU8YH5`SC.ds8MuprVc`# +s*t~> +JcDbMs8E#urr2rt"TJH$rr2cos8N#trr2rt"o\Atrr)iqrtP:ng[(jQ"bh)%MqYg +JcEOcs8MEcs8E*"rr2Zl!<2utrr2osrr2rtrr)iqrr3].kh44u\$33iq!#]!YI_B^ak,_Nrr3'! +r;6Kk)?'R6rVZZprr2lorVc`ps8W)srVlcos8W(`s8W'"s8N#qrVulsr;ccpr<<3!r;?QorVcls +rr2fn"8r&orqcX9qsWIj`kfI/`kSg\XNp\/\Y-"=\?s#h`m!)up%nXarr`8tqu-NnhZ!TTq>^Ko +rr2utqYpQp[f?C,rr3'!s8W)ts8N)ui;`cTs8;rsrr)lr!<)ors8;uts8Dokrqu]rr;HTjquHWn +r@e*JrVlcks8LKFPE;91V4X?SUn +ir9)Zs8Vlns8N)uec5[K!<;ur!rr9!O8nqQs8N)urr;uss8W)t-NF)Drr2lprr2imq=Nn'`Nc55 +W2cN(nG(YDX1d*PqYg +fDbpOs8V<^!rr9!N;rqW!<;Bas8N)urr<#ts8N0"s8Vrps8W)t!<<#ss8O2?s8Molp$1;PZ_jOu +XJ3K$qqS]a^XhfKrVQKir;6Ekrr2lrrWrH!r;HWnrVlimrr;uuriZ;$rW)u^rr;osrr2lrr;Q]q +rs/N#rr;urs8W)t!<)or!WE#rrA+g3srqurus8Dop +rj;]U~> +Qi@-ds8Vlns8TV.s8N)um/I.ds8Vim!<<&trr;us!rr8uqu/_Vqt]pMfuC=nU8b2d^@M-S\#mBq +mJ?eYqu$?gr;HWnr;6EkrquZkrr2lprr;urrVlfpr;QZmr;Q]oqYgQrrr/Sjqu6Tns8N#t$2sf$ +s8N#ts8N&srr2rprr<#ur[e$Ir;-9frr)fps8;Z`l.a=mYH>LurSb&Y]["-gWMQDgYJ];iq"XOS +pA+U_s8;lrrT*q[s8N#tr;Q`r!<2fos8E#u[f6=,qu-ctr;?QnrVlfrrrE&WrrrE%s8Murrr<#t +s8Doqqu?9es8N6$s8W)srr,dnr;?Qnr;Z`DVj*%"T;%d?R@Tq9S@deYs8MlbeZPdim/Hq\rVl`p +s5'iHWljl3rquWZ\rDW2P*hc+Mi!q,bO5E/lHH]BYFq2ANM"2Wrr2iurr;rqrVj2(J,~> +ir92]s8W)srVlfrr<*'!s8LRKs8E<(rr2lqrr;usO8o.W#lXc%rVc`qs8N#trr2rt./j)Bs8Mrn +qYL-grV>j4^TF<,WOKgc\=^;$rpSt-l1P#Rrr2rsrVcTls8Voo!<;los8N)uq>^Ko!<;cls8N)u +d/O1Hs8Vfl!rr9!mf3"[rr;us#64]%s8W)urVliss8Mus!<2utr;Q`p-ia/Drr;urrVZEWjPJ_Q +oDdm_VlR52ZFRW\\>lXPl1!EE_Tgm!q#13trr)cmrVcThrqlfqrr2iurr)irrr2oss8U9koD\di!ri6"rVft"rr)fq +rql`oe>/2!]ZJ:6`Q>rqPF&f2amB!*r;?Nks8UuWSZKs%s8Mrmla_t9R$ +fDc$Rs8W)srU0XgrVlfrrr.lVs8E#uli-qa!<2uts8N&u!ri6"rV\>GrVlisrVZWorquZjrVulr +rU8IYZDje)\AlV$Tt9jqo&o*"p&+dfrr;urrUp-nrVlfprr)Zls8N)uY5eP$"98B"rTjI_r;cip +rVZZprVlcrrVlfrrUp0is7uWqs8N#qru_15mcNE`jRrQ8]W&$A['[H[^UgPOb3\fV`l?B^m/-_\ +$i^,'rr2inrVlcps7cNls8W$3rr<#srVlirrr;uss8N#rrVlisrh9>nrr<#irW<-!rp0Rcrr<#t +rr2rnrql`err +Qi@-ds8Vlns8N0"r;=;-s82uus8W)brrrE%s8Mrprqlotr;HWprr2os.K02Cs8Mrnq>:-grVGj2 +^ojN0WOB^a\":,"rpSq,kk"]LrVZWmqtpbs5gkkXL>IA]"Ynf +WiX;+n_1muc.hIWrVm<)r;6Bhr;$0cr;6Ejp\b$hs8*N.rVcWjr;HTns8N#trr2lprr<#tq>^Ko +"98B!r4N".quZlts8;iurVZNirr)lp"9&9"ro*kYrr<#trr2rnrql`err +ir92\s8W&qr;QZpqucots8CLJs8<6'rVcZmrVuipO8o7Y"98>ur;?NnrXAc*s8N&urVlfpqt^-f +ru:h-q#0m9[&'\"V5^o<^ppSjp](*frVlirqu$BkqZ$Tpq>UHoq>^Korr2utMuWeUrr3?)s8W)t +s8N&ts8W)t!<<#s!<<&ts8N6$s8W)srr*'!r;?Nmrr4AEqtp3drpna\\[SoMZaR?LUo;>oi5)Ot +Y-bpfeCE@>p&"[crr<#trVZNmr;6Eprr)fpqYgHnr;?Wpq>L?n!<08's8<6'rVcZmrVuipgAh3P +"onT$s8N#ss8N#ns8N#trrE&is8W'"s8N#ss8W'ts8N#rr;-HleY\V9f^/%lm.'&DPaAo=r;Z`p +o?j;+bjG?.rVZZnrr:iSS#aWus8W&qmC\RKYe7cc_8k$anb`1Nj5TP)o&JEM_6'&l^?>CmrV?H" +s*t~> +fDc$Qs8W&qr9jLer;HTorV_^Korr2utrVm*$s8W)rr;QZp,5qE8qYpKcgW$n:[C!ET]=4`? +b3.m+Z*L[E_pR)hhsC+8qu?]qrqulqrVlfpr<*&trVlZls8Mrp!<2fms8N)uJcGcMs8E3%rr2rs +rr2rsrqZTnrr;uurq$0irW<-!rr2rtr`&psrr)cks8CKFQ*Ap-md'60iO>&<\DdAcrVc<7TqKWs +r;Z`nrr)lshPm!EaR9*.rVPupP*rPe^V7M(e)BfnqX3D'n,)\9g!IR;Q^PSNqu6Qirj;]U~> +N;lNKrr2lnr;HQlrVZWmr;HTlr;HQkrVZTlr;?Nlr;HTlrVcZmrVZWmr;?Nkr;HQkrVZTlrVZWm +r;HTlrVcZmrVZTlr;?Nkqu$Elmf34a$2j]!r;6Ejr;?NirWE,rq>:-j/c58:rq=mMVPpMlWO0CS +\?&<\DdAcrVc?8U7ofur;Z`nrr)irhPm!FaR9*.rVPupP*rPe^qRY* +e)KopqX3D'n,)\9g!IR;Q^PSNqu6Qirj;]U~> +ir92]s8W)srVlfrr<*'!s8LRKs8E<(rr2lqrr;usO8o.W!r`&prr2rrrr)orrr2rrs8O)9qY^9c +n)E-^oC9krU:%_?WiN8/^Wu!>rquZjrqucp"9&6!s8)`ps8N#ts8Muts8N#ts8N#trrE&os8W&u +s7ZHlrrE&FrrW3"s7ZEns8N#bs8W&us8)`os8N!&s8N#ts8N&uqu-Zsrr2fps8EE+rr2lqs8Doo +rVc`prVulsr?_C?r;H?Qhq,u]YcOq*Vmk=?d^?0\VkU#_U8kWBhXUOAq=sjcrVliq'E%h-s8Mup +rr;rqrr;usrVZZps8DorrX8c*rr<#trVc`qs8K;'s8E<(rr2lqrr;usec,^Ms8W)trr;oq!rr9! +pAY3ns8W)ts8N9%s8W)us8N#trDijsrqlQhs8LNIS?puFrqcHgm_>0Z\`*Jdr;H68U7f]srVl`n +rVZ]qgo$OnWmHO!+oCr.\p"-[Xc1V,6p\*jqWL9a7q>^BmrVlis!<0A*J,~> +fDc$Rs8W)srU0XgrVlfrrr.lVs8E#uli-q_rr**"rr2lrs8;iprZM1;rVuoqr;HQho&nuop\)e. +Vn'XOXfS_7_9hBErqu]nr;ccprWE,us8VZh!r`,sq>UEo!<0/$s8E-#rr2lHrr;rirr<#trW)us +rW)usrW2usrr)]m,lRK&iRuDf['?g:X1R0Of!qoiX/;koVQRGOi:HsIqtg6is8N#trVdB.rr)co +s8Doqs8N#rr;Q`rrVccq$ig5*s8W)srVlisrhobtrr<#frW<-!rp0Rcrr<#trr2rqrW<-!rq??n +rr<#trrsss8Molqu?ZFWLU +Qi@-ds8Vlns8W,ts8GOerr2lqrr)iqrVc`orVlcorr)fprr)iqrVlfprr2lqrr)fprVc`orVlco +rr2lqrr)iqrVlfprr2lprr)fprVc`qrr2r^rr;orrW`<"s8Murrr2pYrr)fqs8;cmr;#pEh;n8" +b,;#D_6L&AXL,dfjo,2Ur;6Bhqu$Hmr;Q]orr2lqrr)fprVc`orVliqrW2uqpAP$h"TA?"rr/Gf +s8E#uqYpKorr*0&rr2rtrr<#trr2rprr<#srW)utrr2p)rVulqqu$Elrr)iqr?D78l/:4;]sFrH +XfAtfl.*;IZ`9k#VPUE)aku^grqcHgrr)itrVZZn"oeJtr;QZor;Za#r;6EirVlfqrVuj)s8N#t +s8Muqrr<#tqYs=is8W&rrr2lqrr)iqrVlfprVlcorr)fprVc`prVlfprr2lqrr)iqrVc`orVlco +rr)fprr)iqrVlfprr2lqrr)fprVc`orVlirrr;rr"9&/or;QZpqucots8M!W!ri6"rr2osr;Hct +rr2Wk!ri6"rr2rt"oeQ%rr<#trr;psrr;upqYU\tEg\CdEq>BZqR@CbGr;Z]no[9J,bO,9- +rVc`ns8UoQR&J-qs8N#rm_+mV`TQXQm-jQ?qu-3>\$=3Ns82Qal--,pWRL\Cr;Z`ps8N)u[/YX~> +ir9)Zs8Vlns8N)uec5[K!<;ur!rr9!O8o.W!r`&prr2oqs8E3#rr2lnr;Q^5r:&L[ZECXOh=&ak +S"Zg[Z+eB4jRW-FrV?Eqs8N#ts8)`ps8N#ts8Muts8N#ts8N#trrE&os8W&us7ZHlrrE&FrrW3" +s7ZEns8N#bs8W&us8)`os8N!&s8N#ts8N&uqu-Zsrr2fps8E#urVd$$rr2iorVulqs8N-!s8;j@ +qt]mPj4Mf(`l6Elma\M8Xg,:BV51Z3Z,5Jpp?(/gmJ-VYrr33%r;HWprVZTms8W&ss8W)srr2iq +rVlis!<08's8E#ur;Hctrr1IJ!ri6"rr2osr;Hctrr2Wk!ri6"rr2rt"oeQ%rr<#qr^["fr;6Bk +rR7X5[GUo^rr)lh_O?t'hu*NPrU\L;VTS<)s8Dlor;ZfSW0X=&n,NCdrTh%YT$I-1qu6WprVlig +bb:H5i;ETS#l +fDbpOs8V<^!rr9!N;rqW"98B"rU0[brVlfprVuosrVuj#rVlfpr;?Nn)t`%.[^3N\hso0sSYE-b +ZbO`:jmr6GrVlirs8Dp"s8N#ts7$!frV?HmrrE&$s8W&us2=p:s8Muts8Drrs8DpLr;6Ekrr<#t +s8N#tqt]pRjk8/.a2c]qn(+b>Y-YUIVl%):ZGbbupZUJmmeQhZrrr?!rr;rpr;Q`rrVlisrr)iq +r;Z`ps8N)uVuHhts8W&ss8Dcm"o\H"s8N#`rrW3"s8N#ss8;its8N#krrW3"s8N#trrrE%s8N&u +qu0+crquZjs8CEDS$h/Os8MusoYR&d\)7,`r;H69WM[i*rVuiorqufrhl)j +Qi@6gs8W)rr;QZpr!!*"s8Drs]`&$5rr2r^rr2iurr)irr;Q`r!ri/srVm`-hoN=5\&7+le?,47 +XJrPBbLktIqZ$QnkPbJ]m/@(drr/Gfs8E#uqYpKorr*0&rr2rtrr<#trr2rprr<#srr<#urr2p! +rVuosrVlfqs8W'Cs8Molp@7;"e^)@Yf'W"[ZDFe4\@JQ9]XtMhjSJZ9i8sM,r;R!#r;HWprVZQl +!<<&t!r`,urr)iqr;Z`ps8N)uqYpWrs8TY/"98B"s8;j"rVZTmrr)iqs8N)uiVruYs8W)trr;oq +!rr9!pAY3ns8W)ts8N9%s8W)us82dcs8Mrnqu?WDVOP!Nr;Zcps7F0sS%%;Qs8;iee#B4emJ[(` +r;QWos50c@VTJ<,rr2l^\s&`2q#:0is8Murs7=I.RC;&Orr39#i3nuBa7K<.rr2rrs8N)u[/YX~> +JcD\K#lXf'rqu]ms8W)ss8EK+r;HWnrqYp +JcEXfs8<'"rVcZ[rVuj*rVZTms8MurrVlfprVld?s823DgoBti+n+cV9_60uL]""Q7`4W%Wg[jOM^qe(@g"kcUo)8Ugqu$Hn!<2op"TJH#rVc]o!<;op +Sc8lls8W&qr;$9pr;HTorVaD/rVlip;#gIBUQr.CqYpEhrq!soR^V)Ms8Dlde#B1bmJd+_rVl]n +s59f;TuZ[&rr2i][ud90p](6mrr)cnrqFj +Qi@6fs8W&pqu$?lrVZYirrW3"s8Muts7uX@rVlfrs8)0EgX!^CXJr+qa6Md-YcG1Je)TljrVuos +s8Murs8W)LrrE&ts8W(Ls7QElrr<#mrr;rqrW<-!rqudCq=X7ClL=WFk/=O2\@oMPX2huU\_d&D +cGd`If\YTMm.:5Vs8;ips8)`ps82cqs8)`fs8W'"s8N#.rso&.s8N&urr<#trr)lsrr2rtrr<#q +rW<-!rk/:0rr;mms8:?@Q*T?ErquWlo>-i`[bgo]rVZ68WMR]'rr2iorql]pi2;^2a70-.rqu)k +OJ'tps8N&trVZWnpX5q)T!Zu/lfm0@U6Vb/p](0irr2lqrj;]U~> +ir9)Zs8Vlns8N)uec5[K!<;ur!rr9!NW8tVs8Dios8O) +o_JIbrVZp!rVQNjrVlcts8N"Ks4dPTrr<#trW<-!rq?BlrW)utrr<#trXJo,rVZQjrVuiprqlKf +rVccns8EZ-n(u@,]=+o:VR`t1^#SY.YH7`'%BZqH_U7QArVH +fDbpOs8V<^!rr9!N;rqW"98B"rTsO_r<<3!rVlisrr2rtrr*f8rqYWq[&^::^V[U`TtKOXj4Dc9 +lh1,Rs8Dm(rr)`lrVc`orVulroDeji#ljo'rVlfrrr2Wks8E#urr2rt!<0Y2s8E#ub5MJBrr2Nh +s84uhp93Q\$2U)]!A@1Y-Y[TdHC<' +qY:$grVl`n$3'u(r;?QnrVliqr;ccprr;p!rr<#tVuHhts8W&ss8Dior;?]srVaJ1s8GssrVc`p +qu?WHUlV_=q>USP_u'Sn,NCdrVuius8N#(s*t~> +Qi@Wrs8W&qr;HQkrVcWkrVuipT`,/qrr;uts8Mrrs8Eo9rqYZs[&^::^Vd^dU;#j_jk82AmeH_Z +s8Dltrr)fprW<&ts6ophs8N&umf!:frr.KKq>UNqs8W&ss8Duss83#urr)fqrr2rtrr)ls#lXc% +r;?Nms8W)ts8O>Bp#FNA^q6tNX1l$E_W^^B['?gO~> +ir9)Zs8Vlns8N)uec5[K!<;ur!rr9!P5kR]rr;rrr;?ZorVZ[2r;6-;\>cF1[(!HIX/N&=mJ?PL +o_A@`rr`6!rr)fn!ri/srr*!!rr2UEo!<.QLrVlrus8W)t!rr9!pAb0l!<<&ts8W)t +!rr9!rr!-%s8Drsr;-?jqYq9-qY0UHi76#d]Y1GKd.d7NSu/]trNHX4Z+/6PrV?!NoDSUe%fZM- +rVc`nqu-QnrVlfprr**"r;HZqriuM'rW)urrW<-!ri#ksr`0!sr;HWlrr(]TOgF3Irr)coo>I8o +^?#1jr;?BAQ^H4mr;HTnrqufqiie]FbOYZ4rVc8qNN(V)rr)iprr2lps7P0]Um717TVIs;Qal,R +r;6Ejrr*!!rr08(J,~> +hu^Ko!<:=C +!<)ips8N)upAb0k"98>ur;Q]qrVud$rVliqrr;onrV?I +Qi@Wrs8W&srr)cmrVcWkrVuip\Gkdl"9/?"rr2isr;HKl'_g@rYHPCH^:L_UXKBY8r;$*[q#:6l +s8MrprVlisnG`If"TJH$rVc$\!rr9!JcGcM&cVh1rVZTlr;?Nlqtp +JcDqRs8N&urr*-%rVlfprVlfr)#a7$m,mHrp[5kjU9_JCZ)OP"]?B70rVZZprr!?)qu6Woqtg6i +rr)fqrr.KK^An64q#C9k!<)lq!;uip"8r,qrr2pQr:KF>hqH8skPtG$Unt6#ZE^aDZ`9P'jnnMp +aO8r/mIKrGr;Q`qs8W&prVlfprr2lqrWW8urVuosJcF!prVdr +JcEXfs8<0%rVc`qs8DKfs8E#urr2rr!<2ut)#X4%mH +PlL^]$2sf"rVZWms8N#1rrrB$s8Dilmed:dr;HWnrVlcq(]3mol0@d:oZ*i-\])CpY,SS +JcDqRs8N&urr)otrr+,?r;HZqrUAdq`3cnom.&5qUp%,)Vl[DNhsgL?rr)fprVc`p%K6>,r;6Ek +s8;cms8N"Ks1\O5rql`qrW`E%rVlfpr;HZqr;lorrqn;Hrr2rtrr2imrVH9as81WfZE:.)VQ$l5 +[%b"go@gIIY-GIMa4&r2nbE(^rXf&+r;Q]or;?Nmrr)fps8W(Ls3:TArr2j9s8MWEbh`!ks8N#t +r9DnbjnA]RrVccaais5Nqu-L.r;Q`ghUC6GqZ$NlrqtZrg%#(ArVld:rVZZos8DWUhU9HZ^rY$j +r;Q]orVlfpqtp?ls8B>)J,~> +JcEXfs8;rtrr)ls!<)Hfs8E#urr+,?r;HZqrUJms`OEA&nb:A2Wjf[JYHbX]iUZjDrr)fprVc`p% +K6>,r;-?jrqlNis8DnIs4[MQr)J,~> +PlL[\s83*"rr)fqs8K\2"o\K$rVQK[r$2+:rVlcnrVuosoB"QE\@KrUpX$"A[_&iJZ+J6=oDJUf +rr)fps8NQ-s8W)srVuoqqu-Qorp]sdrW`?!rVlirrVZZtrr<#tJcG<@(B+:5r;6Bhqtp?jqYBsa +r;HTnrr)iqrr;lpqZ$Nnr;Zfrrr!u:qY^Bki5;t,XfAA%[(NiD\E*>;iU$14rVdB, +r;?QnrVZTlrr2lprr<#tr;Zfr!rr9!YlFb&!rr9!rVuoss8N)trqlotrr;us^An-1rr!i:rq"mg +h=ggIrr2rqlIXVKpAY*jrVu<-bjYH+rVdN/rr;WIe(a6cs8Dlpr85ZMnc&Rerr*r:r;Q]qrUoI4 +d`9, +m/R+b!<<#srr;us#QOf&s8W)us8N!!s8N#Ls8W&us8N#ts8N#ts7cKms82css8N#3s8W&us7$$f +s8N!ArVZWlqu-Qnp?q"naM#$cUnFj@o]*KTV6mhReDfojrVlcorW`S4XfS_-VnqWec`4%QXK&>$YID6jj8&`RqY^6j#6+T! +rr2lpo_nplrr02&!ri6"oDSaiqYgKprr2rt!<1(>)?'U8rr)iqrVQ9WpAFjfrqu]oqXsFRr;?Nm +rWrDjnb`:as8;for@IsGp@ItRrr2fms8M`]p&"aer;HZprVlfprr<#qp%%M5kj@p;s8Dlprr<#t +rVc`&s*t~> +m/R+b!<<#srr;fn#lXc%rVlfrrr2Ees8E#ujo5;[rr2rtp\k0mqu-Zsrr0Y3s8E#unG`Ifrr+,? +r;HQjrVulln)`6E^::JIUp8\Ml+a*s]>;bFjR;mCrr)fp%fH;(s8Mrprr2lqrquZkrVlXK8k5 +X/rA+\A6ALq#CjSqu6Ql +rVulqrr2lqs8Vuho'PW(mIC)RrVZZos8W)srVj2(J,~> +m/R+b!<<#srr;us#QOf&s8W)us8N!!s8N#Ls8W&us7uZorrW3"s8N!#s8N#ts82cqrVldarVlfp +rr2lqrr)fprVc`orVlcorr2lqrr)iqrVlfprr2lprr)fprVc`orVlfprr2lqrr)iqrVlfprVlco +rr)fps8N#trU^$gr@S$Ir;6Bfr;QWfmGlg@^UUSJUp/SKkJ!dn\\H>?jR2dBs8;ipr;HTlrVlcn +rr)lrs8=5?r;Q]orr2lqrr)iqrVlfprVlcorr)fprqu]kqu$Ekrr<#trr<#t!WW/urVld"rVlfr +rr0q;s8E#urVclurr0k9#QFc'rr)fprVcZoq[i](r;?Nlr;6Bhr;HQkrVuonrr2p!rqu]nr;cin +s8W'@p?CD`c+p]hXg"t-_s?j?XK8k5X/rD-\\QMOq>^EiqtpBtrr)corr)fnrr)?'U8rr)iq +rVQ9WpAFjfrqu]oqXsFRr;?NmrWrDjnb`:as8;for@IsGp@ItRrr2fms8M`]p&"aer;HZprVlfp +rr<#qp%%M5kj@p;s8Dlprr<#trVc`&s*t~> +nG`Uis8W)ps8N#ps8W'"s8N#srrE&4rrE&qrrE%ss82fqruh==r;#j?be:9\WiiS.U7TF#psZU[ +c.q[\rr<#rqu$EjrWW9"rVZQkrr**"qu-QorojC^r=/f*rVZTlr;?Nns8Drr^An64rr2utrVm*$ +s8W)us8Kn8!<2ut!WN,srWE-!s8Muqs8E0$rVlfrrVccq"o\H"rVlfqrVudKrVl`nqtp +nG`Uis8W)ps8N#srser,s8DoorVcZmrVlco_#FE6qu6ZqY5eP$rr;iorr;uq*:r18^U'uAZ*^d6 +U^Kor;Qcrrr<#tfDkmL"98>u +r;?Nnr!*-!rr)lsrr)j$rr<#ts8W)Ks8W'+s8N#rrr2iprr<#sr;Qcrrr3K-s8N#trr2lrs8Muq +r;HWo"9&5us8DorrWW9"rr)iqrr)lp!WE#rr$hUDrr<#tqXWb#c,73)^t\SSc`F@`ZEUU8Y-4e- +c11c&jQ#Lmo(W"ZrVm'#rVZZorVc`os8W),rs/Q's8N#trr2Ee!<2ip!<2uts8L.?qYgTqrr)iq +rs&K$rr)cmrr)j#rqu]os8Dorrr*)ur;Q]orVccqrWE)srr2os#lac"rVc`orr;ur&,uP*r;Zfr +s8W#orVQNkrVlfrrr`9#s8KD*J,~> +nG`Uis8W)ps8N#ps8W'"s8N#srrE&8rrE&trrE&ts%WIls8;fnrVZWmr;HTlrVcZlrVZTlr;?Nk +r;HTlrVcZmrVZWmr;HTlr;HQkrVZTlr;?Nlr;HTlrVcZmrVZWmr;?Nkr;HQkrVlcoo)JUdrr4&: +qY9O:b.FmWX0Aq7V4l'/qUW0hdGXNks8W#oq>1*gs8=>Br;HNhqtp +nG`Uis8W)ps8N#ps8W'"s8N#srrE&4rrE&qrrE%ts#L)WrVlfprr;usrVGm3]W7p.X0B"?Z`0bD +r;Q$BlLjoJr;HWps8Mupr;6Hlrr)iprr)cnrVlcorVl$\&,uP-rr)cmrVZTls8W&srkAF4rr2ot +rr)j$rr<#ts8W)8rrE&trrN-!qu6Wqrr2rrrr*<(rr<#sr;?NmrVZZorVujTrVZWnrr;rqqu$Ek +r;HZqr;6?cp$_,(jmr<@d&<_>UoUl4_SWCQ`9m9Q_n*Luc.V1Fp%nXdrWE,urVc]oYl=e(s8W#r +!rr9!li-tarr<#taoD8;s8<*"rVc`qrr!W3rVc`pr;HWprr)fqs8Doqs8W)sr;?Qn"9&/rrr2rs +rW`?#s8N&urqu^#r;HZorVlfnqu6TnrrrE#rVlcoqu6Wq!<0A*J,~> +nG`Uis8W)ps8N#srser,s8DoorVcZmrVlco_#FE6qu6ZqY5eP$rr4/@rVc`prVZZps8MueftOSe +WN +V6$Ss[^sDqYc>Y.p=mKq]Yi"IjR)X:rVlcurVlcor;Q]qs8KJ,!ri6"r;QTn!<2`m!<2ip!<2ut +s8L.?qu6Wo"TJAurr;ur(B4:2rr2iorr;urrVuorrVlisrr)cmrr*#ur;HWos8N!%rVlirs8W)r +r +nG`Uis8W)ps8N#ps8W'"s8N#srrE&8rrE&trrE&trrrB$s8Dil])2[/s8N#krs&K$rVlfpr;Q^7 +r;,g1];h[(WNitD[]HCPrr;EKmeHYWrr;usr!*&pqYC$dr;QQqr;6?erVHZoqto^W!<)in"oJ5r +rr2lqrX]&.rqu]kqtg3eqYU6krVak,k4ANDdA`qBV6%)8_S`LT +`9m9Q_n*Luc.V1Fp%nXdrWE,urVcQks8;rp\,6@*qYU6erW<&rqu-Kmquuuqrr;usr;Qcrrr<#t +aoD8;s8<*"rVc`qrr!W3rVc`pr;HWprr)fqs8Doqs8W)sr;?Qn"9&/rrr2rsrW`?#s8N&urqu^# +r;HZorVlfnqu6TnrrrE#rVlcoqu6Wq!<0A*J,~> +o)Jah"98B"s8)`os82fqrrW3"s8N!!s8N#Ls8W'#s8Muqq>UBlrr*9'r;Q`oqu6Tnrr9J,!<)cn +!r`,trVZcprVlg5qsWb7oD@dcUStH,ZDs^sXgl7*rVuZirr3H+r;6Ejrr;urrVZWos8Muus8N#r +rr*$"rr2r^rr2isrr)iq!r`&prVccr!ri/sr;Hctrr1(?!ri6"rr)otrVd*&rr2rsrr;usdf0CJ +s8Vfl!<<&t!<<&s!<<#rs8;osrr2rrr;Q`p%fZM-rVlfprVuosrVlisrr2op#6"JtrVcZmrVn/A +qYL0hpu]f7\?W0;WjK:7VSqrl_Q9f;X0/hDajJf(pAb-jqYpZrr;6H"rW<-!rquctrr<#srW<&r +r;HTprVHNnr;lotrr2rt!<0q:s8E-#rr)cor +o)Jah"98B"s8)`os7uWqrVlfqr)]>`e0rqlZms8Dm%rr;urrVZWos8Muus8N#rrr*$" +rr2r^rr;rsrY5>1s8N#rrVlcorr<#trVc`ps8N#Is8W'&s8N#rrr2lorr<#trW)usrW<-!rmCcG +rX8c*rqu`nrr)fqs8Dlp!<<&t!<<&s!rr5trr)orrr<#ts8Dlps8 +o)Jah"98B"s8)`os82fqrrW3"s8N!!s8N#Ls8W'#s8Mroq>LQtrr;uss8N!!s8Doorj_purWE,u +rVlfr(]3^cm.C8C^8.^5\?`36W3EkOiVrlSrVc`rrVcX!rr)clqu$ElrqulsrVl`or;ci\r=f2/ +rVZWlr;Q`rrVuorrVlcmrVZWj"o8#os8N#?rrW3"s8Muts8Dp&s8N#trr2rsrn%2MrW)urrYtn: +rr<#ts8W)us8Muqs8W#prVl`nrVZQkrr2oq*rQ!8r;6Hlrr)irrqucoqtg9ir;6EjrVZQir;?Nl +rqlirr;HTo,l[Z;rr2`VbeL]oY-"b4\Z)LGn*e,qX/W/'[D0l4g#i&/s8Mlp#Q=Surr2lork&.. +r;ZWor;?Nos8;irrVlZrr;HWorr!-%rVc`prVc`qrr2rt!<0q:s8E-#rr)cor +nG`jps8W)srVulrrVc]os8<6'rVc`prVlfpr;Q-a!ri6"li%(frr)fqs8MusrrW/sr;?Krqu$Hi +qYpHgrW)u:rr;p!rr)fnqY_T8rVcZmrVlcmq=X:WWjfUHW2-N.dcL-!rr)a"rVZTm +s8Murr;Zfrrr<#tqu6`ss8V<^%K-2(rVZWns8Muqrr)forW`?!rr2rsrl5!tqY^ +nG`jps8W)srVulrrVc]os8<-$rVc`prV?H^s8W$"s8Doomf!1`"o\AsrVuosrVum+rVZTlrVlfp +qu$HiqYpHgrW)u/rr<#qrrf@\#cO3^sqQ@rr2ior;QZlrqufrrr2rt +rqufrrr<#^rX8Z&rr)cnrr2lpr;Q]orr)rsr;Q]qr:$d +rr2rr"oeQ$rr<##rr;p%rr)fnrVlcoqu-j!rr)cnrr)forlG*Drr<#ts8W)prr`9#s8Mus!<2`m +!<2utrr2iqs8E*"rr2Ee!<2lqrVlfr!<2rs!<0/$J,~> +nG`jps8W)srVulrrVc]os8<6'rVc`prVlfpr;P=Js8-m]"b\SVlme`k4S]Prr;osrr2its8N#Jrs8W(s8Doqrqu`m +rr;otrr)iorVHcpqu6WprlP3?rWW?#rVlcorr2rr"9/?#rl"j5rr;p%rr;utrVcZmqu-WrrVl`o +rW`E%rVlfprVl`orVl`jrVZQpqYU3irVuj%rVQ9Ph:'HWrim3>[*eO0Z_ak-XJ_knZ*^pUjo5;T +p&=anr;Q]or;?Qos8K_3$i^2+rVQKirVlfprVZX#rVlfpqtg-crVZX%s8N#rrr)cnrr)forlG*D +rr<#ts8W)prr`9#s8Mus!<2`m!<2utrr2iqs8E*"rr2Ee!<2lqrVlfr!<2rs!<0/$J,~> +nG`dns8W)srVulrrr)iqs8<3&rr2lpr;HTkrpKdfrr<#arWW?$rr)lsrr)lsrqulsrVc^"r;-D,`p%nUbrr)cor;=,)"o\H"rVZTkr<<)p +q>1$erqclsqu$Hms8;j!rVZTlrVc`:rs&K&s8N&urqcWsrr<#trVllsp\t6mrr;usr;Zfr!rr9! +nG`LfqZ$Qorr2utrVllsY5a"~> +nG`dns8W)srVulrrr)iqs8;rtrVZ`orr)conGiOe"98>ur9X@cr;HTns8W)ss8W)squ-ftqYU3g +rVlZl[/U"%)?0[6oB4fJ]!%j.aR8W>Vkg2l\AZq\nFZSVrVufqqZcuqrVc`orV$3jrSdbTrLBmrr2rr!rr9!fDkmM$NL,)rVlforr2rtrr)otr;HWos82uus8W)Ks8W#ts8Mup +rr +YHkXIWi+5BrT_qagu7PhpAFphrr'>*%fQD+rVZTlrVlcnrVZQjrquiprr!$"s8N#ts8N!#rVZTl +rVc`:rs&K&s8N&urqcWsrr<#trVllsp\t6mrr;usr;Zfr!rr9!nG`LfqZ$Qorr2utrVllsY5a"~> +nG`dns8W)srVulrrr)iqs8;rtrVZ`orr)cofDkmL&HD_,qu$Ekr;HZqrVlirrr;us#lOSsrVZWn +rr'#!s8;rsrr!Z0n`A?A\#c7$a6iB8V4sfg\AZnZn+6DTrVulorQkH^r;Q]oqu$Ekrr2lprr;rp +qu$Ejqu$?grr;usaoDD?!<;uqrr2rq"9/?#rl"j0rWN9"rr2lpr;Z]qr;QQur;6Bhrqu]mrVR$" +r;?Hir;6BirVZEgrqlcqrr)iq-N3l;o^hS:hU9TqjRhE>Vld,,YcY.;[ATkHqYo^,eCrgDnFZPS +rVZfsrVaM1"9&5uqu6Epr;HTkr;QX*r;HQkq>'pbqYU3irr;usrr;us"TA8rrVc]oaSuJDs8W)u +s8Mlp"9/?#rr)isrqHEmrr2rsrqufrrW<-!rp]pfrqcZorr2otrr)isriZ9O~> +o)J@]!<)forVZ`orr)*\!<<#ss8NT.s8W)us8N&urr2rsrr;lp!r`,trr)lr"9&5us8MusrW2uq +V#M5/o]k8V]sFcB[B-76g$[V7^VJ%Hl1VXes8ur;Q`prPS[8rW)uprWE3"rr;rr!<<&ts8W&ss8W)t +rr;oqs8N9%s8W)us7ZEos8N#tqYpKorr)otrVcfsrr2rt!<0A*J,~> +o)J@]"9&5us8;lor<<3#s8N&uli$n_m/@"`r;Q]os8E#srr*-#r;6Hlr; +o)J@]!<)forVZ`orr(:Es8<'!rVcZlrVuj,rVulsrr)corVZQls8W(srtbP)l.a@mZ)Oh2Whm2\ +n__I+_p$p$p\b$krkAC5rr)iqrr!6&rVlcorqu]ms8Do=s8;lrrVc`orQYBa5_n!(VXJi2*[\TD9s8UNJZ+7EZa4'#6o_JEmrrE&krrr>t +rr2lprVliqrr)orrr*-#qu$HnrVaY6s8E#uqYgTsrr2rrrW)utrr<#srr<#trr2rqrr +o)Jag!<<&ss8W)ss8W)t&H2V.rqu]mrqucprVc`qrr1OLs8E#urr)cos8;fos8Duss8NT-rr2fi +qYU-cqu$Bhqtdf!,Pq<6q=!.\[]?:%Wk-lfRI#p\ap^pA4abq>'pdrVl]urVZTjqYL3g +s7uipr;?Hfr;ZWrr;6Bfm/$eZrql`l')VV*rr)`krr;uqr;HTnrr)lsrquourr1(?!ri6"rr2os +$N9o#rr2lprr;usec,^Ms8W&ss8Drrs83-$rVZTms8Muqrr;uurr2iqrWrH!qYL$ar;?H[r;ZWo +r:^"GqYU-dr;?Hiqtg0dqtg0dqYL-hqu$?]hp&jAY,JA(ZDF>HrqF*lV6QqoWjoskg#qu'qtg/n +qu?L%r;HWnrr2rtrr<#squ$Hl#Q+Gts8W&qrVc_Hs.97@~> +o)Jag!<<&ss8W)ss8Vuqq#CBneGoRJ"98B"rVZZpr;Za"s8DlmqY^?l%fQD+qY0j`qYL*er;6Bf +\blF'/c5JCqXE@`\#cL)X1QNkZF89PnE]N5q#:6eq"t$eq"X[]qtp6cq>0p`qtp6@q\]2,qtg-a +qYU6jrVQKks8MrnrVc`prVuosrW<-!rn%2Mr=/f*rVZWms8Dors8N&urr*'#rVc`p_#OH5%fcP, +r;Q`qrVlfprVlirrqufq!rVrlpA=md"8hrkq=j^cq=XUaq>^=Hr;6BfqYC!bq>'paqY^?ir;6!@ +c+g`mX0&\8W2A5HqSASu[&U%+]>i4QlLk#NqYIGn)Z'@/rVlcprr<#ts8W≺QZnqu$Ems8Dlo +rVhBJT)X<~> +o)Jag!<<&ss8W)ss8W)t!<)ips8N0!s8W)t!rr9!fDkmM"98B"rVZZpr;HU!rVQNkrVZTmq[0s`q=qPs0DPA=p\4CSle'.\VkKf][`,q]Z-_k(kN_L/qtg!Yq"sm\p@nF]r;6Bfqtp6b +pso0Wq"aa\p\4IYqu$Ehqu6Wpr;6Kms8W&ts8N!!s8N#?rrW3"s8N!!s8N#srVuosrW<-!rn%2M +rq"VDq +"o.oiqtp +o)Jag%fcM+r;ZfrrVccrrr)fnrr!9&r;6Bfqtp +o)Jag&HD_-r;ZfrrVccrrr)fnrVc`ps8<-!rVc`orRCiHr;cirrVlfrrVufpr;ccpq[3?&s8)6N +lfdHkjSn3>jo+6?jgaCOjrE:(]WA-A^:CSZ]Lcj5f;#j8\*AiS`VOir8!A +j5f:]j7;:2j6Pe+itgV5jlY[dl1"B?q"t$grqu]mrr)irs8N!!s8N#Ls8W$,s8DoorVccprVuos +s8W)t#QOc$rr)iprVQTlr;uusrR(WEr!WN&r;6HlrVZWmr;6Ki"Sqfan*'Z0s5j+<"QSV)j5Tpq +!oi8#qr7Y9"leS&ioB%tj8S*CjlGOajl?=#s5bHbioT7Xg""Qubf@H(WNaq?hQN9L^:1GZ^U^PQ +`nTP7jQ!Z/s5amSjlGLbjlPdpnb;qWq>:0jrVc`prr)ls!r`&qrVhBJT)X<~> +o)Jag)ZTd7r;ZfrrVccrrr)fnrVc`orVZTjr;?NmrVb7Frr)iqs8Duqrquiprq[!!r;?9SjlPLZ +i8FUls53n9rSR\5`S^pWi8EMKh>H+Bh;6r;`Nl83XgPC6Xg4n!Z,t`!hZi$!jP\qSiVqd8hu;R6 +hZ_loi8EMMfAQ\d%cH7#hVmMSioTLroCVhTrqm!!rr<#ss8W)t!rr9!b5VPBs8W)t%KHG,r;?Nm +rr)iprr)fIrr;p&rr)`jqu-NmrV?HmrVuisrVld.r;6Ehq=aCFk2G4Ui8*5GhVJ1f#2e:nh;@/K +ro*b6s5=(>j5].sj8\*Bj5JqShr"Fkr8I\6-fO"Aio/ePiSiM=c,dl@]X"N/UrqfJUlD.UXf/D2 +Y,&#/e)''@hmqY^hr*JQioB+\jl>C[iT0.do(VnRqYpKmrVlfqrVum!rVZWmrdk*@s*t~> +o)J[fs8Dus!<)lq"9&/qrVZZpr;ccpr;ci[s8W)urt,20s8N&urr<#trr;uss8N#crsJc!kh48' +`5T^5_#;"K_8?2f_SH2cq8!!E-+gI`W3O=c^U(,JWMQ`+]thCr]Y2%k]u%V#_8F4._8=.0`l,al +^]_Ef_SX+\_#hEg_<\l:_>_7M_@=>u`Q6LHor;HWp!<)lr(B*pig!.OR_SO"&_83q'^r!t)_8=%)rPJTNs2##W_SX.* +_ns:b_uIRi_o0F/_8=(,_o0I._o0C,^q[V!_8!b$rl#bn_nipiXKT:S\>ZC?a2#:$`4DqAWjfaY +^UCrX_%=Du_8*k'_84"*`m)uglM(5TrW<&ts82d!rVZWos8@NKT)X<~> +o)J[fs8Dus!<)lq"o\AsrVlf,s8W)urtYM(k1@o#`5T^4^qd_"^qmk(_8*n%a2%_i"2Mah_"tks +^qmk#[&p@7a3MN/ZEgL.Ye%Wf_S$a2l?A_nNL\ZbOJkX/j([_S*h+]r\!0\\Q%r^Uq;]^B23e_#D.[^qme$_SO(+`m*#h +l1OuQrW<&ts82d!rVZWos8@NKT)X<~> +o)J[fs8Dus!<)lq#lX]!rVlfrrr;us!rr9!_Z0T4(&.+Rd)Ec1]">Pa\@B#Y\[oDa\[f5k\H9:O +\c'&;[ff +]Xt_`\%&pG[fr:Y-PU@SX5tO[^uIJ]Xe$O"1c"T]D]DB]DoGJ\\5o)f&Q>urVlctrVlio +rWW8urVuorJcD>AJ,~> +nGiLe#ljo&r;ZfrrVZZns83?&q>0p^q>'gZpA+R\q0s_q"aa\q>'g]q=sd]q"X[[q"a^[ +q>0sbq=j[[qYL*drVcZkr;69Uf>"Ps[]ZmD[Bfb87C';,Za-g>Z*:I;YctC:Yd(F:Z*COZEpmCZa6sBZ2([_Z*L[>Yd(I;Z*CO/JoqYL$^p\=OXq"XUWp\Omdq>'pes8)6@aKq_9V67,.YHbC=Z*E]%'sk3P +['[0H['R*GZa6sD[C*?IZE^\6Z?!4RZF$j@['?mC[^*$=ZEC:0WirnF]st5DXLQ6pc,7-*`Q,j+ +YcP%4Yd(I;Z*COc/\?gqu6TnrVliqrr*-%rVZTns8@NK +T)X<~> +o)Jah%fcP-s8Mups8W)sr;HTnrr)los8;oq#5n>oqu$?gh>@9MqYV`1!bqtp +XfhW+s/lL,Y-G:;ricI/Yd"&1"gG8:Yck7gYTC!PZE^O4Y-P:4W33bVj7N-Crr2lqrVcWkrr2rs +rn%2MrW)urrW<-!rr2rtr=K#.r;?QnrVc`orVZQjrVZTkr<<,trVZQiebgKcr;?Edq>C3gq"X^` +qtBC1a0VM3V6.#-YHP17YHRi-s0)C*s02R.oWeG#$aHq?YHY=L'XXUHXY-5+6YHkO> +X0&V0YHFt2]"YqkYc4h;`mN,N]t_S0`O`:UYd(C8] +nGiLe)uop9r;ZfrrVZWmrr)fmqYL*dr;?Hfq>1!bqV_5SqYU0dq"Xjas7cipqu-Hhqu$Bjq]#D- +p\4@MileX$V5BfUVP^2cUS=Q\VPg8dUnc#,"f%lhUS=L^UBIc:%Xg+t$ +St`$VU8"K^UnOO^UB%+hUBdTmW2QSiV53sa"f.ukUna^CU_ol&VPKlVTVSBVS>*r>d2q=j[]rVH3ZpA"FSl.*SMS!TV< +UnaWXUS=ESr1OChTqS-NSXc1=qjd\U#b@QYSXuFDSY#hO#G7ceUSFQWU&Lc;TqJ0VTq\BXU8=c_ +StMmQSXZ.BVld,#T:)4J[_BG^WiWY=ZDsUiTqnHZUV*E&UE-/,V5C2jVkp2bUSOZUSt`$^_:n8J +qu6TnrVliqrr*-%rVZTns8@NKT)X<~> +o)Jah!rr5srr!!!rVZQjrVm6%p@%8.jQ#@ajlHC#s5a1@"6AS*jRqWtjT"?JjlYagjlGOflMg#b +iRG]IVQI_]c-OnjeBlOgd*gFme'cUid`'W6d/VGlcl: +ro4aTk2kdjk3)$slf?U4Y-#:Qb0A;\dJhPodJhSod1asWdaHUmdaQ[ne'laoe'c[oe'n'@rmLtt +e(*%Kec+&Ge'umndalmodF6Rlc-4P_dEThYe_8Tt`Qcufg"4a"d+-_!f$Vah[*ep&"OYZDc-?75 +&^8;5^qI(RWl!imrr;ooqu$HmrVlcrrVleIs.97@~> +o)Jah$NL,'rVlcprVZQjrVm!!q"!bMk76bAl0.;d/_PhdJ_Gkc2u>=d.u!8c-Xqdc-=Y`c-"5UeC2[bd+-k& +bJhi[g"Y0.daH[ug"+NpcdC(bmEbm[d.Yf@d/VE4d*^4fdEg(]bKJ/TbK%K7]Wn?4^Z,"ds8;fl +r;Q]orr)orrr.KKT)X<~> +o)Jah$NL)&rVlcprVZQjrVlutp[IJIjoai3ki_p,#3G"1kN:piroX7D!9WY2"m5"2k2bV&jo=Bb +jlbmmlKdd#jlGRekN1dafZLRoQCG(i\@TJl_8!^u^VKib!l2RblbEJ8o=k:@q7lsFp:p@9s1SHF +(qm]$aNDQ;\$NKT^qdUo]YD4o]Y;4t^:sKZr4r?H"2DXd^\kkK^VIYV^Au(;^]2+I^(e8p^qR=[ +UmdRA^Z>+^q>:*is8N#ss8W)@s8Dp!rVQNkrVm'"p[[_7k4\![^`o]^;%J^^\kem]Y;7s]=bnn]XYMb +^qR@f]>DV,\$EW``l>s4]tVA%`5B:"]t_;K^Au(@^]2+-^Au(K^B)-drk\]P^](nU]=G>RXfJ1b +T"!MJqu-Kk!<2urrr)orrr.KKT)X<~> +rVlis!ri6"rr2rtr;Q`os8;rsrr3Z2qh@a_8=()_8=%)_SO(* +_84"*^qf9P+i(q3`5Ta:_S3[s_Sa4,_7QtQY.W*9jm2='o'l#3lg4'=mfW"Em-_j[)=6bVlg4!( +m-O')m-Es#jlbmgio]:Zj5oG&l4WLNl0@U#m-X0-md9E0mdKZ5mJZJ#m/u_>lgFc>&F8QAJ,~> +rr3'!s8Vlns8<0$rVZQkrVlfr'`RprinDu3c,mrB_o0O5`l>s7`Ph/_s2G&Xp;[-O"ieU'`lH't +`[8XC`5]j<_nNdt_8=%*_7HkMXLc^3jQZ!tn*]N+kj.R$mHs6*lGVuhm-FE4%INHDkNM-kjQ>O` +j5fA%l2U)Vlg!g'mHa**mHji4Yk3;*lioB1blKdfFlN$;NlQ#0OjlGRfkiUsah:p,VS"[[Vo`"mhqu$KnrVZWn +rr<#rrW<-!rdk*Gs*t~> +qu6`ss8W)ts8W#r"T8/qrVlfr'`Rprj4`#1c,di?_Sa=1`Pod4`5CBKs2+cQ,Jq:7`Q$!AbK@f< +]Y2(p^:^t[V4=*U]>i+DeCN:(e^N!sec+,#e^Wd4s4.2#r7:nu!7pbls4.2#r7:kt#1qGVe^i=% +rRMb7e'cUfcdL%[c,muIb088^e(*!te("?HrmhA)f%/I(eC2mrrmh%upsoDq!7h"us4%,#kg^Ht +dF6[te^i:"bJ($GNgmfAo(i+Yr;HTndf0CJs8W)ts8W)t!<<#srr36#nDi3Pd*'K%`;dg.`;ddu +`5BL3`P]U1]Xb_i]X=W(Q)M^VhqQc6f%8L%daQ[nrR2&#e'lamcHXVXr65Dhc-FVZc25fdbllA> +cdC8@eh>S'eCE."e'uq!eC2joe'ZLig#(ZRcdC1ebKS;[e(*%!eCO!:!nPoP +r71r"f%/X,s4.G*f%A[.f[n[Qdh^?Wc,muD\"AYF\CpsJ~> +rVlis!ri6"rr2rtrr)utrr2oq)ZKd:rUSjcY+M8XV5UDmVkp5eW2chpW2Zbor2K^p(9+72WMlbp +W2Q\pVl-MnW2Q\oW2Z_opSn1ks/APhX/rG*W2-,^VP^/`Tr"s-eEQPdhrj@nmH`rujlYdll07Ep +kiqA +J,~> +rr3'!s8Vlns8=#m2jP8eZroj[Mj5T1^k31t,jo=K/jn.^.jn7a;ki_1+kPaWDk83@H +mITo:lg!d"kiV!hki_*lkN1ghki_s,$KgI1j5fCejlP[fq;q82lK&$.roO.Bs5j=ErojpMafq\] +mem%_qtp?krVk@I"9/?#rql`qrr2rtr;ccprX/D^caBUBU84]fY1'KUXKJ\-Y55:"Y5bU:Y,eFm +T:i![X0g"'jm;3jiT'&!k5ONHk32$kjo+=Xi8Nb[kN1jj +ki^dDZDkFhoD\^frVulqrVc`qs8;its8N"Ks/#aG~> +qu6`ss8W)ts8Vuqs83l8rr<#so&.QlTUqjTX0&G&W2Q\rXfJJ'X/rA&i2d!\WiH'!s/?j8Xfek4 +ZE^I,TqS3TT:(q2T<5lUg!%@VrlkenaiDEAaN;THaN3Ygs2Y;ab0%j(b5]Qcb/qcHq8rZX"3J^. +ao'<]aWo!Qbfe5Tc-4GWbfn8PbKJ#Lc-"A_eBcC`c-4AQaN2NHaiXP's2kAaaSj9]aTTc3cH=6( +aoBEaai_cJr6#&]"3Sa-aR71Ma;;t>aN)BCa2c9Cc-O_W[%*GjiUZa>q>(!gdf0CJs8W)ts8W)t +!<;rp%//f.[%s=fU8FumX/jLH,-.iJX/W,!WMuhnT9tq1R\-7M\&ZnIdE0MQbK@rJaiMNBn&GUO +a2l?A`qd[Wa2l@#aoBC6`Pfa9aMu6Bai;BEc,dc;`m<,ae'H1YbK\>Xc-+/IbL"_ge^D^cbg"DU +aiMQkaT]c-ai_`Ir5o2bb0%iIaPb/DaN;TJbKTt1!R/^caoBL'a2lHIcH3PiSZpN0r;HWns8Muq +rr)iqs8W)us8;its8N"Ks/>sJ~> +p&G'krr3l8s8W&rs8VrUb.+XXXfAA&Za[KV\[f2Z\Gj&=\Gs)>])B2>\cB;=\cTFR])B/?]".UI +rj`KL\[]/[\[T&X]">Sc]`,Sc^r4:4^ppb`akH%Po]bK'mHs?-kih0kkNV3ol0.C2kS3:Fkiq

    @^ +m.'K&bH\"[li6t]r;Q]orVk4Es8E]3rr)lsrVZZps6%V;Y,S7qXL#G9\cB;>])B/>\GWlM]",A_ +]",D`\[f;^\[o>^]"5HM\cB;;\cTFR\bE]8\c95W]YM:o[^E]`d,F6PjPJ_RlKRNqlKdZtrTXCK +n*9o +o)C$8rVulrqYUm!-^&YqI^AktJ^AYe` +^:h4p_SNmo[(!irhWO%\gt^lOkN(^ekiq70jT+H:jT"#irJ3?j:g\>k2YRekN:gaj65gp +l0.9ll0J?6&*W*8jlbjmlg!]tl0@Kpjko2%kN:m\k5XN\k2k[`iSrq^lKmp*m-F$*jO(N7ZJ5-P +s8Drr#Q4Q"rr)lsrdk*@s*t~> +p&G'krr3r:s8Vuos8VrUb.+[ZY,eS*[CX#a]Y(hf]=koW]_fDA^AkkH^A5JB^AbhF^AkkP^:h4m +]tM(i])9/C]Y2.t^])(L^_t#,^UL>CX1$!qf[nT +ai;?@ai_fNc-"/PbfRm(`9tSE`:LtJ`8JT<`5Ta:a2n8%+ihUBa2lEGaiV]IcI:(OWL0X8p&+jg +rVlforVlfps8W(Ls.97@~> +rVlis!ri6"rr2rts8E#urr2rt*rGEY\"/k[\^&dVf%/C&f@S[-f@JI%f%&=%f@SU)jOaF_-J-i! +e^i:#eCE1'f[ng1h;@8TkMtFKdFdICm-3]sm-a<.mHj-&roj@Grp'OJ]B]F\,O=jknEK)sjQ5L` +iT0=nmcs$$lKRNtlg*j"ki_0nl0@X$lMfuIlMg&Jl2^)%l5o3TlfmQpl0.9hiT91XiT&RqT[3B1 +rVlforVliqrR_)LrW)utrr#efWMpe^iL8jPA>3d+[RBk2bIWip6%!kND0sl07L!lg"$+s69dRmHs9+lhg&K +lN$;Nli6>NmJlPPli65Slg!ZumHs6=lMfuMlL"'.m/H8ZlfdEgiT01fn*fZ0lKPbBs69RKs69RI +)!gSUm-j?)jlGRgkh*27]]B"jrVZWnrVZZos8N)uJcD>AJ,~> +"oeQ%rr<#prWN9#rVlfqr=T),nCY4@QD;(:uShUKfpfAP]Mj58\OkNhBojlu%/kPs]4k6:#2kN:mfqr[q?!9X:Bs5s=D"6S_-kl0]VkN1ad +kiq9mkNCsgjQGgplfe<1%-?I(h;RGYm-O$$kN959s5s@E*9QADk3)!om-j?)jQ#@bk16`-]&NVe +r;?NmrVc`ps8W#r!rr9!JcDSHJ,~> +rr3'!s8Vuqs8W)t!<)or('"1"fXIE!2 +f\,!5gY^oFi8EVTjQ,@VdDj#?b0SDU`5Kd>aMu9>_o)JirkeZPs2)go$Gs^!`5Ta9`Q#p:rkoer +bKnAL_SEk!^:_%j_T'U4_Sa:._8F40_SO+,rPefV"NA&[s2Phq`k]=(`QQKASs$G; +q#C +#laf$rr<#ts8W)ts8W,u+92<;qu?WP];2$r\&m=_jlGFZh;-lAh;7#Dg=tE;g\fk'h>c:-h>c73 +h;6ueh#H14gtgcBrn[V0"l%keg"P6\h#Q@3i"=l'gXXZpb0J]$lKm`rkNV9sroa=D!p/M(roO.A +s5h;`"m+n/kN:q(kPsZLl0Ra$l0.(E7fA#'6g=uS]$/OCkgtUN9h;-lWh%\Z#h;$c>gtgfAg>(N>gtgc@ +hV[2hh#?%:h;$`=hr3JFccOG`jo4WJm-FZ9#jCC1jQ5OekN;X("m5"2ki_-hkQU/5ki_*krobNg +k3(snm-NrtioK4clg!d!jPo=hm-*HciTTe%n*B3!jgO=OjWs!OkNM-ljlPO`kiUj_j5oLjiln[* +aRoK2rVc`pr;?Nms8W(Ls.97@~> +/H5\Lrr<#trVlcnrVlfor;QZmqu?WP];2$r[`[:_k2tabiS`\RioB(Yj5^."!p/M(oB$#7"m+h+ +jlY\(jT" +alNK^"6AM&iq_X7iWnT/kN:mej5^-u$K0n(k2k^cj5].Yro4:Dj5]4\j5f:_qrIe=#NY"-jlPR` +j87p;is=`+j5T+ZjQ#:gjaNE#ikNV9rl2KiNk2YF[jQ,@]roF+>"6AM&ioT2#iqqa>ioB(YiSsjs ++QDA>j5oIejPf"SiT97bk2bLXj6GmihV-fIm-j9'jQ!c2s5O+?ro=%>)s-/Aio8qWk2kR[iT'(a +hoW$r`:l&~> +rr3'!s8W)ts8A!i;V^7i;V[:io/kgir.m?io/nWir7p: +i\09MioB(YiSrhUio/kUjQ5Ldl0ITrj58M9`kT$m^;e=;`4`n$_8=%'^:q:n]=\'Trk8?E`4Z/` +qS*!B#ee$k_SO%&^:jNY#.hF]_8*h"rk/5dbHmG'_sRC"rVk=Hq>UEo'`S(.r;5p+XJW/5bgkG(i838Fi8O[ns5F";$/sn'iS`YQio8qf +iWA)uir7p9iWnH"ioB"Vio0gp!9*q8)r]iOa2Ps3]t(Y`])K2G\[]2] +]">Vg]Y*pNs1\BDs1AEH]Y"0Rr44Gi]"5G^\[f;_\[]2]]YD7s]=GPe^r!t)^V.1l`l#R&[CF#m +aiD<5]tM.o]Y+2Z^;e@9[%3Psmf!.`rVlfqr!iZ*s8N&urr)cn +rr;usJcD\KJ,~> +$2sf"rVuors8W&srr2j1rql`qo@1(=V74Uugu%&LinrPEg&0J3f@AI'f@S[,f@\a-f\$2TrR_,% +r7:etrR_,%rn.5%rmi4Df%&=%f@\d1gY:N>gt0ln`Q-?\jm29tk3)!nkN:sjroX1@roO4D`T@?c +k3(skkPXTDkU5WYjlGUglL"!,mHWp$m-Es$l0.BrkiV'lkND!ikN1dajQ#=]j5U!ts5O4Ck2te) +k5XWEjp'r0k31sijm;+NjlY^gk2k[bjlY^dhUgB:jkRYG[Hd\frqu`orr)fGrrE&ts8Dp/qu6Wj +gUAJ,~> +rr4>Ds8W&qrVZTlr;6BirVQWpo[U:@VRXh$h;@/NjPf"Ph;6uFi8FUlrnn%?i8ESQi8NYoi!86# +io/hRhr"Fks5F"9rS[k:iSrhpi;MUXi8RcjSe0D +jQ>Udj5^$us5XIIjQ,@^jQ5I`nE'T/']\98k2tmnmHWchhWO7b`MU34rVcTlf`)ujs8W&qrr)`k +r;?Eks8(WbW2Hc6fB),RiSreQi;MX7i;V[jSn94ir\<%j7q^8j8%aej5f:]ioB.]jQ#:]jQ>^k +kN(X^jQG^gk2bIViTTRkjl5@cmHj&ri8`q[jLaORit1>5jQ#=^jlY[bio&_Qi8E\qjpU;1hT)P" +h"^mHr;HQms8N?&r;?Nls8DnIs/#aG~> +qu7o?s8W&rrr)cmrVcWns7FgHTV]0Af%f0@ioB"Sgt^Z=gtgfbh#H18hVI#EhVI&Frn[P0s5!Y/ +s4mb5h;/%d"5VhkhYc4-hAY>3ioB.`jl>=Ue]GM5ZF.B``PfO']Y;(m^AbhG]`#IS]_oJB]`5YP +\[]8a^VRe(_7mS[^&PbF]D]DB^&,JB])]MC]@4Cn]=e-V'YM&i]Y2%n]!SfU_n;b%V;_:Jrr)iq +e,L6_s8W)rr;HWkrr;fM\u2C*^XV9'hr!Akh>Q41h>Z7;h;7#Egt^`BhVIbZrnRV3hu2C9h;$lE +hVI&dh>Z40h'q4;(XL#[ac-=GP_nj.&]tCtf\%&rW[^ioY]">Se^:h1lqRuR7s18HI +]=PM]\,<`N\%&rW[^WfW\@8rW\@TGk^qI=k]tjW^&\PZ^]"u;#^:V(q`l5d+\@]Gc]E,XWrk0u! +^VRk.`l5m4]XbV^ZaRK[^r4:6Z^@]Cq#:9ks8W&pqu-QprVuorr;6Ejs8DnIs/>sJ~> +!ri/sqYpNp(B+.0rqu`oo['J'WlX#Uh:C*,g"G$.rR:qudaQYDdJqW"e'c[ne'c^ormDP1eC;sq +dEp7fdaHOjdaQ^qe'laoeG[hqd/VK?da?FgdaQ^peCE7.i7lf-b0Sf%lL+*)kNV@!kih9rl07Kt +l0.?Iklp;8lg3s'r9OpZm-O!"k2kdjm-aE7na?DBs6Lopm-F$)lg!g$l0@Nsl0.O]i83/Ac).JnoDARdr;HZprn%2MrW)us +rZV7>rqcQfh6N3<^VIn>f@&!mf@\j4f$r7#eC2pre'cXkrR1_ns3^ttdaIg;s3^tuf$sTGs4$nn ++OJNbe^W$pe(*"#f$2=^fAG]VnF#Q&i8 +!ri6"rr+2Ar;?NmrquWks8;ippX6"0XNKJ_hq6N4gYLW;f\,!3gYCT=rn@D,#Me(ggt^Z>h#?%I +gtgfAgY1?6g=tEh;$f?gtg`=gYCQ'o_\[fr;HZorRh/Krr;p?"-h>H"OgtUQ +rr;us!<<&ts8Nl5qu-QmrVlNr^V%.g\@T>f_8O=2_7mUp]tF?Xs1AEH^:sT[qnE*D$bjrVZQjrqcQfhmJcI +_o9mSh:U91h;7,LgtLN;g=b35g">NAs4@D,gtMYYs4[>%*nJrqg"Y98h;6i9cb?]j[_'H"c-+,C +]=>D`]tV1mrjr-?!4r0Ark8KL^qRM[^Akn>^AkkM^:h1j\[hOI-Fp_!]=PSa\[oDc^;.S$^V@S" +^VI\#]Xk_g^qmn)_ns:+]XbPbrk5tYs1KJf^qROr^V[q.`lH'6]XkS\]"c(q^r4I6X.[#js8Doq +&,lG(s8W)us8MuprVlirrdk*Js*t~> +!ri/sqYpNps8<`4rVZ]c_PMl3$;9lKJ61s5s=Ds5j^Pk2k[cjlGOdkN:q(kPs]E +k6C/5kNM*lk3(nFki_!cjQ5UikN1XSj5-u4`9$gprr)fqrr1OLs8F)>rqu`orVccqn'A&+Xhi6- +e_Jj+cHt%ie^rC'e^aZMpsoDos4%2%e^a?Ds4./#$.[MSf%/@"e_&IOe-":OdF8*F'\(U]f%8X, +`kp$Uj5oLilKIEnjlQL&"6Se2l1F0@l0.?`koo9Ulg='(kiq?sl0@U%mdBH+kihAJ,~> +!ri6"rr*l8r;?NkrVcZnrqufe`M]N6`7a/0hV6iBh;$fbh>,n2h;7#GhVS(c"5r(oi;MR4i;;F/ +h?`#si89?i;V^8huMa3i!86!hr*GMhqmt^ +s5*e5$JsRohr!;GhVmAJrnf0`hqR#HiS`SKhV[2JgrdO[g#(`JjlGI_io9"Yio9"[k2tdek2k^e +k5FEAj8e6!j8e<@jSn9=j +rr;io(&e.2rVlfos7+%)UTDAciSiYJgYLZ\g]-(.gBH(N?gY1H?i8D2\^&#AT]=bef +\\#Sk^qRLq^;.Y(^:V%ir4N9H]tM(j]CWZ8]D]AB]A't"]=bfU]bnAk\@K5d_Sj4!ZG4&:Nk43E +s8Muqs8N#Ls8Dp=qu$HmrVuofdB91I`mN>lj5AV@f@o!7hVI#CgtgcAjkTmjs4dt9g"P6:gY(?< +gtMb^.c&k2g"G*8hV?rEgY'r_X0T:M_SsR8_ns7)]tCqf\[oA_\$rlW\%&u\rk&6Em(EA1!kc.V +rjhj9!4i$=rja)]]=bhj]=bei]Y2%p_83ju]=Y_i^V@Io]=bkl]=YVds19;b]Xtbf^;%P'`59=( +]"#5Z]=kkh^W=L*R\AU +#lX]!rVuors8W&s'*%q0rV"a6R'ai[f%/C%f@o$6rRVP1e^`:&f%&@&f@JO*f@TuR-eI#'f@JL& +f@\d1g=t?6f\,!3f%/L,gY191f\5$0e^i='f%&=%fDa>7f@\d,cH*uIf]MJblg!Zpkj.NtroX7D +roj@Es5j=C`9.*_!pJh1r9+^Tkih0ll0[s-l/h!flL491rTa^Rl0%6nl07C1k5XQCjq6e[hjlY^groX7Bs5jOLk2tmik2kji"Qeh1kN)X&%Hcp>k2G.^l+s4'f_5:Brmh&Irr;oq +rY5;%eutL?c.C@mg"b6.d*g@id*gGCec+/"f)XD$fDjD*f@JO)f@^)Srn.8(!8.8'rR`pXf$r7) +gXam*gY1<5g"P68f%8R)f\5$/e_/j3_nOFPjQ#7\kND*plfdKlj5oFekiV%'k6:#2kNM*lf]XC> +kih#3Fq+j5f=aroX:DroXaPj5]:ajl5=Ye?5\% +r;HWor<*'!s8ITLT)X<~> ++oVH@rVuoqr;HTkr;Q`prr2ZDURf!>fA,09gYLfIhq[)dhZ2U6huDX6hu)C4iV_UZhqm5Ii8WeW +jQ#7[jQ,=Xhr*MTj5AkSio8qTi8WhXiSieTi;VUMhV?c0aMc-LioT=ajl57\kih0jjlGObroOLJ +k2k[bj5oC`b2rZ`"6JS'iqh[PioB(XioK=gl/^d[i8s:jk2PI_ioB([jSn35j9"B&jSS'j5T([k2bR_jll$sl/UajlGKL*fCo1Armh&Kr>Ye9qYU6irquHC[%4;HiS38NkMtFRh;-l@ +h;A4iro*n:!9*q:ro*n:ro!h8!9!k8s5F+=io9jo1Z70HhW3bTh;@;RiT0+^kN1[^io/qYj58_P +jk[tmcJ.:6h;@2PkNM-ljl57Xj5oC_j87p;ireB&j5SYMs5G'ZjlGCYio9"Xj5]:dl0.6hiSihX +j5T"Vjlu!ijLjUSj8e<@j9O`)iSrkWjQ6C%']nK=jPo4\jl>:WgsE-tebf=ErVc]os8N?'rVc`p +s8N"Ks/#aG~> +rr48Bs8W&rrr2ios8W&srV+m;S@H\kg=t?8gY^rFg=tH=h;$fArnRP0rnIM1rS@M15i(;Qh;$c> +gtglGi8NVNhr*GMgt^`CiS`PIhV[5HgYUlIi8-k^;n=7_nWjp]=kni]"@sS +rk/TM]tCth]"G\fb.Rbd!5/'<'"Y]e\[oGh_SNmp\%',h_nWjtrOi$>s17^3s1A?DgUmNuqn*NP +\@B)__8F!t[`-7^OJpY#r;HWFs8Drsr"oA4rquEAZC@oAh:UK?j58SBg"G$0g"ZM]rn[V2!8[Y2 +s4mb5h;/"c!8[Y2s5*h5rSRS1+Pki,gYq,Hg>(ZFh;I8Nj5JeLgtLZGiniMJh9`O,Z+L"Ms1oJf +_o0L/]t1b`\@K,Y[^W]S\@K2_]=R=?s1/BG]",>^])0&;])9,=])T>?])T>@\e_oh]=Yho_8*ar +\[f>b]=PM`]thFr]"G]U])fRVrjr-?%_B9c^Vdt*^V@Io\@&cVrk/lZ`4_b3dej%DrVccqrVZ]q +rVd$"r;HWprr.KKW;hA~> +!ri/squ-TorVf=`r:npLTs)PbdF6UpdaQe!f$r3ueC;sreC2mpe'upteCE.$e^`7$eCE*udEp:h +eCN7'f[n^+g"G!+dam11gXam*f[nXPdg"=NdF$Fmec+,+e^Vpc_SsjWk3;j."6Se2kl0`Ek7$M: +kND!jkN:pikih3Pkl9fJkiq?qq<@nB%I**Alg!ZqjlbpqmHj0 +s8DlprUAFLW2dS]f@&-ue^Mpoda?CfdaHOkdf._qe,[tseGmu-eC2mre^i:$eCE+#f@SUPf)jOT +fDaA$e03Z'e^E"%g"4p2gY:E5g"+R%hVQc/g#(>r^+5 +l0.?jl2TuHklBrFl29`MkNM-okih3orp0UL%d3!AJ,~> +!ri6"rr2lp+T23;rql`lgpX,jdG!@2hVR#Bhr*>FgtgcAgt^cDhqe:gs4o9`hr!;Ihqm2GhV?i< +g=tH@i8ESPi8WhXi8!)Ejlkd_h;@5Ohqm5Ii8jTOc/ +k2k^[k5XNPk2k^cjQ>XejPo1[jlZR($17',Yc5k:qYgBkrn.8LrZ1t:r;?Qmo%Lg\YJf5Uh;7)J +hqd,Gh:gW>gt^`Arnd\4!8d_4s5*b4s5"(>hVR)FhV[8Lhu2Imhr*GMhr*>Hk2tOThW*VSjQ5Od +jPo7Zgu7M]h:^`JgVq"UhW!DIhW!YZkN:mfk2tddj5]7_j8A$:j8e6)j8e69jT"98jS\$CioB([ +j5].[roX7B%cZI-jQ,@\j5oC`jQ>Rc^?5IW!p8V+ro>TiioB+]k2k^bjQ5RdiS`h^kMb:Re?u6u +n,31_rr;rqrr<#trVc`ps8N"Ks/#aG~> +rr;lps8Drr)#F4,g9mcacI^\$gY1<5gtg]:g"P-5g"HAY2;-^;gY1B9gt^Z=gtUQ;gY(30f@\g4 +h;-rDgtpuHh:^H9ioT.Sg>(QAgY(?;hVHr@h;7#fh\Y%tbe^fs\\Z;)_7dIk[^j#]\[oAb]=\'T +#eRa^]=Y_h]tDM$s1AHI]Y(lP]`,M^]Xtkk]t1ba]"Pkn]tM(k]=PSa\\#D_]=begpUpL;!kl7Z +fY&39]tV4o]tV.i[^N`Y]XkYb`Q5BRS]C0nr;HTnec-]hs8W&qrVc9>]rS9Pg>:N:gt^Z;g"Y32 +f@eg/g"HAYs4[P-rnIJ,%bo^kgY:N?\cB;;\cTCQ +])K;E]Xtee]`,YF]a;9\]=beg]">Yhr4KbWs1AEH]Y+6U0"SU)]Y;5!_8*e#^:CYZ\\Q%p]thF] +TZHX%rr)iqrVZWos8N&urVZQkrr;usJcD\KJ,~> +q>UEms8Ef4qY9dJ\!aG@d*g=lf@8-neCE+!eC++5l0.?jl2TuHklBrFl2BiGklBrHkn`LGkNV6plK[Tqkj%Htkiq?pjlbjjkJ$0[ +k5a`Dk9T3Ok3(plkih3lkNM*ijQPspioK4S]s,N>r;Z]prVZWns8W(Ls.97@~> +!ri6"rVlfps8El6qtg0U]:ZU^gYLZCiSN;Chr*AHh;6uDrndG-s5Bs5X:DjQ,@sjSe*Fio/qXjQ,@^jlH6ts5O";s5a7AqW._Z:2hZ2O4huDO7hqm5hhuDO8h;7#Er8.G1s5*e51Z7*Ek2kCPh;R8IhVdDMgtq&If%fHOgXY3@ +f#5GPhrNbRi8j"\j5T+[k3(mfj5T1^j8A$:j9"H(jRD:2j9+N)jQ$'ss5X+>!9="=\jlPR`jQ5C[jQ5I`]B/tO/*#^Oj5f=_jQ#7[k2kU^jltpbi8N;#Y/95qrqucq +rVc`qs8Muqrr2rsrdk*Gs*t~> +rr;oqs8Dus)#a@-qh;$`=h;-lcgDAMlahG3k]"uA%]Xk\b[^WfW\[oAb]=\'Ts18?F]=Ynl +!5&'>rOWKL\\#Jd]=Y_h]Xtegp:L@;!5&!Eig=b3Xfa$0\g"Y67g"HAYs4[P-rnIJ,!o)G_rnIJ, +"5DP`g&Bb+gABVbgtgZ:io/P@g>1Q;g>(Q=f\,*4d+IF?g!ng3a0;MI]u%Ot^;%Is]=Y_g]tV4l +\$roY\@K/]]=e-Ts1AEH]Y+$Qs1A?Fr4N'A"2)7W\bWi:\c0/?\b`l?\[oGe]DfGY]=PSd]Xtkj +]=GSf]tCti]XkYc]Xtef]`5VD]E#PB\LY;+^qmk&^;%Co[^Nc_^Uh+r_5sHHjSSrTrr)`lrVuos +s8W&qqu-Norr.KKW;hA~> +rVuor(B=@2r;Zcoq"X1!TU!9O+?s5aCGkND!ig?/_'kNM-lk32"-jqHk: +io]LekNLa7V82]Jrm^tr.FcnudEgIscd1(hdE^%bdE9PUe^;F^g"F]rf\"?\^sM$&kN1jj +l/q(+is"Q,kND!in`Tf5s6&\2s6'+>&a/BBl/q3olKIEnkNM-oki_..kR$G9l0@Hnk3(mh]BB4V +$g6a:k3(pkkNM*kk5FKCjq[+Fk2GIcg:sl,i;3KNrquZlrr<#tJcD>AJ,~> +!<2uts8=5CrVZTnrquZknBn)*b2M.3gu%&HgtgiDh;-rEh;-rEh;7#Grnd\4!8dY2s5""c=IgtUZ@gY:N?iS`PHh;I;Pi8hPdbWpCiSihYjQ,@[jQ>P& +j8S->j29sXireB&j5Tmps5FmUio/kVjQ5I_jQ,=ZioB%Xj5f:\ioK4_o&Tf1s5j7@s5a=Cj5](Y +*ol>Bj5K"YjQ#:]j5JnUkN(degUa/okkk>UrVlcofDkmL*rl6*;d)3cKhWj7hU +rVuor%fcM*r;ZcoqYTa.URfH\rn%A-gY1<5pY#r,g=k<8g=b68gAK_*g'?BfgY:H9g"?;Ws4S7@ +f@ej/f@\g5h:pT8gtpoCgY:N=gY;__!8@G('%YOS]sG#T^V[^q\@K,Y[^W`Vrk&3Ark&3A_7K]Y +o=GOE\[f>b]tCti]XkYb]=PTO]DfJ6]DfDA]`,PC]E5^V]&:1A]">Yh]Y2"j]"#5[\[T/^\@fSg +UR/LOq"smcs8DoJs8W#ts8Ms-rr)91XJ`bWfA,-7g"P-4rn.8&"kqbeg=b0YgAfk&gAfk*gAfh+ +gAKV*gY1B\g],q`gYCW;fAGH9f%Sm2e^`=)dEg@te]cP$i7HK5f"nMgZFn#h]tV7r]t:ke\[oDc +]"#8]\c0)B\[oDa]=RpPqn2s@pq6X="2)7V\G<]8\Gj#=\GE`J\@K8a\\#Me]=PPa]=PYe]".gP +$+da]]t1bc]=PSc]DoJB])]D@\0/Ar]tV4q^V7Fp\@B,`]!]2h^oX9=g\LmKs8;`jrVuorrW`?! +rVlirrdk*Js*t~> +rVuor)?9[5r;QWkq=`LESZTu]cHsk[bg=kida?JAe,RkqdJhSodJ2,qdF-Fje'uptdf%Q#daQ^q +e'c[of%/CNdL4OReC2pse'cXjcd2O9(=CUZbf%96d,*mHjlbpokN:shkNV0lroO1Bs5X@GkND!h +ji?KejlYaikNDX(s5sXNlK[WsjlYb*joXc0kPXNIkNM-mk2u[+s5a:Bk5FBIjQ5LajlPXejkJo= +jlYahjlPXfk3(mijQ#Ffjlbpf]qW1%q#:3is8DoJs8W$;s8Dlnrq>$PT;ol]f[nU#e'l[icHab] +cHjk`d/MJndJqSld0J"EdF-Fhda8!@s3gnqrm^tu2q6=*eCE-tcdgRldacgnbg+\ba2H6SeB,qc +f?qpseA])9d,4!JjQ5UikN:mdj5T(Zk2tjhk54?Ajoaf/k2lF$s5a@FkND"(k6:#2kNM*lqrn(C +qrn(C$g?d:k3(sjjQ>[jkl0cEkksQKjlGRfl07BnjgjORjU:56kN:sikND!hjQ6C()!9rAkNM!b +jlY=5XLd6`s82fnqu-Nos8ITLT)X<~> +!<2uts8<*#rVZTnrr!T/hmB2ge`,HDh:gW>i8EJIgtgfCh>Z16gYL]Bh;-l\h$2ZjhVd>Lh>Q+G +h;7&HhVI#FiSi_Mg=tHAhqm8JhVR)EhYl@2h%\Z!e]YnNdG3a@i8N_XjQ,@Zj6#G$irA'=ic23"leY*jPo+qi<&&uiVqm;iW\E)jlGI^qrIe;&EMm3ioB(Yj5]4]j5f:]io8nV +*oc5?io&eTjQ#=_jPf%Wjl5@_h7B2hjnJ`OrVlcofDkmL%KHG*r;ZTK\>6CTi8`hrh?DfnhVI#E +rn[V3#N":lhVI#Bg]$",h>c:1gB?l&~> +rVuor-ia/Cr;QZmr;,6TU9r>(f\5!.f%Jj7g=Y'3g"P-4f\"g/g"P-4f_=&'f\,!6gtUN\fFZ`i +gY:H8g"Y?=gtC<3g=tB]g&]s`rn@P1gY:E\edg6Yb.Os][_9Gh\[K#X\,Nf<\\#Jbrji'?s0r6D +]=YYb\];8b\[oAa]"7[K$+d[Y]tM(i\@K3M\H9CR\c05@\co^Y]Xtbdqn)m>&A,Nb\[oA_]"5Mc +]">Sc\[gY0*kAkp]Xk_e]">Pa]=YSa]=5Df]V:OqiUcpCrVuipfDkmL-NF&ArVuZJ\"^(Lh;@)C +g=tB8g"=s1f\"m2g=b03g=b02f@eg/rRq/%"khP\f@\dUg,IgAgYL]?g=k?us8N"Ks/>sJ~> +rr)otr;IQ3r;-BflGT6maO/D[cHa\[d*^.`daZ^mrmLhormCeormLhor6cq>daHLgdaZjue'cUj +dF-Rsf@A@"f@nm*c-Fbee'ZOidaHOicd2R8(XLIUda?7T]u&.QjQ5LelK[Tqk2b[fkPjWCjo=HH +jlbggjQ+;AoB,u4"Q\\,kNDU%!p&J)rT=.CroX7B!p8V+rT*q>!p/S,hrXn#"6AV,kPXHAjppS8 +i8s7dkj7BFT=X+Ur;?QGs8Dp-r;HKU`20EFc.CRtd*Btbrm(ntda?IgcHae`dJV>qdEp7fdEp;? +dK.hFrR:_n!7UkqrmNCIe^Ddlda-FpeBcCef[e6ed+d7"cI:=mdFHR[]"cSJjlPRakNCsfjQ5P' +jo=HCjn\'=jT+H7jo=HCjne*CjlY^gk2uU)!p8\/qr[q?!9a@C''JK@jQ5RgkN1gfk3(mfk31si +roO.A!pA_,[cRJM"6J\-jo4?@jVd4Aj5]:ckMt[cgqTesgA([Err)cnrr<#tJcD>AJ,~> +!<2utr;IQ3rquconB.N1eD]EFiSWJJi8<;DhV[2Hrn[V0qVD2,r7rgWh;-i>h;@2LhVHrAgtgoJ +io&\NioT4Vf@Sj9hqQl@hVI#CgtgiCh>Q1Ch;$Q'_o:'ZiSreSioB%Yio&enj8S'O +ioTC_]:?FloDJUerVlfJs8Drsr>YY#aJl;[fAbiKgY:QAh;7#GiS`YNh;7#EhVJ%bs5!_1rS7V5 +h;-lArS7J1r87M1.Gs(=g>1T=hr +rVufps8<`1rqu3*Tru_rgtLN9f@\g2f@J^2g=lPZs4I2$s4I8&,M:]&f@JX0h;$`;f@\a/gtpoC +g=tKChq?N/g"b<5f%A[0g]#n.gY1?Zf+$6Va18=R[(O)a\$WQOrNuX8r4;m@])K5D\@K,Z\\%jP$G!aZ\[oA_\[]2\rOVp=s1&6D\[f6L\c')C\\#Ja\@CJ-)S!Ak +]Xk_c\@K,Y]"5;Y\@/ub^S6^mhs^@=rVkFKrVdc7rql$%W2mebhqm/?f@em1g"G*7gY:E6g"G$S +g&Kb+g&BY(g&Ke$f`9b(g]#nUgYCH4g"Fs2hV6W2f\bN6d+@43eC<4-g=Y!#\Z)I0\@fMe]"G\e +\[hRJq7-U=\[f\c0)D\\#G^\\#Jbrj`hQ]X]l/]"5D\[^EKM\%'&_]tV7s^:Una\@K)U\A#\TR'"p3rqufpqt^-hs8Muqs8W&rrr;us +JcD\KJ,~> +rr4VMs8W&ss8;ckrUSLCTY&h)cHXSXd*^1`b08;`dEp:ie'c^ndaQUldaQUke'e6ErmDq:d*gCl +daHOjdaQ^sf@SO"dFHq$cH+2Xf$r$icdC1grm28'c-4GZcd:(db.t[,d,!aDk5OTEk6:#0jlY^e +roX7Bs5jCEk2sVD!9X":s5a4A'BJ35j5f:_k3(mgjlGObjQ5LajSn0AjlY^er8n"@rT=+@roX7B +roVqrroOmUjQ,FakN(R^l/h-rjM7M%j7<*Frn%2MrXf,.r;ZK@YbAPNd*pIkcd'f7c2l8 +,Q@`Crr<#srr;usrVlNE\#7.)jP]"Thr3SQgtCK?hqd,Dh>Z:2h$Dlmh;-rCgtpldhYu=YgtUZA +hVI#CgtgiEiSrkSgt^iKiRu]2hVm>Ef\>6=h;$iCh;$fBrnegRgsjH_`R:iJjlta;T=X%Pqu$HFs8W)ur?hODpt<$N][YWjhV?i>h;-lBhV[5Ki83;H +hqm8Hhr!AMhV[8Ih#6(.hYl72gtVhar8'9dhVI&Ghqd&?g"t]Gg=bQ87io9"Xir%gLioB(YiSieVj5JtViSihWjQ#8! +isF`(ioB(YiSrqZro47Ej5JqTj5T%.irA' +rr4)>s8W&ss8Mups7P$PV82!Fg=t?7gYCN6eCNC0g"G$VgAfh3g=Y*3g=Y'3g&B_)fg"-@g"P05 +g"=s1g=tH?hV6]8gu.#=cdLP'gXXg*g"Y98gY:H8f@S[,f@/'b\#ZR9]=bbaZa7$F[C3NQ\[h[M +s1/0@!kGnR`45lZp::45s1&ZM\$icU\@K5`]",A]\[f6K\c0&?\[oA_r4;p=!4r0?s1&'>rji'? +gUR1Q8e_/m=g""g9in;i3g"Y0, +ah"IIXgYjR\[f;_[^EQS]"G\e\[f6L](``8](ro:](WZ<\@K/]\[hXL"hD4U\[]0K])K5E\@K2^ +]=PQP\eM]b\[oA_\@K5`]"5Ga]"#5Z\[f5]\LG&!\[])V['I$G\%98e^VI\#]=GG\\@/cS]t:20 +X4$V +rr30$s8W&srr2g9qW5AbXi]5?aNVfLc-FPUcdC%`dEg.eda?LjdF/$A!n,HCqpPMl"4P]HdJ_Dn +dF-MCe1K.tcHOYbd`f_Re(<'nb0A>^dEp:gccjVXcd'k`ccNr6^s:]pjlYdjkN1mirT+%?Y3#]E +$K^@/jQ5OcjQ,Faro=(@roF+@r8d&&s5`2$s5Y*[jQ#:^k2k[bjlYdij5f@^kNq0CWP.9]qu-Km +fDkmM+ohN(6$a3N5bbf[u=^Rb\)dtXjlPR`j5f:_ +jlZO')!'` +#6+Z&rr<#sr;I`7l+s@-e)fHAiSE>Jhqd&Ei8*2DgY:Q?gtgcAh>Z12h:p`^h>c74hVI#CrS%D/ +h;8.g1u@'AfA#3=f?r.*ini>=g"kN@gtglEgYL`Dhqm2EeB,PFd+[C;io&eRhVdDPi8NYSiSh$# +s5(K:g>:]BgtpoDgY:Q@hV[5IhVJ.e#2S.mgtLQ>rS.M2gt^Z`h#H13 +hV[2hhZ2L3hCRRDiS)o:gYUiBf\59BgXk9CkMXn=g>Lc9dE]SEd+mO8h;IAThqm5JiSrkqiW%g< +iSrkUjPg0upYl85io9srro3t:"5r.sir7p:iYLM2i8N\Vj5JqUj5JnQiSrkUhr3VTiO7bGi;hm9 +i +rr3*"s8W&srZD+!1g"HAW!nl2Xqq;#%"5;G]f_sD' +f\,!XgG.F8e^N.)g!e3ng>:Q5dad%*gY1ErjriS\%&r[\[8]LYd_BZUR&=Cme?VWrn%2K +rYk_7o#IT*`S/qrg""[-f[na.g"=m,f\5!2f_X8,f@ej0f@\d/f_aA$f`0V+g=t?\gAoq+g+_:< +h:C'*f@o!2eCNF2g"+j8j4_l*e_Jj&`kA@HXL5UK[^WfW[C!BO\@K/[\%'!J])T;#\H'/6\H9:O +\c0,<\c9/A\%&rYrj`!=(:^i_\@K5_\@9#[\@/iU\[f2X\@T5\]"'9"\[f2W[Bm*C['mQ[^VI\& +^q@7h\$`NG[CWlGS?1',r;6Hkr;-?ks8;j"r;HWprr.KKW;hA~> +rr;oqrr"#;o\$45]$f*N`lcBDbKS2Rcd9q]d*g@icd'ncda6@gd/;8qd*L+ecd1#E]"ZDBioB+_ki_$ikN2^(!9:`Qs5O4B +j5f7mjT"Xqu-QnrRh/JrZ1k4k-UVZ +bLk%ada$.dd*9h\cHXSVbg+MXbg"AUrQYAg'$S\Kc-=Y`d*^4fdF-CgdF-FjqpR+Gda6Iqf[%ac +dF6Ojccsb_da$.gf@%j`bgb4ibf@B1ceIC:iSs"]io/nVqr@\:!9;Ph!9=(>s5X+ +!ri6"rVlfp,QIc;h6*Kigu7&Bhq[#Dh;$fChqd&Ah;6r@g"P6:g=k<9h>Q+5gY1H(N=g"P34eCWR:hq?]?%Yhqd&Dj5\kEf\G?>gY1<6gt^Q8i8WSDe(EO6f@/$]_9punhV?uJj58_mhu2I6hr+Lk +rnuAd!oW%rro!e5!o`(rrnmk:i8FUl$K0q'iS`\Ri8l&~> +rr;rrrr")@rV,*KT>9.9f$r@&f%AX+f%Jd0f%A[0f[eR(f\+m-f@S^SfETsYf\"d+f`'M&fGE/l +g=t93f@JO*g"4d*f@/*qg>:T7e_'lS)VE`tg"4p1e^Mpmc,-ieWNWeC\[JlPZa7'KrO;j:]X\!N +!4`$;oXOq3!kPqPqmQX:\$rrYs0r$=(qR8f\%'&][C!9C[Cs2JQEo34q"jshrr1RM'`S(0rr2fl +kI7(ed,!.#g""[-f[p,T$J3kZf%AX,f@\^,rn%J-g"Fs.f[SIJfETsYf@\d/g&'JVgY(34hr!#5 +eC`L.f@JL'f\4s-gtpZ1d*pb(d)`o"U9(]0[^ENP\$WNM[C3QRrjW0C]"5G^\@L;&!k5\LqmZR5 +!k>_LrjMs=\%)FG$FdRV\@8uX\$i`SrjW$=\@K,Z.CZgt\@/fNZ*UdE\@oYm_8="$]",>YZ*(IE +\#5^qcLC`-r;?Hfqu?]qrr<#ur<*'!rr.KKW;hA~> +qu6]qs8N!UqYbg+S[bg4Y`d*L(eda-:edF%sA!R]?pdjiemdF?[k +bg+VadaZajb0AD`bg"M_dE]q_f$hj]\\6;Bhr +!<)fprr,@dr:/:7UWVKOhV?rDh;-lChV?oBgt^`BgY(64h;$Z8gY1H(H:gY:H:gtplB +gtpoAg=t?9hVmDJg=t?;hYu=T%K!9!k6s53n7n_jH)rnme6\`!MF(ZF9.hV[5Ih;7&Dhr*5FjP[eK\DHlUrVc`Ls8W'7s8Drr +s8DZFY+W;Vi7$<9h:p]rS7\5gY:Q?gt_nc'\qR%gY:N9f\>6i8c7C +hVdDOhVd>D]Vr-boD8:^s8N"Ks-it<~> +qu?Wo%0-4oe"r_XgtUK3f%0fO1t^C2f\"g/g=Om)f%Sj.e_&I*f[na-f@JU+f%8O)f@\g1f\"p3 +f%/I(f@o'9f[e[*g"QGY"k_P`f[naQfG`Gpe^Msoc,$`bW3<_A\$WNM[C!9J[^irX[_0*L[K*f9 +[fe_&L)e_&R-f%Ja-f@\U&f@ej/f%8U,e^sfQrn.>)g&B\=g"4m2gXXd' +f\+s4g==U#gtU<-rmrCFdb*='aLe@DX0K"=['[9MZa-pE[C3NS]",>]\[]5^\@8p![fa(J\$l7C +!k,SHrjN0A\$icS[^ENOrjVp9!k5\LZ*u0j\%&rV['?mAZa@3R]t_A!^V.1e\@8cIZamWDR&J=" +qtg9ir;-?ks8N#ts8W$"rr;usJcD\KJ,~> +qu70)s8N#rq<,hnUrV'5bf]q,'["VDc-4GXd*U(ad*g@ie'l[jda8!=!71Vks3Ueor6ZA.cd'k` +eCW3ud*0_\cHOVffZV4TeCW-orQQ2&bfn2NbKS;[cGdE(]?8gaio9(_jl>F_ro4%=iO\"KiVqj: +ir\6!iVqj:iVqg:iND2?iV_[JiS`VRjlGXghr3_V_PXm$oD8=^rn@DPrXo2/rVliomEMW*^"(f] +cdp^srm1Vg#gLZ?c-4GVbg$.2s3;5$b0/)Vc-=\_bKnS]bg+\cd/MEOdaQ[kd+-XndF?[mcd'e^ +e'?7jh:Kffb1"na_8k-\dE0\`dE9;7]?T'fio&eVj5AkSio8qUro*q:dc1;c"leS&io&boiW%mC +j5T%Vio8qVir7p9ir@u1iZ-q:io/hQi8WeUhr<\N^oOlno_n[crr)fps8W(Ls.97@~> +!<)fp-3!lBs8;6.Wia\-h;7&GhVHuBhVR&BgYCT;g"Y?H%hgY1?7 +gY_#JhqZf7gY(34jQ"h;eDKg>(TBhr*;;`4a"4f\PHAhV[2FgtplDhr!;%hZ2O4 +huDU9hqm5hhuDR4hZ2N9huDOLhqm2Fhqm2Ehr!2Gi7d&Jh7]SnhXpaDrVkONs8Ei7rVc`qr9qt3 +Vnq*Ff@]!?hV6c=h;$c`h>Z10hYu@2hb`1bgYCZ?g"tK8gt^T7g"b?8gt^Z?hVQu@i8<>Fhr!2B +g">'9g"GBKimlE+h;?f-dc' +qu?Tn+oCTKW2e/!g"G$0f@JU+f@\^+f@\a+e^rL-f\+s.f%ARQeH"2!f`0S'g&0J`f@JL'fA#0: +gXss'f@A@$i8;u+d+dI3f%/O.g"=p.eC<(!e^_pYYbe5#\%/rR['[0FZF.-O\@/fV[K*`7[f04f%&:% +g==a1jPJ;-dG<[/aj&Stf[/.%d`/emTW59([C!sJ~> +rr;oqs8<3"pu/o_Yg(\sbQH#2b00b-&'`DHd*9kae'ZLhda-=id/MAkciqbBdF$=er6R@Ld*9_W +db!1%c,$`r`4WY"e^(e0]?f'Raii#Ubfn>Ub0%rOcHseR]Xb_tf\k`IjQ>O_j5^-u!TDtLiW%m; +iV_^'i;hfEiW%j6i>1A/hVmMTkN:XZjP@PG\_coQqYpNorn.8MrXSo+r8kbmXN&iCda6OseGdbn +c2Z&kc-4DWrlbGgcHc@3s3=$Vc-t%_cI1+bc-b"fcd:+edaljoeC;jldF6Lfair/]cd15#f>G,5 +cHsA3\^]TkbKJ>Za1esmbh:n4hr*PShr!ANro!e7!8u2^ro3b4rnmk:io'dpS`0S-+lM> +!ri6"qu.*(rqtorXh!*BgY^uIhqn:e!8RS.$eX.eh:pT9gXt68g]#q,gBH +gtgcAgt^`bg]ZHihr!8fgeQ\Zg#(T;gYLZ;f\5*6g>(KQ5h#Q=2 +h>5tIh;$f?gt^Z(QBh:pfDf"@rdddm;3rr;usJcD2=J,~> +rr;oqs8T9$/-n+ZYVrn.8MrXf&-rT:tpY0#AOf[nj7gXasR +f`'J-f[e[+f\+s0rRV#$s4'Hjf[SO+f[SF&g"4g-g"4p5g">'6f@S[/f[S9sf\4p-hWE\;^;eaW +b.5=@ki("=f[%ICU7S?g['d6H[C!3DZEsP;#.D"L[C3NOrjL@brjMX1rj2a7[^?"AW3lf9[C3NN +Zi703ZaI +rVuorrr-R-q=WFGVRk7(a32]LbKA#PbKJ,Tcd0tbdF-CecI("bdaZ^ne'c[lc-F_acd'e\cHt"h +dEKbYe_&Er\Y"V;U6UtE^UB_uW5mE5bK\G\bg+JYcd'\Sb08&H]t;&$f&>QFj5oA$iW.s:iW.rM +ir@s;ir%d,ir@s9if1O*oc/9i8W_Qhqm2Fi8WbXjk\hRg:Eueh=LL?rr;usgAh-N +&,lG+r8+lY[*I4Ne'HFkdf.SmbkfRfbKA&TcH=8Qcd9qZc-Xe^cd:(gdEg4gda-:gcdC=nd*L+f +dEg1hccOJ^eBlRlgs5 +rVuor'EA(1r;6XeRR]W6T\&uOdTc.Ce,g=tK?gY:N>gtgfD +h;,g&s5!b5r8.&&s5!\2"l8%lhqm5(huDOOhqm2Fhqm5GgY(98hqmAOg"YE;\tHLgo_eXcrn@DN +rX\u*s8:caW414/g>(B8hqn@es4m\0rS/1EgY:N>i8EABgYUiCg=tE;g>(K>hVA(`6.t&Lg>(ZE +gY1H=gtLN?g=4g5hqQoCjk7>HY/A8bTrui0kL@r6e]l"A][#0bh:gT?hqZuAh;$iBhVI#Ehr!;A +hZDZlhu2F3huDL7hqm2ErnRS3rSIP2s5'm8s5".@hVI#Ehqd/Fhqm2gh#H1FgtUQ;hVR)Dhqlnq +Vm+S?r;6Knrr.KKRf@m~> +rVuor%fcM,qtg*C[B.0sg!\O,rn%8'f`'J%f`'Jdf[n^(eCW:%f\5$3g=b03eCE4(f%&:#e^rL/ +f[J6ugu$o9_5Ef^V@In[f3WHZ*(FF\YPRibjYK- +rVZNhrVuosrr<#ur<*'!rr.KKW;hA~> +rVuorrr*T.q!ue1Vnps2`6-9Fb0%oObKJ00cNhhFda?CgeC+?B&'iMHc-4GXcHt"abg4SYc2Q$I +bfRuQe_&9_STIY.EG96HTUCCXQ,;(tda-.]cHOJWccjGOc-FPN]!o>nfAPWGj5oC^iSrhqiW.rM +ir@s>io/kSn_sN+#iXe&i8NYSiShN1s5>$YiSWSQiSWPLh;.#LiT91Wh;R%uTXWeLqYU9lrr1XO +rVliq$ig+VYGSnYda-@fc2>ofbkfR(bf\/Tc-"2Sd*BhXcHjYTbK\8Vcd:%acHsn^cMl0EcHOPY +d*BqdcH4Dbf>u"\e%M/rI@$[gFG.0Xf>GSUcc<]*]$/jai83ANinrVMiVqa>iS`YQio8qJiW\<# +io/hRq;M;1ro*n8ro*n8"6&8!iN_DBi +rVuor'EA(1r;-*:Y-6%+h::?>hVR)FhYu=1gBcNgh;-c:g"b<[f`0V5f[nd/g"Y?8f@np0f`'Se +f@8=(i8`V6WIS/\HusRtX/(`/TZuELhV6]8gY:N>i8<>FhVQr2_nNt3fA,08gYUfAgYCW?h;7&G +hS.nIh?2ZlhVI_Ys4mt;hr!8HhV[2H^>JtI"Q/(lh;8.e'&2*mh;@)JiS*)Eft*f`hXpaDrVkON +rVliq%KH=YZ)G@df[eg2f\5-[g]-(0g\BS(h[A2mh;@&Bg>(H6e_'lSs4R\1f%/R/f\-8Y0\P(1 +g"Y35hq?N5j5SP9h;65KL5;P)R"(48jl+J0g=FQe\\6;@gtg],q+h>Z:2h>Z:2h#lNkhqkWqs5".@hVI#EhVI&EhVR)fh#H1FgtUQ;hVR)ChVQhqVm"M> +r;6Knrr.KKRf@m~> +rVuor+ohN?qt]m6XK9Itf[/7'f@S[,f[eX*f\"g-g"Fs,f%J^SeIL0\eC2pte^rL(e(3'ueGe#< +e'QImgu$c&V0l +!ri6"r;LL1r:oa(V5_D`cc4)LaN;QHbKS,Sd*L(ccHOJYf\=cqcd'qrgsXa&cd'tjf$i*qdF?Xm +e^i7!e(!:0\:n9lE/BF1S",:RDNi3%hVd5Cf[\6kcH*rDcI'hU^q$qfak5M/i8j%_io/n+iW%g> +iS`YOi8FCfs5Lhr*DL +i8NYQf&6nmiSi_Phr*DLr87h=i8EMNi8 +!ri6"rVdB,r;HK_d&XCrhqZc;hqd,DrS9Zlg=k<9g"+^-iT8eCg">*GkM>(Rg=b(TCgt^`@gYCWA +h;,g%s4mk8h;-lBh>#e*h>H%1h;7#E\_dAB"Q%tigthtb'&)!jgtplFi7ZlCg:ErchXg[DrVkjW +!ri6"rr*]5rr2lps8Dlnrqb3KWP@!7e_Js5f\65XrS:`5h;I2Eg"G-kiCUVi8!#Fn*o8dgYTu;E-7Ph;$fAh;$iAh;-lc +g]$".gCi5rhqZrAh:9*6Y0cb:qYpNordk* +rr;oq&H2P&n^"2:b1tXrf%AR)f@^)S!7q,#=4PaIf&#E;d+6_!kMt7NgXap.hVHo>f\"s4f\G<; +g=k-1e'lk%hV6Q.g""X0gXY09dFI(0h;$f< +fA,99e'cq.jP\bFgt:06lg3ETf@n-+CiPc1I;t:ag"4[#f?qUFU7eNkrNlO2"0o)8Zi7?2Zi.9- +[/dYl[0X.I[C!9H['R+:Zj4"G['R-HZa0J7"15JD['-kd['d9KZa-g>Z*L^E\[oGe^:Un_['[6H +Y-Y[KUm@k$nGE+_rVHHks8W)ts8W,t"9/?"rdk*Js*t~> +!ri6"r;K%]r:o[$UoMD_d)jANaN;QHbKJ&Qcd0t`b/_WOg>'uocG.*GdCQs)_ogZrlI4< +]=Pf$cH=5Qe'Gq@]ZnU3^W+F>a2QKCLgb1gNFR(+aNhrYda$4^]sbW!g"tZEi8NVMh;7)JhquZ9 +"lJ7rhqm5hhuDU?iS`YNhr!;HhYu@2h?2Zni8:3cs5*h7rnepXio&YNin;&FZdeUFrVuiorVlis +rr<#trr;usrVlfrrr.KKX8d\~> +rr;rr'`It.qXMh1Z-M4\f%]';h;$iBgt_n_/)8h.da[(6kLn;:b/r]!`Q$'Ge_8d3e&K5Gf%&$h +cHXJTf&kemG$p'4bl5j2Z\rjRWmg"^d*:"eeD&sc73h;$fbg],t2gY1B9gt_n`s4d\3gt]Eqs4eOKgtUT>gt^ZL\rTXWeLr;HTn +j8T2[s8W)t(B=C5rVccpr;?Qje>oO_e^rC.h;$c=qqV/+(Ydg+iS)o7g>h5Kf@\p+aOA2AcIp_$ +h#>eZc,R`Gf%JU&f\Y?-_T1gtgc@i8"Rlh;-l@g]$".h$Dlnh:p`?gY1E]gAfn0gtgfAVqhO3h;-l@g]#q+ +gCi5rhqd#Ah:9*6Y0cb;qu6Wprdk* +rr;rrs81S;jW%n+ut\ro="[ +rr<#trYbb8rr)fqrVZTmq9u@@^=:``g=k32f%AX,qUcV8g"kH6da?V%hUg3)fZ_:[_mde=d+6kK +co9(`_8k!SdEg=rf#k_EeBu1Rc-atbbh:'uBQ^#7CjW5/f$rR2f$_UGUS4]n['[0G[C!3CZ*XG: +&[J[HZE^[?['[0HZa@-K[C!9sZj!eC['R'Drj2X3#dq%HZEpmCZ*OA6s0;a5['[0B[/[H>['R'B +Yd(L?[^j!K],8)e[C! +rVuos!<<&sCAI29V5qP^e'6"UaiMTIbfn8Sc-FY_eCN*oc-Xeab*dI)FAbY?S]T0aRtc$$H^^jo +Bi\POM7C'U@6ZbJJ>T!3X-RmCLoRA:F](V)C6c]hbI4e!gt^,k^:Lqmbh1h1hVmVYiS`YOrnb3C +s5!e6hYu@2hZ)F1hZ)I7hV[5ghR;;AhYZ1HhVHuChr!8Ji7d#Hh7]PlhXg[CrVulrgAh-Ns83E+ +pX#b2]$SsSdaZdpd*9i7bl5lebZcI1%`dEB86^uQl +rnmn9hV[2fh#H4/hOrd+h'V%9h;7&Jhq[)HfY+5he+3J9s8Dlorr<#ts8W)ts8N#rrr2rsrdk*M +s*t~> +rVuor%KHG+rql0-Wj9n(gtCH\h>c@3h>Z//g>(TEhq?Z:g>(5SJrG1c;fAVaftXDHIs6XDZC>rE +BlK.rV=pAVS1O7g"YB@hV?l@gtLK]h#H,0gtUK8hW*VOg!nF&gsO0>CJ%NDUX@i-P)#'SI<'V% +_:$K5Q$dR[HG.%HB3APjUV"a[LN%j;MJ7mXeCiI/g"+g)`P'+6g"b?9gtg` +rVuorD#aM5rVGp(WNjUtg""[)e^`7'f[na+f@SU+gYLT6eCW:(d@brEHWj3\UsRZ(U5aM@Jt]?6 +E*[$kOMAPqBLY3eLTRJOZCQA_O0PjVI9K?LFJ-t>eA&WAiSVns\Zi0;Z+.HVZa7'IZEjJ9s0B2A +s0;[3ZMq-/ZN%3.ZN%64ZEpn8ZFI7@Z6$?XYctC<['d6GZaI0GYcXk*Za63_X4He;r;HTnrn@DN +rX\u*rV4g>UqG10f@\g3g=ZDVs472$s41'!f$i1&hVHi6ccjnjbeg)e7Sdflc.BCaK8PA.DKV8Y +cGm)NG\p`0\[m?%][^ +!ri6"rr*Q1rVZWhl,BL"_pHlXb/hZGb0'\+>0P7:dFd1&aMc*06FP3N+5[Y<+U<" +@S0']5#R32LJfl`6"u!iE/oWd@ZIOH@SK0P3^@AWeC_jWaO8S`b/:g"^lI3hYl@2h>uNjrnmY1'&D?uh;@,H +hV[8Mhr*GMi8EMMr8.G1s5*e5rnd\4!T)`)h?)Tkhu2F3hu;I4hu;L/hu;L2hu;L2huDR4huDO7 +h;7#ei"P#)h;$oFgu%#Ch;[;*UU]4Qqu$Elj8T2[s8Vim&,lD'ps5_-\Bi[OdF6Unci2/gbPo`c +b>up2`5^3[g<@=D_:-Z)LMTFK9fcOYaJ*-5;e'<67p:h`^lCi47oE`OIT0$12`P$)ZCuAQI?JeW +KX](NccjMUd`]>5^Z:2hZ2O'huDR0huDR)hu)=4hqm5hhuDR5hZr#q +iSi_Pi8=Igr8.G1qqh>0rS@P3rnd\4qVM5/qqh;/rndS1rn[\5hYuC4hX9;$h>lI#hBh"5h;@/I +gYLc=]Vi$`oDJOdrVZWns8W)us8N#trr2lqrr;usJcDeNJ,~> +rr;rr%K65'qX)D(ZHV"WgYCWah#H41g]6+.g/?_djl"V6fAbr9FZiW6:b=_X^;ZFV>?G6OK7n)A +:fU(mPHC!R4[)P]O*Q)?OE59,\!1`4:.[oKFgpDof[/:1jP8>2_n:]@g@X/!h#,q+ +h#,q+h#H./h#H.,h#H./h#?(-g]?0brn@G.rS.;+rn@J/g]$"+gCi5ng"P6:gY:N>hV?rCgtgfA +h#,q+h#H./h#?(,h#H..g]6+,h#H..g]?0brS.A-rn@G.rnI;)rnID,rnID,s4dP.!o)GarnIA) +&_Ygkg=b9;fA,?>\t?@anb`4^ro="[rr<#lrXSf&qU2:;][bimg>1ZCh##h+h#?&*gtC0+i9KO\ +c,n>lgTm&g;G^LcBXH6jD,FVWDHg"MQH.1::c)'UCQsZ_=AV=OAt?W:Ir^@8JRjhYeD&X,e(*+! +`4Wq3f\>-5gt^W9f\6>[!Sc?-g]-%6gYCT=gYCQgY(96gtgcl&~> +rr;rr$iU#%qASe>Bi.Q$ +79P\NN`eA'88sK0GEn,*BpH#dBiRbo6qVO-hr2u'cI^^paM+mWWj94J\$Erj)@+ +qQ^1/ZEjA6s0D[2s0DR/s0D[2rj)O0!OB'2Z2h60ZMh-/Z2q;;rj2O.'!\[FZ*UdBZEppGZa@*G +['[0Gr3H=.s0D[2rj)L/s0DX1!4)O/s0DX1p9F\)rj)L/qQg+,rj)L/s0DX1*3uiTZE^[?Z*UmG +Za.!HZ*17,X0].'NiLXuqY^SrCtR7_ceIUBf#bkR +h:A`iFA>M06=d=HWG,(1C2-gF@?SOKPtWl,=_EhM>?"9[5@U%kW-`B7RXek+^Z*L[AZa@*GZ*L[AZEj).s0;X2q6L%,riuU3ZEjJ9s0D[2 +#I:\D[C!9IZi%*+ZMq3-ZMq3/Z2h61ZN%9-ZMq3)ZN%62ZM_'.Z2q;;rj)U1p9Xe)q6Tt(&$`=@ +Xfek3Z*_!M\[],VZi73NZEUI9\@AB#V9JE*qu6Tnqu$KorVlfrs8Doqs8N"Ks/>sJ~> +!ri6"rr*Q1rVZWhkJO*r_pHiVb/hZGb0'\+s3+Tjcd'_S_oL6^f<.Xb@]Z_V9O3[IDbNi1qVM80qVD50pYPr-k2$*ornIe8hVR/Ii8N\Rr87P4qq_>1ptc54hV[2Hh;/"c!8Ztt +s53Y/rnm>("5Vkkhu;OIhqd,Dhr!5HhqHlFh7fYohXgXBrVkjW!ri6"p\km*qu$67Tq8a>e'QIi +da6:_bKS/QrlkDc^Nhh\N;J<,ILc.2P^Rnt)D5kOK +:H +rr;us%fQ>'rVGj#W3XY#gtLQ>rnRP0s4dV/r7XZme'HM#l/T?S.;cQ)JlcWRV0Z3EF-`GS@pkA1 +[=h=RY1\k6?&l"QF*a@;BO6UrKP>t@`hdQ^Q.>[$j4Mc-f@eQi\\HGhf`g!\gtg`=o@s<#qqD,+ +qV2&*qV)#*pY5`'k1]mirn.S2gY:N=h;7&Fr7q>.qqD,+ptPf'rn@G.rn@G.r7h8,nD!uuq:ko( +p"TN#rS%A,g]#n=g">'5f\G<8gYpnuTX#R;kN$nE(u)&[s1qjRBN$%?$!HuP"!qJX*nuG +T6aY+e(E@)e^N%#d_i]5cI^e(g"bB:f@S[0gt^Z:T`h#?%>gtUQ +g=k<:h#?%.h"]V(h"]V(h"]V(h"f\)h"ob*gsb$Tg(W5og"P6;gt:B9e%)9Ucgq#1rr;uss8W#r +!rr9!JcDSHJ,~> +rr;rr$N9o$qN[LS]N4I&t5\D-rIRo'>#T`lH6F_Qfu;Zb*iXZ*CX@YHG(4YctD3Z3%A< +ZM_''ZMq03ZEpn6Z2h6*ZN%8nZ2h0/YR%M>ZEpmE[C3I?Zi@E0Z2h6+ZMq30Z2h61Z2h6/ZN%9( +Z2h60ZN%9+ZN%9(ZN%30ZN%0FZE^aD['R'G[]ls:VlR/0SW9c%n,*%]ro="[rr<#lrXeu)q9Yq2 +]@5E`f%A[.f@AFKfDjB.f@A(=\"o:dbjYH+rr2lnr;Zfqrr2rtrVc`qrr.KKW;hA~> +!r`0!rr)lrs83B$k/*jm`R3)VaiDEAaN=D's3(Ge:s6kp_8jmNa.5UOL=+GKBMj>LFAH"q[]tNj +A=_,t\n*1Lh1J@?[D.T2EJo6R?@@Q66tN.(MF0:D[F3FGbJV?GcGdH)^!,*_gt^`EiSXOh!8Z8` +!8ltrs4mk8h;$c?g]$".h$r5ui8EJKhqm5Ihqm5GoA0Z,hVR)Dg\fk2gtgfCh;-Wa;p3D.bfnATa3<#^goaQs4GCb\?8lDbO]"YmYJ6]U?Z)X;D`hOLm]B/IMT,#>GXH>1LhLR[ +PA!aYd*'b^ai;QPah"mnbh(Y,hVd;Hg=k?=hYu@2h>lBTh?2ZlhVJ1frn[V2!8[S.rn[V2!8[S0 +s53S-!8m>'s51fP.G`k;h;$c?hV[/DhVd%uVQeM?rVccoqu-Nos8N&urVccprVZWms8DnIs/Z0M~> +rr3T/s8W&qr;HHV`i$)egY:B8h#?(.h#H,6g=tB9f[nTtc-tG)e#?/*Okeg#F'O[#Ip-?H_7YkA +DlDIK`GdN#k`/\k^rhp^I$TM$BSV^`:N*ARQ;9i#`T#k4gXF^/g<[[K^Wb<`g"+g1gtUT;g"P69 +gA]k,gt^WagumGlg'-6bg">!1rn7>*%GT[oh:p]>gY:N=gY:Glg],t-g\]_)fbN/jg"P-8hUgH< +ft!`^g[Y.UHoJcDMFJ,~> +rr;uss8Duq&,>D.V6A(pf[SI%eC<%"f)F5!elpSPccXAUfA"WJ9K.s`g9>KtLnT/r?]_t2N+-Ru +f\=5Y/=5FT;L#joO_o?+K4\YHNFY[tWPOfn5CpZ+g=4Nkb0\AJZ)FY,\[f,QYd1O:Xfeh2Z*CU> +Z1tX'Zf\OnZfeXoYm%G['R$BYck8/YlCm3Yd(I=Za@$Ckct;sZEgh0ZMq3/ +ZMq-/Z2h0-Yl:p-Z2h0.ZMq3)Z2h6$ZMq2]ZN%03ZE^X:riI9FYHY:<[C3QQ[Bm*?Y->18Y-Y[K +V3[t%nbi=brVZWmrr;rsrr;lurVuipJcD\KJ,~> +!ri6"rr-^3s8DoikJ`jV",;5;X\W,PaiRWMYNX3.Vn +A:(2nbL1t_HGj2WKuCNMA9!6ID0:AG4uHA\H!rBhMn?a6^sC6LcH*c3\\H;;gtg`?i8EJhh#Q6C +h>c73h;$fag]-"*g\oq)h#Q=$h>>t-h>Q-gh#Q=&h#cBfh>Q1Dh;$`;gYCQ?hq6`CgUj/fh=CI@ +rVkjW!ri6"pAY*h%/%f:Tt8OpbgFkbc--+1s2t>arlS-^bg";N`QQlec,u>91KIh#E(s&OQZbJc +PJb"lDf:N1N)io +rr7-?s8W)srVlTW`i$,gh;$T8gtUT;gYCQ;g"P37f[n[&dF6Rm_OXt;YM[d7HXMo2Iq*i6e[gNS +L9].Wh2Nh:cYH49cbtWXI#`f&J;e_E5[\tmD*:FYbKe5Wi838EeB,P@_91<`g=Os1gY1B7f@ep4 +g$.2jgXY$Xf`Ts]f[p,Ts4@2$rRq)%!8I,!!8IJ+!8H5]!8I/"s4ID+qq2Y8f@JL(g">*9f@f$5 +\=U%\nb`7_ro="[rr<#lrXo&*pWoY3^=:cbg>(H8g=tE:rS(B,gY:H9gtLB/dF[FAg=N&k5@S>Q +HWXC&U4Gg:T$G?CH?tj]QXO6heCg6eC:M@Ajd0J%KQq61NnG<"\s8N#ts8;its8N"Ks/#aG~> +rVuiqs8<qOkSp`t*R``L3G'9"MP?hCXd++CUB!fM1iKIVjJ95LVSX!koX5;4VhTsHreAnkjUT1T(YctF? +ZEC@7Za-g>pTOV$"L58 +!ri6"rr*B*s8MujkJUbf\#GYCondZJNZjChJHO=BCL+etZq` +L;)3T\oSsA\4o8R_5D0ZF+SgeL4iqh8q;/1K4f;8f?V.LdETYG_8!Oj]u\[WgtLN?i83;FgtUW> +rS.A+s4[V1h;/"`'&;h;$c>gt_n`$f'Rph:gTZ40g]-(B +gtUW=gY1E;gtUQ;gtUQ:gtgfbh#?%1gtgiCrnID,s4dP.*8B3&h;$c?gtg`cHj_]d*Bo8b66&4bKS30b>l^.bg+DN`m35c^U8_X:k!J+ +G%PrjV0l6^[F`*D@WS*CKMc`gZDMn9G0S=R_LYm,E+`mCTS-ERXkq@Pd_ilBcH*Z,]?8d]g=kB? +gt102h;-l@rnIM.mbIis#i+7lgtgfAgY;>Ts4[q:gY:H:h;-ff"@ocde!D7s8Dlorr<#ts8W)ts8;its8N"Ks/Z0M~> +rr3i7s8W)trVlTW`i$,ggt^N9gtUT;gt^Zg=Os1gXt$* +f%Sj2f`'P(f^IK%f\+s1f@S[,f@\d0f_!ksfFHTef[nd0g=Op.f\+j+f)F>$f+-?^f%AR)f\+s3 +g=b03f`'J)f\,!3rmqA,g"=m.g=c>T%,'@ff@\a-f%A[0g"HAWs4IJ-g"HAW!SQ-)f`9\!faZTe +g"=p.f[na-f\+p0qq2/*g"G$1fDF5#f+?Tfg"=m/g3qYpNorr +rVuiqs8<"0L0n8Oe(q$C@ZA@^ +ah`9MKYLJWS&haTBR5MgJrP\$3)YN^IuSGs_;a+ibh1Cc_8*XcWN*,/\?rE>Xf\Y)XK8P,YHP17 +Z*:J1YlV#/riHg9YHY14ZEga>Z*CL8Yct=6Yd+23s/uC+#Ht85Z*CO:Yl:g+Yl1d(Yl:g,Ycn&1 +ric@+rN@-BXfSV+XK&A)Y-"n4Z*:F9Z*1@8Z*:F8Yd",1$a?nAZ*(76ZEUO:Z2V!-YQ(j-Yl1d* +XoGOBmg;`//2SUpZ+_Gd+`\J4tC@e^)?n@<6X0E07&X@VE11e_8g&bL4k[[&'LrZ*CI7Z*U[8X0&Y3 +Yl(^(YlCp)YR%G:Ycb.4Yck8%YlCm4Yck43Y-+n0YPtd+Y6D)4Z*CI6riQF+X/iA*YPt^(XV.h> +Xfnt5Z*CO;YHP+3Xfnt6Yl:d0YHY44YHb>.Y6hG/7Z*:J3Y5tl2ricC+ +p9=S#qQV]XYHY47YHG"0XK/G(YHY==['d9JZ`pR6Y-+n/ZF@69Q)2arr;6KmrVlirrr;uss8N!! +s8N"Ks/>sJ~> +rVuiq$iU"rk/!dl`6cfMaSs3baN;TJb0/&SrQJ6dcd^IdUi&e8XQ7TL=+$3Y`PT*j]?&LUg=b08hqd)CgY1E:rS%;) +s4[J,!87>)s4[\1g"G-7rn7G.g=cGYs4mV.#MRkcgt^W;g]#n,g]#n0gY1B7g&B_*gB60agY2JX +!8@D)%+s1`f[n^*g"Y67gY;_]s4dS-!8IM,rS.A+#i".hf\,$7g=lP\rS%;+s4[M-%,0CggY:H9 +gYCQ:g=lDXrn@A+!nl;]rS%\5g"P38g=b69gY2Y](YRHmf\>07h;$Z;hq>T6[+t9Nqu-Qorn[Sk +rVuosrr)lsr;-'1US#$?d*9n_c-=JUb59B^bYcR-c-4>La3N/X]!-lX;2:jERWa1UR<<4t\^nED +=`C.>IStp;\#tEJB$KGcWG,O[F(/sGQuc8F[bfEYcc*fBc,dQ*]#iRYg"G0;gXas.rn@G,rn@G, +mb@cq#i".igYCT=g=lAW!nuD`r7V_:g=k35gYCN9gt^Z:f%/I)rn.5'"PDG\f\6>ZrS%,&$ej:f +g>(K +rVuos%fQD*rV,QsW3ae(gXt68r7h8*"52>[f`'K-f\,-j/$7sDbXU7-F_^#.c!fA>3/d*g1T]"cJ?g"4a'f@SU)f@SU*f@\^, +f%&=%f)F>%fDjJ+f@\a-f)4/"f_a;#g&BV/f@JU-g"4m/rmq/&rmqD-f@SU)f[naHf`'M&edBsW +eCE'te(31'fDaG&fDjM'f)XJ&fDXA%f*L$^f[\R)g"4jTf_sG%f`0S'fF6B_f@\a-f@\d/f%8OM +f`'M%fE0XUfDX>Jf@JR+f[n^+f[n^+f@\[(e'ut!e_&O)g"b/fS[-u?r;6Knrr1aR'`J(3rr2lr +s8;fgd&*SNe(<.&g"?2T!nu>\rRt6*h;-f8f&#HBb.Wp8?'DD!V1=H+Uk!QK`8SapA:(JjM-Z7g +_RYb!ES0d:Zufl2IVj4pUjlg"_Wfk/f[%gjf@.aN]unpZf%/O/f[J="g"=s/rn%5&n(8'#f\"g, +f%8L(f@\a-qUbl$f\$,R%G9:af%8R,f@S^/f[\IMeGn&,eCE.#e^i:$f@\^-r7Cu$s4@;'$eNt] +f@ej0f%8U,fDaG&f+Q`hg"4g,f\"g.f\+m-f%8O+fDaG%f)aOUrn%5&pXfr,f\"g,f%8L(f@S[, +fDF2Ff@\a-f@JR*f%8O)e^i@(f[n[+g!I4)Xj?P7qYpNorr)lsrr)coJcDSHJ,~> +rr;rr&-)V,p?9MnYfbSLe'upteGe"ue-"1Le^XTI=ObpUgN#6(Ybf1Y-5"3Y-"l* +Y6;)5Y-5&.Y5b^0YH=t3Y-.Z*s0)j5Xfek0XKAV-XfVH'ric=(!O&[*Y5ka!YQ(aGYd(I;Z*CO: +Y-5"3Y-"e,X/`5$Y->1:ZaI3JZ`sG1&?W%8Z*q!3PGQRpr;6Hmrr)Zl!rr9!JcDSHJ,~> +'E8%3rr)fps8DigkJEpl_p?WKa8X(ea2lEGai_lRbKA2Vaj&Aeb*c6k=,OVh>#L9FH=M/o\uq!5 +Bn!5'VJ8nIZ_Kon]Zc1$Ar_CM?@@`P;f8P>Q?$2KUW(Bp`Q6'=bKRo6ZF\-,f\"g.gtgc@h:p]< +g=cDXrnIJ+(>.06g=k32g"P36g"P38rRq\7g=k<:gtLH5g"Y66rn@;'s4@V1g=k<8 +g=b05rnIJ,!87A(s4RG)s4IS.f@\m7gA]b0gY(96g"=sVg&Ke*gDehuf\+s3g"=s2g=b03g"Y97 +g">$5gtUN8g=uV\&)5gkgY(63g"P-5gtUQ9g&BV)g"ZJZ+kbN$g=k65g=t?7g=k64f[e[-g=b68 +f@o*6\Y6@`o)/Faro="[rr<#lrr;k&p!0A+\'<:Ecd'bXc-4AQb0%iJb0.uNbK\8Q`l6'Db/1iW +-Yg&Kb8g"=p/g"P07 +gt^Z;f\-8Ys4dk6g=b35g=tB]gAfn3g=b37gYCQ_g'?6\g"Y97f\-8Xs4d/!s4[P-rnIA)s4ID+ +r7M/*g"H2T+kbT'g"=p/g"P-3gYLDmVm4\@rVccpr;HWps8N&urr2rqrW<-!rdk*Ms*t~> +rr3Q/rVc`or;??Ta/?8ig=k03r7Y<,f\+p1g=Fg/f[A@.iRO`37UhY&Zt3O/U4mK:Y/Rr)f%8I#e(3+#ebn"tfDa>? +f@\^+f%&@)g"+a)e_&O)e^i:$f%8R*f%8R,rRW.Df@S[.g"4g)e_&L)f@JR)f%&=%e^`7&f@\^, +f%/IPf`0P6f%&=#f%/C%f%/C#e_/[.rmh;+f%/I(e^aZMs4@8&)qNQif%/I(e^`:'f%/C&f\"d+ +e^rI,f[eX*f`'J5f[n^,f%&=%f@JR,f[n[)rm_#"r7;/(e^i@(f%'cN#M%DVf@JF!e,Iksf*^!Y +gXWa(ZeP$Ir;HWTrrW3"s7ZF)qu$37V51fRf$i7'f@\^-f\5!Vg&Kc*g"P9=g""U)gY'usU1$f@ +YJ[,XJ>S?EG`fMe^4]d>Za4sXRH!#TW(9aaeAI>ZFIS%sDN0iuB9C9qgt($*dEpFk`4%f)!u(f%8O)e^`7%fDF,!f`'P2f@JI#dF-Ooe(*+Kf)O>/f%&:$ +f@\[,g"=pUf)F>%fa$0]f%8L)f\$2Ts4@P-f%8R,g"?;U%+NbVf\"d*f%8O)f\#`G!nPuTrRV#! +s4.8'f%0`M!7q/$"4l#Rf)=/!e.C0]f@JL(g3qu6Wprr<#trr;uurIP!Ds*t~> +rVuors8EN+rV,QrV6A%mf$`$se'nXDbZ_Q[HOP+I5>I]C5lPBq2% +[EG[l.4X0&P.Y-.c-rN6O3Y-+t4Z*1:1Xfnr*Y5>=+Y-5(5YH=q0 +ric@)riHs;Xf\\+Xf\\*XKf%6Xf\b0Y-"k0XKDH(2Qs?hYHFt.Xf\b/XK8S.Xfee.YHP(1XKJb2 +YH4h-Y-"e-YHG"2XfSV+XfSV,XfSV+XK8P,r3$O3Xfek2Y-"q5Yck75riHg:Xfeh-WMZDhZE]jW +WRUD7rVulrj8T2[s8Vfls8*2tcD75IdF?RneC2nDeGn!"eCE+!e_&O(d*L1leBGq'>tT1=^RoLn +U5E]-NO7-FJ6@-#YBEd.hUpAS6qjH(^PcQ?Q\/^^M2uIaO2^#/e'ujncd0V;Tq/$^YcY%2YcXn) +XKJ_.XnAjsXU))3XK/G)Y-"htY5bU)Y-%Z(s/Qs;Xf\e0Y-"k/YHkFYcY"/YHG(5Yck43Y-"k1YPt^)Y84:CY-5%6Ycb15XK/J,YHFt/YHP+4YO8Ot +YHY77Yct>1Xu3>aXfSS(Wi<#!Xfnt6ZF%$GZ*(1/X/rA&YdUj/P,-@mrVZZorVliqrVuior;HWn +rVulrJcD\KJ,~> +')qq2rr)fps8DigkJEpl_pH]LrPhIMaNDZIb0A2VcHOJTb/_K?PX[]5?Xm;mCPA_!\u(?o +:LeEU95V,MF>74;`HaU`Q[2V9OK"CW;-%+0;JM]Bg!@XVbK9b($c9Ka]Z&:Nf[e^1h>Z40g],t2 +g"P05g=lP\s4J":g"bE:f[nd2gXt-2g">!3g]#k9g=b-3f\,!4f[nd/g"=sVg&fs]gA0D,f@\d1 +g=b-2qq25,g">!3g=b0Yg'QE`g=t<6f\,$4rRh)%&D5[ig=t<5f@em4g"4m2g=ZDXs4Rn7f\,!5 +g=k64g"P-4rR_A/g"=p/g"=sTgAfh.f\,!3rn7S0f\,!4g"?;X(YRNrg"=p-f@em2gY:?6h:K32 +[+b*Kr;HWTrrW3"s7ZHlq[`AFUnG3Ad*9n^bf\/RbK9_*rl[jTbKS5S`koU3bK\2,Ce7E9Bin>e +Z&2n,MQXmlB2!c`UKp6KhUouC=%$D5@8C6kXG0h`H[oXBSAEV$c-4MV`Q6$2[(406g=boJ!87;(r7h/'!87;(#hdqcg"=s1g"ZJY#h[hagY1?5g"HAV"khP]g"P3Yg)Seuf%8U/ +g"=p/f\+p/g"Y67f\+s1g"P-5g"G$Tfb`Asg"G!/g=t93g>(H9f@\g1g=tB9g=c;U"khV`gY:H] +g\fe$f`Km\g&'M&g&KbIg"=p/g"P-2gYLDmVm=bAr;HZor;HWps8N&urr2rqrW<-!rdk*Ms*t~> +rr3Q/rVc`or;??Ta/?8igY:?5rRqD/g">!1rRlYOf%/@!d*SF_7:0eIAmKeXO`P]-Zc9thQ#0]B +I;`/2_8h$fCrjtW89q"d?tc()f%8L(f@JL'f)4(ue-4CR +f%&:"pXT;ps4%>)f@JI#f%9lN/D&J'eCE(!e^i:#e^i='f$r1!f%8L%eCW:$e^W1%f@JL'f@\^, +f%&@'f%0fM'%b^beCE.#e^rF*f%/C%eCN4$rmq,"rmq,"rmh>)f%/L)e'c_Ee-sp[e(37'[[sh[ +nb`7_ro="[rr<#lrY#,+pWo\2][PH\f@\^+f@\a0f`'S'g.9oNgtg]7dF$Itgt9#\&0S9O^i*ZMf3g +rVuors8EW.rV,QrV6A%nf$`$se'lgsec+%rePjrFda6:`ba_Bn>@qVZ=a6KsDfUf?_SN@:Bi\to +CJo8f_g=@V`6+3Y-+t4YPt['Xp;)4Yck77YHIi-&?`4?Xf\b1 +YHG"0Y-5%3Y-7f,s02L+s02O*$*^\6s8N#XrrW3"s7ZHlq\/\KUnYHJeBudqe'c^qe^W."eC=KJ8CZ2@f[\?mbg4hke?F'n +=)`.d>`6+SAp0Yd(I;Y-"h0Yct=6Y->+3XK8V.Y,nb-XKAY-Y-"h-qlL[;YH>"2Xfnt2Xfo"6Y-"k1 +YHG(4Y,n]"X9GZ+Xfeh/p9$Za$a:XK/D'X/iJ4ZC[5Tc11c1rr2lq +s8DorrVZTlrr)fqrr.KKW;hA~> +rVuor%K?D,qtB6kU8c#UcGmm'`EC4$aiVWIbfnD[bg+JO^r"3U3_4=(;H.V)XH\'eS[QM\_52?T +CsK(NFRgAN,jBH^93E'853&kNka9#bf.WHb/V?9^Ugth`R*5ge^rR2rnIJ,!Sc?- +f`9\$g*PG+gtUK5f\5*5f@JR+g"G*5g"G$2f\"m/f\+s1f@JU-g"P38rn7D+f_sM2g"P04f\+s3 +g"=sTfb2off\"p4gY1B9hVR)Af@S[-g&B_*g&0P(s4IA)!8@D)!8@D)s4A(ccj\ZbK7rNb/sM&Zk*7L9S4TG'f@;KT*.Maj\PYdEBGI`4NCfaOJnqf\5*5 +f%&C+g=b03q:Yf%rn.M0g"G*4g"?8W!87A*s4[h5gY:H9f\5$4q:Y]"rn7;'"4u,Ug&B_*fa-6a +f\"p4gYCN]f*'a[g"=mTeJ?chf\5'4f[\R*f@\d1g=Y$/f\"g,f`'S5f[eU(g"P-5gY:E6f_sM% +gA]b*gAKV*f\+sTgAfn2g=tB9g=Z#Nrn7>*);3Znf@em2fA#-2];W!_oDSUerr)fps8W(Ls.97@~> +rVuor%K?>(r:oU!W3X_&g=FpTfjNOef\"g.f\5*3f\+Wpc.&7P;gr^l?[JWYT8&K,_9gcWY_$4i +Bl/$jh8OtXNQ050DO%MqIYtPU\sR>6=^Z'7bN7pAe_&^4f$Vgd_na.0db!!rdacmteCE(!f%/CN +f)O>(f[n[(rm^u"rmaHhf[eO"e'upuf%/C%eCE'ue^N$ue^W'reCE+#f@JL'f%&:$f%&@$f%/@# +e^`7$eC2sueCE*udaZdsf@SU)f@em2ec+"ueCFQL!nGfNrRMV3e'upuf%&=#eCN7%eCN:&e("St!7q&!s4%8(f%/@#rRLr!#h@GSf%&C&e^sWJs47G*e^`7$ec+&#e'car +rmq,$'\:mef%A[/g=b$,f%&@(f[eR#e'n9G"P;5SdaS3Frmhn9eC<%!e'ljuf@JI"dF-Rre^i@( +e^W+JeHFITf@JRQec=>$f)O8'f%&=#eG[qted'aTeCE+$e^aZN!7q,#s4.;(f$r4Kee?T_e'ut# +f$r=)d(#pRcLLf.rr;uss8N0"rVcZnJcDSHJ,~> +rVuor&H;_-r:fKsVQS%le^;godaIs@BcdIRt?Wq^!+pGXF=AYASH1Z +fti,HM8IAuC6>ZaHA8]E[ZkK&+4riH+%rN-a9 +XfSY+WiW>*Y-"e.XfSS*Xfel,YQM)5YHIl.s/lF-YH[u/)R-EJY-"h/XfS_0Wi2ehVm*@nMl>+m +qu6Wpg]%?Ss8W)ts8N]/qtA@4UV"n%d*pIldF-Ooe,%Qpe'umue^2Obd+6q&^R9@[?s$ZYX3.Al +Mke&/Y(_"ha0Bu.WT2jXYE=!)Y-4t-WiN;* +Xf\]#XoGR'XTGZ-XT#7$WiZ3%!3H+#!j&H'riH.#!3H+!&ZVn6Y-"n3YHY45YHP+2XK8Q'YQ_;; +Z*CO:rNcm;YHG(4Yd(F9Y-"i(Xp;/5XK&>&X0)B(ri?@,XK/D(Y-5#-X8oF%YQV8:Ycb/.YR%G8 +Y-"b)X/i?"Ws,N(XKAV+q5s\"rN6+$$*1)*W2ZetXKJi-ZN%-NY,eS'XK/G-[BcEgV9ST/qu6Wp +rr;uss8Muqrr;usJcDSHJ,~> +rVulr%0-;(p?0>fW56d(a2e2!4iPF^aiMWJb0/&ScHF/Ic,k\t?DEsNPb>S.\uMmDaNi2W];1OJ +P+8Yib.FUP[(jVfTs2)1WNa+T^TsI1NYn%fbKRrBaNMZE`Q#j1\$`igdb!+#f%SmXgAfh/g=b-1 +fDaJ'fFurmgYCQ;f[e^0gt:65gtLH8g=cJX$.mb\gY:E5f@\gVg],q>g=Y'2g"4g,g"G$2f\+s4 +g=k3Vfb3#ogXXj*f@\g4h;7)MjlPIUf`'P.gtC?4g>(E]fa6Bbf\+s1f\+s0rn&(BgtLB1f@eg/ +f@em4g"=p.f\+s0fA#'4rn7G,f\$2W!87A(&)#UggY:H7f@\a/f@S[-g&BY(g&9S%fDjM9f@o!0 +f%S]dTsWSFr;?Qorr1aR!ri6"rr2rt&cDP!cD7,Bc-X_[bf\&Mb/qa&aoBFRaiMNEai29Bbfe,I +^U0f#Lkh7u_oK6aWOTpe]s4H?_n)bA^=CZO]tC>,Pb"SX_7d"LXgkpFYeIfhdETe[bJM69]!]/j +e(FWP"5)5VfDX>%fDO81f@\a/g">$4g"P05g=lJXrn%D-g=k66gAT\*f\-8Vs4RD(s4J[Mg"G$3 +g=b-3g=tB9f\+s1g"Y?;g"bKBiSN2;f@eg.f%A[0rn7>*-eR,,gY1E:g"+d.gY(65h;$]8g"G$0 +g"G-7g"4p4gXk!,gYCN:f_a>)f\+p0fDO;#g&K\,g"P05rS%8(!8@(u*8&rtf[na+f\+p.g>(/g +Vm+YArVZ]prVc`qs8ITLT)X<~> +rVuiqs8_@h]ZSUE^8h1$*21.!f@/1$gtC90eBuFS]YM\>f$i!neC;sreC4BG!nGfN +qUQ\=f%&:"f%A[+eCW='e^i=%eCE'tdaZn#e^W'tf)F;$eIpH_eCE*udaQaseCE(!e^rC'eGRks +ef38nda?LleCN:*g>(TEiSE,8e^`7'e^W+"f[g&P$.dVUe^`1!e^`.Je-=OWf$i$qec+&.f%8O) +e^W+!f%/@#f\"aRf)jORec+/,f%&=#e^W.$f@KoM"kD)NeC<%JeGn)!e,n1OeGdqse.'jWf?r(! +e$kpTg[Y1=rVkXQ!ri6"rr2rts832td&*SNe(3!uf)F5"f)jUVfDaG&f1=QGf%AX)e_/^2f[S3a +ZCdAFTt8Ru_QpSed*]qIZ+\H%ZEMC.h9jSf%8O)eGducf%A^/f@f!9hqZc3e^i=%e^i='f%&C(f$r7%f@JR*e^Dpsf@AC%g"=j(e^`0u +e^`:'e^N($f@/-qf@\[*e^i=%r7:nu%b0%Ye^W*te'ujqeCE+!rRCu#e^aZM$J!_Yf@JO'f%&:" +rmh%us3hM/f%&7#f[%%&Xj?P7qu6Wprr<#trr;uurdk*Es*t~> +rVulr%KHD*pZ]\pY/o/DdF-P?e,RiRe'umtd`]tdd#C/!WhGcKVngWpZ*_?ne_&?fX-]'=UU8(h +_QU5V`m),o\&#MX\Alb5\u,Im*1sppf$DRfe'H7\a2GQkVl6c*Z`^7)W2QVlW2]cr26!UVXKAS+ +XfJM(XfSS&W2cu(XK/V3Yck:9Yck45Y,nh4Z*:F6Y-G7;ZELI:YHG+6Xf\c(Y6V;8Z*CO:Ycn#0 +*3lfSXfSY.YHY@?[(!TX]XY5LYck=T*XKAW(X95T+X/c-!riH+"s/Z7%Wr/ptWW9+!WrK."W`Q:(Xfnq2Yd(I; +YHY:;ZE^XYHG+7Yck77 +ZaI-CZ*Ud>XKAb5Yck42XfVN&$`^8-Wi<"uWN*##XT#7&XKAV+rN.oXXf\Y(X/`+rVPgDoXKJe4 +ZE^X;Xf88!X/`2'['?3cV9\Z1qu6Wprr;uss8Muqrr;usJcDSHJ,~> +rVulr$NL)&p?9DfW56d'rl>&Ys2A3`aiMWJbK7fF`Pp$Kag6.VF1T3&^qRq=b.tj7c-=SZ_S3dp +[_9l0`PKO=bJ_KC_oB^6`lcNJa2Pm.]t:r"cG[B1ai_Q>`lcB;[^3Qce(<4$e_8d2g"P-Vf`'S( +fGWDth;-i=f%/O2h:C3;ki:LSgt:63f[eR(rnA.?f@J[6iSE,:f@/4%g""U(g"=p-rn.8*"k_GZ +f\,!XfcAl&f@JR*f\53BjlkspmHs)rhUpK8g""U)gt:30rRi"@g"+a-g"+a)f%\s2eCE.$f\G9: +gY1(f@es7gA]b3f\,$7gY(31f\-5Tqq(o#rn.2$s4@q8g=t0/g=Ej/ +[+k0Lr;Q`qrn[SUrr<#trr$8jQGUZ +f%/I*gu@P[i8s4flKI3\f@\^(eCrmCjP\nLf[e[1j6#L`g==^*g=b3 +rVuiqs89eC2dke'ugpeG[kqeGn(u +e/?fff\+m+dF-V!f[81)j58PBf[\I$eC)^mrmqk7e'ch&h:^9*e'H@je^2[le^W'rrm^u""k;#N +eCE.Lec45?e'c^oeCN@1iT0+`l076bg=4X(e^;anf[S?urRDM2e^Dmre^Msodb!+"d*^:ieGe,# +f-AhpdaHXodEp@of@AI'eC)doe(*+(f%/C%eCE1'f@A@!eCFNHqpYbteCE."rmMD-e'ch!daQgt +[[sh[nb`7_rn[SUrr<#trr<#ur"8\MVPCcOf$i1#e^`7&f@\^,rn.8&;:sLOf@SR)gYCK2cdLIo +`P974gYC3&cd(%og""HpdF-@cdFQt$e(3=$_916Ue^Vskd+-e#da?Led+d1$gXjcuc,73-a3`>d +eCE*udaHVCe,[tkeGn&+eCE+!e^`0ue'unHe,Ii#e'umte^XTKs3q5&f%/C$eGe"ue.^B`e^W1' +hrEVGdF$Cmg#(oNh;\Fs5NUbSe^i6sdF[77iS<2?e^N%%i8WeSf@&'sf@JR0j5A\Df%&3sf\Y]I +f$Mmte]uCdf\+j+eCE+!eCE.$ebmo)e^W*te'ujqeCE+!pXKW#e^`7$e^W.!e'n9FrmMD.f$r-u +f?^q%Xj?P7qu6Wprr<#trr;uurdk*Es*t~> +rVulr&HD_-pZ]\oY/o/DdF-One'e3D@+*NQdEg+_c-k=n]7*=t_TBj>`mNMfaN;fZe^r +Ycb46Yd1L:Z*U^=Y-+t3Z*q9V^VRe+`kK!lYHY@;X/rP1YH4n1Yck:9YcOt1YH=q-XKf(6X/rG* +Y-PC=YcnY@XK/G)XK&8$Yct:6YH=l)X;7tDZ*1C:Yck79Za-gSdaZ^kdb)dW`m;uYd*0YVcI(%abfn/Pf@A@(eBH(P +ZD=+fW;N[uWi2kqrMfjsp8\%k"KJN'Wi>fo#-"W&WMlbprMTgtWiN3"W]$r\YHP+6Za-jA\A#em +[]ls?Za[Ze^q%5!`5BF&Z`pa>XKAkB_8!Um[Bm*C\\>hq^9t2LZMq6O]>D:l[^EHHYdD*\^U:8M +[Blp4Xg>@l&~> +rVulr%KHG*p?0AgVngR#`lQ7#`A#N`5T^;cHF>Sb/VH;]=>MndF[()f\$/S +rR_,%r7D;.f\"g-f\+s1r7UVm"52;Xf`'M&f_j>:f[na/gXt-4jRDm2iRZH,fA>c`n)`j5ml'Om +gY(-)eDKT_nEAlef@8C1mI^&9h9s^&g"G3Fo'PPrgtC3-iUHU1hUU65g!J$ogt^T8fDX8%f@\aT +f)jXWfDaJ#f`0V)f_jG&f`0V*f[flMs47/#!7q/$'\M!df@nZ`VQeM>r;HZprVc`qs8ITLT)X<~> +rVuiqs8<<"lc?$1bh1Rug"H>V!nZ#TrmiOKdaHFfhrDt^J8CFlgtgZ7f\+m+eCN4$f@A6tg=Fa( +g"=a%f\G0/ec+2#eHOUYf[\I$rn),?e^rI'd*gS"e^W4(e]bh?^<"^Nda-7fe'ZUmdaQ^qe^N$t +e'laneCN=,f@/'mf%Sa$e*$>ii7lu6d+$RmcI1:qg=k**e_Aj/d*U7dbgk7icdUFnd*L+geC;so +d*^=nf@A?ue'lgseC7OJf\biUlK@f[\HudaQaobfnJaeC2stdEp=hd*U7ke'uptdaHUqe^Mpoe("?EqpP\re'upsrmD>+da?Ut +dF-Up\"C%^nb`:`rn[SUrr<#trr<#ur"8\MVP:`Pe^E%#f%/C&f%8L(pX]`&f\+p/eC)n#g&BM_ +fA>60eCW7%g"G!+f%AR&e(<7&e'lt(e^E.-gXk$-e^`@-f[\L$dam.(eCW:"dETVC^;eLKeC2nE +df%VpdeqQ,eC2mpdaQ^qe'umreC;sqdaQ\EeGI\re^W(FeGn&#eC2nGeGmu3f%8F"f&,f`l.jY1 +cd^_3nEf/tli-66l/1+Dda$7qkjRp#hq6H*e)'B[n`STOcICFrg?%bfinW2:dF-k;o'4oTdFZml +ajA\me^W'teC2mre^aZK#M%;PeC2mpdf%Ype,[tkeGe"ue-+7Me'c\Ce,@c+e^Mpqf$:_!XNp>3 +qu6Wprr<#trr;uurdk*Es*t~> +rVulr%KHG*pZferXiJr@d*pJ?dO`eoda?@cb08VtaesN!O2]c)e^Dste'ZOjda?Okbg=qhcdL@n +cHk"mf$DbCe,Rg+7Z)t.3 +YHkR@Y->+5Z*F;4'Y-,"6YH=q0Z*:C4Xfel+XT>W.rN6(#s/Qp:XfSY+W2QVf +UogehNN(CpqY^BmrVbRP!ri6"rr2rt&cDP"c_[>GdF6Ike'cXkdaHP9dL"=MeC2jlc-Xtirm3aU +g=FQre'ZUof$hsneC)[he'udkcd^RpcIU_$e'c[ld*g@icd'k^d+-Uof$hmd_6Ki0U8P#kWMlfp +W;W[qW;NV.Wi;trW2ZesWN)ttWiE%sW2Zbrri,pr"KA>tVPa?j,,V9:WN)ttWN*&&YHG(7[Bd$E +^s1l&~> +rVulr:]LFlp?0AgW56a%`lQ6?`5Td=aN)EFaiV]J`lHW[^7g@9SA!7oaNVlKbKe>RaN;TGai_`I +bK\2Ob/qcKb/_TGbfe,Lb0%fGaNViKa8X-_ai_]E`r1W?f@86tf\5!0fA5WZoC(i#ip64-k0qc6gsaR$hq-?.e^W+$s4]Nae_K!7g"4g/f?r4) +f$iC'3gY19-cd1(kg"=m*e^rF%e(3.&rRM&%f\$2T!7q/$'@tdd +f%8O)g>(90g"!^/[G19Mr;HWNrrW3"s8N#trtYJ/p!0A+\'<7Cc-=GSb/q`FaN2KFq8a&daN)9? +b0.lF`lZ&!nc,Vqq1r%!8.5&p"92q"kVD[f\"gTf_sE(f[na/g=Om0kkG&Kk1S85 +f&#cho&A`pl0@[*lf6dNeCipPq"=%8gt's+j7E9HmblL=f@eg6meHJ@j5&D +rVuiqs8<<"lc?$1bh1Rug"H;Us478%rmh&"1t'k3iQA6ePH;s_g=4g.e(<=+e^W."eC<("e^rL* +e^`1"f@JF#f%AU)eCN4#e(!%%eC4EH"kD8We^i@OeeQ]^bJLp+`m<,^cd1%gdF-Ome'umtr6p&A +dF6Xug"+Ttd+-e"ce%R^pugJcccsnfe'QUrg#(fEe^N$sd*L4qe'Qe#d*U=pe'?4adacdjcHahg +g"G!+d*Btef$r0tg#MGflf-aWkO7m!cd(1qccXble'HIid*U:of@&(!g"+^&dalmle(<$ofB)/N +f@/0r+kG?$f$D[je'ZLkf@8@&f$hpfbKnVeeC)^ke'lXhdaQ\DdN-fdeC2psdaQ^re'lane'cXo +f[8-ue$ksVg[Y1>rVkXQ!ri6"rr2rts83B$d&*PMe()mtf@JO'f%0iPs4I/!%bB7_eCN=,f@8@' +f@AF&rmqJ,eC2pse^iC+fDa;"f+ZZ^eCW='f@\a,f%8BueC`C'f%L&V'%bU]eC;pj`4j"+cd^Im +dF$CkrmLep!7Leo!7^qqs3q5$eC;sseGdqpe,[tseGn"teH47Nec+&#e^W+!rR4cre'ln!da6S* +o(__5eBZChgZ\A"hr3_[kN_Hui7ZQ+f&?#go'5/cda-D!nGN%Fgs+$ke^W@=o^V,%g""I"j7N08 +hUL',eBQ.]e^i7"e'c^pe,.W%e^N$ueC;sreC2nAeGn"te,[tseHa[Te^N$sdaJ-Dr6u5,eBuaq +cF0LKcLC]-rr;uss8W)ts8N)uJcDMFJ,~> +rVulr&-)Y,pZferY/o,Bd*pIldf._qdK%YndJqX.cHk>&`i,#[VoI?>d+$Rke(3$rd*^7fd*g=h +e()modEp:ida-:geC2gldaHLgd+$Okcd:+ge()poccsYVb/_H5YG\:uYd(=.V5L5fV5L8lWMcVl +WN)qsW2Q\sY-"XtUSb)pY(*CTaP#+^]",&IZ*^jA[(!T\_Rm4]['R!?[(XfSS(YHkI9XL#:=Ycb+5Y,AG. +XfA\B_7-\OXK8Y4[BQX0Xf\Y(Y-G16Z*=nDWMZPmYHb:6XfS\-WiE/&Y5PI&Y5GC&X/c0"ri?d8 +X/MqoTqnfnRuODrmeZk]rr)fOrrW3"s8N#trtYJ/p['@*Xe`# +rr3]3rVc`prVQaN)<@ai;<=`lZEH`l6!>a2lC%a8a-saN;K@`lZ6<`5T^5_nNXg\\uhEeC3"&g=cDX"PD>Y +f@^#Q#MIhcg"4a%f)F?,iq!-LmbujHd+6t.hV[;Qm-s;uf[\O'gZ%DUi8rnKg#(cCe'QV!h:L*) +g"bQHjP\hFe'cduf$r4)kOS93i7HN8l0RBSced^:e_fKEg"Y0.dFdC9gtL`G/)K4AgXjp&h;[/= +hh>Z13g!nL$rmi@FeCE.%f@JR*f%8O+f@JL' +f\"d.gsjg*f".Wbg[Y1[QUs8W)ts8OkPqt/..T=2thbK\8RaiVWE`lH-@aN)BCa2lBB +`Q63C`l?*Cai;<>`lQ9A`lcBCaN=D$4iYO`aiMHCbK%ZFa2c9Aa2l9?aiMKBaiMB;aNDWHb/q]F +ai;-/\\6&2f@ed+f%A^0f@S[/g=Y'2g"=sOg&BXrg&0M&f)s[Wf@KfM!7q/$9@hVBh!4V1p?UYi +f%&R@q=!%ki8AJ,~> +rr3T0rVc`or;??VaJZ;df@SO*gA]b)fDjDEe^W+!f$i$rhVZ_pZF%BlgY(',f$r:&f%&:#f@SO% +ec+&>f%&:#f$r0teCWC+eC2pueCN7%eCE$tf%8I#e_&IPeIU0WccO#8^;nRJdE^(de'e3Ds4%"r +s3gno#L_,Pe'ZIcdJhX(H7e'H=mhU^*- +kN:LIdF6\%i8`_Jf[q%ldEgJ$gtpuGg=+9hdb!7.g"4m/e^2XirmCttd*^:je,Ic4e'umteC)am +eC2grf[/!qd^YsXg[P(;rVlfPrrW3"s8N#ts8W!'p]JrmLep:"%A6fB)Prn`AKRdF-_4 +q!?YchVI#Il0[cleCE@9m.'W3in2Z(dbOBmp#tA_bL4kghX'q,lf-XJdb3gTp$Lbnf\"a%cHjne +e'c\De,Rqte,Rr(eC2preC2mpde2)hdNm;keC2sueC;sseC2joe'c[ne'c^pe^MmneBPCrX3L/2 +qu6Wprr<#trr;uurdk*Es*t~> +rr3'!rVc`p$iB\aa/,oYe'lXleGdkodPfM"d*^:fc-Y2!c+0s[]#iORcdC1edF6Ojcd:.hcd:(d +cd:(dcdC1ecHjhceC2did*^4fe,I]Acd:.kda-=iccaJRaMbs,YGS1tZ*:=,V5L5gVPpGnWMcVk +Vl6Jjrha;*WMubjU8+WcXKK%Rf@\3Y[]Z^;\%9/_]tqe6`k8[`Z*LjQ_nWn%]).n[^3-=YHb=8YI;[QUs8W)ts8NK)qXr.0Tt/OucdL8>d3?rbdF-IjdaHOke'QFh +eC)^jdacgncd:%ee'HCidEp=idJhKOcd:+hdE^1id*U4gd*^4edEg.edEg+ad*L%ee'ZOidEg4f +b.b*VTV/-[WMcShVl?VlVPgDlrhfgrVl0?h"fJ;tWMlcnW=#T%Vl6MjVPg;fV>[7mV5C0iVu`lu +riIrYYHb=9Z+7s*g!e$W\?iQTb1b.N]"bqm_o^6J^9tG``m3&^c,70%[(4*+jkJ,&\?Z%D)T:+Z +ghVP^2eVPg;hW2QWgW!9/uW2?GiVZ*A!V5C/i +X0&P.Y-"e*rMU+%V5^Z$S<9Sjnbr=_rX/])rr;urrVlirrdk*Gs*t~> +rVuor&H;_/qtB6kTVoQJb/ME@`5V\p(WXY?ai_]B_T0mFahk^&]u%h1`PojH\9 +_o'R:`5]p=`Q#m=bK7`Ba2l?Dai)0taT'?b`kfU7`W!dd`Pf^0\?iZ`dFQgqe_/X.r7M)%rmh)$ +rn(r:f%8O+f\+g%dF?h,kO/'?o&J1HdbEsLj58tYj!X*Shp]m#jQYRR +hWsC[e^iI2jQc.!kN(UWf%&gFkj%O"k24kEh;eLus5saOi7ZW0e^i:#e("BJ)V*Eie^i='f%&:# +f@SR+gXFU&e[qTag[b:?rVkXQ!ri6"rr2rt&cDP!cD7,@bKnAUbK7iHaiMO%a>M#Za2c3?aMu3> +b/qcH`Q$!@a2Z0Ab/VHA`l?-CaiMK@`5BU:ai;EC`lH6C`l?!;a2Q$8e^;t-nak_if\krUlL!p!gX=I!g?nh,kNgpLdaQh/mdp#: +jkJ;9hs9h%md92pg"4p1f)=(uebn"ueI0s[f@JR*f%8R-g">rM$J?CWoDJOdrr)fps8W(Ls.97@~> +rVuors8N&s$M`r-VQe4of@AO,rRW">e^rC%eCN-qcI:G"f[7mbbgG"meC<%#f@AFNf)OAKeCE1% +e'ck"e(31%eCE($g=Xs*f%8O,f[SI(f@S[.e^2aqf%'cL%ar_H_7@5#dF-CdcI((frR1_prmLhq +"k(cEcd:&8cI_+[ginN#5g"tcMj5T+YgsscudF-Fhcd;[>rm;P1e'lgqdEp:i +da6Orcd1+i\"L+_nb`:`rn[SUrr<#trr<#ur!E,EVPC`Me^Dstrm^u!44i$5f@JR)f%&@'e^W1' +f\"g*e^rI)e^iC+f%&C&f%A^/f@JL$dad"&e^rI(f%J[*e^W.$eC<(&f`'JJe^i@'f%AU*eCE'r +bJ_34`luiZdE^(ce'cUidF6RldF-IjdH]0[d0%hGe'e'@s3^ttdaJ-Bs3aNcbK\Jik3MF#kMb(@ +dFdXVlI"&4eBlb)nFGMefAG`Ql0R]rg!J'of^&G%k3:XFd*^G(mIB]3j4Vl1gudqfkiUjWeC)jq +dEhg=!n#KHrmUnq$J!YTdaQXndaHOjo$[Qe!7Lhp*7E +rVuor&cVh/r:fKrUohYbda6FkdF$>>d2(0Xd*g:ab0SSge',hNa3;rYcd0tddf.VndJqZYcd:+f +c-=\bcI(+fcd:"ee^MjjdF-Ime'?=gdaQatd`p+cccjPSaMl'/YG@tqZ*C@+Uo(#cV5L5iW2BQj +s/#srUnjc\V#I32US4EYXL5^ZbgOhRZ`^L<\\Z8&_T:*QbeLTn]"c/&ai;?C_7$tn_n<7U[(O&^ +[CEof`5]g6^:Uk\YctC9YI23kcc3MuWNWhE[&'_3^qRIu`P9.#[]Z[<_8Epq^:h1r_76SEXhDT] +YdM?_ZE:5YZ*h3[`P]I']!SWD]#);"_o'7!ZEUgP_SX4._ScNN(Cpqu-Qorn[SUrr<#trr6u'V5C/hVl-JlVl6PkV5:&cVP^2cUSIga=JM[g +VP^8hW2cr#Xfeh/XKT%Gaj8>[bf@E)[(FH5bd4[e[Bd9Ye'u4A\\ZA/bKe>N]XG8[^XD,kc-aD8 +\%',neC`C$b.tR"`6QiZcHXDC\$`ZOZ*"#+"feW'WMl]nV>m=pUSO`aV5<^Z"/VllV>d4tUnsrd +WiW;(XK8J%rMLR1Uo:GuRujGjo)8F`s8N#trr2rsrVc`qrr.KKV>l&~> +rVuor')qq1qtB6kTVoQJb/ME@`5Ta:rl,htb/qiK`5K^9`Q-'Aai2*1^r442a2uEB`qIIQaSs3e +aiME?ai;<@aN)C"a8a3ua2>j:a2Gm6`Pfa7`5&mg[_pJCe^N($f[p)SFP59reC<(%f[n^)eC<%# +g!n]XkN2%%p$LVdgZ\+nki_0qn`erjm-`obdb3XBio0"am-Es$lKIBj +hq?Z7e^W:6nb)A1f[SO*gXaNjgZ7M\m-j?0lf6XKiU?@%io]=amd;I^dE:#(n)E!VmH`T[g"t]L +lL!s'kMk=Mg?S1nlKmp'k2PC\kNhL6m0;q=gXO^&f)=(secOCQf)F26f%&=#e^rC%g"Y!(f$q=, +[G19Nr;HWNrrW3"s8N#trt52+p!9G,[EHk=bf\&JaN2EAqT&ZVrl>Dd`l5p=b/_K@a8X-aa2Z-? +ai;?ta$%Pb`5g!@`l?*>`Q?6B`Q$!?a2Z-?bK%N=`5BR9b0%iJaMu-4]=GYsdFd4,f%&C+f[na- +g"P*2g"G$1qq;#%#hdk]e^iC+f\$,T"k_M]f[\OOfDjD+f@JO'f%&@JeP=E3d+mdLlKIR%m,$4@ +g?&(pd*^Ilb08Q0pu'QPio]7\l0IQgd*UCrkkF<&oB+KIdbO*UmHs6$g!\I1l07?pn*Jo[db3@* +e'ZRlec")!eI9sYf@SU*f@AL*g"G$Og&BV1f@JO)f%8L(e^aWLs4&" +rVuors8N&s%/B//VQe4of@8I+f@KrQ%+a%]eC<+#d*U4gdanEM%FibLcdUCnf%AU)e^i@If)OA$ +edC']eCE4%e^rF(fDO2*f@\[&e(<.!eGe!#eC)af_7@1ud*g=ecHstcdF-FidaQ[mdF-Omcd'h\ +c-F\`cH42QeD]QKiTg!qda$1ef\u&QhrjFrkh4;5j6>dfio9.fjP&GQl/'h4eD9*>gu.;Wk5OIK +j5JkKeC2mncd^n>nESiYcdL:ndDa,Vhr3VYlKRTshpg*1lgElkio&h]lJBe*dH0]NeCs0Mg!eL* +h;RM\kiUm]g!nR6m,mHol/ps]h;@5SkNM*mkMb%>cdC2>ci2Ald216YdaQXld*^:hcdgXncI:4N +TX[QUs8W)ts8W,s&bj\MUUnk'daZgse'upuf%&=Kf)XA#f*U$YeC<.(f$r7$rmqA* +e^`:(e^aQJ&_P[`f%AU)e^r@$f\"d)e^rFPegT/&e^N("e^`=*f@AC$eBuFW^qn%7dF6OhcHt%f +d*U1ge'ZRkda?J-df7YrdaQ[nq:#Ak!RoKod8.p'bLb_9jl>Idk1\/.fB)_kcd:7haiiB-pYX?L +iT9%Xkj%?bcHk%kk4Rlsn`8'Ad+daNm-Eorf?i()jQ,7Zl/p[Dc.(:kccs_\d*hpBrmD/(eC2jp +daQXmdF%X8rmCYls3ht9e'lamdF-FidaHOke^i0pdF6=HU8uT0qYL0jrr2rtrr2rt!<.QLU]5i~> +rVuor+TDE>r:fKrUohYbda-@jdF$=hda?Ijd*U7hbfnDXc-cO>%F<5>b0J>ZdF6Ojd*^;:dJqYo +d0e@Ncd:.fd*g@idf%Q8d*gClcd:1ic-=JUbK.Z@]W\-+WN`Y.VPBuaUnjlcrMKUj5Gb6RUnXTW +Tq\?ZUS"0SY.MK`^rt9L['R-I]Z817_o^BXbIk6n`m;lLa2Z6Ia1T41bJCQh\%okr^V\"4ao9=u +`P]O(['I$CYI)*hd)s&.YHkLCZ)+A,^V[n0aiDH?]WnZOaNMH4^V.D&aLeIIY/88lZ+%`i['6gB +\A#l"`PTF'[^!6Xb/V?<`P]I(]Y;8&a2l?D`P/^]XKJ_+WN)u#Y-"e+Wi2emVl6ToWt2/+Vl$&Z +WihhMW71/2rVulrh>[QUs8W)ts8N]/qtA@4U:S\"d*^7fcd:(ed/)/jd/MH"dEp4ce'udkd*_j@ +#1:fEdaQRiqp@RUdE^.gda6@hd*L1idEg1fda?Fhda?@acd:"ad*^:hd*U+[]s+?)T;/b\$hUS=N[VPU/fW2co!Xfee*VldPL +aiVTHcHO&1Zan-/bd"I`Z)b" +rr;oq&cMY$kJO!j^!"L7`l>p7`Q#psa8a6\aoBF4`kfF,a2uKC^qRV&a2c3>a2Z0@a2Z-?a2Z0@ +aMu9Aa2Z-@ai26>`Pos@rl,>daN)sr_[j])`l,X%Zads#e^W$tf\$,Rs4@>'rmlPM +f\"g+e'c^qf[eEpdG"$Vh;%>knD2^Ig#D;^iniebn`STRg#qhhi83M\o'>8qmI0/if%oHQkN;$p +lK7-ejlbjjinN/=e^;q+mIK`0jQ5OYgt^6#gZIYViT/q[n*8c_j7E'8k2YC[m.0GiaO]_Kin3/W +mG?LNj6$C),N\(Ojl,+RipcL%io9+clg!`tkih0hj5oC[f@&'qe^i=%eG%MneGn&4f%&:&g!eC" +d^c*\g[Y1>rr)iqh>[QUs8W)ts8NZ.qt870T=2tib0.rL`lZ?Drl5&Za8X*Y`tHD4aN)9<`lZaiMNA`lQ0<`P]R4aiVWEa2l9;^:Lhfa3iMm +f[\O(g"4g,f@\d.o%)f%&:!f%&=Le5=cIf?_O`h +rr;oqs8>@\lc?!-aO\nif@\[)f@SU(f%&=%f%&:"e'?4be_/[,d*9kbf%/C%f%&@'f%&=%f%&@' +f@AF'f%&='f@8=#eC<.'rm_D-f@JL&f@JF"e^`.He9'0ebJCd&`m<)[c-F_acd:(dd*^:idEp7g +da?Febfe5Uda6.YbLPkAf@K'TldsP2eD0-Hgt1HIlf-FR\gYC]AjQks^e_fifm,HpXhrsLjcG\/pmbZIJ +lfm-Qf\b]Kio/nWi8!)@hHe'6.adF-Ijd*^7hrm:hrd*^;@d1OaQ +d*L4lcHXea[\'t]nGE1arr1aR!ri6"rr2rts83Q)d&!JKdaZ[ne^W$sf%/I(f%&@Nec423e^i@' +eC2t#f@JL&f%AX+eb[i#e^N%"g=ZAS/(E,#e^W1$eC<%#f[n^)e^i:#e^i:%f\"a'e(3'rahtm/ +`Qci[dEg+bdf%ModF-D!dJVGmdJ_MndJqR!dF-Le_ogWnkMFnLl0-sMc.D1OkgIo/cHFAVm.];Y +fB2;Rg>_Jah9jNreE?J]h=U$`cI1S5lK@Ephp]p%iT8tMhWsI\aiMl]d`ot[cd1"dda?Ije'ujp +dF.F0%a`VNda?Ijda?LkdEp7fr6Q#'eCE!md*g+EU8uT/qtpBmrr2rtrr2rt!<.QLU]5i~> +rr;oq%fH;"lGoa&`7!&XdF-CgrmCbmr6bPk/'lAZbL"bgd)sGPcI(%dd*^4fda?FgdF$=gdaHLh +da?Fge'lXhd*L%ee,I];dF-Fgd*g@gd*g=dbfe,MaMu01YGJ"mYHY((USXc\U87^`rhTOi=JVX_ +StD^RV4aETYf"De[E$kD]XbM]_TU'<^;J:Ea18Re`mDlD^Ve7Cb.kjVb/`Q$$A`PKF/ +`Q#m4\$NEEXK]@Yc-!r<^qdCf\#QC8_80cr]Y:tmaMYKm]ZedF^:_"h`QQ0"Ts)GY]!VP^2^ +U8b5^MlG1lq>L?mrn[SUrr<#trrs3Vk6dF-FgcHt%g +dEp7fe'l^kdF-FhdF$=ecHjqheG[`Ecd:(dcdC.dcdC1ida?Fgccs_\d*L(cdEp4cdEoqHYG@b^ +Uo1/gUS=Q]rM0LkVPNdZpnn%erhKXkU8+L^U'.0aUSOddVdQL)WiWG.Whui/aN;<6`m;rJ[BR0` +f#kA,[]lm8Z-M%:Y.;Wr^q@V2beU]p\@Tr=`PgKX]r+7_8XgK_6']C\[8B7 +Wi<"uW2?JhUna`\US=O^V":G_U]RBgU]-u-Tq\ +rr;oqs83M2]kN2!ql/LOT +iTKIfiS<,=eBZFpjm2:!mI^#3j\P'jd,+0TgY1E4i:-0ngZ.l#n`AT[h<";"fZDb5o&&!SnF#2g +i90Cgi7cuEi83APmIg&3gtUcOmdBE)l0%!ZgYL`?eBuXjeC`C'eC4EHs3pqrs3q"t&(T1Zf@\O! +eBtb![G(0Ir;HWNrrW3"s8N#trt,,*oZX&$[EHk&Y$cU'&`lH'8_T'[;`r=!b`kf@"\@fi. +f%BuQ!nZ)Vrmq,$!7p2^%bB7`f%&:#eCE'sdacmtrR4]pf@SEnd,43ViS3J`nE&9Jg$84of@A?s +dEg&#p=mgEm-W]_ipcBpf[J@%m.fJoq=EFng#VPekj.Kje^N49mH!'_o(;"ib1,1tccsnde'unH +e,Ro'e^W.!e^iC(f(7Mnee$Hae^W.!e^W*te'ujqeC2nGdMC<^f$i!pf?h%)YgW+ArVulqrVlis +rdk*@s*t~> +rr;oqs8_;ThrX%] +h:L96ioAtPf@89paii5mk3(mjn*],l;<$!Hg$%PKe^i.(m- +^Vn@DdJhGnd*^5>ci;>lcf3=Oci;@"dEp7fd*L(eda?Fgcd0tee'5nUg?7YRe_fZWi7#m#l1=,i +eC)[jcHPJEg<8.7m,$@Qn*],acd:/)o\8'ln(H.>i9BIdkN1IGcdh.BhU^QMmbZ+*cdpRgaj/2X +dJ_DpdF-LldJhJmcgT3jcd:%dd*U1fd*^7fcd0u9cOeLQeBuOge',4pXNp>5r;Zfrrr<#trr;uu +rdk*Es*t~> +rr;oq%fQ>"l,KR"_pQiSd*^1cr6Pu#d*^1cdF6Idai_iRdEp5=c4&(IdE^%`dF$:dd*U,:d/VE3 +d*L"adEp7dcd'qccd'nbd*L(bdF-LkcHjk^ao9AD8NQY\]Dau['d'IaiD!"]Z\aG^:(>U^ +rr;oqs83/rk/3mg]ZS:1rke`Srl+oWrP]_raN)g6a2Z*<`Q#m9`l?!q`rF!f +`l5m8`l5s;`5K[6`5Taq`W*sX`;mpV`=g,*_8F40_nELb\AchEda?Rsf`'M#ecOISec+-He^Msp +e_&R+daQh-o^q+ojSJc=i7HQea2Z'8a2c0:_SjF5a2c3u`%8pKaN)9;_Sa@2`5T^6_84+4aN)?B`l,^-]",Mocdg\!f%&@( +f@JI%f%/C3ego;%f%&:!eC2prdaHUnda?Ije'upucd(/(n*K&jkOS0*f[8=4oBb,Ye'\0C%I<`C +ceIgSj5&kgoB4j,eh$"Vh;.o!i7d&OmH`ltkMk.Eg[4Omh<"8$k0hK'g"+Nqd*^=leC2mpe'lbE +dfe1Nf%&=Bf)O8-f%&:!eC2pre'c\Ce,Ri6e'cXleCE!pe(2mUVQeM>rr)lrrVc`qs8ITLT)X<~> +rr;oqs8mI0,mgXtNPkhOeIm-j&heBZItmdT#Ve`c;Nc.;1Ghq[/P +k!S"Sbg+YeeCW[Jo^:_lf\P]TkiCdcjP\hLhr*8=cHOPZdF$:dcHjh^cd0tacd:%bd*U+ac-k+d +c-ahCT![8Aqu-Kmh>[QUs8W)ts8W,s&baMGTt8Y$dF?[peC)ame'unEec4+te,\%ue,RqseHXOP +daHUoec+//e^W1$eC)aneCE.$ec!r%e^i@'eC)amrmN%?e^W'te^rF&daQ^pcH3u=^Vn=BdEg.a +cdC+cc-FY]cJm1McMu3;d*L%bd*L%bd*L"_cd0tcdEBYZi9KL\f]);ai7#s#jmq`he'cVBd6Hph +gWnR>mGcp_nabendF-J'nCcLfnD)UKjQYjdjQ#+HdF[XMhq-cQnDVX4cd^Ceb08,VdF$=fcd:%d +d*Vd +rr;oq&,lG#l,KR"_pQiScHjkaci)34cd:%acHjkbd*U%[bg4eie^;XdcdC+cd*L(bcd:%br6YJi% +a`PIcd:"bd*Bq`cHab_rm1Sj+OSWbdEp4aaiDHC`PT0fUnaljXf8+kV50fYU8"HYTqMCZrhFh7T +:DIFUSOZYTVo9Ab.4^jg"afh\[]Q(cbd*!a3r,E[C!Wd`P9.+cHsVH_TU9I^qR_.bJh?Be'Q(I^ +;\=?`Or[g['6R0YIM<__o^6Nb0A/>YeJB.`P/sl^<+C*[(ON)_R?_MY.Dg$\Z2sSa0hqSb07W5^ +rFA?^9auH[CWiN5&WiH&t)lKO.V50l]V5C2jW268cU +n46XWg8O@dd6f.s8N#RrrW3"s8N#trtG>,p!'8)\BiULdEp4dccs_[cd2L8s3CVi!7:_js3L\k# +1(T>c-FV\rm;/#cI(%cc-4JZd*^7frQZt@dF-Fgc-4GXcHOPYcHXY\cd:"`cd9tW]W\-&St`'XU +SFQYV50l[U8+KXl(\EVUSFNTTDkPaTP'miTV%mNUSFW\USOfeX/rJ'WjBUeb.t[/d*]kBYd_[&b +db'fZ*UdBbLaD1^!4j@^;n^Pa18Rb[Dp\.^"CfL\\6&-b/MEA_76k`bgFDDa4/YXYc=t9ZDse"V +l6MjUnaZYTqM=W"e_Q`USFRWU]7%iUS=I]T`:VkTV80ZWMunsWMcQjUApo(VQ?niOeg4krVZ]or +r2rsrr;urrVlirrdk*Gs*t~> +rVuor%0$;*qtB3iTVK-@`kVMi!5nfSrl+oUs2Ghn_oBg@`kfF,b0\GT_SF%/aMu3;`Q%nr!64rU +s2G)Y`;[_(`5Ta8`5TX4`l>p7`l5p8_o9X8`P]U1_8=+-_S!:^\&?VAe'c^sfDaA$eG[qteGduj +e'c[nf%AX+e^iL:nb)>2kkb2Dj4Mr?mIB>oipZL+iRuoCl0IKljm2Bugtq5]lK.'gl073dmeQVE +jlGatmH<lf$IDd*^8?dK7hEdf.W2da?IjdF$Cje'cXo +f?qsod'fUUg[b:@s8N#RrrW3"s8N!,s8Mrnp!'8([*$\:bK9_'!6+rUs2FrVr5JZT!l`*qqS`BP% +E-6(`5Td:`P]U4`l?'s`W*sW`=Bi(_o0O6`l5m5^qdn0aSs3p`P]L)]"5PncICIse^W.$f%&7!e +^aZKjjaRbe^`0udaS3D!7Unos3OutdaQ[mc-Y>5na5Dtm.^5?hUU3;p$UGZdEp7hg@4jrf]2Jkk +iD%$q!d:qe^j!XgXu,ll/:Xfjl5@cl/UORk4J?3jQuX9m+]q:eC2gkcHt"ge'c[ldaHPAdK\1Me +'upueFqGme-=IQe'c^ne+qGld2CB[cd:.idEp@ocaTaSdI[>7s8Muqrr<#tJcD>AJ,~> +rVuors8N&s&,>D/VQIkfe'HImeCE+!eGdqre/-Q[d+$_$e^2UigYgo=dEg4kf@AC"eCFQJ!7h"s +s4%/"e,IiKe'upte'ugpe^`*se^W*tdaZgte'lgqdaHUlccEi1]>`(AcHFGYd*Bq]cHZ=5s3:Pg +9$GK%bg4\acd'hdi9]prh;\)"kM=S5g#q\Zf%fNWkM4P8gZ.DRh;@>YiRc`@kN1UWi8`kQh!"A# +kMP.XlKI6[cd1%ecHX_drmu2Fj65h!n__sZo(VY;jQ5^pj4;Z7lKmHYdE9Ydm.'/hg?.JGb15_B +inre]kM+8#aN`/]eDp5olf-dYjQYjcgtguQkih@$mcN[QUs8W)ts8NZ.qtJF5U:JY"d*pIle'c^prmUnsrRLhqrm_)"e'e*A +!7_"urmV8)f%&9udaZgtf)4%tec+&%e'c[neCFQJ*n/Qde^i@%daHUmcH*o<^Ve4?d*L"^cHsn_ +bg"GYrlsNLs3:Sh!71Yi!mf6>rm(Pgs3CYj=j>(4f]MM`hqmSfnE/BOeDg)de^)RecI(;4p#+E\ +mdK;tl14T:hUBm"jRLjOn+,Sqi9'"ThrWtWf@]*OnDrKhnakqpbg+P\c-+8RcHsqacd'k_d*L&8 +cMu/\c3V\?cHje^cHji9cMYrec4S:HdF$:bdF?@HU8uQ/qtpBmrr2rtrr2rt!<.QLU]5i~> +rVuor%fZM,rV,NpUoD5XccXJWqTf/erm)D+bfnD^eBlC\c.1P#d`fkXdF-CfcHjl:cN)>ici;>m +cd)O9%*m2Gcd'k]cHsq_cHuR:+OJNada67_b/hZE`50!cUS=ZfXJ_edUSFKTTqS3TTV2:Xrh<#X +St2IHUS=KYUoV)Jbf7<6g"k#n]"#T&e&]8AdFHR]]=Yu(c,mrGc-ODB]uJ:=`59L7aMG^;f[e9b +_og?M`k&FYZ*:@3YI+;;Ek9-.b0\JJ[DL>BcH!i=aND?*YI_fs]s4`cHji8d/;5hciVP=c2,`c +cOS=JcHab^dEp4ac-Ob`dJV>jd/M>kcMl&hd*M[8*R)dRd*U+acHjbS]Yd:jcf>+l6 +cd0\Nb1,+k^p^VWa4%T-dFH:P_T9X1_T0^5\[o`-eB,YQf%8$RYHP15X/DekVkp5bU7n9RTDY>c +T:hmPU7q:Ts.KLgTqMCWs.0CdTVA9\VuEUrVPBg`U&UblV5p\eOJC%jrVQQm$NL,)s8Muqrr;us +JcDSHJ,~> +rr;oqs836HlK[X!kiCRVm.gAEk2bdplJpOB +cI:=qf\>6:e^2XpjQZ=3k1o.oqsik1kO.`se'[%=mc2pJbg"l,o'bc&kMjt8f^/+jj66%%iR#Zj +e_/U,kkar6s5=^TlKdNaeCWXBm-aH>p[@1seBuUgd.u&kda?IjrR(Yn%aieWd*L.c[%Fb\o)/Fc +rr1aR!ri6"rr2rt&H)Fuc(go=b0A#LaN2BBb/aG!#0+U"`Poj8rl4rX!QDtU`'hSbaMu9@`l,a3 +`lH$9`l?'?`l5m7`Q#s=`l,a3`5Ta:a2Q'>aMl$3_8XI8`l5m9`PK3t\@]])eCN1"eCN:(f$r4K +ec4+[eHXORe^W'qe,@]td*L+fdEp:heBlIaeDouclJppkp@n.=f[f3ZmFBS2d*C2$oCV2(m.Kr5 +jQQ.0q +rr;oqs8=YHl,KU%`RE8[dFHdsf%&=#daZgse^Mggcd^RsdE^+kh:pK-cdC7ne^N$te^`1!psoDo +"kD,Oe'ukDe,[tre/Hf`e'umqdF-LkdaQXia1o0r`6?TQbg"M]cMbuec3_b>c-4GXc-+8Rr6Bf> +e(N^EmdK8slga;tdaQt5m,d6lmHg_\r2k24\7dbEgFl0\*5lJL1>c-+;Sc-6(1!71Yi!71Vh%aE5Ed`fq]bH[PDg[P.> +rVkXQ!ri6"rr2rts83<"c_[AId*g7fe'laormq%t#1_2OeC<$trmh#!!S#Qsdjikuf@AI&eC2gm +eCN*te^`7&e^W'seCE.$e^Mpoe'uq!f$r7$e^W'reGe#7e'ZOleBc1P^:qJ,cd0n]c-Oeaccs`6 +cMu,LcMu)rcHX\[cHXY\cHOS[rm"Efd*0VQd,+$PjkekWnac))e^WXOlI*o%c-+PmnF>Pql14<) +iT9M%p?:)Pe*?MRb2W!]kNCsXe)0ERhq?oRo'YW!kj\32i7#ombKe>RbK^"2%F*5Fd*L%_ccse\ +cHON(c3;G;cHje\rm1Vh):-URbg+GWbfe8Wd*Kq_e&o"kXNp>3qYgHnrr<#trr;uurdk*Es*t~> +rr;oqs8<8ukf'?s_9^BIbl5oed/VB4cd9taccaGRd*g:baii,af$MX`bg4\`cHjh`d*L&5d/VDq +d*L"_cd)F6!7(Phs3;;)dF$7_bK@oIa2Pp*X/)MfX/r2sT`h$[T:_eUUApoNTV8*RT:MRHTqJ$P +Vl?o4`66BE`R*8d`k&e"cdU.]dac[a^:_>-eC2RZ`QQZK\$j#jaN2EC`ko@#b1>-hc,@K>bfIW. +WMci#Yd(RD['$C,Z+\$!dD**)d+$4R]th\.]<&$A`Q,WqXJMf#_op-:]th:^VR"7c_S3q3bJ(*U +X0]:D[DpkJ`4iq&a2l**Z*_3`aiVfVd`T>3XJr+oVPg>gUnji_US=ETU84W_Vl->bUSA3eSu8QR +Lo8\gqYpNorn[SUrr<#trr%g_R6JFX/i1pV59u` +US=HTT:V\RTEUs\Tq\9Tp7hS\!huB]rgsUjT:_dLUSXicWMcSdrgt.&T:`!^X.#-Gc11`/rVulr +s8N#trr)fps8N"Ks/#aG~> +rr;oqs83/rkJEme]#_k*rk\ZRr5JZRs2PYf^qmq.`PTF,_SsO6_o'Fl`;mjU`<+&u`V@FS`5Taq +`!43!`Poj9`;@Lr`5BO4`koO-_SO+-`50'oZadote'c[of\"d)eC2msec+&[e'uptda?Opf$i'r +fA,BLm-sH&g>_\tk1SJJmIKc4lK6mJa3EQ5p[$_gh!":mf@/C3l0e!+k2+P7BBAaUjk/2BkMt+9 +bg4_efA#6Di7QB"dbX$Zqr?)Xn+Gemd+$q3hUBm,kiq!Td`p"diU$1+lK6mJbLl.Kjl#7hnDhs@ +eDB'7e`?Ahh:L<:j5JY8aj8VrhVI&MkiUdUe^;[fd.u&kda?IjrQu2)dF$Iocd1%b[%F_[o)/Fc +rr1aR!ri6"rr2rt)>sC)c(go=b07rLaN)?@`Pf^6`Q#m;`Pf^m`>->1`Q#j8`lH*;`l5j6`Q#p9 +`Poj9rl+uX`r*dX`l5j6rl+lVs2?/"`Q6->_SF"+a2c3=`5]g5]t(Va`6Ql`e^W+"f[n^(eGe"u +e)f*aeCE+!e'ZYCdTFlBdF-FhdF-Ojb08Q&n*8rhh;dkmo&eTUk4e8ne(<*tg[4OrioTV!lf$UR +jR`3:h9t$Go@h@?nGDqNl.4DGn*fH!k3hd)inrh^nal,(dEBkcd`p,8dJqW&d*g@kdF6LleCE*u +p=92l"P)#MdF/$C"k(lKda6A?dM^EXcHjnddEpCocF9XSddm>7s8Muqrr<#tJcD>AJ,~> +rr;oqs8<9!l,KU%`RE8[dJhZ6f%&=#daZgreC2afbg4bfda-7gf%&6tdaS3F!7Uqs!nGfMpsfGp +eCFQI#1V,OeCE'tqpZP5daQ^rdF$CkdF-LlcH!]1]#;h>c-4GZd*DX7!mT$9rlmOKc-FSWb082X +bfe5We_T9Kl0-jMh!OXie(!19m-<]mhq#oba4]hLk1A&4ip>^RcI1P1l07Big!.cUi9p!je'd"1 +hU'9`bKeJ`fA,9>eB>qYg#;Pshp'ad+[@1cct)&jkJ2.aiMlckjRp$in2GpeE?)SgYhA_ +hTa*eg"Fj$hs]a\daQq,gsa?_b1#%sf\,3Ci7lf0c-"2Qc-?.2!71Yi!71Yi&'`>Bd*^%[cHEM_ +ZeP$JrVc`OrrW3"s8N#ts8W!&pWo\1]$SmOdJhSrda?PCe-4CPf$r0tr6uJ1eC<$teCE.#e()sr +e'upue'umteGdu!eCFKH"4boLe,Ikrec4,Be'upueC2mre^i=#dEpCnccEu:]u%qbrcd0taccse\ +ccsbZbk'*`bg+M[cHZ@7s32G-cHaYZbg"ATc-Ob_c-at^Z_FPHnG<"[s8N#ts8N#trrE%Ls.fUE~> +rr;oqs8ps9)f +cd;[:#1(T@cd:"`qp5;f'[Y7Uc-"5PaN2E@_RQYBUSb)nVP='`#,%Q[T:hpQrh26CTq\6QS=Q@I +St)INX0fRW`l>[#_UI/Z]">o,e'ZF_a1eaUYeeiBc+^d'ajA&7YdV2S5 +^p'iE]Y(\Z_pZ`?['[K]^UC2?XL5[Q\@KDn^q$bRWMZGdV5:'gV#d?crh1($UnsrdVPKr]Tq%^P +WKr@Wrm1Vh'[4qN`k/CJS=H:KUS=HU +USXc]TqVI[s.JSM#b[odTq7jJStQ(S>+_O^TVJ?YUnsrfVP0ch_8sR/\@B;pcHX55ZGY,3Yck@9 +XL?0n`4`t.bf7?+\\QM@c+:*fbg +rVulr$ig2'p?0>eUq=^e^AbqP_o0R7`5MYos2Gqp_SO(*_o'@.^V@Y)`lH-=`5KX6`5KX7`qRFU +`5T[6`Q%kqs25,\`l>s9`l7qq!l`'nrk];c`5BI)[^*BZcI11heCW=&eCFNI!7Uqss4(]0dEp=l +e^Ddkf%oENlKI0Rb1#_Pkh=kQlgXE,hV-N%`R*]hr*im--Bp#=<>c.M"6g=P3Ek;hGOeBcCfgZ\A+n)i?Mc.VCLj4iJU +mcN3RhWEqRe)'Q`jOhl0gZ%5Jf@Sa2f[\U1jQ,1Ne^;^hrm:>cs3MG-dEp@lcHjqb[@ah[nbi@b +rVlfPrrW3"s8N!Ds8MrnoZa/'[E6V4aiVWE`l#^4`l5s:`l5m7`Q#p:`Pfa7`l7nrs2>8]_8=.0 +a2Z*:r5JZRs2GDd`Pf[3`5]j<`lA"s$H0p(a2Gm3_SsO8rl,Vl`kf;d/h\CrmLboo@3fh!RfHr +dKS%Hda?FgrQuJ/cd1"edEg:lc*jLSe+AJ,~> +rVuiqs8<9!lGog)`m`A\dJhYqeH"+udiHree'cUgc-=S^daHLgd*^=mf%/@"e'umre'upupXBAq +eC2psec""tdid/je^N$ueC2jpeC)ame'c^pdEfnK\@]Z'ccs\Ycd0l7bl>ofbl5k"cHXPTaihuT +bK.iPf&#HKiS)GlcKFfYe^rX>lK[?\eBYtHb2;XQg<.Lbj6u-[c-Y5,m-a,qeB?1sm-*$Aajf5) +d)O5Qc-OkliTB7Vd*'\bht-X"b0oPEhTNm[eD8s3e(WjB3nr-1bK8&]jRVs/imu;pe`Q)Pf%T6M +iRH9.iS`83g$7q]e'-.hh;-]2dacptd*gV(hqQ]/c-+;Tps/oc!mT$9rlkttbKnPXb0J59S?pr= +qu$Knrn[SUrr<#trrqS[daR:IkL7f,daI(Gm+U.NkN:UKbKSAlmd8]N +fB_eS_p%<@q!d7dcJ\'TiS<>Oi7?<%db*REl.sV)bL+YXbK\>Xc2GofchbrSblZ28c2Q#gbo+gO +c-4GWcHXSWcd9t]d*]t@UTMl4qtpBmrr2rtrr2rt!<.QLU]5i~> +rVulr&-)V,pZ]\oWl!*,air#TcMl,kcHXZ6cPk*Qb/qcKbg"DVb0%rSd*^7ecHab^cHab_d.bii +cHje^cd;X:s3:_md*U)9cP+[QcHFDRa2c9>_7?YBU8=ljVPF-a".u0WT`1VbT`1X.U7n6OS"-.E +SXQ.HXL5aW^::5AZcq(E]=c,-cd9eI]!eQ6ZGb8A^p(&RaO/&9Y-P^]cd0bN[]QjPcc`huXL>s] +Z`'e"W3!20]u%OnXehu$]$Ag8V6@h\\u20sZ+%9LY-u'Y\$)g/V5^f:bg=GEYbn9HZGX\q[CF/t +_R?e_`5B*h]Zna=[B?aD^:q.aZaRBNYd1gS]sk;MW29HgrhT[kU7qRZ'qqCuV5C,cU8" +rVulr('"71p?0>eUq=^e]thJ"_8F72`5BRm`rF!Z`5BIk_["&n^VRn0aiOG!#0"Nu`5T^6qS`l] +`Pfa6`Poj9`P]R2rPefS#0"U$`5KX5rk`Qh_o0I/]XG,T_p-TWdF6[teC<$ue^W'seC2pte^W!m +d*pLlcdCA$jQ5L\eB#VRjn%]mioTFkm,d*\hq[#Im-s;reCEC>o'>#Ye_f]ao^:_je_f]_m,$7A +h<*kWf$Mdke(qLP`W*so`l#R(\@/uecd^Ore'c^q +e^W$reC;t0e-4=NeC2gmrmLho?dd?LcHahdda6=ed`ok[i99:Xe^2[he_oi[gY1lamG6OPg>D8m +m+U.Ok2Ft?bK8&algs)`h=0pgbL>kYrU]'pdcU,ijl#4^h9jHjcd^h8lJg= +rVuiqs8=;>lGog)`m`A\dF6Upe^`0ue'c^odaHOjd*L"`dF-FfcHt(lf[p)N#1V,Me'umrqU>r& +eC2preC<$ueC)anrRCkq)V!'Ibj2QjO_]'fAu>]e]uOqk3h^&h9s[(k3V9acd18& +inDf(bg"J_g>_>[iRu`1g>VMkhTj^[QUs8W)ts8Nu7qtA@4U:S_"cI((ieC2pse^W*te'c^oeG[nteGdqre-jaQ +dacjteC2joe("BG!R]?pe2Gb&daQaqdaZjue^N!qdaZgteC2jndaHXre^W*tdaHUmc,[Z6]u%q< +ccs\Wbg+MYbKS5UbiR+Lbl,fbc61BWcHOMXd*Kt\c-OPNbM;1;f[7pebL,,0k1A2Fn*&I(eiVRI +p#jiTgu-u;bJqNBe`H2QbLc"Ce\o\oqY':2a33B+l/(+Lhq#ulaNMrajQ>=Gaii)XaihoRcHZ=5 +!6tGe!R8pgc2Z#Zblc27c-H:4):$LObg"DXc-4DXd*Bh[d)iVhXj?P7qu6Wprr<#trr;uurdk*E +s*t~> +rVulr&-)V,pZ]\oWl!*,aNMiRcMl-*cHOS[cd'h\c-4ARbK\;UaiV`PdF6PBc3DV?c-FY]cMGiq +cHje^cHjh`cd0k[cMc)hbob6XdEp7fccjSTa2c9>_76SAU8=liVP9]UTUqaITV;@X32*"=U7n3M +R[]n@S=6%HXgG[O[B$'rXM`H,^;._1b0.f;]t_.j_ogZ[Oc,$cjZb!i_[^*EX^:1>JVkg5p]ZedE]dV59r]US4?STUqaITqeH\&>l4r +U7n'KW2c/>Vpar-rVulrh>[QUs8W)ts8NH(qt871Tt/Iqbg-15$II,Gcd0n^c-FV\rQkPjrm(Mh +$dQu@d*L(bcHXVZci22jbg$.52U0IjcHsk]cdC+dcHa\Zcd:%bcHa\Zcd:"bcd'nbd*U"T\uh]s +S=uaRTqJ$NU8"?RTV8'Pp7_MZ#bdo`StD[LTV2+SrLaIhStDXHT:hgKU&C]fUo'lXVRF7PZ`U7, +W3*SJ_6gPcc,?uq['@$Ud)3)l\@f;SWMH8cZbt&#Y.Mp%\>QOPh:^,hWij4abe^s-_RQVBV5UN) +^VRI]Uo(2lUS=KXUS=HTU&L\kT:V[IStD[LTqM+Qs.BFeTV)4T/"N9'T:hsUVPgAkVP9]ST:hgJ +U8Y)\Oep@orVZZprr2rsrr;urrVlirrdk*Gs*t~> +rVulr0E;%Lp?0AfUqFgh^;.P!^qdh(_ns@3`l5p:a2Z*:_o9R3^qmq.`lH*;_o9U5`;IOL`#HV4 +`P]R2`lH*:^:hD(`PKF-^V[t0_nj70_o)Jjs25_j]="uT_TL0McI(.kdaHUme'lane'c\Ddh^lf6^N +hWF.im-X*"gXXd/m.9]6nF,`+io&naoCE4XnaPl*gXagPd/VJnd/M>md*L&8d/VE'd*L"de^)Rj +d'o^Wg[Y1=rVlfPrrW3"s8N":s8Dlmo?F&&[E6V3a2l<@aiqoK`l,a1^r!t,`lH*:^V%+g]thM' +_nj40b0.oF^qRV$`l>s8`l5g.]"5SlaNMcJ`50."]t_G&`59@-^V7Fs_83q$^r""*^:h.h\\,o+ +daZaod*^=kda?Lle,IeZdfn1Ke'cUhrmCbms3Xurcd0tcd*L"`dEg"`gZ%,Ce^MpkdG*jLk2Y[p +o'c)=naZ)5iS)u?hV$B)c-"5ZiT]FXguIGKe(EdOo'"fVfAc#ZlK@3bg=4?icI(;'jP\Y;d*g=f +ci2;kchl&scHsqcd*^1cdaQ[np='&i#h.5Ld*^4fdEqm=rm2M.cHaeaccj__bI+1Nde!G9s8Muq +rr<#tJcD>AJ,~> +rVuiqs8Mb6bK7oNbf\)OrQ5\pbfe5SbK7fEa3)WM +bK\Jern7\-aMc*Bg?%;Ojo4EBjF?@Xlg=$%k2kahl0%-hjknS6d+RFClJpOBcdpq4kNCseio/YC +dETkWbKeSjiTKFglKmp&ki1+9dbj?UlKda!jP8>9g#(`@d*9_Sc-kD5n)iBQcI(D.kMOk>g>_8W +kNM$cf$M^pkO.X"lg!Wkh:piMmdBK/m-*E[da%m:"3o-:c2PreblGuec4nOIc-4DTb/qrVbKJ5V +[%=\[nbW4_rn[SUrr<#trr+jQ#4Tf[J*d`lcQUh;I) +rVulr&HD_-pZfbpX2E<1ai_iPc-H73s3;G)c-FY\c-4ATcHXPUc-Xhbd*Bn^cd'i6c2,^*c-FY[ +bg+S_d*9YPbgFb[bfe,Od*g7ccd9q\b5THo`PT0dUnacbVkfuUSt;IBSY#\Ms.EPeS=,h9St2FG +Vld51[BQO(VldVP`Pfg=aiMNDaj&/XcHOANb08)PaMu97Z`gUB_TBm:\ZN$D]>DV.`5KL,]XFuA +V50ueXgPgX_o'F4a2Gj.YGSD4`5_eq1rI&:Ycb=D]!JH9Unalj[`-A([B-=-[_TenZ`ppU`l?*B +aMGBlYe%s'bfe2P`kf@#^;p5u%Elo5]sFi?VPU)aUSFO^T`:W$SXc4ATVA9[UnOETU7@mTXI+mD +e*Qo.s8N#RrrW3"s8N#trsJ]$oZj8+\BW=Bc2Q!rdF?Xnd*BkYb08)Td*^4bai;6:a3)WOc-+>X +eCE'ob/h`Ld*U(`d*KqV`5K^?dacmrcHF8Ja2uQNcHXPTaN;WMbfn2Mb08)QaMGEjUn4-MU7n6P +SXuLIT:V[JT`1SYT`:ViTV%gGStD[JTD>.(T:hjLSt)CCSXuIHT:hmNTV8'TUS+Ni\@/TBWi2bm +ZG"&d]"Z5+`Q-*@`l,X$YHP7 +rVulr$ig2'p?0>fV7k$l^AP_J^qmn*rP\iX`Q%kq'ZS,1_o'I4_o'@/`5T[4_o0L1_Sl5e28mAJ +_oBa:_S!Ls`koF)^V%:u`P]O/`5BL0_ns=/_7[4^\&$21c-=S_da6@hdF-IjdF-MBdUCPLcHt"h +eCE7-h;$iPthV-H*db!@:j5/>2bKn_pjm;I'kMOn; +c-FSXbg"G^g#(oWnauD=in)Gtc.1b;n*oc/hq-<)5M"TEf?hdbbKnYiioJqGd*L7uiSr\Fe([QUs8W)t%fcP+qt/+,T!ZS]`Q#s&Ys2G#Ur5&EM9YnHT]"Ghs`lH-:]thY1 +b/M00^Ve+3_o'F1^qI@l^;@q5aMYm2^V7Iu_SjC0_8F.)^qmn'^V.D!_SOhrX4po(2MD +khFhGg"=p+daHUkcI1G(i8*#8f%&=(gYUrDdF?e%gu.8Sh:C0,cHOS]e_Am6f@/.Dd.bl`ciDJb +df7\qdaA'@,1"W_cd'k^cd0t`c-=S]cHFJYag@kKe+3G7rr)cnrr<#tJcD>AJ,~> +rVuiqs8<9!lH#p-aOSbbd/MJndg=OQe'cUidF-FjqpGDks4%(s%+3MPeC2joe'l^le'n-@1Xjau +dacq!dEB\Ze^;UecHFJ\eBuUidaZapeC)gncH!]0]#;\3aiMQGb/h]IaiV]Ib5TT`b%\r;aN;WM +c-Fbef%/I#a2Z9Hdb*@4j5f:_iSitdn*fT&gY1QKm-3K`g""Emc.(G(hq?AuaNDo_i99Lkj4i#+ +ai_`HaiV`Pe_K-HmI9T.hUBWeajT#.lg=$!gXFKodb!1$bf[uH2p9OthVd)8bfeDeh;6i6cdUV, +jQ5FXf$DOZak,S:n+#Ysc,[rTiTopul/pjSd*9eXbKeDXbl5fbbl5j%bfe5Rbfe,Lc-XYWcHWbh +[bUHNr;HWoh>[QUs8W)ts8NK)qtA=2Tt/Ipbg4]8e,RtueGmtpd/VKed*9_TbKnYff%/6md+$_# +e'?.]dFHdqdaQXjbf\)QdFR"&da?Fec-FY_e'lamcd'k`dEp4bc-4JYc-+5K_Sc-=JWbfe/PrlkPhd+?nKdhgEUbgP2#hV-Z>k3MC$md/r` +eCE$rda.p:-HaBPeC`L,d*L(bcdUFrgXOEkdF6Y!hVQl2cd0bTbK\Gdg"4a"q9Ac[s3:DamE5LR +rlZ2'c-+;QbKJ,Qb0%uTbfS#O`Nc,;cLC],rV6BlrrE%Ls.fUE~> +rVulr&-)V+pZ]_qXMiN5aNMcNbl#]ccMl&icHXZ0c2Z,ibmVb?cHje\c-FVYbg-".29sFhc-Xkb +bf7WFd*0PQai2?HdE]t]ccs\VaiVTA_76SAU8FibU7RjES=5n:SXuFFT:hkUT4sjbR@Bb=StW$] +Xfet4V5:2oZb!le`5]j<`5KaBdF$4X]tD5)cHF/=\[&<:X0B+I]XY/BV5^T*^W"=9^ppYLV50iZ +U8"H_Y-kmW`lZ<<\?)HuUT:i=`5]a/[B-=)XKf(5VPBfW32NRV\%8oHV51/u\%/rOX09(M`5]a0 +\$<'6Wk$*kcdBkGXJ`&(_9C3LaMYZsX/MqmUna]ZTqMCW)P3LiSXl@ETqnN[TUqjNS"H[^R>\&o +mJ?e]rr1aR!ri6"rr2rt$iKnpc(gr@bg";Sc2Gugd/VGlc2>cbbY64$`Pfd=cHstdbf@oQe'lUb +a2uTRd*9h\c-")G`Q69NeC)UcbK7iIb08/Vc-4AQb082WbK.`Gbg";M^ppVESt)FHTV%gGSY)PR +Sck[YT:VYLTDtJfTUq^FSt;RGoUc8XSXuCDrh!JfT:hgKTV/'TU8=loYcOt.WhlPmZF76LZb!ul +a2l?@]W\KAXfSS%VPpDfUSk<(\@/TCYH=t5['mQPWiWG1[(*f_[]cj7UnOT^X0K"8X/MnkUSO]\ +U8"eSt2CBSt2IEqk*k\r1F"\,G:X!S=Q4?SXl@DTqeE[VP^/^SXc7BSXZ4HVO3IAcLLi0 +rVQR!s8Muqrr;urrr*!!rr.KKX8d\~> +rVulr%0-;(p?0>fV7k$l^:sQ\,/D%4_o9X7`l?!9`Poj;`l5m8`5KR0_8*q+`PfX2`Po^2r5AWQ +1W72K`50=.`5T^4^:qG%^V%Ct]=c#"`59F1_o'@/_Sa:-]XG,T_9'mEc-F_acd1%edf.YkdO3Gg +cHjqfdaQatf\"p-bK7rOc-b1uh;72Tj5&JKki^s\f$`!reC4EE(sgFLbKnYhf@.sa`lQHTf\>6; +g=FWna3+A((WsqGcdLD!gtgc:c,doFc.:b-gY:?.d/MEVe'uglbfRrKc-Xtkd`feSd+6ardEThX +db*@2g!e6ha2>mFh;@,Ff$DL\b0JPlh;-l@f$i!kc-=S^dEp5:c3)D>d*M[9'@4tKdF6Cde'PRu +[bUHOqu6Wprn[SUrr<#trX8c*r;6-1U7Sa5b/OA"3lf+M]YMG(`lH'8^V7@m]YD;$a2uNKbK@oC +]=>Mia2Z'7_o9^9^qILu_SsR:`l#U+]t_G(aiMH?rl"iUs2b5Z*QH(:_ns@5aMY[%]"#8^_opET +da6:cdF$=gdF-MCdK7nGdeqPodeV>lde_DsdF6Rlcd1#;ciDDkd/D9%cHXY[cd:"be^i7#e^Mgf +cMl30d*gIth:pZ=gtLE6f[eU&dF$Fnda-:jf@\XQcQpc]eC;prd*9k^d*gFnf$r$ibKS/QcI17n +eC;pncd0tbcd:&q:#>k-IL2edEp:gd*L(acd0t`bfnD[cHFGWag@nL +e+3G7rr)cnrr<#tJcD>AJ,~> +rVuiqs8<<"lc?$-aOSbbd*hpBs4%(t$e!GLdaHOidF$Ckdf.Yndf7Z$cdC4ke'ZUneC)eCe,Ri7 +e'c[ndF$CkeC;mjc-XqbbL"PWbL"\acHt#=di-`ae'ZI]^UUknaN)BBa2uHDaNDWGaiV]KbPoXl +aiMNDaNMfNbg+P^e'u[^_o9[;bgY.qg"t`Ff[ej_ccO,Ec-k"c +c,muHcILS"eBZ1T_S3h2f\5*4d`]YJ`Q?KXrn%t;da-.[aiV`OcHXSVbKS2Rbg"GYc2Plubfe,L +c-OPUcHW_g[bUHMr;HWoh>[QUs8W)ts8PUeqtA=2Tt/IpbKnPae'5tWcdL=nf$r*mc-+8QcHt%k +f\5*6g"4WoaN;`Uda6:cdF6Ohc-FY_eCN7%da-1^cI(1pf@8=Le,Ro3e^Msqf%&9udF-LndEK\N +_7mY"a8X6jaiDKFb/qfKbKS/Pb5'3^bfe3.bl>idbk]H^ap$#6c-+>UrlbJhcHa]6bXBXsbKJ,S +bg"SbdF-IibK7rQcHOGRc-k.kdaZdpd*^4cc-4;ObK\2MaN`)Yc,drG`lQEKb07rG`lQ9FbfnAV +a2Z1!a:?D>daHOjccs\Xc-=JWc2Prec2Yugc-H(-oumBZ"3\p4c2Plgbg"AUrlYqubK7oOccaDO +bJg`[X3U52qYg3gs8N)uJcDMFJ,~> +rVulr&-)V+pZferXMiN4aNMcNbl#]ncHXVZcHXSXc-FY\rltJg%F*)>b08/WcHOPZccs`4cMu-K +cHXVZbfn>Wcd0hVaNMlN`llKC`lufTbg+MYbf\&La2Gd&X.uDdVPKoVR[fk8R@Kh>StD[LU&L\f +T:MF=Rf8itT;&-ZX08S!U8=ceXL,IH]YMG"]!f;j_S3RcY5YUaYcb%,Vk^#_VQ?u(XJVS\Tr"ir +ZF%'GXf8%dTV.mKT:V[KUSb&pYd(F4Tq%R@TrPE'YHP"(V#I2UVl?PgTUhUETr"]fVP0NNV6-eu +W2-)]Wj9(B['-I*U7S$]\[o>[YGe4lV5^]-\$iZNYH+RtUna`\US=HSTDkG^SGo)oT:hpRUnF

    bg"J[ai)3Ac-ObaccjMP`l5s>bKeMa +e^i:#d`f\J`Q?ENbf\,Rd*BbSai_iRdF-Cdb/hWFbg=hecd2U9s3Dk9cd'ndda-.]cI1.c`kT$d +URdmGTV%gHS"-(ASXuFFT`1PbTV%kRT`:SkTUq^ESt;LET:hjLr1F+`TV2:Vs.94^rgs+]=J2@\ +TqS3VWN)nrWMcJ`U8=`_USFciY-"e-XfJG$WMcViU8+T_US4H]XK8CsUSOW[WMueoV4jZ[V5L8j +Wi2_fTqJ$MU8FoiW2?DeTqS3TTq\9TTUu.T$(d]XSt;RGT:hkVT*:m]TqJ$Mrh0:_%%s2_S=Q4? +SXl@DTqq[a';hRuS=H.ASXZ1FVO3IAcLLi0rVQR!s8Muqrr;urrr*!!rr.KKX8d\~> +rVulr$NL,'p?'8fVS($jrk8?G#f"0k_SX71`5VVl!6+rU&B;]+_8F.*_8F4._8=./_SZ,d)8a;/ +_SO+*^r"%-_ns4&^;[t$]"uD+`5TXn_&C2.`59@&[B[0Vb08,TcdC+cd*g@kdaHOle,Ibte'cUh +rm1ntdaHOid*^2=b:(TWbL+nph;RMZin`SWkiL^TeC2aeaN;ZLb/q]Eair/[cH4&Fair$/cMl,p +c-"/ObKA#NrlG,]50M3rcHskZaMu6CcdL1cc-+8Rcd'bYcd0kV`lH-AbKeM^ahu$;cdC%\aN2NL +d*pCebJqK@`lHERd*BkWr5],cbg"DXcHF?/ap-&7d*U+ac2Q&hcMl/fc4J=Ibg=e_cI1(JTsrhI +qu$Elrn[SUrr<#trr<"4r;603US"s9ahu'9`lGp,]"Z&#a2l9=_8![q]"Gbo`5Ta9`5BI/^UL_f +a3)KA`5]g7_7mUt`6-?Mb/:s+]thP+aMu'2]tV;!`5fj7_o9R4_nsC7aiD61\@/cT_p$NWd*Bn_ +daJ-Bs3gno!n,KDldGd[!Rf?ocN_bBcd'k^ci23,d*L"^bKS8VcI((edEp4`bKS/OaND`LbPfce +b5p/ErmMY2d*L(dccj\^da67_bfe/Pcd:"acHQ:4(XL@Kbg+JVb0A)LbL"_cd*L"^bg"GYc2Q#h +cMl/hc3;P>cd'k_rm:\j"4>QFdJ;5jd3mAid*L(bd*U+acHjh^cHXPUcHsh[bK\,8Up/;=rVccq +rVc`qs8ITLT)X<~> +rVuiqs8<<"lH-$/a4/S_d*r!Bs3q"r!n#BBqTo5irQl)&d*^:hcd:+hda6Cida?JO`P]U7bg4PWb/hWFbfe,Mbfn5K_o0L5air&T`k]C/bg";M`5K[Srll;(bKA&QbK7fKcH45Tc*O"L +g[P+=rr)iqh>[QUs8W)ts8W,sBD9`KU:S[tbg+P_e',hScI(1nf@A?scHOGQbK\G`eCE*uda?If +`l60Of$i!nda?IhcHOP^g"bE:d`otZcdLCre^2Ucc-Oede'QFge^`0tdF-OpeBc7T^Uq.oaNVlM +a2Z6EbPoZabPoWcbK@ukb5f]`bQ,icbQ>u3c2Pm'c-4ARaN;TIbKeGYcHXSTaNDTC_8F7/`;[d[ +aMPj>cMkueao9?ib/_K@aiVWC`5KR0_u7UV`l.kq(WOG2`5]a6`lQ0)b08&Pb0.rNb/h]KcHODOai(EWXO$G6qu6Wprr +rVulr%0-8(pZ]bsX2E<0aNFM*!mJp6oumE\rQGesbfn>Ub0/&Tc-+>Uc-4E-br!Yhc-4ATbKA&S +c-=JTa2lTN`PfpGccsb[bKJ#Kai;65\>uBuV5L/aSsu4[/!Tq@pJTVSNbV4amCuV50fWTqIsK +T)P8[SNrg@U8"HXSt)7E-[TUqaKV5^MqVkp&X +TqJ*XXJr(mTqA"WU'@EjVl$>hU\phcUBmTfTUqaIT:MPPS/@fgTVA0UTq7mKR@^=VQ\q]hm.pSZ +rr)fOrrW3"s8N#ts).c3p>rTq@mIT:hmRV50o^U7\$MSt)1:rgXq" +TV.pHS><'YU8+KVTVA0QStMjTUS+6OSt)DNU&gs[rh'puTUh^KTUqaIS=6%EVPKu\TqJ"UTDkJl +T:V[ISt2IDSXuIFT)PA^Scta[TqJ!Kr1=(_T:VVOS1'r#TqeE[VPU&[S=?%>S=6%EV3d7>cLUr3 +rr;rqs8N#trr)fps8N"Ks/#aG~> +rVulr$NL,'p?0AgVS(!hqn?>c-?.2s325&c-+G\bg"P][@k%c +o)&CbrVlfPrrW3"s8N!9s8MrnoZa2'[)g>*_o9U7`504(_8=+.`Po^m^b`^<]tV1m]=Ybk_o9@' +_8j^?_SF(+^r!t(^r+46a2>^._8=+-`5BC']"5Ph_8=++^qTf_s1T/a`lH0?^q$hX\&-A:da-4a +cdC/>d/;8nda6@hm*Q!bd*U1fd/MAic2c,gc6gf^cd'bXb0/#RcHXSXbfe/QcHOGRbg";Pbg4V\ +`l6Tc-Obada6CfcHjbXbKg(4$d6Q3cI't_bfe/ObPo`cblQ,7 +rltMgqT])erm:\k!7:>b$..#Dcd'k_cHXW4c5=gMbg"JZbKS5OZ_XhQo)/FbrVZWns8W(Ls.97@~> +rVuiqs8a$d6]8bKS2RaiMNDao9FQaN;NEa2uNG`5BR6_ +SO42aN)$/ai_ZGb/hZE`lH':`5fp<`5T^5`5K[9aN;TGaiDEA`PTR5`lQcHOGQaN)?Br +lP2_!R&Xbb6#i0b5TQab5KKbb0/!"ao]]-b5TQbb/sY*(!4V@bK@oIbK\5OaN;?'U92c2qYL0cr +r;uurdk*Es*t~> +rVulr%KHD)pZferXMiH0aNMg,bP]Tac2Yrebl5ldbQ#cic-4AUcd)O6s31blbKS2Rbg$".2p9Fj +c-"5Paj&2ZccjJLaNr2Taj&5[cHXYYbK@rJa2Ga%WhQ2_VPTuWS=H%8R@Kh>T:_gMT`1S_Sd(aU +R[]n?Sc5-BT:r$WW2?AdVld;7]"Z%s^;.\*_7HtVY,eLsUS=HUTUq^GTr"W]TUqjQUS4?RT:_dN +U84QZTqA!MSXobOs.B=b2kZe8TV%gKTqJ$MSXZ1BTq@mITq\0JR[fn=St`*ZSsPb3Tr=i]T:r'X +VPg8cU7\$QVl-JjU&L\fTqeEZUA^bmU7n0LStD[KTqS.VT,O;kS"#q=T:r!RTqIsJSsZ%EW0N4: +d-LQ,s8N#RrrW3"s8N#trtt\2p!0A+\'3+=bKS2UbfRuLbKS5Vcd'c5aq;_8a2l<@`Pom>c-OJO +bL4nfrl[7CbK\8Rb0A>^dEThVbKS5UcHXMO`5K[;bfn8PaN;TIaiMQHcd:(a_mcV:R@9bAT:MF> +S=Z>OSc>;]SH5=Srgs.^r141bT:_[FStDUGn=T`P!2'7^0qY,3St2CBStDXJTUq^ES=Q:DS!]Y8 +R[KY:TUhC7T;%sLTV7sKT:MLASY2^NT:hkVT+.KgUSO`]UnXQWTUh[Jrh9goS=#e +rgs%[$D=#_SXuFDSXuCCqk!h\!2'+Z,FtEuSt)=AS=H.CU8+N[V50iWS!oh;SXZ7IUm@+ +rVulr)#sU5p?0AfVS'sf]t_@s^;%J!_8=.0`P_\ns2G#U'>hZ)_Sa=1`P]O.^r"(-^r!t(_>_;9 +_8=%)_SO(,`5'.(`5fm9_SEmt]>2>'`l?!8_SO.._SX4-_o':#Za.'T`lcHJd*^1acdC.edF$Ci +dF-Firm:\k/C)JacHXSVbKS8YdaHFccHahfg>:fKj5T.\i7uo2cHOMWcHXSWc-O\Zb09h/1XFFq +ccsYUaiV`McdC.ecd'eZb0%oNbg"DYccs\Ycd:%abfe/NaN2NIbfS#Oc-OVUb5TR1bg"P_bK%ZI +d*g:cbg"GZd*^.^aiV]Md*pFic-"2PcHt"fccc=1rlb>as31Mds2tAb!6tMgrltGfs3:Pe'$JGC +d)sPYcF'=ShXpaErr)iqh>[QUs8W)tB)hl.qt/..T!ZSZ_SjF3`Q-$;_83k!^Vdt)^;._.`PTF+ +^V7@m]u%_,`l,a2`PoX*]tV1n_8F+(^:h.h]u%\)_8=%)^qmh'_o'I3_Sa:)]=bbf]"l8%`lH!0 +[Bd6Vaj/8Zrm(Pj"OGB>d*Vd>!n,HBrmLho!7:Ph"OPQDdaJ-B$I[>Ld*^4dcd'k_rltSkcHcF6 +s3(Sgb0%p,b5]Zbap?27c-O_]cd:#;cMu/hb6H5:cHje^chu&lc-FY^cd2U;s3L\k):R-bdEg+_ +c-Obada?FdbK@uOb0.uNaiVa*bl>rfc3qnBcHXY[cd'k^cd2O9$IR5IdF-Ijda?Lkrm<+?cHab^ +cHjh^c-FSYcHa\Ybg"JZbK\;PZ_anRo)/FbrVZWns8W(Ls.97@~> +rVuiqs8!7Cbl!n#BArR(Yn6IF0+dF6Lje'cXke'lamdEp7g +cd:4mdEg4jf%&6sccsVTcI14me^W$ocdC7ke'ujqdETYC\@]Z"aiMNEb/hTDrlY8_"3AU+aSj6[ +a=PBN`lH*=`5KX7aNVoPb0.uRdb!71i8EMOiSE29cH=8Nb0.rLai_iNaiDL$asG6UcHOGPa2Z-? +aihrSc-4ARaiDHCaN;TIbfn5Ob08,TbK7iGrl4rZ#KFg+b07uIa8X..ai_oSaMc$=c-OYWaiV]K +bg";N`Poj=bg4SYai;?@air&TbK%WA`W!mW`W*sZ`lJ&!!m8^0rlQ&#bfn8QbK@uLaN)KKaN;]M +Z_"SZnG<(]rn[SUrr<#trr/^"Nnj.aN4A&"j"g-b/qd$aplJ8b0.rMai_]Fa2lYG//FnG<"[q#: +rVulr%0-;(pZfeqXMiE.aNOP+s3:Pes3:PerltAb!mSs5rltJd$HgTSbKA#Nbg"G[c-"5Qa2Q';_SaOAbg4VT\>c*h +R[p(BSXZ%8S"#k7R[]e;St>eNs.0[jS=H1BSXl@FT:V[JT^eWUTUqbST.?M*SXc7AS=5n:R[KV6 +S=Q4@S=?%>S=5t +rVulr.0';Ep?9DeV7agc^;%It^V7J!_SO..`5BO3_o0L2_SO++_84"+`5DPj)8j;+^qmk%^VRb' +_na(*_na%'_Sa0rke]Ns2"`P*P]+iZ*qBbaN;WNd*BhZd*U(ad*^4e +dEp7ccHjf8bmM\>bg"AUc-Obbd/D-*bg4big"P07g=Xm"b/_H<`lcQMai_lScHQ70'?eVGd*Bq\ +b0%iJb0/&TcHXSVbPoZab72\?c-O\[bg"G[ccjPRrQ>&]!mJp6rlc#"bfn>Wcd0bTa32cScHOJS +bg$.4'$JG?bKS8Yd*KqYbKS;[daHIerlkDerQY_obf\#Jb0%oPc25^"c-+;Qb0.rLc-OMSccrhj +\DHoWr;Zcqh>[QUs8W)ts8NE'qt81,S[6AV_>V:O`ur@;^V7Cr]tM1p^;In+_8*n)`Q#^*]tD(u +`PB=(\[]6L]fa*H^:_"b[Cd/VMnciDAecih\Ad*^8?cj8%Gd*C"bcd'c6cMu,jcHXW5bQ5o2rlY;arlP2_ +s2tJfc-H76!R]9ncNhbAccs\ZcHZ:4rQbJhrm)/&dF$=fcd'e^e'cXjcd'k`rm;&!cd'bWaiVWH +b5TKub08)Qbfn>Vbg"DUc-=PYcHXY\d*U, +rVuiqs8<9!lc>s,a3i8Xd/28kd/q\@ci)5jci;>uda6@gd*Bq`dF.m=+O\`ddF6Rmda6@idEg1f +e'ZRle'ZLdc-FSVaNN#`f$aHCrR)P0c,@6(]>DV0a2Z6Ca2H$?aiMNC`lH0?rQ+uY!64rUs2=rW +"3A[/ao9@9air,]f%8O+f@A6ka2Gj1_oKpA`lH6HbK7iGa2l?Ec-=GTb/hWC`lQ9EbKJ&MaN4A$ +s2Z)"b0%rOb/qfLc-4;M`l?'?b0%iIa2lBFb5TL3b/qcJbKS2N`Pfj@bfn5Na2lBFbK@oG`lH0C +bfn8Pa2c9Ec-O\Zb/jP%rQ,)]a8X*Y`rX9(rQ5&]r5fVna2ZoaiVTB`Q$!?a2Z0@anj'X +`rF'gaiDHCaiVWEa2laiMNC`l6$Bb/hZE`lH0AaihlMb/q^'`Vmd_`Q-*B +aN;QHb/sP's2YYlaN2EBaiMQDaiVTC`r=$Y`[o0PaN2KFb/hZEaN2KFaN2NIaiDEBb/hQBahk9W +Y0ZV6qYgBlrVlcos8N"Ks.KCB~> +rVulr&HD_,pZfboX2E3*a3)TMc-,P!"3\j0bPKH_bQ#dHbKA&Qc-=GTc-=DRbg";Qc-FPUaN2KD +`P]aBeC2agcHa\Yb/q]E`l#KqVkB]WUnXELS=>q4R%+)Frgj%[#G7TYSt2@?SGerWRK]4PTVA-O +rga4aTr"`hXT#=6X/;S]R?j/+S=cCBS"61DSXTMH,FtI"T:VUCR[KS5S"61ET:VUES=?"=S=Q7C +TV.mJT:hmOT)G,dS=Q7CSXc7BT:_^Grgj[lT:_gMS=,e9Tq\9SSXlFIrh:$tSt;RIU84T[Tq7mL +USXibUn[j]s.TCc"/2B[Sc5/YSHk[SR[KV8StH"T&YGS]S=Q%9Tr!s.VUFo0rr;uPrrW3"s8N#t +rsJ]$pbfRoD +^q[_*b0A,Nai)*>d*U+`bKS2RbK7`BaiD<8`5g!FccSt2C?R$a>1rg<_R%\'#ZSY)OG +T:_^GSXZ(:rgWtZrLO(_St>>As.97]"J20SS!s8Cs-a"YS=TVKs.0.Y"e(sOR@0QDRKJtHS!s>G +,+P:!U7n +rVulr8baN;TIbPoZab6Z>8aiDHCbKS30atV&_b0.rNbg"ATb08,TbfIfCa3)WM +aiDEBai_cLb0.oKb0.rMaiMQHbg"GYc-4E2bQ#clc-F\]bg">Qao9H_b5f]abQ#]bbP]KqaiM`Q +ai_oQ[%Oqbo_e[frVlfPrrW3"s8N!.s8MrnoZNnuZGjeu_84"*rkf#Y^qmn)]tD1srkAEF9"i!W +b07c7\[T/c_8!ds[(*lg_SF"&]Xkej]=l(t^qd[t^::Vea2Z!.[^a&e_8!e$_SX+$\@92la2>Nt +ZF7Kfc-Xb[bKS8Wrlkntc-FY]cHjh^cd0n^c2#Wfc-FV\ci22qcd'h\cHa\YbPo`cb6,u3bKBe, +"3Sj3b5B?`b0/#QrQP\pc-FSZcHsnacHcF6!m]$6rltJg%a`MFbg"DXcd0n^bfe/Qrlu,%d*L(a +cd0k[c-4>PaiDHCaSs?Ub6uJ9bKS/RbKS5VcHZ@6s31qscd0n_cHjh^c-4B0bQH&4bfg".s2u;( +bK7lLc-+5NbK$rcYg`4BrVufmrVlisrdk*@s*t~> +rVuiqs8<<"lGf^(`mE&Ucd;[=s3Lnpd*L"_rQkMhs3Cqscd0tac-=Q5cn*YncHt"cdF-@dd*^:i +cd1%fcH=G^dE^"\bKJ,Td*^+Y`lul[d*L(eccsf8ck=aPbf%0']"l>+`l?*@`PTU8a8X'Y`VRUR +`;mjS`rF"7`lH-Aai;<<`5Td;b08,UccsYT`l,a1^r+15a2Q$=b/hWD`Pfa7a3)QFaN)9>`l5s< +`r=![`l5ss`&[.*9QM`5K[:bKS)Ka2uECaN)BDb/q`Fai_cJ`P]R2a2uHC`5BR6 +a2e2#rl5Jha2c3=`Q60DbKJ&Mans-gb0.rKaN)[QUs8W)ts8NQ+qtA@3TXiCpair#TcMl-3cHOMYdEKh_da-4`bKJ,Tdb3C(b/q`J +dF-@gbJhQLrm=!Zd*9bZccaP[dEg.`bKS#GcdpXob/VQLd*U(ad*^7ebK%ZKdaHCZ]stVe`lZ?A +_o0U:aN)?@a2c3=`Q#s=r5JfY`l@tts2G2^`l?!:qo/]X`l@_m+NVUDaiMNEaiDEA`l5s`l7qq!l`'prl+oW%`cT-`5T^8a2c3>`5BI1rl4uZ"in^*`l?'uaT'9``l,g7 +`W!pWa8s?'pW3BT!6G#W!li:$pr3BU`lJ)"s2Y/Zrl5_ma2lBC`Pop@aMl-=_m#o=d..#1rVlfp +"oeK!s8W(Ls.fUE~> +rVulr&HD\,pZ]YmWl!!'a2uKIbKB@us2kJfb/qcJrlZn=bfS#OaihoMaND]Mc-"2Rc,mrIcHOAM +a2Z->aihoL_SXFAd*9eZccaDNa8X%V_S*=UTqJ0VU7RmFS!]J-R[]b7S!oh:S=?%=R[]e7R@9P3 +S!f\6R[Te=S=>q6R@0M6StD^OU7n6NR[KJ+Q'Ri-R[9D0R[]_3R$X,*R@9V6rg<_Org*YRRf8cW +R[j8Es-s.]S=KSL0:n`(R@9V9T:hdGSXuFCSXc7BT:_^GT:hgJR[KP2S=Z=AR@'G4S=H.?S=?"< +Sc5,YRKT.OT:hhTT)G8dTV8*RT:_^FrL4grS!o_3Q^F52SXuIGSXPt:SXH"CVj)n2dI7#3s8N#R +rrW3"s8N#trseo'p!'8)\')t7aN;TIrl\cH!PuTUM:=SXc.9R/WQPR2hZb +R[]k=S=Q4@S"#k7R$jD3S"-".R[TY4R[TY4rgEnVR[X5F +s-`qTrgEeRrgEeT%\&uYSXuFFTV.pLSXc1?rh'+]s.9[lT:DC>R@'>-R$a<@RLG[USXc4@SXc7A +S!of3Rff+KS=KSI0UnT'StMdOTqS-NR[08,R[KS8USF0 +rVulr+ohQ>p?0;cUq=U`]tV4o]tV7s_8*q*_ns=/_Sa:._8*nd_#M4u^q[Uu_8*b"_Sa2lBHcd'\SaNDZHa2c?Hc-+8PrQG5^#04g,bKIuIrl4uZ +s2k\lb/h]HaMu3=aij\-"3JX+ao0?gbKS5Vc-4DTaiXG&s3(2['$85>ccO>Tbd=%PhXpdFs8Drr +h>[QUs8W)t$ig5(qt/()S[-5R_#D.g_SNtZF.Eec-X_YbPo`cb6,u6 +c-?(0rQPAebP]QfbKS5VcHZ@6s31Vjc-6+/s2kPhbfe2PbKKn-s3)>&aiVWFai_fNbfe/Oc-=JW +bg"DXcd0n^rlbGgbKKn0s3;8'cHFDTbg+P\cHaYWbKA&Rc-QC9s3D,!bfe5Sb/q`Fa2l?Erlb>a +rlY>bbPfT`b5fccbP]TabPf]`cMu,kcHXSVrQGAebfn90b5]X&b/hTCb08#Laih`3VQeP@rVcco +qu-Nos8ITLT)X<~> +rVuiqs8<9!lGf^(`mE&Uci28rdEp7dd*Kt]rQkMhs3D;(cd:"bd*L"_c-F\^bg=hcd/2,jd*9i7 +c4\INda6:baiDNHcI::jbK.lOcMl-,d*Bn^d*L%ccca8>\@TJqa2Z-?aMu-:aSj*Y`Vd^Z`Q#m8 +`5V_qs2Y/\%*-H1aiMQD`l5p8_o2Pn"3/C&ao9EsaiMTIbK@oHa2l?DaMu0:`Q63D`r3p^aN)?@ +a2Z-ta8X*X`W*sX`;mpV`tcV5`5TaK`lQ6?`5K^,\`W!aU`lS/$"3/="`r*jaaN;TIaN2EA`lH-uaSs<]a;Dt;`lQ6@`l6'C`5Tm@Yai&Rn+lk[ +s8N#RrrW3"s8N#ts!RaAprPnlXq8WBRs2G&Zq8WHTrl+rZpW!W^`l?*@a2uHEa2e2!(rsY;aN)`Pfd;b/hQ@a2>-VY0c_9qu-Nnr<<3!rVuosJcDMF +J,~> +rVulr%0-8(pZ]YmX2<*(a3";&s3(Gboum?WrlZ\3aiMTIb/_ZLb0%oLb0%iKbfRrKaiMWKc-"/L +`P]X7b0JAX`l6'ubl>oib/hZErl#hn]sOc4TqnN[T:MLAR$F#+R$a;0R$jD3R$jEBQp@"*R[KS5 +R@0P4R@Ke9S!fV2Q^*l'QC+&+R@BY7St)7>R[]kSY2XJSt>qR,bCNqS!oe9S!fV/Q^F20S"-"< +R[]b5QBml*S=Q4@R@'G3S=]_N$(dc^Tq7gFS!fZCRK&WmQ^*i%R$jD6T:_[CR@Kh9S>3!HL8<5c +r;HZprn[SUrr<#trrbJqWEai_ZDbg">Rbg4V\cd'bXb/_E9`lucTb/MECrQ71B +`Q-9Od*L%_aMl*@daH[ue',kQai_]Gb08)N_7RG#b0JA^cH42Nb/VB@cHjPBXIkoLS=Q1=Q^Ic@ +rgE\Q)4R1fS=Q4@S"#k7R$jA0R@9S4R[TY4S"#lCRf]%JS,SiVS,Si_S",q7R[fh7R$dl>s-OXk +R$a5,R$j>/Q^F/.R[]b6R$X/,Q^=),rgEeUs-`nW,FtHuSXl:?R[T_9SY)OITV%gIS=>q8R@'>+ +Q'Rc)R[TY4Rf8cWR[a;FrgNtXR$d<0$^d?NR?s;-R$jG6TDbH,TUqU;Q'e#-Q^jeGQ]\,gnGW:a +rr)fqrr2rsrVc`qrr)iq!rr9!JcDeNJ,~> +rVulr$ig5(p?9DdUUnC\]`,Sd]Y2%o^q[_'_nj4,_8=(*^q[\$^qde'^V7Fs^q[UtrkJHJ)o',% +_8=(,_8*q(^q[\$]t:tl^;.\,_ns=+^&>bH_%jc#^qde%^:1DQ[_Tu-b0%uUcHOPZrQY>c#L1K: +bKS2RbPoZ`bQ#idbl5ikbfe2Pa2c3t`8baiXP'!lrF*rlZ)!aN)BDbK\DZaiDHDai;69a3;cLaN4>&!m/U.rQ>,]rlG,]!R&Xb +aUQ>3`l6!@bfn5O`l6$?rlP2]!m/U-rlY;arQ,,`aiXP)!m/U-rlP2_s2b_jbg+;Oc-*Gc[b^QQ +r;HWNrrW3"s8N#trt,,*ous,$Zc'es^qmh&^:hJaa&9mo`P]L+_oBa8^:hA#_n`t!_TU0?]tM%l +`Q6-?`PfX1_7m_+cdC%\`PB@/_SX:3`l,[(\%'2laN)99^;7e/_nNh$`PT9qZ*V*_cHj_Wao9K` +ao]c2cM5ZabQH,6bKBb+"j5$4c-=K0blGrdaq2b=b/qcJbK@uLb0%iJb0/!-aqi+>aNDZLbK@oI +bg+JXbKJ,Scd:"_c2>fbbluD;cHXSWq99/gc-+>TcHji9d/VE'c-+;Sb/q`Ea2lBGbKS,Nao'<\ +aT0K^b5f]^bQ#]ebg"DVr6>8c"3o'5b5KKeb0.uNaiXP))9Kq<`lZEGa2lEBZDFhSo)8LcrVZWn +s8W(Ls.97@~> +rVuiqs8<9!lc5j(`QulRcMl/hd/VGkc3_hBcHjb[cHab]rm1Vl%F<;DcHje[cdC+ccHac7c2c,f +cMu6!cHOS[b/_WGb085[rlt_ib0JAZcd;[=rm1kpb/:j"\\S3a#fXj+a2Gs;`Pqhrs2>Ph`Pod7 +`5BL2`l?'?aN;QFrQ5&]"Ne^'`Ph\l#/nU,d*U(]r5or!`lH0CaiDB<`lQaN;TGa2l9? +aNFJ&!lr=#rl"rW`lJ)"(<4>3`Q#s@cHO>I`lQ3<^qdn1aiDB>rPnoXr5SiZa8X'^a2lBEb0'_*% +EQN+_o0X_o9Uo`rF!Z`lH1"ao'0daN)ECaN2KEaN)=!`t$),aNDE=aiLZTZJ"aDr;HWNr +rW3"s8N#ts8W!LpX#b1\]rC@bKS2Tb/r#Ze'c[le'l[jdaZdnb/hiTda-.]dG!@&bfn2Qe(3(Kd +f.TNbg+eoh:gE,bg"JYcdgUse'H.Ua3N2df$r'kd+$Xpc-=P[bf%0&[_0T$aMl!5`Q-$=`PqVls +2Y/Z%E6?,a2Z->`l?'=`l5po`W4!V`rj?%a2\,!s2OuWqoJcW!6G/[!65#W$cg9,`5KX7a2uEB` +r*gT`WaE&a2Z*;rPeiXr5JoY`Q#s?aSs<]a:?83aN;NDa2Gs:a2uKHaSs3^aN)<@rl4uY!64iT" +ieU'`l5pm`WO3#a2n2!s2G&Xr5KDh`5BR7aiD?=a25$SXjHV8qu-QmrW<-!rdk*Bs*t~> +rVulr%0-;(pZfbnWklm$`lS/$rlb>`!m8^0rlP5ar6#&_s2kYkbf\#Jai_`Hao0@(ai_`Hai_`J +b/qcKbK7iJb/V?<`l?*Dc,n,QaiMZMrlcM.aiMKA`PK9rW1p#_VPKlVS=Gt4QC+#*R$a5-R$j;. +rKdkWQ^O5.R[KV6R[O/E17Xf$S!fP-Q'@JsPEV)[JSXQ":S!fY/Q'e#-Q]mSsQ^O2*Q'Rf( +R$j;,Q^*l-rh'CdStDRErgXstSXuIGSt2C@S=Z@HV5'WOS=Z=AQ^=27TUq[DrLP4(St;LBR[KP1 +Q^F/.R@9V7R[KV3Q^*i%R@B\6R$Er'Q^RiA/")iqS"6+=R@'>,QC+&+Q^3etPa@c*S=Q7AS!on> +R[g.MQ%u3`mem(arnIGSrr<#trr<"4r;635UnP9?b/MEAaN;H@bg4V\c-4JXbKJ/WccjDIaj&)Q +a2cESf$)1T`Q6?Qd*Bn\bfn8OajJbof$_gaaihfLcd:%ab/D-6aj8Jcd`feSc-OSRa3;iK\Z;9f +R@Kk>R[0;/S!s>Es-jmpR@0P7S=?%=S!oe6R$X2-Q^F2/R$jA0R/WNMRKAnGRf8]TRerKWR$jD2 +R$a6>Q4oUNR$X/)Q'[o+R$O&)R$jG4R$df +rVulr('":2p?9AbUV"L^]=knj]tD%n^V7M__Z.Lq_Sa:._8*n&_8!b#_8*n(^VI_$]t_D"^V@V$ +^qmt.rkh:D^qde(_na%%\?N'A^;7k2^:V4u^qdh(^qde&_SO!sYckILa32WKcI't^bg+MXbKJ,R +bKS/Qb0%oMb/q`Gai_cLbKS/QrlbAcrlkDb!QiF^a",'D`QZ]Uc,muFa2uNHa2cEqu$Elrn[SUrr<#trX8c*r;6-1U7\d0_S,o`A&#gr`5T^2\@&]O]"l5!]tVA&a +2P^!ZF@]l_nDJ)`PT:"^r4+(]tV;#`l#BnZFRfka2Gd,^Vdk![ +'-aG`QZWNaMudaiVTDbPocpbK7oMc-O\Zbg"ATqTKDlbg"GXc-4ASbfn>WcMbugcHZ:4$I$Z9bK7iG`Q#s?r +lP>a`lH0uaoBEaai_cJq9&`Z"3\p4bPBB^bPoWcbK@s+b599taN)?BaiDB@b/:H[Z-i+>rVulqr +Vlisrdk*@s*t~> +rVuiqs8<<"lGfX%`mE)UcHlL:s3L_j!6tMgs3L\is3DV1cd'n_cHjk`d*^.bd*L%bdEp1ad*U+` +cdDa/]!QW4Z`@Ja=_og9MbK%Q>`Q-*@`Pom?bK.Z@`lH3A`5Ta; +aN;QFa2Z':aN;NEb/jS&+ND@;`Q-'AaiD?;`Q-'Ab08#K`Q-*?_7mV!a2l6;_o;So%*?Z5`l?'@ +ai_`Ib/sS&$-C9.`Q#s?aiML$`;djW`t-2/`Pfa7`lH->`Poj:a2\(u!m&F&r5KDj`59O8_SaI7 +Y*uZMnb`:arVlfPrrW3"s8N#trsJ]$peH +`mNDdbK%]Jc,mrC`5g*Pf?_LYbK7]CcHjnccH45Te'ZFac-Okhd`K>AaO&Jge'H7`cca8=['[E^ +aN)69_8F73`Podp`W*mM` +rVulr%KHA)pZ]YkWPZm%`lQ9uap,u1b/qiMb5BH_aqr7Cai_fLbKS)Nbf\#Lbfe,MbKJ&MbK^%0 +!6Y;_s2tnna2c!*[(OE"cdKnRc-H:3!6P5\'?7o&[&KdnV5L2aSXZ+:Q'I]&QN!6NQ3EV@QBd`$ +rfmhVQ'Rc'R$a;/R@*r@2O^&#R$X)&Q'@AkP*qo4R[95%Q'Rc&PEM6"Q^3hsPEqN"PEM/sQBmo( +Pa.GtS=Z=ET:MRErgO+[R[ot?T:GnL':YSbT;/'KS=Q1?R$3`$S=Z7O(^W"=_8*k(aO/GZ_o0U7^r+=l*cQC=A9R?j2- +S=5k5R$jD3R@0M5S!ok:R[KS2Q^7?3s--QLC.DQC!r(Q'D93*gDtVR%'\>TV8$NSXPn2QC!r(S>)^AO/'ndqtpBmr;Hs$rr)fp +s8MurrW<-!rdk*Ms*t~> +rVulr%fcP+p?9AcUV"L^]Y2"krk1e9^qRV$_8=+-_Sa:._8*n&_8*e"_8=()^;.\'^V[n)^;%V* +_nj7/^qdh*`5Ta8_ns@-Y+(TGZ+S6']t)&!_8*h"^;'W_&\ki]Z*qEgbKA#RdEg%\cHXT4b66&4 +bfe3/apH22aiMQDaN2KFrlPDfb/qcJb5BH^asP*E`llZQb/VB=aNVoM`Pom@bK@iDa2uKE`Q#s? +ai_cJaN))Y$-1-/aN;NEa2l@$ans0ZaW&=Cai_`Ib/hZGb/q`Gbg+8M +bf[2][b^NOr;HWoh>[QUs8W)t$ig5(qt/+,TaiVWF +a2Z*;a2c9A`lH0Arl5#Xrko#[`lH*>`lA"rrPefTs2>&Za2\"s!li3url,Sg_8aR5_oTj#R^1Z: +qu-Nmrr1aR!ri6"rr2rt.fB2;c_dJIbfe&Mbfn8Sc-4;M`P/XZY.2Hl^Tt,XaNi;__QTc1Wk$C# +rl.%8\$<*@\]<+HcG[8oUSYE>cHjnf`36AS]t_D&a3)QZb8`Pf[3`5T[6`P]U5a2Z$;aMb +rVulr'`\+0pZ]YlWPZm%`lQ9Eai_`Ib0'\)s2tDbr6,,_1X!q^aihoPb/h`NbK7uRbK.cLcHOAP +bK.`GbKS5Vbf\&Na0q_1V7=Ilf#YbScHOMTaSj-m`koErWM6)_W2H>[S"#e1Q'[f%rg*SL&XJ]I +Pa%GtPa.JtPE_;sQ'Rd9Q8t4pQ'[i'R$X,)Q^*\nOdDQ*QBRAlQ'dr'O,oKjQ'IMnP*M5oOcY`j +PEV8qOctojR$sM8SXQ(=rgFmqR@Kb;SXZ"7R@Bb;SY)IAS=Q.=Q]dQ"R[fk7R%+&C$_*`XR$El# +Q^F,,QN!*OP*MB!Pl?pWQ^3l%PEM,oQ'R`&Q^7W9.$U!_Q'@PuQ'IT!Q'7>lO-#TjQC"&0S!]P3 +Ssu:HVj3(9e*d,4s8LdQ!ri6"rr2rtC&Il$cD@8DaiME@aN2ECaiMH=_RcnKWjBO[]<89H`6-HO +]rRctV6n=d_8=(%Z`U70[DU88b.tE_T:rR.b0/&V^oFHA\@T>g_T'X.W1Bcq`QZ]SbKA&P`42h= +Q^4#/SXGe1R@BZERK&ZORKo=PS!ob5R$[f)dEO/'ndqYL-erWiK&rVc`qrr)iq +!rr9!JcDeNJ,~> +rVuiq%K64ukej'h]#;Fs^:q5Y]E5g^^\u"K_I13s_SO%&^q[\"^:qG%_7I=r_7mOo]=GSj_nWgq +^VR_(a2G[%]"Z#"`jqUgFG6O(c,d/j]>21t^V.7l^;.V&^q$eW\%]o+ai_oVccjYYbfe5Sb0.rN +b0%oNaN)@#aSs3Y`sTr0aiMKAa2c9Db5TTabT+aDa2uNJa2Q$;b0J8P_o0R:b/q]D`lQ6@`5Tao +a8a0Y`<+'"a8X0[ao9?ea2lBFaN2EAaSj6[a=>?Ub/qW?`5]pAb/q`GaiMNCai_ZC`lH0Bb0%fG +a2Z*;a2l?BaiV]JaSs3Ya8a6YaTBQ*ao9?]a8O("a2l?BaN2KEaN;NEaihiJa3;iMa32T/S@75C +qY^[QUs8W)tDZB\4qX_n(T!H5L^;7Y$^;7b*\YtaMLkgeHS">grJ<-M4]sF2^H?O:XVS0OD +TTbIuN/<[m\\Y_HM0O5pMOh8u`Nk_XJr,;?PG>4XS;Vc;IZ^8.`5]R*^r*t"['6jH_o^*EaN)?B +aN)?BrlP2]"j+s2b/hZiaUlP8aiMQDaN2ECaN;NEaiVX'`s]o+`lQ3BaN2ECa2\,!#g1?7bK7cC +`lJ)#rl>/_aN4A$%*$?-a32]Lb/qfKaiXM)s3(Vhb0%oNrQ5\nb/q]D`5BO6aNDWG`Pfa9rl>>d +aN)?BaiVX"aoBEab0.uNpWEQ\rQ>8baiOJ'*6?1@aN2BA`lH*;a3)E.VQeM>rVccpr;HWps8ITL +T)X<~> +rVuiqs836!lc5m*`QuiPcd;[;s3:kocHaYXc-FW6c2Z'fcd'h^cHXV\e'Q4\d*U%[bK7lMcd0eS +`lcNJcI'qY`Q-*Ed*]e0M1:VjaOo"U\&QV8d*Kq[cHsqdd*0D=[^a#g`P]U4`l,^2`Pf[4`5T[5 +rl+oU#fXa#`Pf^4_SZ;i#fXa$`59C0_o2Pprl?A-`PKL4a2c-7_8F:8b/M68`5p'@`l5p:a2Gj5 +`Poj:`Q#m8rPJZT`;[aU`r*dp`lH*<`5BR6`lH*=`Pom=aMl'5_8F:5`Pod5rkoPj`lH'9`5Ta: +aN2E@`Pf[3`Q#m9a8X-^`l5m7rl+oWs2P5_a2c0r`;daT_udot`W!jn`Q#p:`5KX6`59=/a2,X5 +`N>Q7g[Y.Td*K\;T9bb+PF8>KTT>&$YeS;pVNHR` +I#>5O`O`+AS!o\.S$'ZQ_5``PJr>nm_pm)JTSebqQ^FMQ]=4i0MLpbZY//T;cHOSZbJh0'[CX2o +`l,a1_o9Uo`;[aM`9bJC`;dd_`l5p:`Pod7`Ph\n!lW!prl4uVs24iS'uRu0a2l_ns=1r5ScUs2O-=$H0p& +`5KR1_Sa=0rPT5c`l5j8aMkH[Y0QS8r;ZfprW<-!rdk*Bs*t~> +rVuiq(B+1*lGfX"_99s>ai_`JaiMQFai_]GrlP5_r6#&]9?PAtaNMlP`5g'EaMl0;`5^!Da2>d6 +aN)HKbJh<8`Q69J^nZU1N2snId_*!,ai_lOa2Gp9`l5j0[Ap!rUo:2aS=H%7Pa%K!Pl?sJPQ7!H +PlHpKP`q@1P5g^PQ'@PuPE:oiPEZ!2':+uNPE:okQBdVpNffToQ]d>fOoCOiOcGQeOH5H_OHP]e +P)t]cO-#QjQC4/-R@0G1R?s;0R@9S3QirP*;&jO,f9aPEhH%R[TS/R[on< +V5T]:W7:;6rr;uPrrW3"s8N#ts)7i4oZa2+\&c\1aN;NCaiqrEYFC]:O-#X%VOWR#Q`Rg<];(@; +I(OI*#`aLnC3It!08Uqb:$\snG3Ockp!XgYR7R>Z]USZ9?KdEBYUbf.,nT9tq2 +S",k2QC+,0R@'A.Q^RiAs-X+\S=>t8R$X0=PlR'EQ2d'NQ'R`$pQblGQBqN8rfdJJP*>m1rKI>F +OT(@JQC+#*Q'.8mPQ$gZPa.JuPa%ArPEM,mPEhDtQ';33"-]"9Q2['MQ'D-1s-=CbP`q5kOcu&r +QBdVpP*D8uQ'R`$Q2['NQ'@O&Q2d'^Q'@MrOH>TgQC455T:hmNT:VR@rg4.]R%:"JQ]S#dn+leV +rVQQurVZWns8N"Ks/#aG~> +rVuiq%K64ukej'h]#;Fs^:q5Y]FMWi^VRe'_8=(*_SX.)^])#5^V7J!`P/am]uu$9]u71>NM!2T]YhRs\@TDk_SE^gZF@TgrlPr"d*Kq\cHFDTbfe/N +bK@rLb/hWDrl>)[r5ScW/',cN`Q#m;aN2KGbKS5RaN)BDaiDE@aN;ZL`l,g8aN;QF`l?'>`l5m8 +a8O!d`Q#m8`5Ta9a2c9Aa8X-[`r='Za8a-ea2l?B`l5s=ai_cJrl#\oai_`Ha2l?A`lH0B`l,m; +aN2KEa2Z-u_un!!`lJ&""38F#`r=!eaN)BDai_`IaN2ECaSs6[a9BW*a2leoaN2KGb/q]J +cH+&Lafq;Ch!t:>rVkXQ!ri6"rr-g8rVQH_bFtN5_SNt'_SEn$a2t]F?Wh;nE+*="H>[/&Jt]<6 +G\qA8>$-'J\!V2JF+Sp[BRd"oU3L$PDKK3!V9HH"@;L74?WCm$Ru;B)E,]]5G*g(i^U_"p_7R(Y +Z+.Zlb/hTBa2l?B`lS/$s2PDdbKJ&Ka2uHEm`>XRaiVTD`r=!`aN)BBa2uHErl5>b`Q$!?aiMQD +a8X*Y`tQP:bK@oG`PojrVuiorVlisrdk*@s*t~> +rVuiqs836!lc>s*`QufOcHuR:r6G>drQbGfs3=QhcHab]c-F\cc,@fJ^:(DTY-5FS^U'uE\\u_A +cb?EQVQmkYb-[+@@XP)pcb5s=X0o[bda61\cHjnbc,7-$\A#l!_SX72`50=/_o'F2`Pf^o`W*j\ +`Pf^6`5KRk_Bd(;`P]R0`5BO4`Q#s>ai_ZC`5Ta9`5BL3a2uE@_Sa:2aN)="`='](_Sa@2`Pod7 +`5DSk"N/0q`5_Vls2Gkn`Pf[5`l5p8_o0R7aN2B=_ns@3a2Z*t`;d^h`Q-!:_Sa=3`lH*<`5KR1 +_SjF3`Vmg``Pf[4`l5p:`Q%ks!li3urP\`R$H0j$`l5p:`l,m:rl"iU&&c?$`Q,d0`PnsIZeP$H +r;HWNrrW3"s8N"8s8Mrmp!0D/\]i:=bg"ASbgY+XP\OcVL4!iXJ;/AeEK703UkEu>G\1K?ZbiJc +EIEb&GB&JGa/su/C3b;CFKjB7N,r$1H@C9iIYFWGg +rVuiq(B+1*lGo^#_99s>ai_`JaiMQFai_`Iou]hIaN;WOaM5a6\Zr?@WiEJA]D +s-"LhP`h,hO-,TgPE_>uQ^!YqP*;)lOH>WiQBdSlNKF+%!frG*rf7MKO-,KaOH5E_O-#NgPl@!K +QN`\AQ^3r)rg3YMrg#:+QB[Z"QC42/R$Nr$Q^=,.QBml&Q'R`&R?j&#P*2)qPE_8mOcb`fPEM,q +Pa.PuOT(D!PE_>sQ'R`&Q^*f#PE_;qP`qAtP*(oiO,f3[Ocu#qQ^F/,Q^XJ5SY`9NMQ,.qr;Q`q +g]%?Ss8W)ts8RKEqt/./U:87d`Q60B`lQKR]T?`6GCk'RD1$qYBl/a,[@i%mGB@;%JZle[H#7h_ +L3.WhP*D9! +QB[PpOckrnQ'@MsQ'7DpP5^XKP*;,qPEc'0s-*GH"dPC>P`q=.PlI!MP`q:0OU.2:Q^3l!Ockq, +Q2m3LPlI$:PQ7!JPTuBVPECujPa.Z*SY)RJT:_^GS!f\3Q^=8=V3d:=bO53%qu$?j#6"Jurr;us +JcDSHJ,~> +rr;us+oVH?r:]aN;TIrlP2_rlP2_s2Y;ab/qd)b5TKtb0.uNaNVoL`lZ<,S[I5CqY^?m +rr1aR!ri6"rr-g8rquZcbbCZ5_SX"&_SO""`QY8o3CIe;Bgb6qI +rr;us&cM_-rV5a$VQRqabf\8ZcHjf6c2Z#dc2Z#fblZ28c2Q!]c-Fb]`6#W]OHPfbL68("OG/OX +ZHUY*Rt5j9O.a%tU2iq%EM9tJP'D/&MO_B-d`fkYc-FVY`4NFd]u%Y%^r"(.^qmq*_Sa=0q8E[QU +s8W)ts8R!7qtA@5UU\LjaNVoRbK/)`[<"`4HB!#C9l,W;AmB_`[$>`WMhu=P?CANd<)IIlO_[j6 +W5>?TBQ]5e9h_(sUhO4kQ@N+.@#9ndAo``gIVWSYcf*?oaN_lF]stP`_8F4._8F73`l5g4`5MYm +s2"cRr5/EMs24oToYgaHr58ZU`5MYm&B)K(`5T[4`5KR2`Pf^4_SZ;i"iSV7N_&L2+_8=.._o0L1^r".1Z_OYKnb`4_rr)irrr.KKSc=3~> +rr;us)#aL6qtKEsUoVATaMlaZ)\t3h38T(*,XcRdLJV]f,c-=5C_84%*]sOf5StVpQS,Sc\Q'.>rPEV8sPkgUEPlI!NQB[W! +rfmGJ!0mJH&!E';P*(rlQ'R`$P`q8oPPg[FP8BCDOHPchPEV,lOcY`hOcbiiOckihP*>m.!0d5C +!gAn8rfmGH!0mJJ&P*D9!QBd`!Pa.K!QBhH6"d>4:QC!m9P6[>;P`h5oOco[,&X&?CQ'@Pt +P*2&nPEM,mPEhF4QN!-JQ2QsIP6mJ:OH>TdOcu&qrg*SL%[roUS"lpKMlG:trVlirg]%?Ss8W)t +s8Q^/qt872Tsi%``5p'Ba2H6PZ#;m$G):038SEd+@T[lPY`WmGLP9J@>*caU:ebY^O(_=+VSAdG +AT_IrR@W7*]Htd)Lb21La`lc3/X.PcEQC!o&Pa;97s-3_QQ^*i&rg4"[ +S"#k7Q^F/,Q1:+=QN*rg*SNs- +rVuors8F,=qtB6lTr,K@^U_+p]Xtbd]=knm^qd_#^q[\#^V7DZ^+m=8^V%+eR:fN.D.m*Q@rua& +?u).JXaY/%BPV:"P,41D3C7YNRXSd[BO4_WT=r(TrjilX^V77bZ*_3`aN)?DcHXPUbfS#ObK9@u +rQ>JhbKJ#Lb0.rMrlG\nai_fLbK@rLbKJ,RbKA$,aoBKcaiDNGrlGYkb0%iJb/qcJaiV]JaN48! +s2b)Xrl4lVrl4rX"j"g-aN)C$b5]Wrb/qcJbK@rLaiMTGaN;NDaSs3_aN;KBa8X0Ua8X'ca2l?D +ai_`Ib0%p*b5]T^b5]Web0.oKrQ5Skc-F>JaiCWU[bUEKqu-NMrrW3"s8N#ts)7f2p!'5&Yee/i +_8="%]>Vs]8iC"9R;Y;SDjZVu;/i;2Mf*WqMf26SJ?ElR9llboC.;^&[@;G^IZAh:3/sGE"j%Ic,76+]t:e\Yd:pV`5]a7`lH0BaMu6?aN=G("N\^,b0'\)!Q`:Ka8 +rVuors8N&r%J];2Vm".ebfS5[cd'f5bl>lbbl>ldbQ?&5bl5jCbg"GVaN(6&A8ls?AmoS,I;inB +TZXWsG]IeGEHmqTQXrHUH(q-kDK'Z3@X5#sd*Bn]rlc)!_n*7b]YVG!^;7b*^VRh(_Sj@/q833L +rPJWPqSNHQ_o'F2qni]X`Pfa6_o'F2rl+oU%)Tit`5TX3`5BO4_o),brPJWRrkncSrPJcV_ns=. +rPJWRrkeZPr5ANNs24oRrkncS#fFU!_ns@1_nuAi"N89s_ScAkqSN?N_>_=L_u@OQ_Zdop_o0L2 +qo&NP!lW!ork]/]^Ve"(^;@^eRC1lAqY^[QUs8W)tJ,fNGr:eR9U:8:haj&,Tb/_l^UK'Tn +RA>.%9Rd^qmq*`5T[2^Ve+0YbA/EnGN4`s8N"Ks-it<~> +rVuors8Ef4qtKEsV6%SXa2H-EaiMNB`lH-@a2dem5KCje`l#ZgEF3L*EFN3gH[0F>ELk1VKQV3N +EGfodX-@'X89UStKl(dLBOH(aa3;WB_nj1(]<\B-S=cLIRJrK`P`h5pPEV;uPa.Q#Q'R`$QMZsG +Q3`bAQBRJqQ'@O4P6I27Pa.JurfmGJs-<_OPa232s-*VLP*D41P7Eb?P`q;qPEV5pPE_>sPkU@C +P*D41P6$i1rKI>HP5^[@PR!D:Pa.JsPEc$2rKIPPQBdYuP`q=1Pm*D9Pa7PtrKIAKPa)02!gJt8 +rg*PKrg*SLs-!YOQ'@JqP*>m.s-3PK&X8KDR@BS4U8O<7Wn6b,ai_]E_p$Z';*AHTTQWgrG+Y+<=EgaMP'),8P'0_oLU;7k;g=k,DbOl=]:j_!KTq*R5*Ma_ +>]ljKO'4nSHZ<"`EKZWS"-(@S"QXUR#n)cmeZeXrr<#srr*-#r;HWprr.KK +V>l&~> +rVuors8F,=qtB6lTr,K@^U_+p]Xtbc]=kkl^qd\"^q[\#^V7D\^AY`:]=be`L.aU.E,\W36u79g +a2c3?a8X*Y`s]o-a2Z0@aMu9AaiXP)!6P5_s2tPeaNMfNrQ-8+aN;QFa2l?B`lH0? +`lH0@a2Q$:-ih>[QU +s8W)ts8QR*qXr+-T!6#H^VRh'^:_J4LGhbb[]FUDK7@>s7"M.D6?&6mVfu3Y +Q`63rGC4pX0L)"W6!K>Va.?X/?#j775$rnlDHfhQWkQ-\]XbP\ZEU[H^Vp,j$-($,aN)9>`lQ:$ +b5TN_b5TKcb/q]D`ph%KaSs3caND]KbK@rLb5TKdb/qcJb/sS(!QiL`aU#r+`lH0Aa2c3na8a-_ +aN;QHaiXJ(!6Y;as2t8_!m8^0rlY5^s2k\lb/hZGaNDZIaiaM&s3'rTs2tqqbKJ&NbK@uLb0.uN +bKJ',aTBW+ao9?rb/hQ>a2u<*UTMl3rVc`prVc`qs8ITLT)X<~> +rVuors8N&q&,>M5Vm".ebfS5[cd'bXbPo`cbPfZbbQ#cgc-4AUrQIdSbKIeg>"W@VIU#39GDUQN +@$JQb8n#U_u@RW_nj7/_u@OM_uIX__ns=1`5BI/_o0O3qni[+t6Kr;HWNrrW3"s8N"As8MropX#h4 +\&uq;cHj_WaO8k,5uj>h[t%LgQb9>E@t:YcQ@FIGMJQ!_MlghhG+5h?I9guhZCQZ!Ko1%68>D): +AspKaWbYRKJ8S%TDip*/C0Z1tc-+DT`l#U(\$s#c_8AK +`5BI/_84"+_Sc5e!l;dloYUXEpqlpEs1nTL!5STM'u7]'`5T[2^Ve(-Xe2W=nGN4`s8N"Ks-it<~> +rVuors8EW/qtKEsV6%SXa2H-EaiMNB`r=$MaSj.N`Q#p3OB"_VH?iUV9QPl/>@!B-LIbj'L4EW/ +HCpC26s>PIP&"T_Nb_pP`q;sQB_00r0.MRQ'IZ"Q'ISs +PQ$dJQ'@O4P6I27Q'@JrrK[AH&=&KDPa7PsP*;,pPEV5qPEY^)rfdAFqi_)GPEZ!/!0dAGs-*JJ +!gAe1r072E'U4lIPEV5rQ'7DrQ'@JsQ'IT!Q'D95&G"-Sk3P5UUEOq3bDR[0A9Vj<4@f^ShFFVI&O01H[Ud+BLtjPWbP(HS$B#@>B6:@BTSQ-JQ+bM@B2E/dBLk^3 +NfArQ'R]#QBmf%Q^*i%Q^=!*QN*6LQmA#cR$X,+R@9Y: +S=Q7BS=5h6SXuCBTr=fQNhOS^qYL-hs8W&srr;m!rVlirrdk*Gs*t~> +rr;rrs8`Q$!@aiMTIb0%fJai_cIrlOKI +s2PAdb0%iKbK@s'b5TKnb/qcKb0%oLaN;NDaN2KFnAtXOqoeo[p<*N[bKKn-&Bi5>bK7oLaihlM +b0.oLb/sV)&'N,;b0%iKb/qfKaiV`Lb509]b5TT`bTk +rr;rr+oV?:q!6#"Yf=u2aNr8Zc-=JVc-=GSbKS/Qbf\)ObKS0,bXp"(bI<+$:j\h#A3jIbWJtLm +M7$qA@$I7H?po".Rr2;OXM:?KE0R,G85Ykla3`/Ub0%oL_Rd.b]u%Y$^;7e,^VI_'_8*k&pqR$K +^qde&p;$^E!lDdir4iEN^qmhb_>h:O_8?2f"2_mi_#D1M_#M7N_"PVD_@",r_Sa:._o'@/_u@OQ +_[42t_ns:._ns7+rk\rZ_84")_8F1,r5&QO_8=(g_#2%L_u7IO_u@OP_ZI]k_>_=L_#hEh_Yq=N +_#M4N_#D1L^]VHi^qfrarkK)_`4`h!^oNp0g@>%:rr;ush>[QUs8W)tAH2W+r:eU;UU\Ljaj&,S +ai2Q]NBLsae%:0=G,iK[H"i)7T7M$+IW\FK>aM:"=HU#+Z@ZY5R@SkBCN=Z6/kE3u2K#P7gTka# +EJAR59k/[+GA(ZH\&H>2cH*f6]=GJa^r$&d#K+O!_SO+,_u@LT_8*k'rP8KNrk\NLn\YaO_o'@- +_8F+)^qmkc^]qWj^qmh$_#2"V^qmk(_84%-`5BL0pVZsHrk\?E!5\6As1n`Q_>M(M_8*n__#M4O +^qoi^rk\WL!5\TKrk\WM!5\NI)Sa)(_8*q)_8*k(`l,^0_nN7HXj6G5qu?Wnr;M9IT)X<~> +rr;rrs8j +AL(QERuq#CDP*;3<-5+PRrNA2TmK7*RD-S^aMYg/^:CMFS!]V5R?EVnPEM#iQ'ISuQ^3o&QBdc% +Q'R`$Q'RZ"QBd`$Q'IZ$PEV5rQ'R]#r0.;KPa.L3Q2d'LQ'VE7".#4:PkpXFPk^LKPa.MuPE_8p +pltcA#aCUsrfdSMPa.JsPQ$gaPa.Q#Q'R`$QBmf%QBdc&Pa.Q"QC!r( +QM$UEQ6_f_Q'@MuPa.JtQ'@MuPEM&iO-#KdQC*o'TVe$6X4Hk@rr;uPrrW3"s8N#ts'P^$pe3FoJB[s_M%VSK$NAV?qMI;X(OED&8nPbM\gO0cO(J7EbgRsem^E->hD7BV+q +C8Sl"Y%q$SJo=@T@!dEE@q("n^VIt7`OW4PT9oPB'U4cCOHG]fNfK0^OcbfjPa.Q$R$df>&X\oO +Q'IZ$Q'R`$QBmf$Q^=$9Qi<l&~> +rr3c5s8W&srr)NP_kEp<_S!@j]t1ec]"J$Us1SKKrkJKKD83fu^:h4o^V%7saLmgK8mRUdS74m& +WjIao:O&U5)-;ECKNLZ>H_G[DLS +X`u.'U:%h$;bLqSBhM$(G'[k.DO.lK\@ol"['$^>ZFI`h`5Ta7`Q-!;`lH3CaN2KGb5TKdaN;QF +a2dblrlOuWrQ,MkbKA#Nai_cJb0%iKbPoZaaTTc0aiMNha90K(aiaV+rQ52bb0'G$#Kk65aiV]J +ao9EabK@s+aoKQ_ap#u2ai_cJrlY8a#Kk65b0.rLb5TTabQ>u3bl#Z_bQZ26bKS/PrlP2_(rsM0 +`llND_o'9oVQnVAqtpBjqu-Nos8ITLT)X<~> +rr3*"s8W&srX/Dba/?,[bfRoMci22fbQ>r/b59B^bYcX/c-4GXbKSAcbGB5^Cn\_GDGYPb^R&\; +JuDip?&4Ap?9rP#P]CJu\\=PZG_Mh:N_>M(K^\tqL^VIYW^]2"J +_#D(]^:_.q_SO++]XtqpXdZQKnG<(]rn[SUrr<#trc%o:r;637Vk^cEb/_]LbK7WCf82V/^X&m# +A:h"tRr;nmT8.,rI>N89/o.>U@U5M>^o2NiH]Wni>&\n;AL9jRJhV/H_9JTZ=*TUI>$,WqM0Nib +V9.$'bgOhQ\\#A]]"u;"^qmh(`5BI._8=(f_#M1H_#M.O^qmk&n%f4D_83q%^VKWZ"i.jd^V@MZ +^]2(N_8*kU_>h:T_8*k$^:qA\^&l'`^@f8@^>-L'^@f8@^AbnH^)au(^VI_(^qIFt`l5a-^V$\D +Y0c_8qYpHlrr;usJcD;@J,~> +rr3c5s8W&srr)QT`hf`PaMl$:aiDHAa2\,!s2P#Xr5elX=NJV(a3;uOTP[Y@S@tb69QRJNP\4!G +VH=jCL5:Ui5AcjPDe=p:]9mheKop^D6Cu*1bK%B3^V..\UR@C5R?inmO-5TaO-GurPa@`&Q^=#) +Q^3r(QC%<2s-F!1!AGs-3YOQ'M95"-o1sPE_8pP`q=1PlI!`Pa.MuQ'IT!P`q;rP`q>qPa.Q!Q'M?7"-o1ikQ(Fk?NN(M$s8N&tg]%?Ss8W)ts8Qg2qXr.2Ts_n[ +_oKj<`4a.=KfEn\bGB,bI]KuFCLVjaK4S\@Km#U0BVV&(>+3.=VKZNqNe1Y@DL6_?,=8_c/8V?" +adZL5FG=j:;eU]7F(]]g_8sL5cHE`!Vjs$9QBm_sOH,?^NrG%;NY%86P*;,rQ^3u*R[KS2QC!m3 +Q3!8:q3V,Krg*VMop,TCr0IAJrK[GMrg!PLnrg!VNQBqK7s-l&~> +rr3i7s8W&srr)NP_kEp<_S!@j]t1ec]"G_hrkA?Gs1hOI^:h7o]tV1j]>`+/L/q9!XM1379mEnI +K2bQkS5g\1@o[)>6>D:$@r@R2PA=K=@qAg_/tBY]_SE^k[^`fRZELRE_8X=0aNi&OaNDZHaN=G( +$HpT8bK@uNb0%iJr5o8db0%iKb0.p'ap?25b/qcJb/qd(b5]T`aoKQ]aqVt?b/qfKaiV]Iai_cJ +ai_`Ia2Z-e`rX3#rl>/_aN4>&"O"s1aiXG&s2bAcaN)@"a9BW*aN):YZKj@YsKPOe5PG=7/.WhPH;coX-[>ej4JVJ&BDP4"j@jXdM +F=(UrZ)DM!:OR_'9j3+:NH&cj[Fdb0%iKaiXJ'rlG>daiMNB`ph%K`WaE(ai_`IlcT7Ls2k>` +rQ>/^rlP5_r5o2bb0%iKana*ZaTK]/bKBD!,0J*Pb/qcJb/q`E_o0U;a25[/^TXH;de!D7rr)cn +rr<#tJcD>AJ,~> +rr3*"s8W&srX/Dba/?,[bfRoMci22hbQQ,5bK7p(bQ#cdc2Pp]c-48OeDAB6ARgP.cDbbcK=edU +>ulTP=s[9b>A@;3E/]6]GFl(0F(fW3E+ULZW6<'+d`TVM`P]I&\$ruc_na"&`5B=&^VIUu^V9QZ +"hqad^:h5U^'23a^;%Crr4`EL^V@Lr^#6U.]tV7s^VB'Ls1\WN^VBc^s1\WL]tO6U"hhXa^V7G] +^]2"M^VIY"r4r?I"2M[d^AbnI^&YqH^]hKe^V7CppqHdA(V[Yu^V@Lq]tqP#^V74i^r!4BZeP$H +r;HWNrrW3"s8N"6s8Mrnp<]_4\B;t7bKS/O`5frG4F"oiOBuacZ*og0?[@cWAq$;SS51qgYE`C$ +UrU'1DJb,eF'Ea`Y`rfR;mq-0EO!3aGskknNc\N?OK"b#H^D\2hp0Hre\er,Za70W_n`pt^Ve"- +_Z%@O_Yq7N^;'Z]s1\iR^V@Lt^VIV!qnW6H!5STMs1nZLrP/KL^:imI#/.ab^VIY"o"YOG^qd_! +^V7CpikGH+"2;Ob^APbG^&u-a^:j?Vs1SBFr4i9G#f"*e]Y1tk^:jN[s1\QLrkTDb]Y;2!_S*Ro +]<%^.cggl.rr2lqs8N"Ks.01?~> +rr3c5s8W&srr)QT`hf`PaMl$:aiDHAa2\,!s2P#Xr5elX8BAih`R!5WOC2CI[`G:\rPE_;qPa%ArP`q;qPEV5pPE_8pQ'IT!Q'@Q! +Pa.O5PlHpQP`q;qPEV5rPl?sJQ3`bAQBdc%Q'Ra6PlR-KQ2d-OR$X07Qir_AQ^*g7Q2d'gQC!o( +Q^3o"Oc>9XNJrp[Ng699R>e3!oD\ahrnIGSrr<#trr<"Gr;-*3VP1E;`l#j<`l#U1`HO:`_oI^> +BT9."Nb)F!1!PLs-3SMrKRnZQ'IZ$Q'IZ#Q'R]$QBda0QN*6KQMd*LQ33J> +QBh93s-3\PQ^=$9QiE?YQ^F21R[B>&P*(k*Nu!k@OcYT_O-Q6+S"-.FQBA#go)/=\rVQQur;6Ek +s8N"Ks/#aG~> +rVulr=o\Hup?0>dUq+=S[_'2_\[]2^]Xtkl^:q@s^;%Fs]tD%k]tM%j^;%[rI8F($Yd'$j`l?'ta9'K+b5B?` +b/qcJrQ,&\rlY8_([QUs8W)ts8W,q@.hd +rVulr%KHD+q!6"uY/JN)`lua-bl>ieb00b+s3(Das3"*[bKJ,Rb0/&Te]!JSBU-?KQ=s]c]=EVs +@Z-@L5(&3-IXcg6P]0oNStUC)@#U(tD)+o$f>#>Iai_cH`50-s\@fYp^qRV%_S*UrrkAKJ^&#GH +]tV4o]Y+0U#e[ja]=knl]tO?X"hhXa]t:o9^&GYI]tV7q^@8o;^&YqE^A>PC]E5dZ]`,SJ]Y1tk +]tXKZs1\NH"2;Ob^APbG^&u-a^:jN[s1S?Es1JNK]tD#U]`>_E^&P_H]tV2Z^(n>q^qme!]=,;f +`NGW9h!k.:rr;ush>[QUs8W)tD#aJ3r:eU;U:87d`lcKIaN29%Ce9B)`I:a.Tt.UrF)->cD-V:O +VNO:uKV58Q:0P%t_5ZN8kI7uJ2TqQmAB8Dt2Ci>TVg=F<^db;jY]X>)T +]thCr]tVA$_SQ5e!5\ZL&AGil]tD"l^:h7p]tV4q^:sT]s1S]P^:q@t^q]i^#/@md^V7Cor4W-C +s1JHG^&G\@]`Pj[^&>\9^BhQg^V.=p]tD#;^&P\H]tV4or4`3E"2;I^]_T8@]E>j]^:jHYs1Knr +]tCti]=bkj]tV7q^;.S"^:_.o_8 +rVulr%KHD)pZfepWkcZn_8aRp`W4'V`rF'Z`r*mW`rF(O`Q$!@d(kE?A!":6P%@pT\$^fe?\jbB +4F)[#I!p@,P&4BCS"Fdq?&OYmCG8Gpe[r]9_SNsrZE'[eP`q>qNJ`[VOGo0]Pa.O3Q3inDQC!l& +Q^*f"q3;,JQ'Rc&QMd'QQC!r(Q'L9n-'ad_Q'@Q!Pa.MuQ'IT!Q'@MuPa%GtPa.JtQBmf%QBdc% +Q'Ra8Q2d'TQ'@MuPa%H!Q'L[$!L8uKQiEHPQiEHOQiE?MQN*3iQC!r+R$Nu!O,]'VMi*FPN0U0= +RZ"9#nbiCdrnIGSrr<#trr<"Ir;636V4k98`PTX8`PTO,Wb=hQa2*'tELjMCODec[LhTt4PG4(& +.=eFP=_48AY_R";OcF6UE2'(P:+]nfO$$9cLNuEDA=]37>%3,KJnAYU]?eg@^l&~> +rr3'!s8W)tC&R_f`1a!:^q7"c]!o2[]">Sc]Y;.o^:q:p^:h1k]Xthg]>).j\ZBmJ?AtnRFB`=< +['"OEEgV8D8!L3@Ko)A-S7>'"OH+D^YA2%0&d]]aU\A#bl]!\`DYd_<]^V@_0ai23t`WX?' +aiMR$aUH84aiMQDaN)?BaN;O%aTBW,ao'9_ai_caaU#u1b/hWC`Q-$c`[&UGa2c7b/h]HaN2KEaN)BCaiVX'`tcV7 +b0%Z?_S3t5bd!YHht$XBrr;ush>[QUs8W)ts8W,rHhPaZT!5uC]"Pbe\%Jr'?X8i6\ogntW4B!i +H$GC8DGaVRF([sh:e9J.l1VQ,G]<*)/!`59C0`Poa6`l6!>a2lBEa2lBDa2Q' +rr3'!s8W)t(&dmmaJZ/Xb/hQEbf\,Qbfe/Oaihm+b5]T`b"Kq#b0.rMcHjMO]7XC+S%5PMAoXphCf"u:RVPB(VRN+84_;mq^Uq;'cd9nV_S!=d^;Ie$]Y;;#^:jN[s1JEF +qRlsC]tO +rr3'!s8W)t&H2=fa/,fN`l#R0`l,j:`lA"ss2P,Yq8WHR:r^Jnai_H;[XM=lQF*K:@r7RE[g6NJ[QUs8W)t +s8W,s?MDgDU:&"[_8XF4_8a*QBP!XW_0]@=Yed]4JUj)XG$/;P`tp-s-!PLQ'IU3Q2d'NQ'@Msq3:oC"-f(9PkpY"Pa.Q#PE:f`MMR%D +LPL\ALPCP>N00?iQC=JAR?ai&pAFacrr)cnrr;uqqu$Hnrr.KKV>l&~> +rr3'!s8W)t(&dgg`1a!:^Upna]!o2[]">Vd]tV8[^&Pf8]tCti]Xteg]=YSaVJAtGS?%`iBnE:m +VIi2S]o5NOJs^RM9mrk)@n1!lQY]6#OHs]>),[ig\[K#^^qI4aYc=\)[ClLQ%)U*-`Pfd9`Q#s> +a2dkos2Y/\!m/O)d`D^7aiVWE`l7;a"i\L%aN)@#aT'6faN;QFaiVWGaiMQDqoJfX"N\X'`5M&_ +"NAC$aN4A$.EKWQaN;QFaN;NEa2l?DaN2EB`l5s>a25[/]Yr%6Wg^HTo(r=as8N#RrrW3"s8N#t +s8Vt)pb-p>@23#U9hA@]"Po#`ji7WY-5:I^VKib"iJ9t`5KXo`rF'haN;QF +a2l<@`Q#p<`l?!r`XKi+`l5m7`Pf^6`l?!r`Z)n:a2l +rr3'!s8W)t')hRjaJZ/Xb/hNCbf\,Qbfe/PrQ>/^Sco=P%6ik,6$#.qO\]t:nin\"n6%D9Ve]Xkbg]=GKN]DoGA])oXW]DfGJ +]=bef]=Ybirk.g8s1A]P]Y(he]=beg]"7gO$+[[[]Xtbe]tD#W]bJ2s^Uq+g[(F;lV3eXJo(r:` +s8N#RrrW3"s8N",s8MropsH"7\B;q4ai_]DcGZ9,P.0&dOaEnCaL%@pQF"H(J9,aXJpN*PX,`:9 +[E6+POeoUuS:GQtGD_cFQc@(@LOanqs18!;s17m8s1A?Dm(<>1r4E?L]Y(tl^;%Cs_#;"]_8*dr\%'#Z +Vk13FoD/4\rr)iprr.KKT)X<~> +rr3'!s8W)t%K6"ca/,fN`l#R/`l,jq`rq3(lE +PEba*s-2H,16e&gPE_>tPa.MuQ'IT!Q'@MuPa%GtPa.JtQ'IT!Q'@Q!Pa.MuQ'ISuQ'@MuPa%Gu +rfmGJmZ[^:qiq,Gqih,HPl$aFPR*SAR$X"uO,f.tM@G>tMi3t$Vilq?g[Y4?rVkXQ!ri6"rr2rt +s860sd&*PF`l5d5`l#U6^R0P3ZdZsSGG)djYa('.YeHcXDf0cJG(?TjMN"15`k%V"U:.ItI;NhC +LR!XZ`5J:#I!fg/7s(oNZ]9';Bm,Q=]YD8"a3)fT]W\6'Pl?dUO,f-TLl$qDL51S@M2I1Mrf78F +OckolPa)-1%?cp=P*;)mPEV/nPEM+,P6-o2P4+V7Os6*QP*;&lPEV/nPEM,nP*;)mPEV/mPEM)m +P*2#nPE_>sPjjt9PQ6mAP5pdEP67&5PEbU$$BgU;PEV5pPE_8prfmGJ+HheEM26qAKnP,5L4t>9 +Ll@FYP*D?*T9GA +rVulr)#sU5o]O,cUURtK[(*ZU\%&u[]=Y_h^:sTZs1JKH]=RsQ9"_[F^r**g>_K8cO`52qYe@&L +7[`)DE^s)9<_ZbKWM+B3?\=Db?Y":n;a`ZWZ-0kl]"Ynh['Hm8W2m;;]Y2"p`lQ-<`l5m8pr<0N +s2P)Z!m&F&d`DC-s2OBD"2r0ua8X*Va8a6Za8a6Va8X'Za2[;]r5KPnaN2ECaN)?Ba2c3?a2l?B +a2Z*:`5]ap^CIimb.OI<]&<2Wr;Q`qrn[SUrr<#trr<"Jr;-*2U7JL%]Xb\f\@&uZTqAU$_nM\. +[DKPYSX5qU`k/"/MNOR3Z+[9/WOKO`_53j1]Xt>CQ]-m%`4;_=N.I+eRs7e*GGVaUVjia*PHW*I +\$`le`PoTuXfSS+[_9Gk^V@S$_o0I1`5T^8a2Z0@aN)<@`l5m8`Q#m9!6"iT!lW'srP\`RrP\ZR +!Q;tV`XTu.a2c9Ba2l?BaN2EArl52]a2c0;`9YAH`5]g;aN2ESaT'9_aN)?@m)KFPa2c3?aN2EB +aSs4#`lH->`Pf^6`PK:$^:gtLS\!YKqYU6jrVZWos8ITLT)X<~> +rVulr'`\11p?TetXhr3#_oU$Db0.uNaiaS(s2YDdaN2KFb/sY*7E``ncdK:NCQlHJTRD0R]u[U% +;536kHVe!^?WL]qZ`AIZBoJL7C2SQC?;O(0^":HKaj88T`PT?uZaIE\^V7@p_SX%d^&Pb@])]M@ +]*Q![]=PSc]"5H7\cBA<])TD8])TAD]tD#I^&P_L]tD"i]XtiT]Crf;]=PTQ])]MC]DT>A]`>_= +^&P_F^&G\C])oRU]CrfS]=PPa]Xteg]Y;.r^:LndZb45cSsQtFoDAIarn[SUrr<#trr<"6r;668 +VP:QAaMc0Aa2Q9CYcYX[d)r>^_9U*4WhZW3e&\bcQCP%a]Z@X\ZbXQ0bHItY`Pf9iTTthJc,-Zb +Q].HZKX8Y8[]5pfU;#:0`l-'MeC2UT\$`NJ\@fMf]">Yj^q[UsrkA?Ds183B"M;=Y]Y+6W +!5/6Crk/9E!kc4[qn2s@!5/9B"hM=X]">TQ])K>A\cBDA]*>p]]Xtkj]^ic7]`5V/])T>+])TAB +]'R$3]">Se^&G\E]`c!]^:h8X^CIui\[T)YZ(@Alg@=t6rVc_Hs-s%=~> +rVulr&-)Y,p$0SoWP6?g^;@k-`;[aT`;ddX`l,gi`FR!*`6-?1G\2uG]UO1iPI\W:DG?b`^j&RW +AR&/BLTdV$=_3GTJ7WPGEa2@,DS+H@`Pop;^UC>DSNbP*(igOcY`g +OHPcgOHP]eP)tcgPEM($P5ga>OoU^AP5garPEV5pPE_8pP`q;qP`q>r +PE_;qPa%ArP`q;qPEV5pPE_;oP*;&lkEGq/s-*#:#aCU?Q'%,fNJd^l%u,n!N1-Z:N/Y$to_ndh +rS.>Rrr<#trr<"=r;636V4k98`5'=1_S=+-X/NVIbJpBM]un7$VOsa"cGZfROdN)P\AbkMYJ%g# +aK)5K_SNX\SW]/=b.k!UPDGU,UOZKJJ?Qc&Z)*kRS\!=r^:hM2cd0\BXJD8JOcklhN/ELLMM[.C +L51P?M2@2jNX(W,OcklkP`bs.8!/stOckliP*1riP)tcgOH>TdOHP]eP*(ihP)tiiOHPcgP*1og +P)tcgOH>WeOHPchP*1rjP*(ojOckliOckihP*(liPQ$aFPOOb8P;n\gPECriP)tiiOHPcgP*(if +OcYZeOH>WeOHPcgP*1oiP)tiiOHP`fOHGWdOcYZeP*1riOH#+rL&cr+K)^H:KS>2=NK93dR@K\' +N3V+/rVZWmrr2rt#QFYsqu6Wprdk*Gs*t~> +rVulr&c_k.o]O/dUURtK[(*ZU\@B*J]DoQF^:_+l^:q:n]=bbg]=YVd_8NX8I%%UWSpu$EY.q>q +BVFJCWbbI-D3h?6`jh.PDg[G!H?XOCEg)KH]#hXjYdqEW[^NKDWN3D:]=bel`5T[6`l5ml`W*mT +`rF*W`WF3#`mMj,`WaE&`l5m7m_oFL`Poj9`l5sra8a6Z`rF*Y`rF![a2Z-LdL +`Pqbn!6+rWs2P8^a2c3>rl>#X)op%?`l,g5_Sa7)^:h(oa0M5.^uP+br;Q`qrn[SUrr<#trr<"D +r;603U7JL$]Xb\f\@&lXZ+S2k[(!BO`P]@%]!\lS^Vdk![CO8m^<"!k^;e"2`3cte]t1bi`4`7V +`5]-Ga2Z0? +`l7nps2=uUrP]&\`Poa5`5BI/rPJZS`Vm^V`Pfao`rF'm`lH->a2c0=a2Z*:`Pod6`Pod6nAYCF +s2G,\`l?WNs2G&Zm)B%Grl4uYs2>/]a2Z->a8O$W`;mjU_\Bo#^V[[hSY!a[oDALcrr)cns8W(L +s.97@~> +rVulr'`\11p?TetXhr3"_oU$DbKS/Qb0'_*;Td)%b/qcJb0.rMbK@uKbL"_SQ]%iaafUSZS%Qq[ +NcV;hkHf;6>^2sQ_U68kIX6d7P_F^@E.4FIT>oC'^qe%7b/VE:]!SlW^V@Lq^;@b$rk8?E!P?#A +]*>pZ]=YYd]D9#<\`UI']D9&<]Crf;\[oE?^&P_L]tD"i]XtiT]*5dX]=PP`q76a?]">Ve]DfJC +]*#^Z]tF'Ps1A?Frk/9Bs1@g4(qI5i]">Vf^;%It]"5G[^;I.CT"a4Wr;?Nmh>[QUs8W)ts8Qm4 +qtJI7U:/.``5p$?`Q?3:bLk"T`4s7EdEL+d^VS%5`PfsGa1&\, +dCu,Y8TUVtDc1MJ_8*k/f[n6\`m;`:\&Qe7aNMH4\?iKL]">Ve]Y2%p^V.>[^AY_E])K>F]=b_f +]`,SE]_];C]Y2#U]E5^V]_]5A]">TL\cfXU]">QQ]*>p]]Y(qk]^i`A]Y2"k]=PPb]C!30\^\4j +]*Q![]"G_h]Y2#X]`#MW^;%Cr]tM"f\\,GRR@:kKnbN(\rVhBJS,\!~> +rVulr)ZTg7p$0SoWP6?g^;@k-`Poj:`Pod7`5]a6qo8ZTB#_g/_oBmF]TS#F_o/L1K9j!e]S^X+ +l/]'hNbOH5KbO,oB`O-#E`OHGWddZFNkrfJ@ePEV/nPEM,nP*;)mP*;&lPEM)mP*2#mP*;)mPEV/n +PQ$aFOURD8OckihP*1ohP*(mmOp-u2P*(ifnW=fQOckrmOH,DU/P.0?Arr2rr +g]%?Ss8W)ts8R-;qtA@4TsVbU^r44/^r+(%`m_r@^q7D,bJ_B:]tD5(c-"#=^s'p?d)EK5c,e8T +]=l2%_8++7`3Zqrc+99I7;ncdCJJW8]Xtepe'c1H_TKa$YJA>s`Q>crVjip5OckieMi*@KMMQt@ +LPCVALl21l"-8J'OT(CBOT1FKOHGZeOcb`fOoCIBO$&MbO-#E`OH5HaOH5KbO-#HaOH>NbOH5Ha +O,oB`O-#E`Ocb`fOcY]fOHGZeOcb`eOcYZeOH>TfOcbalOYW#\OcPQbOH5KbO-#HaOH>NaOH5Ha +O,oB`O-#HaOH>NbOH5KbO-#HaO-#E`OH5HaOT(7FNJiUHKnP)0rdt0$+G,<%Ll@@VQCXP2LQB(, +o_nafrVliqs8W)rq>:0krr.KKV>l&~> +rVuor(B4@4qt9*hTVT*4\[/fV[^W`U]"5G`rk8Se\ZiNY\>u[?^UL;CY-YI= +WMm8FaMG!GOe&J^_nijcWMur$YH"FlS>s0)XLc<_ZEUjO]=>;RWMQPu\%0,a^VRe'_o0L2q8E)[a2c3ua8O$U_uR^D`!aK$`5T[6`5Ta:a2\,! +s2OuWrl,#Y`5MYo!6"iT!5nNKs2,#Y_o'@/_u@US_ZRp!a2[qqs2G,\`lA"s'Z@o+^q[_%]tV7p +`5JXBWlaGuqtp?kh>[QUs8W)ts8W,rDY2/HS?BN:\@T;][(jMb[_];T^W4@1]tVG(_7d@e]=keb +_9U$5bepj,b.kEn]#Vt/\@K>m`kf@%[CE_s7RBsN8R.=a^q@(d_Sa+"\%'2c[(sJX[)KbgZDsq2 +]YVFu]Y;1t_SEt'_o'F3rPniUqnqpAs2+uX_o9O2rl#&Y`5]j;`r!gT`W4!W_uIXT_u@US_sG;B +_o2Pos2Y/Z!6>)Ys2P,Zlc9%F!6>#Ws2P,Zm)K4Ja2c0t`;dgV`!XK'`lH*;_o'F0_>_1_^r"+) +XIH'3m.UAVs8Dlorr<#tJcD>AJ,~> +rVuor(B4@5rV,WuVQRhX`P]g@ai_fLb/qcHrlP2]8'/inaiV]Ib/qfKbK.H;d)W`/a3M]:\A#eo +]XG/_dF$.IU7J6j`6QTE]!SiQ]"5;RXJiSI]XYr*ahYa6bKS#F^UUVX]DfPO]tV:s]Xthg]=n*S +"hVF[]=PT2]DoGB]CWW6])]G?]DoJB]DoPD]`>_3^&GYL]tD"h]">Vfot1.7!58?D!5AHGq7cmB +!5AHGs1A?DrO`3D]"7[Ks1/EH]",Db]=e*U!PlJL]FMKh_5aMlNS_8Xd=^WY'Rc,e&Sd*9bT`QQNJ`66l^ak4qUcdp7U^r=aPbJV9?d*^(Z +aM>^2Mbm)P?WCg3`6ZWFajJP]b/VKIbJVZP]#)k:^q-bQ[(=#e]"#Ae^q[Ur]`,SF]Y4 +rVuor&H;_.qtBoss,R8DO,oD%Nrb?&m#V1,"-8J&NV\\.O8b1>Nu*n=NfAsSLP:P@ +M2d^aU8O-/SAF7Yr;?Nmh>[QUs8W)ts8Qp5qXr.0TX2PQ^Ve%-^WOg7^rsI(a3MuP`Q$-Hai;35 +`lH$5a4AMSeB>PKd`0#6_9LBJ^VIh4c,dlB]YD4:9Lr8i;.Z01b/V68bg"2H_8==5^<4U+^X'j+ +WLK'5Pa@YsN/NXRMi!1DreLW4MN%Oo!07&!fi>%q2aKpq2GK:O,f7iO8k4AO,f8"N!06o:"-/G'NREjdN?=(7LPCJ7JqJc2Jq8T/KnkMDOd;N3Ss+np`p +rVufp(B!jg`1`s8^:CV]]!o,V\%0&Z]"Gbirk&3C:V43K]"5G`]"PVQXhr8u[C*]b`lH!-Yd(p` +^TjuWcHaJBXKT1C[D'W'bf@W?_S=%/^UCJX]Xt\`]"GV`[BQ[-VQ@)3]"Gbm^q[_'_u@RU_o0Lm +`W*jY`Q#p:i5Yf9"3/=!`;.CP_umuu`l7nr"NAC#`P_VjqSNi_7dIiZaI0FYIVQ` +\&?%f]u%@bYe.oq^q$k]\\5ns\>m*f\:@m`=D*Mr_SX+#[^*-D\[Su`a2,^.XgGsZ\[/63Y.)-\ +^V%:q_83n$^r"%,_o;Vp!QE"V_u@UO_Z7RO_u@OP_uIUR_ZIco_u@RX_o0O6`Pq_os2>#Y`W!aV +`5BLi_XPJC_?7]m_o)Jms2P)X!65#Ws2G&XbJjV&`lA"r!6+rUs2,#Y`Q#p:`;[^V_nl>e%)B`u +\YY^qeF3/1s8N#q!<)orj8]/Y!<;ur!<;3\!<;rq!<<&t!<;in!rr9"q#19np\k0mr;Q`rpAP0o +rr2rprr<#qrr<#rrWE3"rr;uss8Vuqs8W)t"TSK#s8Vuq!rr9!gAc[~> +rVuiq'`It(lc?!+_T9a8b08#Mb/qcHaN+;$s2S0]a2c9BaiMTFaiVcI\@g5CdDWuIdFHgsa1T+. +e',M9ak>@q`jiUu_8+1>f%8?qdE]n]d`]JA`5p$>a3)TJa2Ga'Za.$O]tV4q^V.4i]Xthh]tFA])]MC]DfJC^&P_F^%&`<]t:nh]`,ME +]XtfN]`5SB]E#SC]`5VD]EZ'^]Y2%n^&5VE]E#\F]`,PA]`PjY]D0&=]*u?a]">Ve]=ttk]YD8] +^'_Ql^7L_"eEco,r;HWNrrW3"s8N#ts(qW1pX#e2[`HM-aihfGd*onG_7mh6e^)7Sb0J8SaiD9: +`5'(*d)j5RbJ23G`Oib%dF-4V_8+"1cHO26`8/=hBjG7jQb_"qccX5C^V\(3`6m/_e'5PBcH3u9 +YH"e8]Y1kb]"Yqn]t:oU]E5^X]DfD@]*#XW]tOEX!kl7Zr4N?J]tM(k]tD#W^&>SJ]=bhh]XtfK +]`5SG]Xtegrk8?En@ek7$ba3b]=PSc]Y(kg]`,PC]E#S3]`5V8]E#S>]`5V=]`5SL]Y2"j]tM.n +^&>Y]^V7Iu^qRLp]=Y_h^UBo(VpF`&qu-Nmr;P^Us8E#ur;H]rp\k0mnbrOgqu-Tqrr)otq#1?p +rr;cm!<;fm!<;urs8Vfl"98B"s82fqs82fqs8;ius8N#trr2rtqu6Wqrr*'#rr2rtqu-Zsrr1XO +J,~> +rVufp%K,qba/,fM`504,`l,do`;[XW`5T[4_th5G_o0L6_R$_qe]beCa3;oXcGI*%`m;]9[`-eI +cGR#t_7dM#bgOtcb0A,OcHs\K]u%e,^V7J!^:L_RU7%70P`q5iNJraNM2I.JNK&n_NW4t1NW4t7 +NW4q>NJrgSq2G?3",r5!N;S\8Mu\k:N;nk;N8KWpNXCc+NfB'XN/`dTMtW,0N<"q8NW4n?N00HrVPT3,WQaMtqY^?lrVbRP!ri6"rr2rtEW#_-c_[;@ +`5BC/`l#U7cFpa$\\HA9bJM*8b/qZB_7dUt]=Gc%`PBa=]>i%1\$s6!cH!`6]YMJ.aM5!qg:rDS +=^Z03]?JLA`5'$s]u7b%bgO_\ago42`k&7@OH,HgQ'%)cNK&mSLPUeEM27&fMueourf-o;!f`.s +qhtW:N/NVSNV8;2MsH?$MZo'!NJrgUrf$l:!0$Z3!0#?c-B*qCMMHq?KS+i/L5(D:M2@%GN/s0j +SYDX6L7QQVqYgBlrr)fqrr*-"q>:0krr23_s8E#ur;H]rk5GA\qu-Tqrr)otq#1?prr;cm!<;fm +!<;urs8Vfl"98B"s82fqs82fqs8;ius8N#trr2rtqu6Wqrr*'#rr2rtqu-Zsrr1XOJ,~> +rVuiq%/p+skJX'h\%]D[]"7mL#Ih7T\@T>d]`,PC]JR73\[o>_\[T2`\$WWT]=PM^]=u"i\\#Md +]=GJ^]>)1q]"GYa]"Phk^;%:k^q[Fi]=toV\.Q9b]t:e`\$`THWMH>hYdV-VrkJ`S_SX4/`5Cr[ +"iJ9s`Pf^m`_=O_$7cm^qde&_#2%K^^e2r^q[\$_Sa:._Sa=1_tM%I_[+,q^q[Oo^;.M_]a_ifQC#AAm.gJU +rVulrh>[QUs8W)ts8QX-qt870S?BQ<\@]Db\$roZ\@&`S]tV+i\@T;`\%&oV\\#G^\@K)W]"#,U +\[f>b^:Uti]=5Ab]tCtf\%9AdZ)t.3Z*_$Q]!f2_\[JuZ]!o5_^:_"e\$icUZ`'[tXgPdUrkAEJ +s1]#Y_Sa7._o9X8`P]U3`;[XY_8*n(_8*h^^^%Wi^qmh%_8?/grke]Q!lW!opr!9P_Sa=k_ZRck +^q] +rVuiq'E.k'lc?!+_T9a8b08#Mb/qcHao0<\`u2t=a2l?DaN2KE`lcKE_oBd?aiDHEc-=>Mrl?&! +`l5m9b07uIaN)3;a2uEEb/VHFbJhE?b/VC!a8a<^aT':"`l,U"Ycb=B]Y;.q]t1ef]Xthh]tD"l +^:_1ork&-As1A3A!5%j8s1A0@s189Do=P%8!5&0As189DrjrNM]=bhj]Y(qj]Y!dJs1Ac-",J +ai_]Ea2Z-?b/qZCaMu3?a2>p;`Q$!@a2Z6A_o;Vr1WIAM`luH9\[f>b_8j^>`Q?S9]`5VD]E>dY]tOEXn\+n6pU^F]Cro: +]`>\D^&PbE^&P_\^;.S#^:q:m]",>\XdG?SdHgH%rVlcnro3tXrW)urrW)utrr;rprW)utrqQHj +rWE3"rr)iq!<<&t!<<&trr)iq!rr9"rVliqrr)otp\k0mr;Q`rs8E#srVliqs8E-#rr2rprr<#q +rr<#rrWE3"rr;uss8Vuqs8W)t"TSK#s8Vuq!rr9!gAc[~> +rVuiq&,lG"lGoa$^;Rk&`5]a5_u7LR_u@US_u%CP_\'i)_8XF1^;7_+`59C1aN299rkpP/_SO%) +`lQ-9`5B@+_o9R5`koU6aMYm6a2Ps7_nj4*^:h1i[]ug(Q&UcbP)tZ^MZ/D=LPh%LMi)l2M2I1KMMgn] +s,$o:MMd8dMZ8M8MMmCMr/:T4!fMqnreUc8Mi3IMnr*O*!K2j7L_b_uKSYVMPF%i:T7i*/e`c`( +rVlfprS@JTrr<#trr<&/M>`>MN/NUQMi3RQMN!LPN/W[RN/NXRMi +rVuos'E.t1r:K3lTqo34]!]/^\$rcR\Gj&<]DfDA]E5[T\GNfN\%9/[[C3WV\$rfS\@T;a]",Gc +]DfAG\[]>e]=bfU\gY,!\@]A_[^`r\\@T5]]Xt_`\@8oRYGn4eUT:`3^;@_$_8F1/_ns7h_Yq:Q +_Sa:.pVR!Jo>CUFjhpu4!l;[drkJKKs1\QLoY1dJ^VI\$_8*n(_o'@b_u@OQ_ZIZh^])(J_#M1L +^];.I_#1qK^;%J__>h:Q_8=%)rkeNLrk]Vm_SEt%]t1_d_8[^Au(I_%+5r_SNpt\[SW-S@I5?q>C0or;HZqrPJU7 +rW3&uf)GaLm/I(bq>^Hn"TSK#s8Mrr!<2lqs8Moqs8Moqs8Moq!<1XNJ,~> +rVuos(&e13qtB?tVlmqZa2Q6HaiV]HaN)C#a8a-`a2Z->a2uC$a@s^sa2uHD`5]p@`l?!:a2c3? +`l6!>a2Q$;`5Kd>a2c3>`Q#m7`5fp:_SjL6`Q-'AbK7fFaN)??^ULAHXKoCO_83jt]Y2"k]tM/Y +]`l'^]tCthp:LC;o=Y+8jh1W*$,!m^]Xteg]tD#S]`>_:^&P_J]t:nf](N`9]*>pZ]">Vf]D9,> +]`>_=^&GYO]tD%l]=PSc]Y(lQ]E#SC]`5PY]Y;%i]"Pu!]XYSeY)SX_ipZX>s8W&PrrW3"s8N#t +s8W!?pX#e3\&l_2bK\5P`lH9GaN)BBb/hTCb/hTBa2lBDaiXD"!6G/[.`f`Q`Pop=`lQ9A`Q#p= +aMl0CdacdkbfRoE`5p'BaN;KCaMu\i]=PVd]`#GA\bir>]=biQ +]`5\B]EGp\]XtfT]`,PB]E#S9]`,PC]E#YB]_9&:]`5\D]DB/A]=bfR]DoMD]Cif;]=e-Ts1A?D +pUgLn[nn7])&rT]">Ve]=u%n]!o)RVj[KSm/I(b +q>^Hn"TSK#s8Mrr!<2lqs8Moqs8Moqs8Moq!<1XNJ,~> +rVuos&cMb/r:T?rV5qAM_na73_o'@i_Z7RQ_uIUJ_]?\5_SjC0^VIe+_83q&_SX4._SO.._nj1+ +^qdq/rkfAc_8=%'_8O7-^VRn,_SjF2_S6#^%CrsRX.bfrJ5M#`G'M#iKjmu%.%!/gZ1s,-]1s,$f5r/1N2 +s,-`2!/g`3s+gc6MMd8eMZ8MQMM[+CLPU\JUi9&KS>/: +MMmCOO->iqR@9V-K8Q_YnGN:bs8Drsrs/N"qY^ +rVuiq%/p+skJX*j\A,V_]"7mL!4Vp;!kZ%Vqn$+E\[oA^]"GS]\%KDc\@K2]\@/iY]=,2\]tM"e +]"GYd\[f>c]=>A`^:_(j]=PVe]tCqf]=bbd\%&u[\$`NDW1f`SVQRA@_83n$^qde%^V@S"^V7Fq +]t_D"rkQ[m#/J'k^qROrm(N_<^:q@r^V7J]_">GJ^qmk&^:q@srk8BGn\,":rOrTQ^:q@t^VI\% +_"tkM^VRb'_#D%P]XkVb_8Ek`Ymd=[P/ZMNp%n[frVlfPrrW3"s8N#truq=;oZX&#YJ%TZ]=b_b +\%&oV\[o;\]=PD[]=PM_]">P`rjMs>]=\'R=M)/V]=GJ`]tM%h]Y(kf]Y(hg]XYJ_]XbJZ\\,M` +\[],Y]=PGY\[f;a]=GG^]"#/RXfSY,Y-YOG\@T>d]Xtkk^;%J!_8=(*^VIUu]tV4o^:q@r^:j9T +!58?F$c'Tp^qmk%^VI\$_#D1M_#D.Q^qmk&^](qI^$rc9^&PhG]`u3a]t_D"_#2%K_#;(O_SO%' +qnW9Jp;-dEs2"`N"Mqmi_8,ub!5SEHs1ecR^qde&rP/ZS_SEk!]t1iT]GJ8q]=GMa]=u+s]=,)O +Um7Rdh!k4>r;Q]orVkjWs8E#ur;Hs$rr;lhpA+[brWW5qp@S"Krq$9bq#10k#6+Diq#(-krr*]5 +rr)]eoC_tZrr;utrr2llp%A.Yrr;`l!<;op%fH.rq"t$dp@e@^s8Drsqu6 +rVuiq%fQ>"lc?$-_og$=b0A)OrlP2]#fjs)aN)?Ba2e(u:W^f#_oBjCai;BBaN)9=bK7W=a3)QE +`5g!?`l?!@ +]#hSa]Eu3]]">Vf]=beglb*80rk.X1pUgL>n%8_6]Y+3Ss189BqRZa=r4nFuhXrn[SUrr<#trr +rVuiq)?'L,lGod%^W+4-`5]a6_o0L2_ns=/`5BLg`+Hp*`l#R-`lH$7_Sa:.^qdt.^;%S*`koO/ +`P]R0_8F:1^qdn.`5BO2_Sa=1`PTF-`PfR*]tV4m\?i92Q]R/aNffQjOH#0VMM[4JM2I4KLl.(H +MMd7JMM[1IM2@+HM2I1HLt%:]L]E;2M#W;3M!p0#MTptXMZ&A +M26tENgH?(P*hc#GDO#klh(#Os8N#RrrW3"s8N#ts#KuQp!0D-[)Bu&aN;NC`l5g3`5KO/`PfO. +`l#[2`5T^5_84"+`Q#j6`Q,s9`50:,`Poa3_o0I0rkncS'uIf(`597&_SsI1_o0L4a2c$4`Pf[n +`Y6;0`PB$gUmm[4OH>TeP*;&kOH'3t$&ab&O,f9^NfAtrM?AcoM2D.fs+pi8Mi3JgMuSY9Mi*Aj +L^JusMi*CMMiM"%s,6o6'oIj(M2@"BKRnZ)K8#&9LPL\BN00G*R1#IOO+`Y&f^f%Arr;ios83#urr;us +lMpn`!<;ur#QOf'qtBaZrVZWrr;$'boE=jZp%\Lars&Jtp%\Ias8N!5s8Munp@ItRrr2rss8N#r +q=XFVr;Q`jrW)uprXSl%pA"O`qY'XZrr;rrs82fhs8Doss82fqs82fqs82fqs82css8N#Os*t~> +rVuiq%/p+skJX*j\%fM]\@DOH!4Vs<"hM=W]=bfT]*l3^]=PPa]=YVb]Y+6Us186@!k>ePrj`!= +s1&'=!k>eNrji'<#eIX[]">Pa]=[sQ'tUoa\[f5Y[Bm':URdsLVQRA?^V7AY]*Q']]=bbf]"5NQ +]`5SG]Y2"ke%HF-]tM.o]tD%k]=bbd\@K2^\[fVe]Y1tk^:q:n]Y1tk]Y+6U)n`ks +]=PSa\@K>h\#ZF$Q%G@GkOA9Err;rrrn[SUrr<#trrs0r!;"hD4T]">TR])K8?])K;K]",D`\[]/Y\@TVe])9)C]",A_]",EN]E#YE^AkkH +]`#MI]Y2"k]=[mO#.qO\]",A_rj`!=s1/\H][Y]tM.n^&GbG^&PkI^')6c +]tM/Z^&P_F]Bm07]=bei]Y(lH]`5SF]Y2#W]H"Pr]=PPa]"#5Z\%0,a]="oGWLJg8_;On]rVZZo +rVc`Us8W'"s8N#srB^J_qW,]6eF!/2qYgB\f>G54\@fPg^X)':rqufne@a5rqZ$NlrVuihhnuk= +h=U[GrVulomaJkaf'iP:rr)ipqu-Wrrr2jDr;Q]bf>uD(o&7[1iVrlQrr;uqr;QZns8W)tq=a[` +s8W)sr;HTorVliqs8W,trVlis!r`&qrr2rtqu-Zsrr1XOJ,~> +rVuiqs83<"lc?$-_TKp;b0A)OrlP2]!lr=#rQ,#Zs2b5\rQ+uY"N\^+a2e/""38L)`r=!_aMu6? +aN)="`rO3Za8a0Y`rX0"rl>)Zrl>&[(]"5Mc]",A`]`#GM]">Sc]">Pb]=befr4E!?!kZ%Trj`$?rOW9F\[f;`]=ImOrj`-B]=YZR +]DoJA]DoMF]t:oU]E5^V]_oAD]XtegrON'@]"7mOs1/EH\[oD`\[qdNs183B&\>Nb_8NpfWhl&8 +REXmbq>C9krn[SUrr<#trrSe]=bbf]Y2"k]">Sc\c02<\H9@Q\bNc8]DoJB]*5dV +]">ScrOhj9s1ABE])K>@])K5E]",D_\[]6K\HKFQ]"5HI])T;B]">QQ]DoGF]=PSa\bir<]DB)= +]D9&<\c0/B\[o>_rODpSrB/Uht$XBrVHNQs8W'"s8N#srB^J_qW,]6 +eF!/3r;Zccfu:Y;]"Ytn^sV?@s8N&sf"]`%qZ$NlrVuihhnuk=h=U[GrVulomaJkaf'iP:rr)ip +qu-Wrrr2jDr;Q]bf>uD(o&7[1iVrlQrr;uqr;QZns8W)tq=a[`s8W)sr;HTorVliqs8W,trVlis +!r`&qrr2rtqu-Zsrr1XOJ,~> +rVuiq&cMY$lGod%^;e()`5]a6_o0Lk_tM"M_o0Lm_u@UO_ZI]m`;ROS_ns7h_u@OP_uIUP_u7FV +_8=+,^r!tf_#M.a^:UqaYG[qTNf8sYPEqJrNf/aMM2D(b!/L-%s+oBc$]'XrMMd7HLl$qDM>i>2 +M>rA3M>i>2M#`A0M>rA5M26ueLBNEiM26uWM$f&qM26qBLkpnDM#3&/M#N82L]`KkM2D+e!/^H- +s+q5CM26tELkgkHNf]HnTpktD$&Ehe`oHFZr;Q`qrn[SUrr<#trrrkncQ(W=;2_8!XlZE:$qQ'%,gOd)2uQ'.2gNrG(GOHPfkP*(lfNf3gl"H/4tMi@Xnonrd+ +!fDhkreM#?MMd7IMiN21M$&WlM2:tas+h/AMM[4KN/NUQMi*FNMM^eZ$AjXuN/NRM +MMd7HreUo:M2@%FM2I1Im>Cq#s,-c3!/UT/!/UW0!/UW2'oIj)MiO!gS!fV1Q]6T]^#&AZs8N&l +rW<-!rp'O`rW<-!rr2j^s8MlUa26?nqu-EkrpSIW]Xt_f^V.G0kP5)Us8:E\e*Qr2rVZWorUo'c +[DLblrVuirrql-4]t`.er;Zcprr)`n!WW/ur?qOBrp\O\dcg8\aN*9=s7uZorqu]nrVccrrr2`e +qYgHorr)cnrVuiqs8Duts8Doqs8N0!r;HWos8Vuq!rr9!gAc[~> +rVuos%fcM*qtB0iUSG93\[/cSrj;s=\@K,\]=\'T!kZ%Trk&3@"1YnQ]`#GD]"G]T\H9@Q\Gj&= +[fa.L\@;4Brj`*A]=\'Rs1A^rjr-?!kZ+X +rji9F]"5Mc^&G\B]DoDG\@8rW[^NUA[f3`>\@K/[\[_XJ#J%FX]">Sc]`,VD])]GA]D]>@])]GA +\IuBZ\@]&CTq.?uS'^Hlqu-NorS.>Rrr<#trrD`\[AfQ[^ENO\%&oVrODj< +!P#W;\Gs#<\GNi:\dl9\\@K/]]",A]\@K,Y[f!T7\c0,<\I,jW\[],Y\$`ZR\Gj#?\@8sH[2?3N +VP9f[Vm!J:\@8lU]=Y_e]">Vf]=PWR])T>@[g'CS\[T#V\,Ni9[0*kI[^c:I"1u4Z^&G\E]DoMF +]=bfJ\cTFP\,Ec0\,<]7[K!Z>\%92a]Y;&U^&PhH]`l0a]Y(qjrOW-B]=[jLqmup@]=[[G$+[XZ +]=PVd]"5NQ\cTLV]_fAH]Xt_b]",BM[gTRGXJhq]Lmu5]Q^U?i +rqufn9)SYdrr)clr;6KmjM7q/f&b/TUs/c9q>L6hrVZNgqu6TkldO,9o`"gdr;6Bhr;6Ekrr)]h +qu-Hiqu$Ejr;6EirVZTlrr2lpqu5=LJ,~> +rVuos&HD_+qtTL!WNF"Y`l#pBb/sY(!QW:T`rO-YaT'9d`lQ3@`lH*=a8O'Za8X-\a2\,!"3AO( +a8X0[a8a6W`r3pr`lH->a2c?Gb/q]D`PK0nY,J4sXg5FI]XtfS\H'5=\c01m])]G7])]G?]DfDA +])]MC]DB2=]DT>A])]M@]*H!\]Y(kf]=\'Rs1AUTlh()Qrr;rOrrW3"s8N#trt52*oZsG1 +[)L)(a2uHEaN;TGrlG2`aSs9^a2n8#s2b2]rl>2^aN2F"`r3pXaSX$X`W4'YaSs6Za8j9Wa99Q) +a2c:#aoBF%`l,^/^:^qZWMH;bWjB7K]=PM_]">Pa\@B,\\c0)H\\#Ga]=YYb]"5Mbrk&0Bs18?F +]=IpP$+[RU\[oAa]"5QM]DfD>]DoGL]=bbf]Y(qj]XtfS]`5VB]E#SC]`#J=\e)E`]",>]\[]2] +]",D`]=PTP]DoJA]DoJA])]M<])]G=])]G<]DoJA]*,^W]">QQ]DfAA\c0,<\JMih]!o#MXJhSF +SAaI[r;Q]qrr)fqrVbaUs8E#urV]"Yrr)3'T9QJ1p](3lrSkSeR@0>-R[T_@ZdJ7U?irqufn9)SYdrr)clr;6KmjM7q/f&b/TUs/c9q>L6h +rVZNgqu6TkldO,9o`"gdr;6Bhr;6Ekrr)]hqu-Hiqu$Ejr;6EirVZTlrr2lpqu5=LJ,~> +rVuos&c_h-qtKBsVl@AK_S*k+_o'@W_Z7XP_Zdop_o0I0rkecR_>_:R_ns=.rkncQs24]M!PuSN +_>h=N^)"K"_8*gu]"#)IU6h"&NK00dQ'@AiNVeV6MZ&J4MunutN;JV7Mu\k/N;nk;N;S\8Mu\k' +N;SS6NW+k4N;\\4N;JP5MYrG4NUr)1Mi_4S_Sa7/`l?!r_u7OP`Vm^T_u@L[^q[\$_Sa=2`PTIh_Z%IQ_@4B%`Q$!@`l5m5 +_SO(f_AU,$\[SrOX.blBO,]6cR$jA,P*(rmPEV5srg*qWQ'7>jMi3FLN;\b@O,f9^N/NVfMunut +N;e_8N;\b9NrY:?NrP(;NW4q;NVn_BMikMu\k7NWP9'O84e>NK0$YNK3mq&WD^0 +O,f6[N/`dRN/W[QN/W\nNN/`hqN!5)qLl..Nr/^l +rVuiq%/p+tkJX*i[_92V[^Q1B#.:qM\%0)]rjr3B\c0/?\GirG\@K2]\[oA_]"5D\\+dB<\$icT +\[T&X\c'&<[fX+O])K8?])K;Z]",>[[C*BJ['[*?WMH/WSY;m[Xg#1@[^Z7Gs0iBE\$rlV\@K,[ +]"5HM])T;C]",A]q76O8"1c"S\bs&=\HBFR\[_1?s0r`Q\@B#X\@8lR['d42T:_dBL7Zl^p\t-irn[SUrr<#trr\c02:\HBFR\[_RJs0rWN\@8uZ]",D`\[f;^\[]2]rjsGg]=Y_g]"#8\\@8lOYcb"' +VPKoNMk7oKp&+gfrqu`ns8DoqiW&lU5lLQZrn+97Kp]jGr;HZmeutI(R%9k@Tq.@(T?Qa%mB_tU +eFW_>rVZ]ql+rgLPb6D(s7u]pm^nmHPd/m8s8N#t)ufg7s8Muprr)irrr<#V[\^1OiR+p4d/ +rVuiqs83<#lc?$,_8sU4aNM]Hrl5&Za8O$X`W!mW`VmjW`W4!W`W4'X`rF'Z`r!dVaSs3^aN)?@ +q8`NVrl4rXrl4uW,0%^EaN;QF`l5p7]sb2GVP^;kXg,7B\@B)Z\@K,Z\%&rYrjr-As18*>s1/Scr4E!?"1u.U\ad92\HTRT\[]2]rjrNK]=Y_g]=beg]"7IEs183A"M24V\[h^N +rj`?H\[f5Z\@T5]]DfAA]DfDA])]G@])]GA])fLRrON$A])K8?\cB;?\Gs,>\cB;<])T;T]",A] +[^!0IXeMM`R"q<`n+Ze[rVc`OrrW3"s8N#trt52+p<]\2[Dp5(`lcEDa2l?Br5eoYs2Y2\rl,#[ +aiOJ%s2b>``lA#!"inX'aN2BsaSs6[aUZA2a2Z*;`l?'=`lH*=a8X*Ya8X0[`uN(9_SO""\$2j- +TqS<`YdCmK\@K2_\[]/Y\@9!I[fEr;\c95I\[]2\]"5G`]"@sQs1A"h;+S]=PTO]*#XV +]=S!Pr4;p?"1l+V])92?]`#JB\cBA@])K>@\co^W]",D_rjiWN]"#5Z\[T)[]"#;]]",BH])T;C +]">ScqRca]"5HO\Gs)P\@8rSYH+_'V4!=9a6*-qs8Dus +r<*&trVkdUrVf(\qZ$QIX-/1(`U3[)s8:NSRZs85TqJ0QP`2<]nGhsbPH<=*rr2los8V?"RZE]* +df9@Cs8VN!R>mH9f_>FFrr3r:rVccqrVZZnrr;uts5:>^YKYtQZ)uCNs8DusrXSu-rr)lspXH4; +`:!['qYgHorr)j%qt^3js8N#trr2iq!WN&rrW)oprn@C&~> +rVuiq&,lG#lGod$^;Rk#_Sj=._>V4N_>_=O_TdOH5KbOcb`fOcYWbq2brEOH>TdOHGWdOcfX+!g/S+qiUo?!0R2@"cnb, +O,oD%O8k:AO8Y.?O8b4CO-#EarfR5D.ZomWOckliOckihP*(liP)t`bO-#NhPa.MuR%BV(PEh/Z +REt3lrVlcorr1aR!ri6"rr+/BrqlQ`bbLi<`5]^7aN2?>`l,a1_SO%&^VI\&_8=./_nj1g_Z.FR +_o0Lm_uIXj_SO(*_8*h$_8=(,`5KO0_nj.(_8*kc_$Ioq_o0R8`P]Rk^bimC^q[Ro\[SrJUmmX3 +NfK6eQ^F,)Q'Rc&Q'Rf+R[]b6Q^*brNfB']P*(liP*(ojOH5IuO9L],OHGWdrf8[nP*(okP`q>q +P*2#lOcbfhOH>TdOH5KbO-#HaNfB'ZNK0']OHG]hOckliP*>m0#*Y46PEM,nrf[;D"-\k/OT(@D +OHG_*P89=COcYTbOH5HaO-#NfOckiiPEV,kOSk7@OT1ILOckrlOckiiP5UIWNfB$ZOckrnQ'ISt +PE_8pP*2&oOd#d0$B9h3`od!nrr2rrrr2rrr;Hctrr2-]rVf(\qZ$QIX-/1(`U*R&s8:KQR?O&1 +TV%sMPDc*Yn,Da^P,m.(s8Mups8V?"RZE]*df9@Cs8VN!R>mH9f_>FFrr3r:rVccqrVZZnrr;ut +s5:>^YKYtQZ)uCNs8DusrXSu-rr)lspXH4;`:!['qYgHorr)j%qt^3js8N#trr2iq!WN&rrW)op +rn@C&~> +rVuiq%/p+tkJX*i[Cs&S[C6(A&[f*Y\%0)]\[oA_\[o>]\%&sI[fX(K\,3]7\,Wr>\$iaC[fs4L +\%&oVqmc[8"1YhL\Gj#>]".gO(qI/c[^EKK['[0DYH"@iSXc7DUSk2rYHe)5s0;X0riud5ZF$sE +[C*C>[K!T9[C!s0Vj5rj)R/'sb*MZ*:I;Z*:L1Ym%G?[C! +\$i]O[C3O>[K!T8[^WaF[f3c9[e@31[f.Z*L_8ZN%91ZN%64ZE^\6Z3%;:ZMq*.Z2Us2Z*:I;ZEaD7"gbVF[C*I=[K!W6[K!TC +[C!s0Md6rj;^5,dt+g['[0FZ*:F8Y,\CrTq7pNTTtJ0alrKs +rr)iorVccprVkjWr;Q`p55P9X`L<0VQab]>qZ$H@Vj*CE_8sL1^9*TYXQ'6G[?@?4oDegfqu?]X +]9e\FOMq+tqZ$TVW/Z^uYL`FHq>^Hm!WN&qrs[_cQ_hjil.4>GrVlcprrDomrs8DESsdF`s8Mrl +rrN&rn,N@cs8DoqgAc[~> +rVuiq)Z9R/lc?$,_8sR2aNM]Ha2c9@a2Z*;`l5p:rPecU"inX&`Q-$r`rF*Y`WX?'aN)C$`rjE' +a2[tr!li:$rl4rXrl,nr`l?'=a2l?B`l5p8^UpqXWMQA`USk/rZ*L_8[/[K3Z3R_D['d?N[C,n? +s0Vs;[C*C;[K!T9[C3NOm^E/'rjDg7r3lU4!OfK:\GWc=\%&rW[^Q(Bs0`TM[^NTP[^EQP\$rfR +[C3QR[^WaB[f<`?\$i`T\$i`TrjVp;rjN*A\%&oU\@;FFr3cO4#ILhE[C!?K[/.31[M6-V['?a3 +W2ZP`U8FQCUY#&2rr2lprn[SUrr<#trr`PTX:ai;?AaN+5"s2Y,["inX&a2l@$ +a8a6ia2Z->aN2B@a2l?Aa83mV`rjE)a2Rqq%EHK.`Q#p<`l5m8`Q#ps`u;q7_ns4(]!SQ9U7e0R +V5^W&['d?N[C!?K[J[B3[JmW7[fEl9[JmZ8[K*i:[fEr;[fEr9[K*`/[f<`;[^W`Sp:((3!4Vd6 +s0i?F\$rfS\$i`S[^Q1CqmQC0$FI4L[^EQP\$i`QoX4b-qR-C3pU1(0rjMj7qmQO4"1GVF[/RK3 +[/70BZEUL3VPU/fVONXAbNes's8Dusr<*&trVkjWr;Q`p55P9X`L<0VQaYZ@r;Z]DWKrgM_ofs; +^os#aY2oWN\!3c;oD\aequ?]X]9e\FOMq+tqZ$TVW/Z^uYL`FHq>^Hm!WN&qrs[_cQ_hjil.4>G +rVlcprrDomrs8DESsdF`s8MrlrrN&rn,N@cs8DoqgAc[~> +rVuiq&,lG#lGod$]u.Ut_Sj=._>V4N_>_=O_:$1L_8=(*^V@S!^q[Ut^VI_)_ns4(^:UeWX.l#G +Nf/jWOHPflP*(ojOHBI&rfR5D!gJk2qiq,D"-f"5Onk4@OTUf3P`u$0s-!GIm#qF6r0%;IPEV/l +OoCODP6-o0OnOqnQ][;oS!Su)eaiS9rr)fprn[SUrr<#trZhIBqt]j, +TqAX-_S=%0`kfL/_SO"%^qd_"^qmk&_8=(*^VBc`s1\WO_SZ;gs2"iQ^VBc`%DT]p_SO(*_SO(+ +_8!b_^d#TL_84",`59@*]tV7r_83q%^:h1k\?i62S +rVuos'E.t0rV,NnTq\p,[]m-HZa7$H\,No5\H9:M[f3c9[e[E3\-9=N\@/fQrO)p>[C3NR[^Q+C +rjW6C[^NZV]"#;\rj`6C\$rfQZa9Y=%^WIEWMH/UR$jG8USO`ari#gos/6+!VPpMoWVUBlrVulrh>[QUs8W)ts8N`/qXr+-T!,f<[C<]V['[^]",A_\[T)X['d?NrO)X3%CNRKY,J(aR$Eo$ +R@^/PVZs*!WMlbpWW>WMlcpVuN^oVu-s8N#qn__sRhT`*cTuu`hgXtfks7>R8f@&:,ipZd?j11_LXjQY:qsNP"f\#$Ao`"h& +p[-u!in<#JnaYbsf$rF7n+m"_rr;p!rr;usgAc[~> +rVuiq&H2V(lGog(^rO@.a3)KD`lS/""i\Eu`l5ss`W*pZa2Z-ua8X*Ra8a-X`sB]*aMu6?`l?!o +`WF3#`r=$X`rF!X`rTq.^GU8FlgWW&psWW/psW<0*#XT#9tXT,=' +XK/D%q5aOq"08N)X7!(hX8]1#X8K(!WrfB)Xo5F&XoGI&Xo>L'Xo#:$XVS(AXK/G(X/rD)XfSS( +XKAV+Xf\\+Xo#1$XfSZ&Y5bU8YHY76Xf\b.Y-"e.Y-"h-XSo4"XT,@$WrK+%WiN/"qQ'Xts/Qd4 +Vk]lUT:;=GXJV8\g%+q;rVc]oh>[QUs8W)ts8W,s(AH1PU:/%[_8XL:`Pop>`lH-@a2c9Brl52` +a2c9Cao09_aiMNCrlG,["NJO(a2mtp"3AO&`r=$Y`X'W(`Pfa7`l?!s`;dgU`r +rVuos%fQD*rV5WsV5V&D^:V5!rk\QMrkSZQ_85QV!5\ZOs1n]PpV?jHo>1F@)8OoOT1C@O91K)OT(== +O9go/OcYWbNfK2"OT1C:OSk.BNfT6_OT(:BOHG\!O8t@=O9:W,O,s:&s,[5ArfI/@"-AY,O8b7@ +O8b4BO-#IsO8k4?O8b7@Oq3\9N/WgXOIN&=Of$k)qZ$QogA_6Rs8W)ts8N]-q!uS"SZolD]YVS) +^:qD!_#1tI^];7L_#V:L^';?d^;.S#_#D.P^q[Xur4`)]!ST:SsPS!MN!U[P*1ofO-,NdPE_>tQBd\tP*,a*#Eb+0OcYZcO7eV5NrY4> +N&8rVZQmroCYZR@98K +nbrCbqUhI$Od3-$q>^'OhU^96k4AQOrr2ichq-Z?c)[)&b3\NMf]rM:oBYAedb!=7n,)q@\Xf1k +dI@,3mc<-Tf\PZ]rr*Q)mGd*ag"GQYn`JWXeCs!Pq>^Hns8<'!s8N#Os*t~> +rVuiqs8t8R[TY5S",t;r1!hX +S=KPIrL*hXS=H)ESH#&\S=Q4@p7;5R"J)'QS"'DI*h/[iSXc4@SXc7AS=?"=rr)cps5LS[S=PtJg%YOFlGfN^PZjEVebAad\Yl-nUTr)1 +r;ZT\bGLr3XKSFeV9.fN\[C&eptNT_T;83RWQaeta.J`ePH +rVuos'*%t/rV>d#W2m\Q_7mq2a2Z0?rl4rU"3&3t`;[aZ`Q$!?`r=$Y`r=$Y`WO9$`lJ"s#fjs* +`l?'>`l7Si!6+oVrl"uX`Pfao`Y$21a2Gj0]!JK7T:D@>SXuFDrgs.\rgs.\".l-WT(\fVT%9M6 +T)G;]TEV$`U8+HWrh9@d!i)KaqkO1c"/DT`TDbDaT:hkKTDkDcT:hgLTqVI[s.K^nUnaZXTq\9T +rh0:b!huB^rh'CdTV%gIq4@b\T:_eRT,"#kSXZ%8S!feGZE0Lqg[k7=rr2rrg]%?Ss8W)ts8N]/ +qtA@5UUA+]_SaF7_o0U9`qd[T`XTu1aiDKDb0%fGaN)s9`l5j5`5KXo`;[Xk`Pfa5]sb)BU7@[@S=lXNTV8*RTV%mLT_tDbTV8*RU&Lc!Tq\9V +US=NYU8+KXTqS-QTV%kPTECgZTV)4Ts.9:arLXdsT:_^ITV8$OTqJ'PTq\6SU7n9Rr1X.`!MQ1a +TDbDeT:VXITqS.WU&UbfTqJ$Lm[sNNrgs1^qO[bZqk*n[r1=(_T:_eUTDtSaT)bJ^SJ@`gSt)=? +S"Zd_YG7D_dd[57s8Musrr2rt!<2$Yr;JeVs8VuSV3n]qR@:S@q#C6FZ'q0#q>^Ems6@1PN6;+e +[Zd]?p&G$ir;ZfV\Xf7]QEAj7s8D6&Tp1dFQ`em5p!gOMTqA*bc0YB.qfCJ4JYbe(dTs3&?rT;#!Xg+Fi_UZi9US"0RYf>c%s8;ips8W)N +s*t~> +rVulrs8rD2M>rA6M2I1IpPK$/MMg)D!K)a5L]`KkM2D4hs,-o8MuJS7 +Mi.1cs,,opqMGf?Mi3IMMi*CMM27"GMi3JkMZnurMi*@Jq2,?4MMd7HM#N5EMN*XUN/NXUOHuZE +WL0aBp%n[frr1[P!ri6"rr.9ErqcE[ae#!)]tV+n_SNq!^V@Lt^V7J!_SO..`5BF-^qRLp]Y1tj +^;%Ct_SX.)^VIY"^qde%_8!h(_ns=/_8*n&^V7Cq^V7J!_SO%(^qROr^:_+l^VI\&_Sa:._7mIb +W1TH?NJrgVNJiUJM2I.GMMmCONK&nrMZScmM=lc+M$/]mM26ueM$SooM2-kBM26u[M#`A2M>rG< +Mi*CMMMd7IrJLW3!/g`5rJLW3pko*.!/gc6s,-i5#)\7oMM[1Gp5/g*$AjXtM2I.IMM[.Fqhb?/ +qhYBIiMNO@&Vk0*MdI7#3r;clsrr;uuro=%Vr]C)Ys81`NR's5e +R^V)Js81KRR@1tgs8Drsl+)V.antJ5P,Qk&s8Mups8V)hSXc7:XkEIKrT_CrPa#@e@DKN +T;/[9m/6nZm`VK#WN<;!R&.pcfX\EAr:o$^W1Tl[T;g'&mDkidR?O`(o'4<#V4sTUYgiCFk/4:& +Z(7Q)e]Y:oT:_m_`oR'tr;HWps8L[NJ,~> +rVuiqs8[K*f9[Ka+FZa@0L[J[K5[JmTB[C3NO[C3KN +[^W`Sn@/>*"LkhI[C#q@s0`EFZa@!>W2#rQQ^*f!P*,a-rf[;Fs-!>CqN;&FP*;,oP*+:Xs,m;D +s,dDHOckn,OnOtrK%eUOH>TeOH5KdP*(okPEM&j +P*D2pOcfR))3L)GP`q;oPEhDtQ'[o*S>rosQ`8a1q#16lrnIGSrr<#trr\$iaD +[fs:N\$`TNrj2[3rNR-D['mHQ['-C"S=,\,P*2#lOH5KbO,s:%rf7;GOcYZeOH>P$OT1C?OT1@E +OH5H_NrG+JNfT9bOcbfiPEV/org!MI!0[;E!gJn3rfI8DO,s:%s,R8BO,o>#NrtK+P*,a,%?Zg; +PEM,nOcbfiOckn,Onb+=PQ-mJPl-gHPR*P=P`q>rPEV70POXh9P6I,5PECujrfR5D!0dDHs-4Cb +Q'@JsQ'@JrQCObOXeD#ZdI-l/rVQNlrWE-!s8M'YrVliqs8Hg#_j-k;aek8rbjbZ.f<:X1_"Rg* +qY/jMLQBXUm'MnPde*P +rVuos&HDb-rqYm$W3!bR_7mq1`lA"us2G/[`5KXo`;djW`<4-#a2\,!s2P&Ys2G&ZpVmEX`l?'> +`l7Si!6+oVrl+lT(raM7`Q#m:`l,a0]XP/GUS"$DR$X,)Q^I``l5sq`W!gU +`?S7_S!7ZWM?)VS"-%>R[KV5R@'D0R$mr@!13YO +".>UGRJWHQS,JfURK&WVR?s8.rL!VO"IPLBR$R`:s-<_QQBqH8".#:?R/WNPQj/tGR$j>/RJiNP +QNNVAQC%T:s-WePs-s-<_QQBqN:!1<_Q +)4Hq\R$jG5R[]h +rVulrs8L51S>L]3,0M%PQ#M27"FLl$tELl$qDM26tEreUQ/!/UQ.!/UW0%>KXnL5(J[QUs8W)t'*%t-q!lM!S?BQ>]=u(q]=bnnrOs#]_8=+.`Poa2_8*du]=beg]=bhk +_#D.a^qmh&^qmk(_8=")_o'@/_ns4)^\tkM^V7Iu_86,d!PcAI^&PkI_#M7O_u@V!`50'kWM5oK +P)kW]LkLA5KnP,6L51VAM2I.GM2-h@Lkgc\M#W2PLk^Y +L51J;L]3)0M>`8/M>rG7LkgcbM#W>3LB*/0LB*21L]E;2M#E21M?/QhreLW2L5,\_re:Z5LkphB +M2@,gM>rG?M26qDM2-h>L51Q`LAuu-LBN?eLkg`_L]<)=LPCM +rVulr('"71p?0>eU9hG;XgPUDZEgjF\$idD\-0:K[C3OC[JdH+[/dZ7[JdQ4[JRE.\,Ni9[2ucc +\[],Z\@8oS[C3KM[C*BJZa$a:WMQ;ZR?`qtOnk1?OTpo-Nf]BcOSt:GOHG]iP*(jmOT:L/OoLLI +OcYWbOcbaqOoLLMOcYZcOH>NbOHG\)OSFqO,s:%"Hek2P*>g.s-!VNP*2#mP5^OFNfB$YrJ^oQ(YP% +\=/8BZ,tb;RZkSUf;kOH_o0BtQC5MHeZ"k*X3T\KXdl#h_SE7AP-aB-VjEX:Vo.)tR[L"\_7-52 +^[_=$rr2rtrn.7$~> +rVuiqs8QN*9QR$X08QiNQRRf/ZQRfAc`R[KS2 +R@'>-R$X/*qNhJTQBml)R$X,)rg3YPs-E_Qrg*SN#*tUBQB[W!r0IALrg!PNp6blJpmD)J!1 +rVuiqs8<.@p;$^E!5SQLnA#4B_83n"^&5SG^VRhe`>?J3`Pf^3 +_SEjq[BHR+TUV72PEM#iOH0:#s,I)=oT&p1s,?u;3K/rWN/`gUNK&mUNJrgUN/WaTN/`gUNK&mV +NJrjVN/`gUN/`gUNK&mVNJrjUNK0!XNfK*ZNK&tiNNJrgUN/IUn +s,@&;NW"n;N;ehIO,]*XNfT3[NfT3[NK0"hNrP(UNfB!WOHYopS"QUPV6[\;S?:ZCrVuiprn@AR +rr<#trrVg^\tqQ_SO+*_SX4- +rkncS'uRu._nj.'^;%Fs^:h7q^qde&^qd_`^';Bf^q[_'`;[b#`P]I#Z`^=(SX>Y&MM?h?LkgeD +MN!RTNfT3[Nf8mTNJrhqNW4t6NVAD2M[PK%Mi#NW+qDNK0'^OcPTcO8Y(D +NK0$XN/`dTrJgf:s,AUkOH>NbOH5B\NfK'VMiNbOH5E]NfB!UMiE[S +NW"h9NW"e9Mu8P6M[k](MN!RUO-,QfP*(ifO8b+LO-#QmTrP?&Vja^9mecq\r;Hfsrr2lTs![jG +rqu`ohlVj9hW;G=QFl5WqUM^:Qa59'gY:5jS;X,prp@4\Vpb8;rb_W6ro(J^S"H:=XQ]]__4RX# +R@1G1f=moBW5HZ`TT,c(q;noITXDYHRYdH;akO\$PJQ\=X.QQ4`5/dGRD7_2W0X!TcJd$MS=d+( +^oWufZfp/AQ^!r9_q)GgRAI@.\"oS0nc&Icrr<#tf`-I~> +rVulr&c_h-p?0>eU9hG;XgPUCZ*Le:[L9RS\@K,Y[^ENO[^?%?"15D@[/IE3[frg<_Pr0RJNrg<_P$^d?MR$jA0R$j>-QKa_9QMd*KR/`KaR$jA0R@0G0R[]e8S"#h4 +QiU?krVkXQ!ri6"rr2rt)#O1%c(^`0]">G\\[A`K[C3KM[C!6EZEjJ7!4)U/"1#2;Zi7<: +[^W]S\$i]PppL@6[^WcV\,3]8[K!Zj['R*EZaI6L[C!9HZEga>Z*1C:ZEpmE['Hp=Xf\b,VP'HH +QBdZ!QBd`$QC!o'Q^=*=QiEHPQNEP@QiURR[KS4R@0M3R@*i="dk^GR$X06R/`NQQlDH^R[]b8S=H(=S=Q7DTqn]mZEpHrWmgD3qu$Bj +rr)oriVu@Fs8MroqUM8X?Q]drCYH>+4SrfARkl0nYQ_`"%s8Drps8M#kURn?b +R@`:8qQlEhYFqGpc,QlRR8^TKhoMm^SAjU>U6;t;m,GI;Q`A-``L;n(o\[!U`8Te7aeFouguQ,< +S$Ur5^7(Rpd-9c=XGrn*eYee)Yfc(k]U#+n`mrDJYK6>7rr;uts8L[NJ,~> +rVuiqs8c^qd[t]=GAVY,S4kTVA0STqhU]rLj7bU&(DgT:hjLT:hjN +TV1_H!20=bs.C7'U8"?TTV8'RTqJ*RU7n(YAX5*@C +rr)forn[SUrr<#trr<#ur!`AKW2-i=`PTU6`59Cj`;[^]`l5s;`Q#s=`V[XW`Q#p:rl"iUs2P&W +$HC'(`5T[6`5KR2qo&EOs2GPf`5]a8`5KR1_8=+-_SZ;i'#_f0`PfX/^:_(h[]lg2VPKr\rhB^m +USOZ[UnXU_T`h*bUna^aU][BfUndp`s.]jqU8+HWUSO]\rhBFdqk3t]"/)?]T_tM`TEV$`Tq\b +TV8*RU&:VgTq\9TTV2"P*MB+"U8+K[UnsrbVPg>jWN*#%[(7cYI(L+P+05Os6[FdVU>,:rbDB2ro1VdSu/WXT&0JCZ]qVr +TUiL8`iYYs\(TZ[XHK*mjj^#f[b0s+[Zd#WaPOn)OMLMGZ`D%'jPS(ROK70t]UYIth<)G?S?C6' +kfp2fT\.emQ^b5%jlj@CS?U#`cb-I&oD\^frVZZKs*t~> +rVuiqs8/_83n"]XbGUXf.tcSXuCBS"#q0R[KP1R@9V6 +R@0M4R@'D2R[KV5R@9S4R[TY4R[KS4R@0M4R$jA0R$X53T:r0bZ*1IF^TsB4hY6sJrr)iMrrW3" +s8N#trtbM.oZa2(YJ.``]tM(i]=u"l]tV7s_Z%IP`"Bl&^qRLq]Xtee]">Yj_8*h$rk\`Q_ScAk +"NAUHRJE +St>qP(nR:gS"-"@pAY&.r;ZcU]q_0rXdPd; +s8''dY-4Lh[EZ^nR@1P;hoMm^SAjU>U6;t;m,GI;Q`A-``L;n(o\[!U`8Te7aeFltguQ,7rVulss8L[NJ,~> +rVulr&HD_+p#a,aU9_A;Y-k^EZaBY[C!L6irVuiph>[QUs8W)ts8Ni2q=Dh*S>s*1\%&rV['d?M['d9JZi790Ym7S> +Z*LaC['fk@"1YhM\Fm<6[^WcW\bil>\$`WN[/RB2Ym%J@Za6sCrNZC,(pUBQ['d9IZa$a=ZF%$G +YGn@lT:hgKTV2:V"e_K[TV8+XU&U_eTV8$Orh9@b"JMK\T:l.Ts.04_rh0:bs.T[lUna]]U].+i +U]R[4hU].%iV5F6gp87kd!N)^g +V#R1iUAghbU&UbeTq\7TUApngU8+I^U\^c!USXc_VPpJqZ*h'LWgTp9mJ6YYr;Q[#rVuorrr2rt +qYpNp"oeQ%rr2rsrr;uurqufpr[7XCrU%XsP,laQ^8I3c^[M-QXdbN?R?j))R$ErBhtR*8\"ah=a@Qa+cNP*sehs80s1RAn3\_jZ\%p[65= +`QlTG\t>.bhCa.&R=c`<2'dd-c(_NgIa[)'\s_:\P_r;HQlrr;usgAc[~> +rVuos'E.q/r:fHrVQ.DM_7mq1`l5s:`Vd[O`W!mW`<4-#a2[ko"ieU'`l5pr`rF!m`l5p8`Pod7 +`Q#p:`l?!9`5T[5_o)Jlqo'>h_Sa7._8*h$^q[Us]=>5PY,ne0Y-.`,"0Sc/Y4Sh"XKAV-Xf_)q +r2g%%Xf_K%s/cC)X/i>pXoGL$Xo>L'Xo5F%XoGO(Xo,=%Xo5F!XoGL&Xokc+X/u<&%'-J3Y-+n/ +X/i>(Y-%])#d1;4Xf\b0Y-.Q%!NrO'X8f:$XT5I"Xo>C[QUs8W)t(]XL3r:eX=UpRtV_SjC1_8=11_o0L5`r*dY`l5p:`VmaP_Zdoq`5T[4rl"cQ#f=Kr +_ns:.`5MYm#K4U#`l5s<`r3mU`;[[S`;d^[_Sa:0`Pod4rP8HL#/@dXZEUO9rNHX4Y-+t2Y-"h/ +Xf_T*!N`I'Xo#1$X/rE%Y5GI,Y-5"3Y-.Z("0AW+X8T.!Xo>F%Xo>I)YHG&*YPbR$XTGT)X8T'u +X8f3uX8f9uX8]3sWs,N)XK&8!ri-=+WiE,#XK/D'XfhZ*s/lF*Y-.T&riQF,Y-+n0Y5YO'Y5YX) +XoY`/ridEJZEppI]YM=sYFViGn,*(_rr)lrrr)lsrVlfrs8)`prrrE%s8N#trr2rt!<2orrVe/A +rr)6)Ss$.sdCuNCS\X^nfrps2R%'J/R[TP/[,CcZm^\[`e+EV;C]FCp]qCgp^SI7EqX:MP]=FW& +[`u:RR%CV(b.asDR'P#SPFC"ls81$4R]=E``1)q*q!ZJB`m;fK]:b@fhsA7MR(VYGZBM0+lMUVG +aISmCd&`D+e*Qr+_j6[e[_g##_V+ecrr;rrrn%1#~> +rVulr&HD_-p?9JkVn'XV\\Q(t^VBZ]!5J-@"i%jg_8*ka_$.Wj_8*h#mD/b:"i.jd]tM)X^'_Wj +_Sa:._8*n(_>D"l]t:b\YH4e*XK&4tWiE"sWMc\nVl6PlVl6MkW2HPlW2?HZVuNUrVl$>frhf^l +r2'OlUo"$e!2oUhrh]Uks/,jom&0]WqPP1-Vl-DgV5C/gVP^/aUo(&dUnjiaVPg;grhhTMVl6Pl +W2QVmW2HSmVl-JkVl6MkW2QSkW2?GfVQ-`"YdM'Q\\Q%fS#tTAqu6Qnrr;ush>[QUs8W)t%fcP+ +qt8:4TWl/F]t_:qr4W-F&&?'"`5T^8`l5j5_SEmt]DfAI]=bei^VRb%_Z%IP`!aQ(a2Q$frkAKJ^])"K_Z%FQ_YM%J_B$P4`59:&]Y(qk]XkJQW2$#WSXuIGTV8-VV5C/grh]puVPU,d +VPU-fVYd:kW"Q#,Vl6PnVl-AfVPL#aUnjc]V#@(gU^!ZkVPg;gW;`dqWrfB'X8K%%X/`/!WW&h" +VPgAkVlBZqs/Q7%XKAW(X;.k=Wi<"sVl6JhVPU,dVl6SqWN3,%riQ1$"08H%WW&jrVZ3OuVPgAl +WMcZjW;ijpVu`fnrhodp!2ogn';_M!TqeH]WNEJ8]=P)6Xjc_7r;QX%s8N#rs8W&srr<#prr^EmrVlfrrr1XOJ,~> +rVulr&-)V+p?0>eTsMA=YI(^CZi7?3[/dT5[K!T6[JdH?ZE^^?Yd(F;ZEpjBqm6=."1,DBZi.6@ +Za@*I['[6J['R*GZa7%<[J[B7[C3TS[JmQ2ZPg'RZF%$J\$i`PZ*(1/XKAS)XK/D'XK/D%pT"It +X/i>&X6m"gWrT7!Wr]6"ri5t!!i`,tri6"!#car+WiN5%WN,lqri?(#s/Z(!s/Z.#!3?+#s/Z1$ +"fn`+X/`3!X8f1%X/rD'ri-""WrB(4Wi;qpVQ-_sVPpDjWN)qsWiN3"Wr&mtWrT7#XoGL&X8K%8 +Xfee,WiW>*Xfo(@[C!QYY*c9Go_A@_r;POP!ri6"rr2rt$iKklc(pi.\%0#Z\Giu;[f<`:['R(; +Z2V!,Ym7SA['dZ*LdH\$iZKXf88!WVrdqV\#f)Vl6SpWMunsWMcYmWMlcmWkWN,ru% +BQV3XfSY,XK/G'XK8K%WX#N%Vl$;dV5=0erhKLh"Jr#nVlBZq#-4i/ZEpmCrN?=*XK8Q'Y5bR+X +fek1Y4]!uXokl1XfVK'#ct/1XK/A"Vl0Nms/-@+Wi<#!X/`5$WiE,"WN#lts/Z4$qQ'[tri?[5Y +HY:>\@K,MRB"[%qY^'Y)p9UeYJq^^71:nbc[:uR%C%ITq.LW +Q*Q*RZkMYnBeeNVOX6MQB\N0lG&[P]]@nMOJpb)r;QBDXIZoBXc0.>qZ$NEWg]6@SYi[+fCf.Br +;Z]srr)fLs*t~> +rVuiqs8<<"lH#m'^;[t(`lJ(ts2=rT!lW'srknlU`5MYos25#Y`l?!l`Wa?$`l5m7rl+oU&]M], +_o0L2`5KX6`5T^6_o'Fk_ZIco_u@RS_u@US_Z[io_SO%e_>_4U^:_"c[C<]V\c0,=\c9/>\+I2q +\,Wl:\,s0`0?[^NTP[^W^C[/dZ7[fEr3[fEr:[fEl8[gKRQ\$i]P[^ENO +[f*W6[f<`C[^WfX\@8oS[^`lWrj<-B\%&lT\%&uY\$rgE[fEl9\,Ni9\,Wu:\,Wo:[fX"I\Gj#K +]=u1u^W"1"S?CfDqY^5] +_o'@/_SO(f_Bct7_Sa:._o'@-_8=%)_SO((^qmn)_8=(,`5KX5`Q#p:`5T[o`W*gY`5BR4`;RUR +`;daS_#V@O_[=8p]=PSc]=GJ`])B,?\$iaD\,E`=[C3KN[']e>rjMj9rj_s:"M)%P\[hXJs0i3B +[^EQQ[C-"Bs0i*<\$idD\,s4N\Gj#U\@K,X\$icR[^NTN['R'DZa@*GZaI6M[/.01[/IB4[/RK7 +[C6%Arj;^5"h(hH[^N[E[f\Ir3la9\$u=G&%T +rVuiqs8_@O`"0c(`Q#p:`l>s7_ns4(^;'Z_s1eQK!5e`R!5nfQ"i8*n_8=%e^^e,m]=PVf]tD"h[]lj6 +WrAt'WiN5'Xfnt5Z2Us8Z*:I9Yct=8Z*L[?rj)R/'!ejMZEpjC['[-EZ*1@6YHG(4rN?1%'!8== +Xfek3Yd(OA['d?O[^W]RrjNZO\$rfQ[C!9HZE^[@Za@0L[C3QS\%)FJrjX/][^EQNZa@$CZEUL: +ZF%$J[CZ*:L'YE?KYeto.b^RULrcEEV%R@g7MU7R^@Y.q?)V<%IOs4F?A +WlNc.S!:_]n^>(SW1BQRQ^+`4lbJmT^?+4ROf?t-rr2ZIY+E5GYDoLDqu?ZHX.,HDT;T!0f_5=C +rr)cogAc[~> +rVulr&-)V+p?0>eTsMAY-+t4Yd(I;Z*F83s/u@'s/lO/YctC;YiW.i +YT'jQZE^U:Yd(I>[C!3CYHG"4['?d9Y-5(5Y-.c-"g5&5Z*:J3Z2_$.Z2V'/Z2_$1Z*:I;rilF- +s02O/&$W=I]="rU]WIO#g[b+:rVZZNrrW3"s8N#ts!I[?o$*u!Vma.H]=GD]\@/fQ['[0EYck75 +YHY:9Yd(O@['dBQ\Gir=[CC1Y-5(7Z*:L& +X/u<'"0\l2Yl:m0ZE^[?r36F0Z*1=5Xo>C"WYqb5Vl?\qWiW>*Y->19ZEpsJ\@B#U[C!9GpTjt- +Za@+=ZN%3)ZN%0FZE^[=Yd(F:Z*:F7Xf\b.Y,n_-YHP,,YQ(a*YPt[5YHG(6Yck:8YHG+7Z2Us> +Z*L^C[(!TV\#PjrdI$f.rqu`n!<<&toDejis8N)upAb*j;uQ^\^7h$_S>)[GR[]kCcg]JdR?jqq +e'HIpjRW-Dr;Q&hO/CCurr;ups8V5nR[(A9\;dB$\"9hY`0ut"bHI:uQ(+D +rVuiqs8_E^&P_F]D]AO]tV4m\[oDc]=knj]tOBWs183?s1/BG]Y(qj]]Zs0]Y2#V]GJ8o]=knl +_8="%^:h1p_n`st]Y;.p]tOEZrk/:-jrVkXQ +!ri6"rr*K/rVZTcdAitG^Vn%0`5KX5rkn]QqnrEO"iJ0n_Sa7f_>h=N_?.Qj_YV(c^q[Ut^VIV" +_84"+_o0L4`5KX5`Pfa7`;RRR`VdUR_Yh=N_Z.OR`;mjT_$n,n^;%Iu^V7It^:q;X^Akk[^:h4l +]=kki]tV4o^:q:o^;%Fsr4`TQ^V@Ls]tV4o]tX9T'u%Aq^V@Lt^VIV"_83q%^q[Ut]tV2Z]Eu3] +\[]/[]",D`rk&0@"M;7W]"7jP!kc.Xrk8?Es1A0@(;%5l]tM(l]tD%l^;%Fs^:h:r^:_+lqRusC +rkAEG!ku@]rk/9E"2;I_^&>YT^VI\'`599mSZUB0r;Q`qrr;oss8N#hs8W)urrE&ls8DpDrVl)r +TpqC=U7e!ES"6>#o@L.7R'+T^dF?n4o_\Xes6d7TVUP2:r_*.gs5pq^Q+,P[O/Tq+TX*CnS,[hS"ZXGQ*'!0_4@.0h:])sUY>_H)#<'o +T!cG=Of[gHs8VH3Z_ +rVuiqs8\L^;%Iu]tO3Ts1JZO^V.@s^q[V__#D(O^q[Us^AP_G^A5PD +^AktI^')3b]tM&W]GeMt^V7Fs^:q@t_8*n'_SO(+_8*ds\@K/[\C.nf\G`r=\@;FH%Cs']\$`ZR +\@9#Z\@K0K\Gs#:[K!Z=\%&rY\@CV1!4`$=(q@,d\%0&]]tM%g\[],\^:Un`\@K2]\@;IJ!4_I- +s0r'>rjW$?\@MOK'#)5r]"u7iS#tK:pA4^crr2lph>[QUs8W)ts8NT+qXr78Tru)G_Sj:*^qTf\ +#/.ad_8=+.rP]Ad_SO"$]=PM`\\#Mc]=l"r_Z%Fb`5BL2_o'F4`Pfa5_SX.(^:sQ\"hq[`^;.Vb +`$`I=_SO(+_SO((^:h1l]tM"f]">Pb]Y(h`ZEpmCYctC=['[6M\$l4Ds0`)[GR[]kCcgfSgR[:.ueBl[tjn&BJrVu8lO/CCurr-^1s8V5nR[(A:\W3T(\=^%] +`LE1&bcmM$QCOV@S=,hD\\kb=X5j!Srnk#LVT@K/SX74\hRB5NT:2FJR$=]0l+idY]A2&DOeUP- +rr2]LYar/;XcTUIrVul_cEa+2Q^XPF_;tFkrr)lqrn@C&~> +rVulr&HD_+p#a,bTsVJ?YI1dDZaB\;"15JD[/RB3ZMq*3Yck75Y5YU)Z2LsDZa-mCZa-pCZa@*F +['[0G['[6IZa@+=ZNmnFZEppFZaB_>"15JE[f3Z;['R'F[/RB4['Tb=rjDd5'X=jFYct=6YHY76 +Y-5%5YcY(3Ycdu/!NrX*Ym%G>Za-mArNZF0oWeb-ZEpsG[C!Za@17\,3W1[fX+M[f3c9[KX(GZEUR< +ricI/Yd",1"gG8;Za7%:Zi7<7[C3KN[/RHGZa$d>YH=t1YHG%4YHP17Z*:J3Z2V$3Z*L^C[/I?/ +Z2_$0YHG#+Xs1'PYHY79Z*L[A['R*HZa6sDZa$g@Yct:3Xf\\+X/r>#WVrjtY5YX/ZEpmE[C?.G +"LtqM[^H(@s0Vj6rNuX3rj;a5rj)X2Zi.9.ZN[_BZE^[@riu[3YctC:rj)O.qm$@0ZE^[=rNQm; +Z*LX=Z*CO;Z*LX>ZE^_6Zk0[U\@8H)WRC53rVcZmrVlfqr<30"rr<#srr;rqrr<#urW)utrr;uu +rqufrr[@aFs8:cSNgZoU[^ENKUm@@^i7"lsQb2SVnauSRs8W&pr9UnWVUG/:rbME2rT(V_QFZ.u +OI;u=R_7h*R[:P,YaV)\^&R(hM#SWBJV`R)Z"P-3^*^S%:2 +gtT-!UXJo:s7Oja5cH=,9VO*^PbO5E0r;HTngAc[~> +rVuos'E.q/r:fHrVlRSP_S=(1`Pfa5_u@LZ_o0L1_SjC0_SlGk(rX>1`5BR6`l5p:`Poj:`5KX5 +`Pf[5`5DSm!Q2eR_uI[S`<*uq`;[[O_u[cmrko2^`5T^6_o'F3`5BIk_uIUP_#M.P^qmk&^])"a +_SO"%^qmh$_8*e"_SX+'^qmh$^;%G\^];.D^]M9d_>V7N_#hBe^])"M^V.>Z^]qQh^qROu_#D%I +^'_Wg]Y2%m]YD:u_#D(R^qme"^VIV!pqZpE!5STM(;do(_SO(*_8*n(`5T[4_8!h*b/qZ?rkS]O +^r!qc_#D+K^]M?f^])"P^:h7q^VK`](r3o%_SO%(^r+4/]u7n!TLh:N +_>M+K^\ttJ_>h=M_$7]k_SX.*_#;(Q^qmh$_85i\s2"`Nrk])[_o0L1_8=%)^qde%rOr9ErOW*C +]DfJ>]`Pp]^&>YH^V7G[^\khF^C.cj^VIY"^qd_#^qp#es24lRrk\TNr4rHL^qfobs1nWKs1e`Q +^VIYa_#V7L^^@rr_7m(BXOQb>@ +s7Y!AT"W">Q*TZQrVPs:d*0PAVjX$Wc1(c4rVlfKs*t~> +rVulr&-)V,p?9JlW4Tp\]"c(r^](qV]tV1o^V@Iq^:q7m^:sT[!5/jY]=GJa +]Df>>\Ho^S\@K,Y]">TP\d#gY\[oDa])0,>\cTLT])B5B]tCuV]GnPs]=Ybj^V@Lp\\#Yp_SEgr +]=b_d]Y(hf]=e$Qs1AZM]Y1th\[oDb]`,PC\f88o]=Y_g]=bek_nEXs_6TT4g[b(7qu$EmrVbRP +!ri6"rr*K/rqu]fd]0+I^;Ih+_SEq"rji9F]Y2(r_Yq@u`59C,^:h.i\[f5\]=Ybj^;%M#_SX4- +_8=+,_SjC0_o'@,^V9TY$bX*`]thP)`P]R0_>_:S_8*h"]`,PC]`5PK]=PP`]"5G\[/RK5Zj*qH +\$roZ])K5=\c9/Q\\#Jb]=YVb]Y(kg]tM(l]tD"krO`NM]",;Y\$ifV\$`XC[fj9Me'5e>^=:`CPc!:1 +s8UlXS>aK_`1WO5iQ@^QU:eLnaJ4s&i97tMTt9(8Z^%?8q#CBfe>JkM_P`X'kl(JVleBb/`jqt6 +R]Xg's8W&qrn@C&~> +rr;oqs83T)kJO!eZb*WK[^EBH['R*EZEppFrj+2aZ`p[>ZEUR:YHY46Z*LU=ZEpg@ZEppGZa7'H +ZEpmCZEppFZa@-IZEggE[/RBTZEppF[C3HM[Bm0G[C*?HZa6sBZEpjD['R*G['R*EZ*F;4"L"u4 +Z*+)0)6pKMY->17YHY76Y-PF?Z*UjEZE^^@Za7%Za-jAZa@$BrNc7*riuO1rj;X4rjN`QZa@'E['dA@[C-"@!k#DArj)R/"1#28YPta8Y-"k2Z*L[?ZEppFZaB\; +s0;d4ZE^[lbM_11hqPW)P-N&Q'@rdn]dSl\]_FPS?^]=qs`CQ]A2Se +OI+5Wr;"U1R&S*X^mpb&e[^d'[,10>fr1%7hWM\LTsrq>[$@?$jnJZ7^m1A3ae+a(lM^YNd_X/b +khWqBPb>\Qrr;lnrVuipgAc[~> +rr;rr%K65'q!,ntX1uZk^W+@n_umlm_8?2hs2"uY`PKF0`5DSm)o]b6a2c0;`Q#j7`Pod7`5K[8 +_o0L2_o0L1_Yh:T`5]d6`5V\m$,jg#`5KO/_o0Ik_udin_YqFP_Zn&s_ns=/_Z%CN_Z%@l_Sj@. +^qmq*^r+%(^r44/_8F4._8*n'_SX4-_SPu`*5TM1`Poj:`5BI/^q[\&_na()_nj.)_SX+(_o)Ji% +)Tp"_7mXu]tM8"_SZ;g#K"Bp^VRe'_>(nI_#V@O_ZIfq_u.Fh_Sa7-_o0L/^;7h3ai;39_nj.*_ +ns7+rkeZNs2#,\_SO++_8!_!^qfrdrk\QM'>q]'_SF(1_S=".\=g%_pA4derVc`OrrW3"s8N#tr +s8Mup<]_3Ye@pQ_uI[W_nj4h_uI[S`X9])`l,d5`5BL0_u@IS_Sa:.r58QO!5nfP!lMmkr4r?I$ +GaNq_nj4+_8=+-rknfSrPJQO$c9g!_Sa=2_o0I1`;[aT`!!ur`P]Um_Z.LR`;[[S`;d^a_Sa:._ +o'@-_8=(*_SZ2drkeZPs1nlU_o0L2_u@OP_uIUR_#_EhrPAWP_SZ;g"2_mj_Z%FW_SjF4_ns=h_ +>qFO^]D3ark/iT]tM.o]tV4q^qd_#^q[Y__#M7M_#D.g^qmh$^VI\%^qmk(_SO++_8=(,`5KX5` +Pf^o_Z7XS_ZRcn_SZ8frkncQ!5\TMs1p>)_o'@+^q[V!_SX$jS#b'-r;Q`qrVlisr;HWorVc`pr +;?Nmr;?Nns8DrrrVc`p!<)orr;Zcp-ia2lbM_11hqPW)P-N#=_O$e;bFt00m/R(VeAKSjlJK@JQD2+Ys8W#qrR_("~> +rr;oqs835ul,KQt]>D7m^r$&a"22@[^&GbG^&PhH]DoSe]tV1n^:h4q^qROt^qROt^V7Is^;.Ot +^:q:o^;%CqrkAEG#JS!g]tV4o^&>Ya]Y2"j]"G_h]=Y_g]=Ybj]t_@r]th@q]t1hgqmuj@rjroX +^:h.i]=kkg]tCne]t_7m]Xtbd\c')>]DK/>]DK/?\[qdR(V[Yt]Xtec\@K5a\[f;`]",A_]",Aa +]`,JU]=bef\$icR[CNo\]=PPa]=b\apU^C:rjr-As1AEH]Y"0U!PQ/F]+hig]tLtc]"c(t]t1ee +]"#>a]=GTR^&G\E]aDKd]=ktm]=PVe]`,VD]`,SG]=bfU]+2Ql]t;%pZ^\#NoCr1\rVc`OrrW3" +s8N!Cs8DoqpsZ:@ZbF;m_SO%%]=>A]\[oDd^qmn(_SX4-_SEjs])B/Y\@T;c^:h7q^VI\&_8*k' +_SO++_84")^:h4mrk&3As18KJ]thP)`5DMi#/J!f]t:kdrON?H]">P`\@K,Y\$l:Ds0i-@\[f;` +rji-@\,No;[fa.O]".gO%(X!^]"5Pe]=beg]=e-Ts1ATK]"#5Z\@K-K[fEr;\c9/>\biu<]DoSE +]`5YN^;%J!^V7@n^&GYc]=GG_]=u"m^:h1l]tV:s^VI_&_8!^t^:_+l]XbNN[L]jW]=kql]tV7t +^qd_!]tF?U$FmRS\@K2_]tM(krk&*@$+md[\[oA^\$rmH\,Wu<\,Nli\%&rW[^NZS\@fMdX.$-= +mect]r;HZprqu`orr)fprqu]mrqu]ms8W&srr)fprW)orrqufqr?qXEo[0:hUW_TNgY^bpP`i;s +cEj"._YX<1s8MrorVl`mm^ngbe+EY=DuK\6j1V+P]'e=KR?j,3cL]>PR_$_PSt31>pAFI:]Y*(a +`0$G4lhpV)Tp_t%ftj5H]@OQUOgX*7o%L(+Xl&?ZUnYBWjL(;J_WLXjkJ +rr;oqs83['d['[-ErNcR4ZEaD7%^E7E\$N?L\uhC#g@P.=qu5FO +!ri6"rr2rt./`r4bbL],[(3]W\@8uW[C!9HZE^[=YHP(0XKA\0Yd(L@[C3QR[^Gk:s0E9D[C3NO +[^WcW\@B#Y\@8rUrjDd5riu^4ZEga@ZMq0:['R-GZa@'FZEjG8s0Z*:L;riZF.Z*Ue9ZMq36Za@'F[/RE/Z6$9TYck75 +Xf\e1Y-,"6['d?N\%'&^]"5G`\[f5Z\,Ni9[fEl8[fs4L\$`TMrj)d8Za@*G[/RB7['R-HZi791 +ZNRS?['[1=Zid_F\$c4Dq6g70&@JmOZEpjCZEga?ZEpmCZa9S:*4EAf\>bgpdd?o/r;6Eks8W&s +rr)cnrr2inrVlfps8W#qrr)orrr2iqrr!f9qW>S]S&4Fdq=sj]d\iJ2^W!RRS\k1%rr;usr +rr;rr*rZ$8q!,ntX1uZj^;e73_Sa=0_SO+,_ns7+_Sj=.rkn]Q&]Mc/`5T[5_o'F1`5KX5`5T[l +_u@LU_ns=/_Z%IP`;[[S_@a`'_8=(*^qdk+`Pf^4_8=./qnrHP'uRu/`5KX5_SX4/`5BL2`5]a6 +`PfXm`<4#r`Ph\l!6"iR!lVsmrke`QqSNKR_oBX4`;[^Z`5BC)^r-/j(;mu(^qmn)`5BL2`l5m6 +`5T[2^q[Y"rke]R#Jn?s_SX7/_Y:qP_Sa=1_o0Lj_\p;.`l#R*^r!t']t_J'_7I4r`koR/_SO(* +rke`Qr5/NNrk\ZOrke]QqSN0Js2#2[`5oj2`5]<[YM]$Lrr)fph>[QUs8W)ts8NZ-qXr77U9M>J +_o'F3`P]O/rkncSrl,>b`l>s7`5BI0_Sa4h_Z.OQ_Z.OP_Z.FS_Sa7,rkSQMrkSNMs2"`P!lMml +rPSKK!5nfQ%E$-&_Sa7-_o0I2`5BOm`qLQ`;d^Y`5]g9`5MYm!Q;nS_>h:[^VIY"^qde'^qmk(_86,f +s2"`P#f4Es_o'F1`5MVl!Q)bR_Yh:b_Sa:0`Pod6`Pf[3`5KR3`5BI/rknZN"i8*o`59Cj_uIRX +_o0L2_o0Fk^`C2*_ns-jS#b'-r;Q`qrVlisrVlfpr;HWor;?Nmrr)lsr;HWo!<)orr;Zcp)ZTZr +^mU\/l2(5NqtJO:R&IaKOHd^tj9cLKSYNj[3mhnGJ>WQa)1R[Le9Z]U]ki8iG"U6DG.lc#`oZ.e?UR[:/#hVQDU +MkJqXT9-MKs8MDuS#F3Th8lIWS\a[ms8;iofDg@~> +rr;oqs83i1l,KQt]>D4k^r!dt]tV4n]Y2%n]tD"k]tD#W]`>eG]`Pp_^AbeR^:h4o]tV4q^:q@r +pq6gE]tV1mrk8Sc\[f>ark/9C(;.Ap]tV1o^V@Lr]=beg]>)+n]Y2%nrk/iV +^qIIs^:_1p^V%7p^:h5W]`5SF]XtfT]EGjZ]=bfT]*,d\]t:uW^'23_\[T,]rk0Pg]",>]]">Vf +]=bkl]t:tk]XkY`\@K2^]=knh]Y1qh]Y(lN]E5^X^&GYH]tD"irk'/\]Y;%f[^j#]\@/lY]XY8Q +]"Yef]=PPa]tXKZr4`3D#JIjb^:q@r^A,AU]Y2"k]=P\m]t1tpZ^\&Po(N"[rVc`OrrW3"s8N!1 +s8Doqpsc@AZG",k^qROq]"#9L\HBFT]tXK]*PoV/^q[Rp\[]/[\[]2\]=bhk^:h7q^q[Us^qmkd +^^S&p^V7Co]=PPa\[f?O]FDTk_Sa:._8=%(^:h1jrji'=s0i0B]"5G]\,Nr;\Gs#F\[oDc]tV.j +]">TR\c0,=\I?'[]">Pb]=YYc]Y(lS]`5SN]Y2"k]=YVa]"5HO\-'=T]=RsQ$G*j_]=PYf]=bei +rk8BGrOrrY]Y2"k]t:kd]=ktn^;%Fs]tM/Y_#M4N_#D%J^\th[]"#5X\%&u]]tD(m^:qD!^qRRt +]`,M?\c')B]=PSc]D]>@\c98?\H9:M\,NlB\[]2[\@K2^rOMs;*k8bl]tV.\S#k*,qu-KkrVulr +rVlfpr;HWor;?Nmrr)lsr;HWo!<)orr;Zcp)uocs^mU\/l2(5NqtJO:R&Id=Z_Iu#\Y51^g$-GOTRs8W)s +!rr9!gAc[~> +rVuor'E8%1rV,NoTV8[&Z`^^DYHP7YHY12 +Xg>C>ZaI0HZa@-HZa@-J[']es8MuN +rrW3"s8N#trsnr&o?F)$W3s.E\@8oU[JmKL['Hs@Y-"k.X/i>(Xfek3ZEppG[C!9GYl:p,ZN%92 +Z2h61ZidYA[C6%C"Lu"P\$u@Fr3QR4['[1ZE^\5Z37G:Yck>/ZN%30 +ZMq01[/RE1ZkKjU[^EQP['mENZa7$GZa-pDZEaA4rNQR4Z*:RBZa0P9"gYMBZa7%<[19RLZa-j? +Y-,%8Z*CU@[JmW<\@]Da\Gj&=\Giu;[K^EmFnF4`MlGe6s8W)us671_Q)qNuR$b\^rqlZmr;HWor;Q5jLnrPos8N#o +s8V5mQ^,;Sq9tsdOM^\gc^gB,eDA$0O.`_ZTU1J)ebA@?Pa&&PXe_)7T?,g%Q'8i5]9A>R]Xar* +PE)3amEMPiOL3K]XcehgUp@4rOd3WKfpmi"l2:PO]T8)CXLG=#P,d.-rqu]lrn@C&~> +rVuor)#sU6rqYm$VQ.AL^qIb._SO+-_SO%(_8?/erkncQ&AuH)_o'F3_o'I4_ns=0_SZ5hs2+cO +s2+fPs2$8$_Sa=0^qmq,_o'F1_84")^qmq*^q[b(`59F0_Sa7-_84"+_84"*_o2MmrP\`Ts25bl +`5]d7`l,a3`Q#m7_o0L1_Sa=2`5KO0rke`SrPJ]R_o)Jj1W./M_SF%,`Pod5_8!h'`5]g6^V@S" +_8F4.^;%S(`59F0_SO%'_Sa4,_o0L1`PfX1`:Ll4`5BF/_SO(*_SO+*_8F()`5T^5_SEgu^qRIp +`5KI.`5BI/_o0F/_o0L2_ns:._84"+`Pod6_nj1,_ns=0_nuDjs1o>ca25U/`ODMEhY-gDr;QZp +rVbRP!ri6"rr*W3rquZed]'"H^;Ih)_o0L1_Sa=/rkn`S$,jj&`Pfa7`5BLj_Z.OQ_Y_4S_SO+- +_SZ8e!5e`Ork\fS^qmk(rPANNs1n]PqS<3M`;RRY_SO.._o'I3rPefTrkn`Rs24iSrkncSrke`S +r58QOrPSWOrkncSs2+rX`l?!q`;d[Y`5BI1`5BIg_Z7RQ_>hCV`5T^5_o2Mm!6"lSs2=rS&])?# +^qde&^qmk(_o'@._ns:g_[=?"_o0O4`Pod7`Vm^W_o0I1qS`EQrl,)[_o0F.qniBL!5SNLrke`Q +r5/cX_o0I1`5]dq_uR^S_$n)o_SO!jS?(-.rVliprr;p%rr)cns8W&rqYpBjs8N)tq>^EmFnF4` +MlGe6s8W)us671_Q)qNuR$b\_rql]nr;HWor;Q5jLnrPos8N#os8V5mQ^,;Uqp_9iOi-nkd%6T0 +e_n<5OeK%_TpU\-f(eRCQ'J8TY,.> +rVuors8N&s'_pt6Uo:l@]=>Ym]Xthj]tCti]Y46Us1SHFrk8?E$bjBh]tV4o]Y2%l]_oM=]`5YU +]=kqm]t1hh^:h4o^:_(jrjjbr]XkYd]Y1ti]Y2%m^:_+l^:h4m]=bhi]">\k^:q@t^q[Xu^VR\" +_8!Xs^qmea^AbeL^;%Cr]Y+'R!kc4[rk(&#^;%=l]Y;.q^:h+g]=bkn^q7.f]"5Me^:^td]tV4n +]Y1ti]"5Pe]=bhk^:_4p]=blL]e$n2]=beg]=bbf]Xteg]">Yj^V.:j[^WfW[C\i]Y(tn +]tM.p^V7G]]a)3`]t_@u^VBc]s1SKHrP&\ +rjE6E[^`lY\@8rX\@B)[rjVs=rj`!=!P5i@\cBAA]`,PC\IQ3_]Y;.oXdZ<=n,31ar;HWpr__P`VfV +\u:pYNh+bhc)?_d[+*C'PEM`IYb%#C^@0dHLp$"@rq!gbNh!5\Y+(WUfCo4BrVlfKs*t~> +rr;us&H2V+r:]YH\#3s02p;Z*CUAZa$dAZ`jA2&Zr7?Y-,"7Z*:C6Z*U^=Z*CV5 +Z2V'.Zi@<9Z*:L>[Bm*AriuL/s02^4Z*UdBrj2R/"L529Za0S7&$`FGYct=7Z*CO;YHG(6Z2V!- +Z2Cd5ZEUF5Yck=:YHY=Yd:aD +YH=t3Z*LX>Yck45ZF$sE['[-EZa@'GriuU3ZEjA6s0;g7ZEga>Z2V!-YpQ][ZE^U:[(3`V[^WZJ +Y-G@D\?rNEZF73KZa@*FZEppFZa6sDZi76 +rVc`MrrW3"s8N#trtYG-o?F&"VmNqA\$i]PZa$gBZE^X;riH1$ri6"!$EUD5YHY:;ZE^X;rN?1( +!jJr8riuL/s02d6Za7'J[C6(DrjDg9rjDX3$FR=N[C*BL['[0Hrj)R/!jJl3rNQ=*!3lF*"0o/; +Z2V'/YlqD=Za-n9ZN[Y@['d9Jr3Z^8[C*BIZMq31Z3.G=Ycmu/s/uX2YHG.:ZEaA6#dL\AZEgpI +[C-"@s0E +Q`AL%qY^U9ks8Dus)=u:UP.USir;QNgrq=g:R&n!. +TVK[+s82corr<"Cr;H)nPc`X6rr)flrr;6!US5[!s5:#@U!W]6f;kRQh=KR8V4X6BPb5"toDeRC +\!E>LQ_U=EWmBkRVkV8ueZ"atTqeBVU7SI?o\R0FLRuWHd]Jn(SXYe0]]oCPXHg3ZrVlfN[%WtZ +St)=Nbjk`2qu-QprRh.#~> +rr;rr)#aC2q!,quX1cHd]Yqe*_8=++^qmn'^qouds25#V_8=(g_uIO]_SsI2_84%,_SO++_u@LT +_8*n'rke]O#Je*i`5]a3_>_:W`5BC+_8*q)_>_=M_$%Qi_Sj=j^^n8u_8!_!^r"",`5BI/`5MYm +s2=iP'?.l(_8F..`5'4,_84"*_ns:,_>;%K_>h@Y_8*n)_ns4'^r$)g!lVsmrkfnt_na((^q[b) +_S3[r^VI\$^q[Us^;7_(_Sa:-_8=+,_u@IR_SO(c_Z.FU_SO((^VKi`s1fJd^qmh#^;J%5`l5s9 +^:h>"a2c*5^V[t/rPSZO#K"Br_SX.+_Z%@Q_Sa:j_Z%@T_SO.-_SQ5g&&H&u`PB4)_mQ,?hY$^C +rVZZNrrW3"s8N!+s8DlnpX,t:Z+\#j_u@LZ_8=(,_o0I1`5MYo#0+^'`lH*;rkncQ!lMsprkncS +$,sj$_o'@/`P]Rj_#V:K_>h=N^])"M^VIYa_%OQ"_SEt%^qdh)_Sa=0_ns@2`VmaT_Z@]nrPJTN +"iA*l_Sa:j_Z.OQ_?7]m_SQ&bs2"]P$Gs]u_SX4/`5BI/rkncQ%`?0"_o0I0_o'@._ns:,rkSQM +"N&*p_SZ8h%E-0$_84"*_8*h$^q[\a_>M1M_#hKl`;[XR`!43!`P]X4`W!dX`Pf[4rPJ`U`Pf[m +`;[aU_udin_>D%J^B2-a^])%K_#hKi_>_:Y_8=(,_Sa7-`5T[o_]-J._8*e"_8*dfS?160rVlir +rr)lsrVQQnrr)iqs8NB(rVc`orVlisq>U9ks8Dus)=u:UP.USir;QNgrq=g:R&n!.TVK[+s82co +rr<"Cr;H)nPc`X6rr)flrr;6!US5[!s5:#@U!W]6f;kRQh=KR8V4X6BPb5"toDeRB[[*5KQ_U=E +WmBkRVkV8ueZ"atTqeBVU7SI?o\R0FLRuWHd]Jn(SXP_/]]oCPXHg3ZrVlfN[%WtZSt)=Nbjk`2 +qu-QprRh.#~> +rr;uss8Duq2#$7SV5Ll>]!oDg]=Y_h]Xthi]=Y_h]t:tl^:_(j]Xtkj]=Y_j^:h.j]tM%i]Y(qj +]Y"-Trk8?E#J7RZ]th@o]DfJC^&P_E]`5YI]Y2%mrOi0B#en*i^:h1k]Y+6T$+mm`]=Y_f]tqPa +^B)0dr4WHQ^Uq1o^;.OtrOi0D"2;I^]_];E^:_+l^&GYK^V7Cn\\#QS^&l'_^&G_h^V7@m]Y(hh +^V.1e\@]Ac]=YYb\@K8d^:h7p]Y(tm]tXKY!ku=[qn<$B'>;&k]=PVc]=PVd]">Ve\[oMm_u@I] +^U^kd^;@b%]=P\k^q]l_s1ATM^:q:o]Y2#X]EQ!_^:h4mrk8?E!kl=^rkSQJ'>;3!^:_7u[%4DY +p%eUdrVccqrn[SUrr<#trr<#uq[`GLWM?Z.^:h1j\[])T[C6(Bs0b8'\[f;a]tCtg\@8oS['d\\%&oW\$rfS\%&oW]"Gbl^V7It^:_(i]"7gL$FdOW]Y(kh +]Xk\drk/9E!l)OdrkArW]tCqg\[f5\\@B#X\@;:Ds1&->r42j;"1c"S]DfJE]Y4\,a)=\dc9a]Xk\d]=PVd]"#8\rO`*?,eCOq[^Se]=PP_[^ENO\$rfR['R-G[']h@!k#JFrjVp;s0`$=\@8sH\K/2j]">Se]tM.n +^:h1l]tM1r^qHn?X4-P8rVlcprr30#qu-QorVlfrrs8W&rVlcorr<#orql`qrVuj7o?sV$]DDO) +rqZEip=#h)XM)!6UWWH5qu-Nns8R?ArU74[XkELKrVcTls67@pTuH[(i2r*7d/3^lX.ZoWoAI0U +T:;+1T<$')s7bH[QBn#,USF9Xcf`TOU<)ZNWKWU@USFNWSugZXdGKHRZa&Nl2BM@ +Q*orVrr1ZZTpqRDS=HV'nc/OarVuorf`-I~> +rr;uss8Duq*;8R5TqSd&ZE(78YHbCA>Z*F,1s03!<['[*BY-5%5Z*UjGrNm +Za6sAYH4e*YPb^8Z*:IZE^[@ZMh'+ZN%3/Z66EVYd(I=Za@*FZE^X8#.:nK\@/fOrj2d5Za$e7ZMq*3Ycb15Y5YO.Y-5"1Y-5%3qQKq'(pC0JY-+t2 +Y-5+:['[0FZa@-I[C3NO[^Q.D"Lb_H[^H+A!OK*0Ym7J8YHP18Z*4/2&@8dPZ_j(hddHu0rVZWn +s8W)s"98B!rVHKnrUg*ds8W&trW`2]d)FlAs8Murr!i)CajJeodF$tNs8;fnrr.3Cr;QNF`7=5M +r;?Njrr;ZKc-PGGs7=m_cftH-ldO,3n,;t@e\eVl[`I7lrVuiljMnF+]#i4@f'2ege'I.OnCPO` +Z+8*1f$2V+q=3@`]><4op"mm*[C!Qjl2CYMeAU#8rr)lkkg$fIZF\-2mf!.]r;HZqrRh.#~> +rr;rr%fQ>(q!,quX1cHd]>DM&rk]\l^qmn(^qmq*_8=./_84")_Sa=.^V[n)^:qD"_Yq=L_Z.FQ +_SQ5g/&B*=^qdk+_nj4-_SX4,^;.S$_SX.)_8F.*_8*h$_8F+)^qmk(_SEq%_>_:T_ns4)_o)Jj +!lW!mrkJlW`5BC,_8*t+_8#ucr4iHO_SO%'q8**H%)Kj!^q[Rs^;%J#`5MVl'u@]%_ns4(_Sj7( +^r+%+_8!^r]"5WR_@45p^VR_#_SO"&_8*k`_>h:O_8-&bs1SKKr4a/a^r!n$^;%M$`Pod3_8OI: +_7m_&_SEt(_SQ5er5&EKrk\NJrkS]O^qdhd_>hCP_%+8t`PB4)_mQ,?hY$^CrVZZNrrW3"s8N!+ +s8DlmpX,t9Z+\#j_u@LS_8=(e_uI[S`<"!!rl,8``5BL2_o'F3`W!gT`W*mU_uIXT_u@L]_8=%( +_83q'^q[Y"^])"M^VIYa_(`[@_8*k#^V@S$_Sa:._ns@2`Pf[3_Sa:._84"*_8*k&^qde'_SO(( +_84"+_SO+a_#hKi_>D+L_>_=N_#hKi_>_=O_#hKk_YM"Q^V7Iu^V@S$rPAEK"i8!j^qd_a^&c!a +rk\KKs1o&Z_o'@/_o0I2`Pqhp!6+oT!lMmlr5/NQrkncQ#/eBt_ns:,r4i9I!5AHG"MVXc^;'Z_ +s1\oV_83q'_8=%)_SZ;i'>_Q&_8!b!^;.S"]rmm,eF<4oo\Rd) +[C!Qjl2CYMeATu7rr)lkkK^]GZF\*1mf!.]r;HZqrRh.#~> +rr;uss8Duq$hro*V5Ll>]!]2a]DK5Z]tCti^:h.k^:q4k]Y(ki^:Uqg^:Uqc]"G]R]DB2>]a29a +]Xteg^:h/U]F;?_]Y(tl]Y(ql]XtiU]+r)r^:q:o]=beg]">Vg]=PVe]=Yhmrk8HL^V0WZ$,+-h +]Y2"k^VIS^]_oAE]Y1ti]D9)L]=bej^:_%e\[f;`]t_>\^(n;m]Y;(k]"Pkj\\#Sh]tCtf[^ENR +rk8?G%(j*_]Xtbg]Xk_f]=[sQs18\f&&j]t:hc]"G_l^q[Op^r4.(\\#Sh]Xtki +rjr0ArOi-Ark'Si]"5Mc]Y2"j]">Se]t_:q]tM(n_S3[u_6fc:ht?jFrr)fqrr1aR!ri6"rr2rt +s8*5ud&3S?]"P_g]",>Yrj2R1+LS\g\[oAa]",>]\$rcP[C*BL[^`lY\@K,[\[],W[C6(Ds0r`Q +\@8rU[^ENP\$i`S\@K/]]Y2&Y^B)']rjr3B\c'#F\%&u\]tV4o]XtfT]`>eE^B_Qh^:_(j]=RsO +s0r->[^Q(Bs0hp9!4Mg7s0`-@\@T;`]=e*Us1\QJr4`QP]tM(m^:_%g\c&u;[f3c9[KO(M\@9!I +\HTLR\[]2\rji-B])/uH\$i`S\[f5\\@8rW\$c4A#dh"J\$icU\@;II%(WmW\$`TMZa7$FZEjJ9 +!jo;Arj3!?[C*HN[C3KN[f3`A\@8uW\@K2]]DfGD]tXKZ&AGim^qdXcS?13.r;HWnrr;uss8<'" +rr)flrW)ohrql`qrVuj$q<-,DhZ*WTrVl^(maK;*g"=^"iqrcRr;HWoH2mgAq:W^:m.pSWrVQTo +p#"$?j8&`Hf>c/$rr)03c.VR`p>jcAYcG4Rh!Y.@rV5HnYcYLYc-+]&oB+NJjn\Dt_R$MXbh(Ci +dHLDrhoNFGg@b*pbIt +rr;rrs83B(p#a,aTWu#3WirY1Z*XD6$a[.CZ*Ua?Yd:[>Xo5C;Z*1=7YH4k/YHG(6Z*1C8Yd1R= +Za9V9$F-nCZE^U;Yd(L>rNQg9YHbF?Z*CO;ZEg^>ZMq',YlD$/Zi766Za-m@Y-%W)!3Q7(!j8W, +rN6m=Ycb(0Yd1U?YHbC;Yck:8Z*LX=YkbO[Yd(I?['HpZ*1C;ZEUU=YctF>ZEC:2YHn/7%C*.D +\$iQFZ*^a;YHtM5Yl:j*Z2_'-Yp6KVYHY79ZEpmBZ*:F8Yct=6Xfeq9YctOEX-]g=nbN1arr1XO +!ri6"rr2rt#lOMhbbCQ'ZaTk@!jo83#Hk/1XKA\0Y5YU8ZF%!EV3\./meZhZr;HWpr;QZn +"98>urqu`orr<#trVc`ns8W'&rVuonoC2JQrX&Q&rqu`mp@InJrq.!"rVlcnrVlfprqucqp$_VO +qu$ElrV]FanalVUrr)Q\oD/FdqXjCQqu6Wnq!6bkjR)dCrVZZprUSh!kjS'5q#($`o^V\Trq>a< +gZ%f%qXX.Kr;??\m-=0@s8;QTi8O"rrr*]0o^;AOrr)fqs7,.+h<",#rVcZlrVcZngAc[~> +rr;rr3rSsRpZ]_qWk?6`]"l5#_o'=+^VI_&^VI_&^qdn+^qde%_8F1,_8F+(^;.V$^VRe&^q[\% +_SF%+rP9bp_8=%)^qde&_SX.+_SO"$^r!t(^q[Y#_8!e%^;%G!^qde'rP8TO_Sj@j_>V.L^])%N +^qRS^^_O]&^qRS!_8="&^qd_"^;%Fu_8*h#q7nf$^qdk*_8!Xq]=l"ua2c*7_o'7)`5]^1^r+.. +_SaC5`P]L*]=PPd^qde'^qILu^qRP^^]V?e^VBZ]s1\QLrkB&\^;%M#^VIY"^;%M"]Xk_h_#D1^ +^V7P'`5'($_S3Xq_8!_!^](tH_#M1K^^Iok^;%Fu_8*du^VBc`s2"`N%_oiu_8!n*[@XPWo_A@_ +r;POP!ri6"rr*H.rVZTfdAWhE]YVG$_8F1f_Z%F]`Q#j7`Q#m:`Pf^4_u@RU`Q#pq`:tC_#hEe^])"K^\knH_#V:L_%=Dr^;.P!^VIRs^;%@p^;%G^_#D.\^VIY"^q[Xu +]tM(m^qmh%qn`V1L_%si#^:h4p_8!XbS?13/rVlirrr;uss8N#rr<*)urVl`nrr2rt +rr)fpr;Zfr#6"T%q=F+Lrr*6&rr2ior:]aRo`"Ltp\k*ir;HWorVl`os7PjSqtp +rr;rr&H2P(p?9JkVRXCO[(Se]Y1qh]t:hb]"GVc]Y(hf]">Yh +]=koV]Eu3_]tD"h]">Vgrk'Mg]XkYc]tM%i]"5Sg]=beg]Y2%m]tV4n]tM(k]tM(i\[oGerOi-C +!kc+VrOi0E'>1ri]tV7p]=bbe]",D`]=bbe])K;A])B5u]">Sf^:_%d\$ifY^V[k%]tV1k]>)1r +]=Yem]tM.r_8*ds\[JoQ\%92a]t:ec]=YVa]=\!Pqn)m>.D*1%]">Ma]Y(hf]=PPb]t:b][^j#` +^:h+g]YM:o\@]Gb[^`u^]">TR\d,j[]Xtbe]Y+0R"2)=\]DfAA]DfGU]tD"i^;7Lp^VR7IY28mL +s8Doprn[SUrr<#trYY\7r;-*4VP($#]Xk_c\@8oRZa7'I['[:@\Gs)L]",>[\@8oT[C3NO[^N[E +\.Z?^\[],W[C!?M\@8rW\@8oT\,Nc9\$l:F!4i*?%(j0c^;%Cq]=Y_e\[_XJ&\5E^]=bkm^V7Co +^:q@r^V@S`^(A&n]t:kf]",A_]",;Z[^EO?[furqu`orr<#trVc`ns8W'&rVuonoC2JQrX&Q&rqu`mp@InJ +rq.!"rVlcnrVlfprqucqp$_VOqu$ElrV]FanalVUrr)Q\oD/FdqXjCQr;Q`oq!6bkjR)dCrVZZp +rUSh!kjS'5q#($`o^V\TrqGg=gZ%f%qXX.Kr;?B]m-=0@s8;QTi8O"rrr*]0o^;AOrr)fqs7,.+ +h<",#rVcZlrVcZngAc[~> +rr;rr&cMY)p#a,aTWtu1WiiP.Yd1S6Z2_*9Yd(L>YHY=17XKSq4Xfeh2['Hm?Z2Us,YlD!-Yl:m-YPk^-Yd(M5Zmr>`XKA_5\%9&SYd1R=ZF@?O +['[6K[^NKI[^WZMZ*(1/XKA_4ZELC8Zi703YHbF=YPGI'Y5kj,YW9"nZ*UdBZE^[A['HsBZa7$H +[Bm'I;YHY:: +ZEpmF[Bm0FZE^X7=['d($irVQNlrqu]nrVQQmrr;rnqYgEnrr2lprr2rrr;Q`qrqu]mrr)iqqYL-f +rVcZlrVc`pr;HTngAc[~> +rr;rr7fE5]pZ]_qWk?3^]"c,!_o0F-^VI\%^V@V#^;%S'^q[_$_SX.*_ns4(_8O7+^;7Y#^q[Y$ +_S_>%^qI@m^V\"4`kfF+_8!h+ +a2Gm5`5KX6_84+1`507&]=PVe^VRb#]YMD`^BD9d_SEn]_#M+K_#D(O_8!e&_Z%AD^qme"]tV7r +^qmk%]=>Da_83n!]t_4k]YM7p^;%Cq^;%Fu^V7Iu^qRRu^:qD!^qRIq^;.P#^qd_"^;7b'^Vdss +T!$oAq#(*grn[SUrr<#trX&W'r;HB;W2-Z0rkSZQ_o)Gis1p5&_o0O6_o0O6`5]d7`59C/`5KX7 +`l,m:`Pod5`5BI/_ns:._SX.*_SO(f^];.K^')3d^VIV`_#M.L_#;"R^qRRt^qmk&_#)"H_>M(M +^:h5Z^&l*b^](tH^]2(N_8*hb_>D%J_>M(a^V7Fs^qd\"^q[\#_83q'_8*n'^qIG\^C%]i]tM.o +]Y(ql^])"R_8="%^V@Ltrk8NJ]=bhlrkK;a^qde&^q[Y"_83q'_8=(,_Sa7._o2Pl#K4Nr_SX.+ +_>_7K_#qQj_8-&b+2GY,_8*k$^;%Fs]tV4o]tV4q^:q@r]tV:t^VIV"_>V.J_#M.\]tD+r^V$_> +XOH\;rr;uss8N!(s8N#rrVlfrrVZWms82lrrVlrtr;?NmqYpZrs8W&sr!!*"rqu`pr;Q`ps82lq +rr2rrrr**"rqlWlrVlfrrVuiurVZQlrX8])s8Muqr;HTos8N#rs8EK-rr2lprquTis8;cos8N#s +rVuj\s8MrprV?9gs8Dimrr2inrr)`mrr2rrqYL0is8N#rrVlfrrVZZprr2inrVlcprqcKhr;HTl +r;HTnrqu`nrn@C&~> +rr;rr&cMY)p?9JkVRX@N[(3i^]tV/Y]DoMP]">Ve\[oJf]",Gb]`,Mb]tCqe]=tth\\,Sc]=GMd +]t1nk]=Y_f]">Yh]XbP_r4EQP]Y(bc^:_"g\[fDe]=blU]E>j^^V'QZ,/1h+]Xt_a]=u"l]">Yh +]Xtbe^:q7j]YD(i]Xthl^:_+jrji$>!5&3@s18NH]"5Mc]">TR^+-b([^Wi]_8O1&]"G\e]>;A! +^:q@s^qdUq^qmdu]=>;V[^Wf[]XYG_^&GSG\\#Mc\b`l>]=GJarji6F]">Yhrk(5&]Xtbc]">Se +]tM%e['dEW]t:eb]=>;Z]Xteg]Xt_c]=bhi]=Y_g]=beg]=bkk]Xk\b]">Pcrk&oV]u%Ip^r!IL +Y28mLs8Doqs8N#RrrW3"s8N!Bs8MrmoZj;*X1,^O]=GG\[^EKL[^NTO\%&rW\@B)[\@/lUrjMj9 +!4Dg7!OoT;\I5pU[^XO?S8r;Q[)s8Doqs8N#rrVlfrrVZWms82lrrVlrtr;?NmqYpZrs8W&sr!!*"rqu`pr;Q`p +s82lqrr2rrrr**"rqlWlrVlfrrVuiurVZQlrX8])s8Muqr;HTos8N#rs8EK-rr2lprquTis8;co +s8N#srVuj\s8MrprV?9gs8Dimrr2inrr)`mrr2rrqYL0is8N#rrVlfrrVZZprr2inrVlcprqcKh +r;HTlr;HTnrqu`nrn@C&~> +rVuors8EW/r:]ZELI9ZEg^>Za$^;Z*^mBYl1j-Z2Lp+Z2_*BZ*:I2/YQqG=Z*CO:Yd+/2s0;U.26X6hZF$sBXf\k8[^WZKXK&A'Xg#1> +[^`iUZF.*AWiiV5[C*7>ZD +rVuor'EA(0rV5WsV5_)C]Xbho^VI_)_Z%:V^q[\$_8*h$_8-#c/&K-?_nWt&^qRLs^:_.o^q[Y# +_8!e%^:q@u_8!e&^qIFs_ns1'_8*n'_#;%I_#M4T^q[Y#_SEtd^CS,p]tV:u_8*k$^VIY$^qfo` +!5AHJ%)9Wo]Y2.s^q[Rr^qor`#Je0k^q[Uu_#;%J_#M/,^;%J"_ns1$]YMG(`l,X(\\#Jd^Vdt. +a2c08`5K9u]thM'`50*s\\,_n^;%M#^V7P#]tOc_1 +]=5Ah`koF&]Y2(p^:_.o^q[Oq^;.S#^V9]^rP8HJs1SHHrkJHJ'u.Jr^r=.(_SW[NXkraHrVZZn +s8DoPrrW3"s8N!7s8Mrnph:P_8*kc^BhQg]tD"l^q[Y_ +^AbkK^;%G[_#2%J^]M9d_#D(O^:h7q^AbkI^AP_N^q[Y"^q[UuqnE'Cs1SrU^:qCu^VI\$^;%Iu +^APYG]Y2&Y^BM?d^;%FurkJHJs1niT_8=+-rk\ZQrk\ZQrk]#Y^qde%^q[\#_SZ;i"Mqmh_86)c +!PcGK^B_Kf]tD"k]tXHY!5AHI"MVXd_8-&d'>V>r^V7Fq]tV:t]rdg+e+!>8s8N#ts8VusrVcWo +qu-Hjrr2lqrr;p!rr<#tr;ZWm$ig5)r;?Nmrr;urrr2rtrr<#tr<<3!rVlirrr)irrVd$"rr2lp +s8W&s!WE#srsA]'r;Q`rrqlWmr;R'$rr2lqrquWkqZ$Tps8N9%r;Q`qrVlfurVHKkrsA])s8N&u +rVZWmrVuosrqm*%s8Moorr2iorqucurqu`nrr2rr!rr9!gAc[~> +rVuors8EW/r:fHqUSYH5\$NZX\\#Mg]`,K!]=PSc]Xtbe]=PVd]">Ve]tLte]=PM]\[o;\]">Pb +]Y(hf]XbSa]Y(hf]t:eb]=tti])B8A]D]>?]DT;C]tV2Z]*c3a]tCtj^:h.h\c02>]DoMD]DfGR +]tCtj]stVe]Xthe]"PehrON9H]Xtee\[oDbrjr-As11,!]">Yi^:Uka]=u(t^Ugk][^NZV^:qD" +_n`q"^UCMZ]=u%p]XY>V\%B8_]"G\e\\,Sb\\%gOr4DmYg\[f;c^qmn)^q@.` +\%fhp\[f5]]Xtbe]tV4o]"5Pf^:h5Z]Hb,(^:h4m]Y1qg\[oDb\\#Jb\[oMk]t;%pZ^e/Tp%eUe +rr1XO!ri6"rr*c7rVZQac(pr3\%B5`\[T&V\$i`Q[C3QTrjiZO]"5D\\@8rU[^W]R\%&oWrONQN +\%&oT[Bm3H[Ccrk/cT^V@Lr]Xk_d\$rfS[JmN5Zi7?3[2$-[\[]2[[^ +rr;us'E.t/rV,KmT:`?rY,SV.X/rJ.Yl:g1Yd(I=Za6q9YSXULXf\h5ZEL=2Z*(./['m9DYHY:9 +Z*F83"L#):Za'M6&@&OI['Qs>Z*CO<['Hg;Za0P9"gYA9ZEpk9YTU*R[Bd$AYct=6Y-5%2Xfek4 +Z*(43Z*U[:YHb74YHbD4YS"%CZ*1@8Yd(O?Yck45Yd(C8rilF+9WkS'Z*CO8XKT">[^<06U7n?Y +WN<8,[CNiUYd(C.Tr"`k['d3AX0&\7Z*(C?YH4t6ZELC4YHY46Z*:I;Z*1F;YHP17YHb@:Yd+/2 +9!u+-Ssl:KVl?`!XJr;0]="rOYd(XCYd(L?Z*:F8YctC:Z*:F8Yd(I=ZELI9ZEga>Yd(F8YHG"0 +YdCX;[C3*$WS-h:rr;urgA_6Rs8W)t'EA(0qt871SZ&g"ZE^U9Xfen4Y5GC/Y-"e*Wi2krXKAW( +Y5bU5X/W(sVl6SoX/rG,Yd")2s0D[0"gG8:Yck8/YS".EY-5"3Z*UaAZa-mCZa@*IrNl[4Z*:G2 +Xokf-X/l6$$*CA6Y-5(5Z*LY0Yl:j*Y5b[9Y,ne/Xf\e0Y->.8ZEga@rj)U0ricO/Xf\\+ri?(# +&Zr4>YHY79ZEpjBZa-mCZEgb6YQq>5Y->.6YH\#2$EpV9Yck75YHbC=r36L2YH4k-XK&9!W!'#t +X/i8uX8f7'XfSV)rN$7+Y-+n0YHY;1ZN%91Zj=(H[C!9IZa-k8Z7)u`Za-g>Z*:F7Xfeh.WiE/% +X/rG,ZEpg2QDr=#q>:-grVc`prVZZhrso&,rr;uqr;HTorr2rsrql`nrr)d1rqu]ms8Drqrr)fn +r;HTnrVZWnrr)iqs8Dut/H,MFrr)ipr;HWprr2lor;HZprVZZorVQKirVlfnqu6Tmq>'serqu`o +rVZZks82utrr)cmrr)fqqu?ToqZZorr;?Qnrr!N0rVcZmqtp +!ri6"rVliq+o_<&`hfZH_7[=p_S3e$_ns1&^;%Iu^qmn'^VI\'_8*kc_[aJp^;@Ur]u.h*^:q@t +^])%J^BD9d_SX+f^C\2s_Sa7)^;.P!^r+"$^;@_b_EPfN^;7_(_8*h!^VIRt^qd_!^;.V&_8!b# +_83n#^;@h)]YD:t]tVA#^;%Fr^VIRt^V@S$_8!^t^;%It^AbnI^3mW.^VIY"]Xtnq`Poa-[BZsA +[(*`]^Vn47`4s+%['6pI]u.e)]Xkbl_n`t%`4iju_83ju]Y;.p^;.Lu^qd\"^qROt^V7M!^V@S! +^:q7s_mcYDXKo4A\@K,X\\cG(^;.Cp_S_4Q_8!e%_>_7L^Au(K_>h:n_8*n&^:h:r^q[Xu^qd_"]t_=t^qmk&^r!q' +_83q%^])"U^V7Fq^:q:o^VIYa^AktI^]M9b^\ttJ^B)-erkJ]R^VIY$_>_4M^](qO]tV7q^VIYa +^(\8q^qmk&^VIUu]tV1p^:q:q^V9W\rkJuX^qmh#]tV1o^:h7q_#D(O^q[\#_>M(P_8=(,_SZ;j +s2,>`_o'@/_Sa:._84")_8-#c"2`!o_Z%CO_#D(L^;'NYs1SHHr4NNQ^V@S!^qdh'_Sa:-rkJHH% +)'Bj^V$\ +rr;uss8<]1rV5WsUSYH5\$Wc[\@K5b]XkYa])K>A]a)0\]">Ve]"7mS%_B*Y]XbJ[^;.Cl\[oDa +rk&0@"M).X]t=9T&A,Tg^:h(f]=YYd^:^qc]tF?Xs1Bem]"Gbk]">Vc]Y;%i]Y1ne\@T>c]=GD^ +^:_"e]=Yhk\%9;a\@]Dd]DfAQ]=PP`]"5Md]=PP_\[oA_\c02?\N772]"5Ma\$ii\^qdXmYcOn, +Y-YRH\\>qu^:ChbY,eb4\@oYi\$`]X]t:ee^U^e`]Y(ea\%0)\\bs#I\[oA_\[oA_]"5G`])K5X +\@oV^V4sliYHbFA['@!O_nEUn\%',`\%;ON#.qIY]Y1tjrjr0CrOi3Cr43]V]"5G`]",;\]t_4k +]tUeAXPWUErVlcorn[SUrr<#tr]U;\r;6-3V4Xj"]Xthf\@B#X\@8oT\%0)^]Y1qi]=PSc\[]/Y +\[]/\]",Dc]t:ne\[o;Z[^ENO\%&u[rOE0E]=YYd]Y2#X_#M.O^:h7qrkJQL^AbeP]Xthf]=Y_g +^VTod!5\ZO"Mqsl_8#r^!5/]DfDA\H'/8\c9/]\[])W]!o/Z\$icV\[oDd^;%Cr^V7M" +^r!t)_SO%&rk8NK]Y2"krk&3@1qL6-\[f;^]=kqm^V@S#_SX.)^:h1k]"5D\[^ENM['d?M[^WcX +]=Y_f\[T&X\[]5]\[qdPs1/6C])K5C]=PM]\GirA\@8uX]",BM\cTLS\Gj#M\@K/Z\@B)Y\@B)\ +]=PYh^AbhF^AkkR^;%FpX.$* +rr;us')hk.rV,KmT:`?rYGn\-XKAY-riUCJZ*CO<['[*AYHbFZEUO;ZEg^49Y-"q8Z`gR;Yct=7Z*^sHYd(O>Yl:j+Z2_!0Y-5(7ric@+s0"/[YHP17XfJP-['d6DW1THA +RA$OYX08k;Za-j@Vj*:3Tr5'!Z*1=8['d6FYct73Yl:m-Yl([5Z*:I;Z*1F;YHG(5Yl:j+Xr+@I +YcP4;Q?R+bI=d<:PEqZ6YI(R>['?h6Z2_*;Yck:9Z*:F7YHY::riZ^6Z*LR9Y->4['[0FZEpmBZ*:F9ZEpg?Yd(F9rN6("riH.%% +^3.BYbRM`ddHr.rVZWmrVciprqcWsrquWirr2lprr*!!rr2fpr;IB.rr2rtrr)corVlcprr)`kr +Vccqr;clrrXSl'r;Zfpr;HZps8DlmrVc^'rVlcqrr)cprquZlr;H]prVcrurr;rnrqm]5rr)cmr +Vulpqu6TprVlcmr;?NmrVQNlrVc`n"TJAurr;urs8EK+rr2loqu$ElrVZWos8Ms0rr)fnqtpEnr +r;utrr;uss8N&qrr;uuro=$/~> +'`S.4rr)fprVc`klc,d#]>;.j_8H8gs1nZLs1fAa]tM4u^qRS#_ns4)_8*du]Y;1r_#D/R^qRIp +^VIRt^qRP!_SX+(_8!_!_SX.(^;.S$^V7J"_7dV$_na"$_8="%_83n#_8)8%_S3L^ +Vk^2p[^iu`_Sj=-^qdCRT;f'']tqLu]thP(_SEq$]Y)#Y^];.I^'qfl^VIY!^qd[t^;%G^^Akkg +^;.Lq_ni+$G^kU3QCOVCVm;,q_8*h#_84"*_8*k$^qde' +_>_=O_Zn&s_SX4._Yq@V_Sa:._84"d_>h@Z_ns:+^V@S!^V7G\]`Gj\r4`0D+hkY(^V@S!^qde& +_SO+)_8=%'^q[Rs^q[OaS#t30r;Q`mrW2oqqYpZsr;- +rr;uss8@$:rV5WsUSYH5\?rl\]"5Mb]",A_]=PP`]Y1qf]"G_h]"5Mb\@B#Y]=PVd]Y(ke\%'#] +\[f>_\\,Vh]=Y_e\[oJf]XkYc]Y(hd]"Pbd]"Ynj\[oDc]",Db]=5Gf]">Ve]=knh\[fAe]=>J_ +[^s*L\Gs5D\%''L\cfRT]Y(iS\H'/=\,WuE\@8oV\@K,Z\,Efo[^`iX\@&ZM\\,Vf\$2d'SY<$d +ZEq$P]t:ke\Z_QlU8bB*]",>[\\,Vf\[]/W[^`lY]".gLs0rKJ\@B)[\@K/[\$rlWrjVp9(q7&c +[(X)AI<'UcLl[giS=lpj]=58\\$c4E#J%FU\[oGc])K5A]">TR\KJJq]XbP_]">Sc\[f5\\[],Y +]=kba]=tS?XPNLBqu$Ekrn[SUrr<#trXAi+r;606VP('%]tD#W]DfAA]DfDA]*5j\^:h4mrk89A% +_TKg]Xteg^:q:n]=beerO;g;$+da]]=bhj^;%G^^AkqO_8=(,_SH/cs1efQ^qd_!^&GY]]=PSc] +YD;"_o'@._o0I/_8*h"]Xtbb[f3Z?[^`o\]">Sc\bWi:\c95T\@K5^\\#A[\[o>^]=kto^;%J!_ +Z%FQ_Z%@P^q]i]!5/Pc]"#5Y\Gj#>]".gO!kZ+Yrk&3Crk&->!OoT<\c9/S] +">Vh^;%Cq^:h1n^V.1YR]Fp+qu$Hm!<<#s!W2lmrr`8uqYU9krVc`p!rr9!qu?Tn'E.q0s8W)sr +;QZorVlfpqtp?js8Mrss8Dp,r;6Els8;fns8N&sr;6HkrX8](rVulqr;Zcoqu-Hl!<)lq"TA?"r +VHNk)ZB[6r;?NnrquZmrr;rrrVQNjrVlcmr;QZnrqlourVc`qrr)lr%K6;*rVZQjrVlcnrVuosr +=],.rVZQis8W)urr;utrr2rss82fqrrE&Ys*t~> +rVuiqErGq0k/*daZ+.'=Xg#(9XJMl#\%&cIWN3>4ZE1.6[C!9CW2Qo1^UL;JZ`97DM4UfKYICgB +[&g@;]XFiB[C*.6Y-"XoOGB$o +V5^`2[Aft(]"OeYDMOOMVm!M=[]H=0^:^D6WOB1;Xg,FJZ*!c)3jGolZaR$>Z`L45['d%22jJUMHZRBEd%Z)b+6X0oUHYHkIA\@&N?W2d#-[]up6XKSn6rNQ:+s0*6CYck11YHtC5Za[!% +WnR%>rVlcprnIGSrr<#trrXKJ_0YHG"/Wi;tr +WMunuXKA_2Z*^mDZMq*0Ycn&/!j/Q*rN-@,X/i>&X/rJ,r2ft%rNH1(riZU3Z*LX +rVuosFT;@d(]>D\3_nEOg^;@Xr]Yh_.`PB$o^<"U>]=u.mUQh1K]=GYq +_8*t#]>_q2\\,l!_8!k&]!T#dbJq0,_nsF8_S*^oZ*V*]_nj1&\@BE!b/1^"]u.n2_ns7*[C4/r +\[`j!a2Pa'^;nC5\\,r$[C+#n]Xthnb/_6+\%BAi^q[XurkJHHs1^P/^V@V#]Xkek^V7Co\#l9g +U9V)8^raO)Zb4E(Y_%:hV678@`5op0[(jl/\#QsW_nNe!aN;61pV0kH^V.M']tM:p]"u;&`PJR( +A70%gGD;-8I"J9.]Y_Cm]tV"naM>F%^r+.0^U^ha]u.h)]=GPf^qd_"^q[Ut^q[Y"_8*du_8X1$ +_8E^RYM]$Krr2lrrS.>Rrr<#trYPV6r;638VkU?*^q[\"^V7Ft_8=%)^qfra"i.sj_SO(f_#D(K +_#;(R_SO((_8*ha^'D?`]=bei]Y+6XrkJNMqni?Ks1eZM^&G\E]DoPD])]PD]`,MI]tV4q^q[\a +_Z.IO^_4Dt^V.:m]tM.p_8=++^qdh'_>V4S_nj4,_o)Gi"Mqmf]Y"0S"2)@__#2"L_SQ2d%)0Kj +]tCti^VR_#^qorc!5\ZMs2"oT^q[UtrkSKIs1JlS^:q@s]tM%j^V@S!^])%K_?.Qj_Yh:P`5DPl +rPSZOs1nZL"2Mdi_#D%J^\ttQ^V.:m]t:uW^AktG^AbkI^AbnI_#M.a_8O=2_SX.(^qmh"Y+2TB +nGW@drr)iq%0-1fg==^(e_&U7kjn]Prr2rr!<<&ts8N)uqZ$NnrVccq#Q=Z$rVlfpr;QZnrr;p" +rr;rqr;QZor;HTorr;osr;QWqrr;uss8;rsrqus!rr2lkrWN2tr;HTnr!*,trVlcnr;QZorr2lp +rW`?!rVlcnrVZWps8N#trrN,srr2rq#QFc&rqu]mrqlX!r;HWorVlcorr)rurn.7$~> +rVuiqJ,T<>kf'?p\A,V_]"Yqo\[/ZU_Sa*tZEq-U]=#,^^VIUqZa.-ZahbEr]sOAlPGkps\\Yqj +^:(Jc`P8dh^V@Fm]t:\U[(jVr[^No`^r3pr]!JK?[Cs5b]!nuM]>VV"[C*Q[_ns.#]Xk;N_8!7\ +]"bqfZF@We][['RD.g\\#Sl^:L\V[(*ic]=,)T\\#Jb]">Sb\@B#X\[f5Y[^j&[ +[(3iRR]G67pA=abrVuiph>[QUs8W)ts8N?%qtAC7Tru!+^AbhF]`5_G]aDEa]tM1p^:h4m]DfAD +]=kqmrOr6F!58?D!P,]<[L0LR\[]/]]tV;!_Z%CO_?Ror`Q#j4^](q^]tD%l]Xtbc\@B#V[^Wf[ +^;7\(`5MYos2#Db^qI=j\@&ZJZEpsJ]"Pbi^:jNYs1SEErOr3CrOW'>r3dHP]=u(s_SX.-`Pf[2 +_8*k$^:h.i]=kqmrP8HJ/%rU,]",Ge^qme#_8F75b/q]B_SEn!]=GG\[Bm-E[C!?M\%&u\]Y2%m +^AbeF]`Pp_^\knI^&YkG]+hig]=kkg\@B)\]=bhj]Xt_c]=Y`S^&GYI]",D_\,3W6[fa.Q^qp#c ++2>M(^qI:YS#k',r;HWnrVlfps8(s5e^W1#f\5 +rVuos3uU6Xf]%6T;&EoZEUO6WN*>=]We<7Za[ELXKJh4TVB04 +W2Hi+ZE:1.[(E]EXL5C.V7X1@\?;a6Z`gR8Xfo%:Z*1=6Yct=8Yd(F;YctF=Y,ne0Y,nb.XJ1`) +N2<\[,HnJYVPC9*`L]puFcW,lY-b^IXJ2Z!ZCdMk^94N?Zb3rUXT#F'Z2_!mYck78Z*1RFXf]%6 +Wj]=D\taIG8m>nDF+fRrr<#tr^$S`r;6-2Un"%X/rD*YHbC>['[0HZa$d>YH=k*rN#t"$`g;,WiE%uXf\\*X8T.%YHbA3 +Y6;)8Z*L\7ZNd_>YHG(5Yl1a/Yd1R@ZEjJ7"gYDCMXfSY.YHY79Yd(F< +Z*L^C['R*DYHG"0X/iA+Z*L^BZEpjCZa-g=Yl1g;Ycb+/Xfnn0XfJJ%X/rG*riH.%(p'mCZ*CU? +Yd(RAZa$d=XfSS(WiN2%Xf_N)*NlTKXfek2Y-+n.X/`2$XK&8#XKA\2ZEg^;XK/K#Y +IfBBIrr)fprqlTelH#j&]u7[t_8O=0_SNpt^;In*]=5Dc]Xb\n`P9%*aL8Ij`5'"#_6&8uDO\GX +]tV(j_SO(+aMbU!^VIY%_n`df\&-8*]YMOt\A5_h`Or@Y]>MM#^:Und_p-E?[(!fg_nWgr^qd7^ +bf[E'^;Ie"s12FPb/1["`58abaMYa2]i^:q:n^;7\%^:h7q^V7It^q[\"^VRb"]=kql]=bhh +Z(6oE[(X/e_nWUb]ZSa+?s&)RXgYp\a2PZq\&#n`Vo-cm]"Z&)bJ:ah^Al"K^-06F^;.Ou`5fO' +`Orb"`5Tj(L0dqpF*W:uPC6\IUVa[^]<8fb\\Q;&]",>]^;%Fs]Y(qp`PB*q\\5bnrkAHIrP/BJ +s1o5\^;.\$]"l1jT!7/HqYgBjrn[SUrr<#trr_4`_8="$]Y(qj]tV7s^q[Xu^VIY"rP/KL^qfrcrkJKI$,*s]\[oAb^;.P^_#hKi +^](r8]tV1m]=PVf^:q:p^VIV!^qd[t^;.Y(_SO%%]t_@u^V7Co]=YYd]=beg]"#>b^:q:o^:q@t +^q[\"^q[Y"^:q@t_>_4l_8=%(^q[Us]tV:u^:h4m]thG"_8![q]=kkj]tD%mrkJ?E!5JHGs1JTO +`5T[3_Yq:Y^qHk@Xjlkurr2lrrr2iqrZ(t;rVc`qrVQQm +rr)iqs8N#trVZTlrVQNks8W&krr;uuroX62~> +rVuosHN4!CqtB9oUo1c=]=,>c^:_+j\$`c\^V.(^\%0#U\%f_h[DB_bYI_N^[_08OHsUNQ]=bYa +[C>WZ*V*^`4<+Y]>21m[^Wl[XKBIZ +YckOK]!\lN*PB;&Z*_3VWiX%M\%]5P\@]5Z[^ETU]=PJ\\@K0L\Gs*!]",A`]!f#T\@8lR\$W0$ +LR#$N\$s#[Y,etJcDFcBI@-q:[_0Di[&^FC\u278`j`:`]>VXu[Jm]9\c9/J\[]/\]!oAh[C3iX +Zi7Zj_Q//f;.4<_H&IZ*[\@o\i[^3?N]"@sQ)7d8e\[]2] +]",;Y\\5GX]"G59XPEFAr;?Nlrn[SUrr<#trXAi+r;605VP1-&^;.P`^]2"X^VRe'^V7Cq^;%@p +]XkZQ\2h+2]Y2%m^:q7n]tCtg]",>Z['R*G[^`iV\@]Ji_SjC1_SO+,_o0O5_nj+%^:h1l]tM(j +]",;YrO!iX\@K8c^;.S%_Sa1*^q[Rp]=52SZ*:L?[(!TV]=beg\[h^Ns1&?G]Y(kf]".dK*k&J` +['dVg]XtcS]`5VD]`5_G]`Gm^r4W-C"hh[d^:_&V\IH-_^:_%e\@K/_^:q7m +rjr`P\@K,X[C!9H['R*EZF@N^rP/oX^qd[qWgp3?n,*(_rVlfp'E7UIY,8/!X0/eA`6dQ4o_ngg +rVlfrrVc`ks8W'"s8N#sr<<3#rVc`qrr)ls!WN,urW<&rrVZWrs8N#ss8W$$r;HZqrqucp$N9u( +rVc`qrr2lprr2oq#lal(rVZZnqu-No$NBu#rVlisqu$Hnrr)iqs8W,u#6"Q$rVQTorVcp!rVc`p +rVulrr;Za9s8Muqrr;rorVlfprr2rsrr;rpr;HTkr;HZqrV$6jrrE&\s*t~> +rVuosHN3sBqt9-iT:rU&ZE(:6Vl$l9YEXj,WjTCCVkU&j['m*&N4d`2sWhuMbUT1]2Y*F]tPcDO4YH>(8XJVnsZaI6JXer)'[]GmVOI2lLWi*8. +TVA-KR%^Xa)Q':+Wi;\\T;f-%\\Y(sM3F[C]X"cHZEUL7r3$1+Z*=52s0-dOX/rM/YHP46U5O;N +V7NmsNL?`HWiNk(5;Ho/SYN!VVQ6r&Q\C6\WPuH?V7*k>Y-"h/YHP17YHP16YHY46Za?[3\#ugB +ZEC9c<]s)lJr#;PO_RElT=qG.TpqpaY,JA+X.#69QCP"f^U^PLXg#%3XKJe2YPbUAY-5%3YHY45 +YdCR6['lp"Wn[.?r;HWprS.>Rrr<#trX/])r;6-2Un"ss-*"&JX/`.tVl$AiW2ZetXfo"9[^W]R +[C*BJZEL@/W2Zi!Xg#23[0X+H['6^6WiE-!XT#=?XK/M-Y-+n,W2QSlX/i5"WiN8)Z*LaF\[o?N +\0nbn[C!6EYcb+1XK8P+Y-5%3XfSS'WN*&(ZE^U8XK/D'X/`.uWiZ3%$*LD2W2m))Z*LY6Y!K7q +YHG"2Z*LdI\%&rV['R'CYcb(/Y->1:ZEU-lX4$G4r;HQlrVlcpn$ngWV5U8gWiN%lVmFV:s8)Zn +s8DlorVlWms8E#ur;Q`r$N0l%s8Doqs8W)urVcfqrr*$"rVZWls![jDr;HWorVc`qs8DrrrVc`q +rr2lorVlirrVc`qs8DoqrVZTns8N&srWW?$rVc`prr!#urVliqrVld1s8Doqs8Muqrr;rprr)cn +rqlQjrVlctrVZTjrr;rprX]&-qYL0ir;-?ks8;cnrquWls8N)uk5Tr~> +C]=A6rr)fprqlTelc5j%^;[k"_nipn`mDGpQ_Lq*`4`L[ZFRfg];D(@jgCG>OJ08&\Y!b8@?\OL +Z_!kiYf"Po\[o,MWi*&3]=GDVYHG+=^r[QUs8W)ts8OtSqXr78U91u?^;%Fu_8*h#_83q#]Y(ql]tCti +]tV4o]tD"k]Y(ql]tV7r^;%@o]Xtbc\c05@]`5YF^AbhG^C.cg]=bkn^V@V%`5DDe%)Tis^qd^u +]Xthg]=e*U)ns)%]t_=r_8=++_8*n$]Xtee\[]5_]",Gb])B/O]">Pc]Y1qf\@B,]]=Ybk^:sK[ +$bs?e]tCtg]"G\f]D];>\.?-]\[oAa]=PSc^V[n*_8#u_"MVXa]Y49U$,!sc^:h1l]"5NQ]`5YY +^:h4o]t1bc\[])V\$rlX]",Dcrk92^]Xk_g^qme!]=PVd]">Yh]=Y_h^;%A\]E>j]^V9]\s1TMg +^:q:o]=Y_i^V@S!^VI\$^q[OaSZUE2r;Q`qrr2j5rpR@cSY`9^VQ-\pTr,* +rVuosJ,fNHqtB]=5Jc['@Eh\XntTZG+,bYH+h6]Y:hIQH%jeP)tWn[D'&<0u_R6_YY,S7lWjT=DZ`^@/XKoLT[[iD@S$U8X\[T/^[^!-I]thIt\$30M^p]u'R%LRo['@P+8Sh`Ordo]=PM^\[]2[\[oA_\[]/\]!o)UrOFPm\>tjH +O06F3TU2CY[^ZF.NY[_TMb +[?G#g<-=([P+\1]:Lg9>[BZ[)Xgb^AZ+@99R[K_B[)C)(]!f)Z]!o,X]"5D]\[fq#(*grn[SUrr<#trXJo,r;6*2VP($#^;%IurkKYm_SjI5_ns:,^V7@l\[]/Y[CZrj_8!b$_SQ5e;np&[^:h7q^qd[t]Xtbc\$icS +['[0G['d?P]"Peg]Xteg]XkS[[Bm*@Z*:L;Z*^sI['Hs@Z*L^AZaI6M['[-CYHP19Za@0N\$rlY +]=kqm^&>PD\[VRHs0WQI['[-DZ*UgEZa@'G['R*H\\5YirkJcT_oU'GaiMI#_AL&%]tCnb[Bm0G +[C!?M\%0)]]=PGY[^NUB[/[T7[3E,l]Y2%m]Y(tp_o9O/]XP8SZaI9O[^ETT\\,Vg\[]/\\c0&M +[^ +rVuiq2#[:Dkej!bZFI0?YH4\'WL8N[?h"Of>t!PAtH2Z$Tng>&9+dP&j#C7!YGrIV/Rl +?\b>MTTaeDDeO-=IXHNfF)ur)Z_rLo@qB7uT=MP;XKAM$W3!A9[]Q=$YdLHc@p3GPDO%,qRY5a' +DImO5SuJ*-G^k9a@rmX&Y,IJ0D.6[\Mkm>RYHtUAYck75Y5PR)Y5POZY-"e,Xfen5W0MgPL81c1 +C0>.uM2dq2R6`5o@;9Y'NMN_RN,)L$EfI3#Q(kXkXfJT'Y6D/6YHG%3rieDdY-G4+WO]@=[BQTu +E'5U8Ck-t^PDrm@DPjn.D.[p/Fd/Z#Y+0uY@pj&,Vms.6UoLc0Z*(44YPtaFYHY44Y-+n0YHP+5 +Z`^C;[AT=kg@G"8rr;usg]%?Ss8W)t$31#&qt/./S>ECfZi@Yi^V7@l\@&WFX/`5#W2?DiWN)noVQ-c#XKAS+YHkM6Z95CtZF%*Q +]Y2"i\$WKIYck:7WiW;%Xg5@D]"G_h]=>;TYcb.4Xf\e2Z*UdBZ*1=4XK/J+YHP4;['dCB\JVic +[^EEGY,nV#W2m)*ZF@EU\[]2[['Ht9Yl:p)Z4!qAYck.,W2?MnWi>ut$*CD;[(!WZ]t_5Z\c9,t +[^YHY:;Z*:I9Y-"b(X/`5%YHY13YHFt-Y-G7 +HN!mDrVZTlrVZQdlc>m$]u.Rr^qI=l\Z1sEChe9ZVQ$/PS[HMQTRV?k^l!#IAp9T>SpsQs:kYmJ +N-9DgGaPeEZD3A/IWp=$Mhd%>IX[9V^9`rHDK'QKY/n`"]"GYc]"Q)*aM,$h^VmXKF(oW0H_RpR +V2p+U,^OEPNN':\Mh?qHHuFM&XLbd0LNmcQFdfYH]=u/"_8!^u]tOBZ!58?F42&;=]=bhl^pg,! +JX*OOT6Y*mNgQ?8`2HKk>&\b7L7GT`[$uARD1S4i\>6CI_7[@l]tV1p^:q:o^Abl0^:h=sZF@om +]YM4iWIR]&;1":ZLnC&KTP\cTFP])KAB^&GbG]`l'\]"5Mcrk&BI^:q:ork8NK]=PVfrkA]S_Sa7+_8*kc^AkkH]DfJF +]=GNO\I?*_]tM(l^:q7o^:h>Z_?doj]tM(k]=kuX^&YkF]G8,o^:h7q^V7Cp]Y2"k^;.M!_83q$ +rkA`N\[oDa\[f>brk&3Cs1/3Crk/_ +](rr=]".dL!P,iA]`5\E]DoMD^&>\M^:Lnf]",BN^&GeH^]V +rr;oq1]@1Clc5`s\\G_a]!o&TZ_W\.B4c=IUSXEARBaZARsK:W]7js6@WRa.RX7^c9Rs(;L]2:$ +Eg!N-XIb2oH#e7eL4b,/H?tFF]!%*8C2Id(\8DIdTtGFl%@U5XGG +G&;5UVQleMJ;8u,CO;>F\$29RF_kW/Q*.I&]"Phj]"5G^\c')u\@K/]\[],W[^WfY]5]XP;Yrj`0C\[f5[rOP2'\@]>SZbsMe]t(GF +H:TebG):s-S!7J^Ffi?HFDQ;II%..@[%`:sBkMIHYJS&]Y-bmX]=>>\]",>\]"7jN'tCfc]=GMd +\$Wi^Y+)WOp%eRcs8W&PrrW3"s8N!os8Dlmo$+#'X1,gX^q[\#_8=+/a2Z*:_nj(!\@/iQ['R$D +['dBQ\\#G`\@AuT['R'EZa-j?ZF79Q\\#Sna2lEIb/M01]t_@t]tD"i])0$+\@/fQ['[0FZ*LX< +Y-+n/Yd1XD\@B#Y\[T)[\[T#TZa-j@Yd1O?[CE]S['R'DZa@*I\%&oU[^ZaRBQ\,Ei> +]"GYarjDj8ZMUm0ZEpjAZMq0ZZEppFZa7$H\@]>b^V7Fs_T0gBb/qZ@`5BC+^V%+e\$E3@Z*:L= +['fnAr3uR3s0ifQ\%'#]]Y(tn_8F41`PfL!ZEUR<['mFB[fs=R]",8Wrj3EH['[-CZ*:=1WMcYn +X0/b9\@T>e_>_1l];qF&eF383rr2rsrVZZ]Z&t?CTV%jOVPBZMRB+s4qu6Npr;HTnqu?]q"98B" +rVlcurVQNlrr)`n$NL,*rVccqrVc`nrr30!o^MGHrVlirr +!ri6"rr.BHrVZNcl,93cYdUd9Xf8G5Q!$md=@YVVFbG'TFJ-@IDcCJ&E(3H0>utK]HW`$M7s'E" +>$G3+5u)a$U2rXb<`Vm]6r$c\84mW^V1V`B?=6;pGGhsNUoLQ#YcP"7[&]t$['5d.7SI)S4(shH +HWEU.:J=DdI@HC791p1.=@,8\O0=O9:MaE+4'[H0WiiY7Za$a=YHIf,s0+PfY-5(4WMll#XdsrT +BT&I5@8f]kas4@__#96[/4LK$]>=B&OXS=HO\WNEG0Y-5"3Y-.]+6EmYpZ*9mu\[ScF +Y,R[t1a55#DI$IqJ5T@"Umc$a9P6s]D4Ri#H=0iR8k`fTV5^>gY-tdCY-+n3ZEUO9Y-"k0riQ4' +&Zr7BXfJe9W0OC;oD&7_rr;uPrrW3"s8N#trsSc%p!0>%Up%/5['BV7!NrL&WW]E+Yd1V6[/[H: +['mHR\%&sI[fNqFrO*`U\\#Ph^V@Ls]t:h`Z`pX7X/rA%WMunuXK/A#WrB+!XWajOZ*:F7YHb@= +\%95c^:h+e[^NNHYd(@7Y,n_/ZaREVrk/9B,.Y4l[C3NO[^iu]]=PS`\$iZN[C3QR\@K/[\@8rW +\[T#Sricd6XK&>'Yd:aJ]=koW]EYsX]",;Y\,El:\-oaPZa-g +BE%r2rr)cmrr)]dlH,m$]>;1k^:V/&V.s@OB2hQ5JWGM+J?6o$HXM)ZIoBBdBk)%8LLiS(;h0sR +B520e:g]-eZ\21MAS#(D;HdO:<*"4:Z&`9sC2HmKL:5.5ZFRZa^qIM%`AbH9\\l1WG?%g\9h0;t +VMAYZBk$a8o'Wl\\5hs_SEq$^:jHYs1^V/]tV7p\@9&_]W@-; +GFGXqE+2mRA7B\Q]U_qZ93+n_>)'>pQ=Em%B4G_?X/i_C\@fVl]t_:q]tO?X5ek%F^q[([aN)!+ +]==YY68;>_HY@&LMd9YJXeTr0<,bf.Gc80LJn\Xuem^;%Fu^q[S]^'23^]!o)Wq7-d@ +\$icV]",Dark/6B!P5i@\Gj#>]"@sS%DBNj^:_(j]Y;.q^qd\`]c"Jp\[]/Y[^ETS\$i]P['[9N +\\#Pg]Y(qkrk8KI]t_>]^];.J^&YtJ_$@in_SX.)^VBc`)o9D,^qmn*_nj+%]t:ni^;%Fu^V.@s +^qI@j])K8?])T;H]=bhh]thM%_>M(Z^;%M$_84")^qICn^V@S!rk/9Cs1JBDs1C8%\@8rW\[]2\ +]">Sc]=kqk]Xthh]=Ybj^VR[u]=GJa]t_@u]tD%m]Xthh\[fDf^r!k"^:sQY$GF*a]">Vf]=YYb +rjW-B]"5Pg^](qV^qme"^V$\>Xjlk +rVuorIfKEGqXs0pUSYH5\[8lS\](1O=_(u<86pY%JT#q7`j'_mF,G9=;JTiNC4_(H3%n'TN,rH> +AQVT.Ks%P,9LrQ!<_Z:h?X$?)F.KFk>ZYNO:JcVI_R-GP\@T;]\\GnfXgGgRSoRY-AP,=/S"bOA +:/Y.m;e1TWRW;>*)J!5J88+@!PuCb+C/.30Ni04n]Y;(j]",>\r42j=3k;c2]"#)P[CE]DM/mX% +W/GFs;HI42E1+2&9eo189L`$5XgX?u:0V16ArW[aZFI6L]=PM_\@K,Zr4,)(\[K,]Wis=W\@/lQ +T5QkD9QYJi@tobA>DfGRE(9Xkr^Fr;HQmh>[QUs8W)t%0->)qt/10SuT<7^VBc^5f(=R_o9U5`501!['I$FYck42 +Xfek4Za7'IZa-j>Y-"e-Xfee.XKJh7Za@0P^r=C;bf[o>]tD"k]XkV\Za'M6s/uj6XK8J'WiN2# +WMuenrMU7.Z*L[B[C3TS['R0K[Bm.9YR%P@['mKS\$`UBZQZ]`\%0&Y\%&lQZE^[=YHP4;['dBQ +\$rlY\[JlOZE^U8ri@]PXKAY0Z*UgDZa-pEZ`p^?ZEppG\%0)^]YMJ+aiVWC`5BF)]XkSZZE^R5 +WrB%+Xfnt5Z*CUC\$iaC[fEl9[lCh([C>P4s8Dimrr;usrVliqqYU9ls8N#rrVZWkroX62~> +!ri6"rr-:)rVZNcl,90bYdL[8Z)FY9NBK:3HYlehG_0[(=I?U_<)A:-?8kc8J7Dc-J6Y6,EJ\m> +=EoI>VQ?l'['$QTZE^C)W3)kPCL;1;@6I21 +P%mHV?$10e7UV%7CdC=#H!E:!Ks6:h7=Ki$<,%2^Xfnh*X08b2Y-+t3Y-+t4Ycb+5ZEL4(Wi`7` +DHC5)P?UXlDf9,M:QD5q3\XKJ@noU.N07m67WEQS:3`J5Z`^4-ZEC;.XoGR'YQ(b.YHFt5Z(Rl$ +\#lU1YFK8f4(]$7U^IZ@Vq1$WirV2ZEC40YH>"4Y-+t3Xfeh/ +XKAY.XKJh0Wj/t2Q)WO0q#(-js8LdQ!ri6"rr2rt.K')9cD-l)Y-bO@Yck77Y,eM#Wi`M1ZF$sH +]=kki]tV7s^qmh$^:_&T\J2We]Y;(n]tD"i]"#,RZ*1=5XfSW&Xo>I0XK/J+Y->1:[CH1GrjiKM +^V@V%^qI@h[^W[DYSXLIYH=q2Z*UpL\[f5Z\%&oU[C!\MUh*[^WfX]"5D[\$iZNZ`pX8WiE,$Y-+h+Y-5(8['mES]Y2/! +_ns7*^V@Ip]=bef]=blW^B_Kd]"#5X['Tb;s0NWNZEC4+X0/b9\$iWK['[0IZa$gC[^WcVrji'= +rj`-D^:h8[^B_Kb\[JfKYcn#0s04#KR&e[&qY^V6r;-9er;6EkrVl`mrVlfoqt^-frVQNks8MimrVksZJ,~> +@K-<,rr)cmrr)]dlcGs#]"kti_7I8)Sk_muML&]FKT1+UA>6u7?sJk_CI;EiN,N<\MeGXYH^'.k +A;-1uA4ppKY%K:PIue/!5&#b$@T[fETlWk5JV7N;LTnP&[Ca%s^Vde!_8*Uf\%K)7G\VelD+R`` +Sp""1Bn:_@;J_SgGYLkSKkNhQOh?iD;2UK[@sFBE]Y;"f]"Yqn]tM.o]tM.p^V.:q_7mCd\\,GG +I:dDeU2!hSIXZ<4?CeEX8O$[1Ea;djS"Y'r&0V$G#2\3U3BFCPcK^I:MPH-DL%bW\\5bo_nWap^:_1o]tD+n^&G_Y +]tV7r]t_Cq\A#edSZ^lDqYgBjrn[SUrr<#trrYg]Xtbd\[]2] +]Y2"m]tD"m^qI=i]",A]\$`TM[^Z7G+hG:u]=PSc]Y(ed]tD"k^:q@p]"5Si_8*^r]t:nf\[T$H +[fEu<])TDB]El-^]Y1tg\%&pH[f\@T8`])B/h]Y2+q^:Uth^:h.j]!o/\]tV7n\$rlX]=ktp +^V7@o^:q7l]"#2V[^WgH\coa[^V7M"rk8ZMXduTDnGN:crr2rr*<5ff`k]7!]!S`HVP:)_QE&U; +s82`ms8W&ts8Mrrr;I!#r;?NmrVc`qrr2rt"TJH$rr;rrs8=/@s8MT@\u;I(VP:01h":XBi52V6 +nc&I`qu$Bhqu-Kkr;HWm*<#m8qtp?irVcWirVc`po$ahPiVNQPr;HNirVlfps8El6rr)iqrVZTl +rVQKjrVlfprVlfprVZWmrqm`6rquWhqu$?hrr)ior;HWor;6 +rVuor>Q=^$qXs0pU8>?3\$`iT[E=h,6u@X#?"JPCEDp8:^RSP2Ng46A>)\8Q@Xj/C6qqleIpHH5 +NI>/&CTaXG-Tud5?njWOJU:[$ELE>87Tk+g?<2ZY\[&HJ[XYm&\[];a['$^DYEF!>I>qr0;1tBY +:/>DKH[?LN]p0kN,i6GPH)+&[^3BP]",>\\[f5[\[oA^\%B;`ZEU^FZ^c8K +C6kE%<,m2/D+RltY(B&&?$1!d;fS+nF$WWLIq2Z5X0oXNZ*q)\@0&^Wia+S +\$>_7T0BUPK79jj'TFA6,(W/+SMB74u=FdT8;\@K8c\[8iV\%0&Z\@T2ZrjWTM +\@K/Z\\,AW]"P>:XPWUEr;HQmh>[QUs8W)t$31#&qt/10SZ90u]c"Gp^;7Y#^VRh*_S*IcXf\q9 +YcXt*WN*##riRZOX/`+rV50l^Unsi]Uo15oXfen;^;J"5b/hK7]=GG[[Bm*hb3UnXQVTV/!UXfeh2Yd1XCZ*:I;Ycb(.WN#lqs/Gps#,nGuVl6SrriJ>dXfJCuW2QSjW2cr& +Z*UgDZa@3N['?jV6r;-9er;6EkrVl`mrVlfoqt^-frVQNks8MimrVksZJ,~> +rVuors8H@'qt90kT:`OBTnft3^[P-Fa&tAVld80W2Qu*YHKmeWi:d +?\a.r7u*+qf6oo+MKi0m,Ee/e!TrG3'\$E'0Uogo)Xfee/YHG%3YHG"/Y-+k. +Z)jq.[&T@gh":C>rVkRO!ri6"rr*?+rquZec_R#+YHtL +I/X*Frqu`mrVZQdm)c*&]>2%i_RR,%VccH!L5LP>Tq?R+?DFoV9kLB/GKfDPEfuS +:j\(NA272jV,T$PVm(/$8rBgDD-M4YVg(g3G)M'/TWkl;_8*Oh^V@Lr]XbPc];gd3E.X!l:I0T1 +EDBnnX/dCc93Hk.E`6A/ZB\NcJ@(_<7WFXDYDMiF%)\%Tc%_nEF`]YM4nrk08b]tD(n^V7Cr +^V%:t]Xb_k[@OJYp\Fdes8W&PrrW3"s8N#ts8W!3pX?+6X1>sW]tM.o^qm^q]=ktp]X[sLrO!*A +Za7$H['HsB[C*BL[/RBSZE^U;YHbC=Z*:L>[^iu]^;%@o]=PM]\@K8a\$i]R\,No;[K*`5[LopS +Za$d>Z*_!M]",;[\[oGer4;p=!k>\HrNuU2riuU3ZEa81!4)U1rNcI1'XbBY\@T;a]"5Me^Uq"c +\[]2Z['KV7s0 +rr;oqFSu%0lc>it[_0&V]X"ibTMn-`JVAN,SXX^p>+`'F8ReNuF$33JOG/:RP%ds4O-+-C9Qu5> +?S,-VTMHt7b0BN9)DU2r^sEJB!pS#`g']XtJT]"5G^\$WKO[\\b!Cjq.\90Ia!D+\&^ +Vl(\W7ob"sDGOMtY)u[SI'Al,6>_F3L7"pF]Y:kZZ+% +MFg[/W2l.S7?%CWdZ +\$W]YZ'q`Np%eL^rn[SUrr<#trr=&W265\rga%\ +rgsFhU7e-LS=5oGRJrZsStVpTVPpT%]"uA+a2Pg)\$E6@Y-"XtSt2IFTV%kUT)>/ZS-#1KRJrQh +S"Zd\WN3,&Yd(C7XfSS&Vkp/^TUqYOS2d(2Ssu1TqnN`X0/Y/YHY@@ +YcY"-W2?>^S=,b2R$a>3R[]e8R@0HAQRA/gR[]nCW2m&'Z*h3X_8*q(]t1VTWhuPcTUq[CR[]b8 +SXl@ETV)4R!1j+Zs.0.Z#G%K]VQ6r/\c02X]">Yg\#uX(T:_dMU8+?NS"61ETqJ*PT`(H*S!]M- +P`qB#SY2^RWj&qC]tV1n]Xb)4Xjlh:rVlfrrr)iq'D(PRj5JqNeB>=tUS4?]eGfIFrVQTks8;lp +rVuitrVZWns8N)ur;Zfr*WQ-;rVZHGZ'UZBTq@U4T=N_Kpu&fV[dX7qs8N#rrrN,tqYpWrr;HKl +$iU))m(\dVeb9"@rVZ[&rr)corqu`orr)ikrrW/rr:p +!ri6"rr-:'rr2ihkJNpbYdCO2Xf85)S7kDZ:h"^5WhXc4=I,+G6>iEuJO2.gAq-,DMHj,$M0MK4 +/lPnO6kheYKJb]5YFSu[;3.lA<^UDbVL_H#7V7+5Una]i]!J0)Wj8ofXK&A*[&T.(>Zk61:cL+X +V-?,nL9\%'5"]U0<)7J&\Y3@rAX]#n3^$AUJY&j@ZF7'?Wic9'!3c@'33TQgVl6l)WMll$Z)B"Y2U9q).Z`KptXg%`*r3$(%4Kc'"VkpW%W2-]+ +SS(W2O,R^MA:85YAr^=P,t2?S<&Z@5QCW+b3D4"9Q`.'k['d*6TVJ`uY,e_/YH@`*!3H1%&Z`"; +XJr>-WKO+5o_A=^s8W&PrrW3"s8N#trsSc%p!0>%V67),XfVN()Q]p8Vld83ZE^dK^Uq%g]=bhj +^;%Fs]YD>!rkB)]_8F42a2Z*:_ns.!\$WEDY-%Z+s03*=Z*h-S\@&`R\[f;`]">TR]`5Se]Y;5# +`Q#j6_SO""\$N?CY->18YHY7:Za7'L]">Sc\[qaM$G*m`^;%J!^:h4mrk&3CrjroV\@&WIZF$sC +Xf\e3Y-#">]YMD$_>_7M_$@ci]Y(qk]Y4;,o]t:kd]",;UY-,"7Z)t+0Y5YU>Z*_$U`P]F( +^V7Fq]t:ke\[oJh^qp#e$,OEk]XkY_[C*LC[OnhjXfAG*[(*][^:h4o^VIY"^:Uqc\@8rU[C*KQ +[^ETT]thG"`5fp9]!AKArNQ=(s/ls.QE/L'qY^rVZWnrVQKkrr)iorVl`mrr2lprr2inrquorrVlfp +*rc-9r;Q`rrr)fprr)fprr)fprr)lsrr)ipqu$Hmrquots8N#r!WN,uroO01~> +"oeQ%rr)iprEK'_aJGoL^Ugqh]=Pq_GumjME.jgkY(BbcTq5I`HE4W::-Vs'Mk[JAB4-.PK2O6] +?Y*VD,>>A+6q2sGXDLL9T"U_,;KJbDOBb7TFcE-%ZEh9f_QpAU_8/"@\\#Sn\Xe+]AS,@U6p$=3 +B1d**]tSkdC@rebJPo0VItET`_nEk&]<\cV_>_1K^&P`3^:h4m]Y25%[^sL8YT;I'46rn>fU9qPH_o9F#Yd2$]]t1nk^:_,X^&5SS +]=l%o\\,_bS?:]CqY^Je^q[Ig[(*WOYHY77 +Y-+t3Y-"e0['fh=!k#DBrj)^6[C!:>YnFCN\%98d]Xtbc[^ +rr6I+s8W&srVcKUa.oN@]=,&U[C!ZGF&G\8COhkZWd[oSSXNVPG,Md*8ip*lLRtW1@pF;@InhCM +>@Cc3*_3;l5='n3VeAG%RCJYm9l?]0McW2@E/:'fXf]4R]reU7l0c7U1%nW3`kD^q@+_\,Nl;\c&us\[o8TZFd]SZF.6TZ'0'5 +EJep'>ctiZY"L^-K3),nQEd30&/b17Ve0!0e#\-Bj*YT@[s3>8jH9lM4_#]\\>hiYc=h:^::S\\[h^Krj`!;s0rZK +\%B)T\%Al4X5Rrr<#trYbb8r;6-2UnFfu]=PP_\[fAd]=>Da^:UbRrhfpmS=5h1 +P5^S)PEM&nR@'>+P`q>qPE_B"R$sS]@P=Ut)Q'R`$PECrfOH5KdPE_H*USk)kX0/e=]=bhi]!efAUnF

    TfP*;6"Q^F,*Q'R`$Q^=,0S=l^YYdCk<\,NlAZ`'OfS=Q2LSMm",Q^3u)QBdYs +P*;)mOcPK^NfB'^R%BtCTVJQo\%92`]",8KR]P$-qu-Nns8N#tr;?Qorr2g,qY':*[@a.oZIJmR +r;ZcprVc`ns8W$"s8Dlorr<#t!WDrqrVlcrrVZ]orYYS4pZB8]RB*m7^q$/%Tu#a^maJV_oD\[b +r +qu-Zqrr.EFp#j2aTWb]'Vl[2+SWJPI>";;&N22te:/HOd6sbkBV3Gdq9hA`IRX\=9G`Qu4-q/&k +@TbNkVf!n[QEl]Y6sZ+_N`SY]PFdbQ=%Q.tKqG-6XgG:,TW>K/Xf8A(Xda]J?tsL]67t9RRRfVj +U;+$O6<.r;9jbW3*9&Y^`gXY-+t2Y-"h0YcXe#Z*'t&XKSt,KOJ)* +Iq1QO\%B,F5;@h56;r6*[$ti+>()QiDH0>*?$iBMUT:`'USP*"YH=q-X0&M,Y-5"1Y-PF7WN`P) +VR*Lh@oRN/JRMc)Kks(lO'FJ(??0gk=&sC0UQ94i8Ps/TT<59!XJu5s,H7rRY,ne2Y-"k0XKAV+ +XfSS&X0/M%XL"mhV;1_Rrr<#trrYd(OA\\H/+b0%s-cMu,gcSX"se'umqdF-CfcHjnbcHXPR +_Rd(YZaI3HXf\e4Y-#(D_og9OcHjkbd*U1ecHjnbcd0u;cT';!cHFAPaN)0.ZEUOTcHlF9#1Cl@^pUAKrid'>XK8P,U6_k/n+ut\rr2lqs8;fjrsnk_]V(q!Z.&^Pr;Q]o +rVc`ns8W'"s8Doqrr)j!rqlWlrVl`prVh9DrqFj=Q`ABqnEo5JR@1P>oC(GTe+EJ&j6cHodbX3_ +q!R"jgZJ##qtBF@lfd'Ng$/;3roUYVVU=u7s7PU4f\,9Trr2`iqu-NmrVlEJkO.Khf\>Zds8Mic +lfI +!ri6"rr2lpJ,&@VrIYd_9ZrkCk7]Y2"m]tM(k^;%=g[_TSa\%BAj[$,EC +JW=bAFiMSDZVEcLK2H*8Z,PM*]s>5d]X"lY`PB4%rO`-Erk1M.]tqUs\A#Yd +[DK\LDIA!]MJ?^ONH7[2P[?C;A9i31?pW]XkV]\A5qo]=l"o]=\'T!58?F% +_KEj]Xb\j[%+8Up\Ogdr;POP!ri6"rr2rt)>sC*d\rh?\@oPe]">Vh]t:he^;%@jZF%1A^&PeL] +tD"k^&5ME]tD&X^Akkl^:h4o^V7Fp\$WKI[C<]Z]tCqd\$i]U_SsI/]tM4s_8*h"^Abkm^;%Fs] +tCtg]=kqn_83js\$`TP]",Ga\$i]P\%KJj^q[\#_>M+J^](qM^V7J!^](qm^VI\&^UgeY[_'2`\ +@B,^[B[-N^r!t)^V7Cr^q[\"^VI\%^\tqh_8=.-^qdh,`PT=!\@TAf]Xtee\@/cN[(*fc^qIG\] +EQ!]^;%CsrkAEG!5/JchX(%6nDN!Uk +jeNJp[@A6l.a_AlMCP[kI6nYe+pZ^Vig>ql*s82]krr2lprq#.4mcNBYgZeP6s7u9Pjlb^\j +7<3Lp>j]KfBN24r:9(7lLb&Tq=*Y5mH^EnrWViTlh(/Urr2$ZJ,~> +rr33$s8W&srV_6?l,KKq\%8uP\%]GPRui)0;-%b&XJ:2D=,DB!AX&pjRr_e5:hYi^L0Rr4Q@)1U +9m:_p@Qe5*G;*6o]U`S-B:ui'?r(a4W0_g=;cmpuWNE82^:CAH[D0MdZaI]t'c@ZRY*Ve8g8G+YaoCfaYEFHro4\%2LLICQbr\@K,Z\$roZ\$3-L\?N9I\\52, +C1VdLDF8BZ`PJ]K4-"b`?%oAoV0,mNLRaNP?WC6AKs%qf[Cs&OY.MH[\@AuU\$rlX\[],Y]Y:bZ +\[\uM]t0VH>^VckB4?1FE(=i1?T18[G&V,">Bl^:V5L2dU7nHbX/rA#VPBiZUSXf]TUqaGSt;RHSt2C@S=?+BStD[JSXc7C +T;&*TT:MRJW2ltuWi`D#U8.^`&>PnfR$X/,Q^O;2S=H%7Q'D61)jQ_VS"QUWWMl\mX0K(A\[f/S +X/;S_T;&*PR/WEPQN!6NQiibFS=TYL)k3:bR@9V8TV8$MStW'b[(!NPZa-m=U77XCTDkJhT:D@: +R%'V9S,SlURjFMjQ^3l"P*VW2TV%jMW3Nb?]",>\[],^seF3;5rr2rsrr;ooq>Us#i4P_UXKg7R +s8;lqrVc]or;Zfr!rr5trr2lr"9/2qrVc`ns8DqGr;QH=VjFF0kj\!!]U>4th=U3kajg"[mH!^, +hU:9Hp\F:8f\GZ[q>BsSl0RWfe(X*_s8M2jRA\I(s8VfVhq?`Do)JadqY^?lrVc`eiofalhUpTI +q>^KjoBYN$jPAkerr;]Qe'HY1qu?Tbki_7'rVu]_l07TujmMsErVuj#n`T61rVulrjo9i~> +#6"T%rVuosrr$0sk/!X^Yd1=*W49'eFb>m3>t%M,PFHts5$M>lKW(8lK8kn26pP:4E)9JYP^#YX +Asea+CgMXi>9mjUUki2GB9o?E;bV+hL4=l2DbWN$LT%DUVQ$MnY-k^AW2P-DUPWS\@"FPh4=![_ +KetrMXL+F(9P&?T6sPeJUk_]BK8bM@O+_196YVgeXf/5$YH4h-Xfee.XK8S.XJMeuXehqrXg4UG +='U*(?TVu0Z_E:;6^MmN8pmG7LKdP_G^k@)J7(c3A!3abXg5%,XKf%6XfSP&X/iA*XuEPeXfnq1 +Xfnh*WjSdT>$?6.E`un#L1s;'P?p:KK:S!=C5.k/LPh(FBLtX(PHM-jUnt/sYcdu-)Qp9GXKJ\, +XfSS)X/`+uXf85#ZD`n_g[k1;rVkRO!ri6"rr*K/rquZcc(pl+Xg"t/WiN5#rhg7*Xfo"3Y-l*n +h;[P[lKS94s60UHiSjdq,3.bGk32$ljl>=Uf?V:G['6^:YHY79Za@6Wb1,+ug"G-;rnoZmioB+] +jlGOdl0@NtkiLg^hV$?"_Rd%SY-P@@['?j?[_Bl5gYLcGjQ>RaioT:akih9qkPaNejlYagjPo%L +cbd,r[(!NNY,ne4YHGCRcI^n1i8N_Wj5]5"jTOc/k2bY'j"fkdR%\dIdD,fYb/$Ye8BIq>C'brVlcqs5q&6 +cbm?!Z,PbsqXECd_83gl_rCFZe%Df_Xhilcp?9l?b2`,VrVulZ +s*t~> +rr3&us8W&s?MNd)UoCr=\@&li_jQ4CU6KIl>C3!=Lg*G_BjQk,UQCM'R=%e'Di/mG?A+r';+#?! +SqM?&Mm?tLG-J<>BioPTZ]JX#I[l[`PEgT%:hlB/_76k^\%',i`P/gjGdt&HG%#3HTSH)m=db@9 +8a\[oGdrjiHL^V7:cYHtgY +bg6:8s3CVis3M"rc-4GWcHa]6b9kBTbg"AU`kT*nZa@0N]">Sb\$i]S_9:6Rc-+>XdF$=ecHjkc +dJ_E2cHOJSb0.uPc-"#?]!S`K\@T>b\@&ZM]>VnDcT;Sd=rr;lo +rr2lps8W&os8N!,s8D`^m-O?ArVZZorVcWns8EB(rqufhbG:]7eai_>IbqW;_;b.Rd)"3%o%(V! +e%)Kfb1tk#]sY;cfC/Ircc+&K\urUBls8M0\J,~> +rr2usrr-@)rr2ZU`M06<\[/KH`4_@aNh)5D9ilP.TnHK9@V&`$YFgc2Pa-Jd7r*j'='C-DIn`.E +TULCQAV[Eu/9._nP%7L2TWX2YS?]3*]XG,S]=kec\$`WP[^WcV2n?H-\[f2Z +\[JlP^9WN&@=aG_?tb4OD,5DB@6RbJToa82M3X6aOHb]C;,(ns\%8uMZ+%?V\Gir>\@K)VrO*?J +[^NZS[^`oVZFINMR&f-;q#($gh>[QUs8W)t<<)ppqt&+0TWGT5\[SrR\@AuT[C<]TY,%VYTW#*" +Y,nV"UnaZZUSOZYTqJ$LSXl:AStDXJU84W^U7RmHVQR;:\@&K;TUhaPWiW.nSt2OJU7qOYs.=S0 +U8"EWTqJ*PT:i!YWiE"mSt2RRX0&J$US+6RVld/)X/`+rW2HSmVl->eUnjlcVl6SnVl-JnXKJ\) +U7@^HVlQksVlHemStW!ZWiDtkTV/!QTqeEZVP^/_T:D@T;&6bY,nRsU84fnZF%'HY,J+g +TFIZoX/VtmUS=KXUS=NYrh][nrh^s:US=HXV5C8mVOsY,S"[S=ugYW2?AaT:_gS +ri#[k&>c.rTUq[GV5U8dTV/0c[($"D%C`@,X46V8rVlfrrr)iprVufqr=o/.qr>DcT;Sd=rr;lo +rr2lps8W&os8N!,s8D`^m-O?ArVZZorVcWns8EB(rqufhbG:]7eai_>Ic%]=^u=qMcbRrtnC>:q +d^Z9bakPXt]X5)_f'W1mc,@`F\ZN*Qhtd<;\=BSIp&4F6`43(W^!c3BrVHHks8;osk.\d[_n*+X +`T-[gnDDI+_7d4niqMoj]WJ39_;=eWkg72hj8&W=eA98^c+_Qms8N#mfYu8$q>UBls8M0\J,~> +#6"T%rVuosrr$3tk/!X^Yd(7(V6m:P?"T"\F%8;pNMqtA/iHRHTXC>$=Gs8B;E@m#CJ[uSP'p1n +Cn6l5A94'-:+UagQ%!"]b*f2c>m>bXJMeuY,8+sWiVM% +93Qt(?8u,YTS[JJ>GQ3a4`6:=C/.iHEb/m;Q\&7":PGjR[BZa7['$J/XT,@$W^_Iqt/10S>E?jXK/A#WMcSiVl?f&YcFk5`RsDC +nalJLq"ORXp@e1OoCDkO!;6?b$MF#\n*K)baM,'drN6gFoCDMEo_nIdo^h\Ip\sk*p%%Y@kM"%h +ZEgpIZ`^@2ZELLGcJ7LHn*oi:rU^$]s7QKdoDS;_pA":Jmd9?&gs!I>Z*LX7W2Zl%Z*_*^e`6)h +p%S7Uq"OOUo_%kJoCV_Mq"ORXp\+7Ln*/ZQ^9k2P[^NKDXK].F]Z&F\lL=B7nF6#>o_/"OoC22: +rpV'#oCVbPp@IhEmbuL+ZEUX=YHG%3YH=RcWmgG5r;Q`rrVliq)>sI4s8W#sroLnjT;AR7rr;lm +rr2lps8W&os8Dp*pZ9W1[EIt9rr;urrVQWpr_WRmr;Q?LNkK'`uTUq[[e`FlISZ&Q[R]arujhmppali$>ZC\GQ^7MO`s8MoZ]r/R$p\k*irr2'[J,~> +rr6U/s8W)srr2]W`MBHC]XY;V`kIOOGFG@[<(CMfZ^bMc6!Sf<^o20]QFE>h7:L^h>@2uQLg*Ps +WM4l\J"ilF3Jk,=NGN*ZWi(>PAW3.0E/(9_Cd_$S_pZ)s[D'Jl^;%Fm[C%ZjO_IU!Nj4s>/TIA1 +2b&_#RsndYIt1lm?&tVDG"l\DKjJ_hY`;XGBr/ba['@%<\H0@Trk/9C9YA'N['dZ^[C3WV];9gW +C6Fp#7qo$-R!VMBZ[Xf*I@ZjQ?"SG7FEWnGO_%-kPe+WJ^q%.r]t:tk]Y(ki]tCth]Y(kf]=u(p +\@=N2`34PnCQFWu?#>IOAmL1^BL,^]Z^bQ8S"tXOGF>Ij>!uhj_8X'o\AH1u\$il\]=PYe]",Db +r4NcU]th7i]t^hAYMf-Mrqu]ms8DoPrrW3"s8N#ts$-GXp!Kb4X1,aQ]",Gc]"#;]]Y;+iYH5%B +ajo%qg"G$1f@S[.g"P38gtUT;g"=p-e^i='f@A0c]skAT[^c:H'XkEW]?&OYhV6c>hr*DJgY1B9 +gtVe\s4IA's4/=Eg=k'$`4E7VZ+%B[]t(MSZb4?-g"P-3f\+p0f@\a-rRLu#rn.5%s4A[OgYLT2 +`431`]=kkf[^j#XZ+@p"eC`F)e^rL-f\5'4g"P-5gY;_],2M25g"P39g![pR\$il\]",A][^V7=h/nG;V,bgu+TijkhukN0LTTrP&a +T;Jm$Z)ORjT=3PAc`Ek;Y-+asS[IDUm_"sae+rX^YG7hfTq\L#kPtP[rr;lqs#o22Trt>nURIsk +g[=7GXJ);YS?pc-aJ5<)Wh,Z^cK=6+V5hZ#m*i83[+)g]YMB0Wqrk_k^#/S_rr)iqk5Tr~> +rr2usrr2rr@/foa`1j-;\?i?B^po87EL!2F:d\ZVYF&ZS4]ls,]VK=MP-^KX6!ekX='L-AKNC]c +V4N$MH_.$622&0*LhC%FV4r9<@#((qCOr4KB0St>^!*j]YdqEX\[oAYYcod[N+>RdMli4/.;bN! +1I?khQ[2qIH[K$]=c8c4E_0i4JQclXXG]h6A>$]MYH4u-ZiRYErjVp934HE+YHYUJYd(RB[\.bC +AW;jd6=csnPBKH-Y'M`kGaOe==CHB#DfLi3N*o(WO0uR6]EYHkgU\[&KJ\$i]R[^NTP\$rgF +[h#pW]!\iR]<.I%ht6^Brr)fph>[QUs8W)t0`V+Lqt&+0T<#E2\@AoQ[C*BJ[(!NNWLT3=SZ&m% +Ycb(-WMcSiW2Q\qWi;nmUS@^\+etj1W2Z\hS=#b=Wj/n9YcFOgR@^:YZ)st%VPpJmVPU*eUB@@'XK/A#rMTdsWi>rsV7=h/nG;V,c.2+RiOGVpk2a:P +TW+i]Su&ZtYc+@fT!d>=cE!Y7Xf\OoS@%2Rm^nj^deNFZY+hVbTV89tk5YGYrVucps#o22Trt>n +URIslg[=7GXJ);YS?pc-aJ5<)Wh,Z^cK=6+V5hZ#m*i83[+)g]YMB0Wqrk_k^#/S_rr)iqk5Tr~> +!ri/squ-ctp#a/aT7=#JX/N&%UOcQAC4C(l4^XDVS7+'%=,j/]U00EgOb-M$B7Y/&9l#T;?:A"A +EE#\ZUQnM3K;t#N>%rngP%dd#Lm)[N=au*35>6R3^9+-0ZEpU.W3*/#VkT#W6V)!KFY,(fP%6=1 +BQ@T]=)ie48h`bRG\L5TGbB4G7<&iuHV-A7Tsq;%U8G#pXfJN%XT#8EXK/4sZ*:4-X/DbL?:SC_ +P%[-UFa\16:3*(F.QgpLB2q`=I=Gj/A:&]58QUkY]XY,CYHt4*WN*#$XfSV)X/`2#X/W/*['$=* +YdpEA;/22PB3&_sEEm+6R<(tlD2*.*0sbqYL!]q"OOXq>1!dr;HQkqt]sXmc)^5[]m!B['QsC6iqY9jWjO(`JY->(2Xfo"5XeM/_e*d&0rVlfprr)lrrr)iqr=Sr+s5UbfStrC4r;ZZl +rVulqr;Q`rrr*E+s8Di[aJtYiW7LS;rVc`pr;Zcqs8?a5qW5GZP+Skd_U-lfj6l[:fVsk2hUo'$ +Od`ANQ]mf.USk#YOIaDJ_OcsRTWkl%PErlKm(ALQddc+oPFJDRXe:lKa7&s)r;HNlrn3ElS>*6k +SsH.eiT.\?Ocu6/\BN*nNLR8`VNHu\XjZ1JT9u_!bda74]%au`RE>=)o[Kh/\`!8]rVlfYs*t~> +!ri6"rr)utrr.EGpZ]_pVmj:I[CX5`P%e3INdOl!CS/5:CcXLaR'X?*AO:I.NF#J&N.5,9G*Iu# +:h53,?s8;gTiXXF\Y"7^G*oG*G@#-OTR'gUNg"?U>E?VF]Wo#`_Rd+`]Xt\^Ya99(<-ORX3AlJ\ +D`pU3I;WA#I#WST4&UBWFCJDgK<'Ps:jnge=%[bB`k\ma[Ca,a]"7mQrjk/&]!\u]]sbD[['>p5 +<,J(rF\Z+lML9/CJ$4,V8SE._AW\[oA^\A,nm +['mZeX)qThR[8&&EJ\sND3LZ?;GhRrHrF76V1Vu\KTLOc<,nYKa2,;Z]"Pkk[B-@4^!,*^ +f\"m2g"=s1g=k?ZhYu@1gBuZigtC,s^:(>P[JmZL\[]#PZb=Q8ioK(ThrEeWi838Frnd\1,Mh/0 +gtUT;gY:TBg!I^KY,\\7]t_:mZE:=@a49#>LK8g&B_*g],t+gA]k,g&K\Pg"P6>hUBEPZ*h-T +]XtY_]!3g=b37rn8RLg=k65gYCZChUT`\Z`pdH]t:b\['mEK\&HeLhr3JKgthtas4SgSgtgcA +h:p]>gY:Q=g"G08d`&`#Z*q0P\\#Mb\#Pq"eaND7rr)iq"o\K#rr)iqr=Sr+s5UegTVed:rVufn +rVulqr;Q`rrr*E+s8Di[aJtYiW7LS;rVc`pr;Zcqs8?a5qW5GZP+Skd_U-ohjRE!Ag8g::i7bK, +PFJ_UR?a56V5^GaP+KbQ`1WBZU9_;-Q']5RmCngXeFVP"Q(=hZYG.;Samf=)o[Kh/\`!8]rVlfYs*t~> +rr3'!s8W)tJ,T*)`M99:\$N?H]c6=]KL(M.K@g +IsG:"JubGA5`N.>G@GQUWge$4BT\d,=(@)IBh;?_]Z@R`[(O)[YHkXGZa$QpC.qHFOF8u@J=115 +6Z76b>$cH1H;QUrG(4I;H>eDMEsc?>Y@LCJnQ*^;[ptZ+7QSYHtUDrO2d8rj;^54gMH,]sk2M +\A>(^=E0[kDHq+7G%#0KT6O.,Ef56?=HTA0=BpB8G?@[YT"W"R['dT\['$U>[^39J\@&^A[fUBkrVuipj8T2[s8Vim#lX\uo$+&(WjMc7!jo;@rj!TP[C!-5QB%)sVQR)& +WMcPeTqS3VUo12jVkp/^TV27W+ekg3W26)PPE_T6Xfnq2WLfE@S#*9nYGn=nVl6JeTqS.XTeN49 +V5C/gVPgAkX0Ak3VOWp;Su8ZoYGn.\Pa\GQZa$X5WMZSkWMl\iUSFW[V5C*gVbcOWN`Y4Xf81pV5'f]V5C/gVPBcTSXc4ATqJ'SWj&b1VOa-EU8b8uYH4XpS!fe@ +WirM%Un[d[0;5,9V5L8iVPKr[TV%pQVQ-\pT9kb,SuAj!YcOn)UQq"4V6-u)Wi)\gUnsudV>d85 +VPg>fUSFQYVPL#cXg,"(SXZ=QYd:aJ]"#2JR]P$,qYpHmrWW9#rr2lqrr!H+rr;#kUn=K`ci*nA +rVccqrVZZps8N!-rVuinlH#unOJpb%qu-Kmrqufqrr;q4s8(ikR?F2E\AHVDg>q_tq:Vd.XP_^9 +S!'8CWgK$=T;8EaRus8^hnu(NP+f.iVj*L\md7]OT@ +"TJ>srr;rr<;cCO`1W^'YcXt.WLo5h:/G/"=CHWMXdWf[3Gb@bV5nW':hF69?\Xu$>u50gNd"W& +>&fq/M-WnW@:<8IMlX(_V5C;sYcXq*X/rE%W]I2^W2[),X/rM)T7C*< +C7:lI?rL6;@qKS7STRV+>ZOm/BRc54IpPfK@UihhUUmh;Y,SP+W2HVpX8T+eX/`5#WiN(u['m*5 +W3X".DI.[ZP&OrTLN@'RRA5aU;,g\"ut3DK:f+4riH.# +&#uV+W2unpYcsgaWS6n:rVc`Ms"=9Ms8N#rs8MoloZj;%U8k;qWi)blUnac`WiiP,W2[5JhX'e( +p\4L[qtp6apAOXrpA"IZqu$ElrVZQhp?^VY]sI^@s/l=+5Hh?%akZ4Ur;--]r;QWiq"aa^qYU-d +qYU6iqt^'_p@Rq@h9.5XJ(u]ddHu/rr<#srWN3!s8N#sr"/o-ik(qUUoVl? +s8;lqs8W)rs8W'1s8Doqs8McHWgK<:QG;PVrVc`pqZ$Nn9`Ok?beCDdGPFB5>e?b[5UT1&YYh/-aSr^>Ms6RIgT#Bjjs8Muqjo9i~> +rr;oqX1>*H6:?$uYctQa9j;UU?##LtNbDX;OdUf3>@:l> +>EcRl@oo)8WHW'6V6ZnJD0h_NLgsV*Eb0$AWO]Q']Y;1r]XP2S]YD.hZ_W:a<+U5g6;s25@7a=. +C0b"`P*pbu6[])TDB\i[I6]=5;b]XG>^[]>Pc948?tWqWATWg%U5N_f?uBk!JZd#.]XbG]]skG[\[qaOrjkG,]"5>X^VRFa[(XJ\ +H"i#2SU57(OF;&#U9'Z$>$b]H?ZMF4S9/@[BObXsO/on.^:Lnh]=,2Z]"5D[\\,Ma\\%dP'>(rm +\[T>fXdlZSp%\Obr;Q`qrn[T-rVuosrr)lsr;608WM6K&]Y2"j\[f2W\%98e]!JE7YeSN9g=Y$/ +f[na+f@\a/rnIJ.s4[P/rS&LLgtgW1a1Sd`YdCmL\[o8TXfo=Xf&,KFgY:WDhqZr>g]#tTgY(<7 +g"G$1g"P07gtC#i[Ap1.\@o\m]!8<;[):DKh:gN6f%/IPfa?Hdg"P36g=k64fDa>>f@f$:d_W8l +Z+.EZ]XbP_YH#%Ld+R72gtLEZg'?Bcf\+p1g=lM[)Vs0$gYLfDe&8`"YHt[H\[])SYctFF`m`\r +rn%2&/(`A(g"G!0g"G$1f@\a-f@\g3h;$Q']s=cD[Ca#YZa7'HY-Z!mg>:`BgA]bUf[n^*f@em3 +gtLH7g=Y'4f[n^-f?V4>WiNG6\%92`\@/B,Y12t=rr;utrVcrurr;usrqm?-ro1ScTVej>rr;op +rr<#tr;Zfr&c_h.rr;ulg8^O1Ng@HAq#10jrqcZnr_3@deuY.%S=>tCYe\o[qt\jCNN:peY+;&c +cHiebPbGJ'bHmP$\CA?iR$t>,fu9hKUYkCLNL\P]`LW0j]["^/R$"N)r;Z]nr;ZdZfT_8f\^T-G +Ume@4iOkMAU:A=tcEEJ#\^]0RY*5 +rr;lp<;cFRa/#N:\$WKN[B,jC=^#BK@;(@m[A%J$5]`j)XKm+C=)D_UArWI@A63Z.Q%!+B>[:3. +O0kNe;j=tkFCg3#Y+U2WG*o(Y?WCcV?tP"d['Xk_\\#G^ZE:@?]"#<RgEG@<-!E:Qg`D7876' +=]TF#Q$Q7j;f6GZ@kT;e#m='K'<>]5e(QuHJJA7&ecMl4%r\[AiU[^!-F[C*?H[CE[E[1p'W[C3NN +[^i`M]"4l/Y28dFrVlcorn[T5rVuosrr)lrr;6*2V4afn[^W`R['R$AZEppDXIt`6NLH]DWMQA` +SXc1=SXuIIUS=EQSXc1P+APRZ*C=#PE2!%X08V&US4?SU8"?RT)G02StDUIU7e0QU84`kYc=7VOdVrD +XfSS(WLT0@UT1DtWhlA\SXc4@StVmPTUl%M+IAIaR@0VAWiN%jQ^!i.Vl[,*WM5lJPaJ&>Xf8"c +SX]VI0:SK&StMgQU7[sGR[KM2S"?FSUn*g6OdVuHZEUC/Vk9'1Q_LL]W2-&US"-+DTDkDfTVA0R +St2FBT)P?"UT(;kSsYb3VQ@&2]",;XW10pPaT)3e]b1[R_IM*Z^dGYWhQ#ffBLPOO1+TYm(Sp[`9@.!rr)fWs*t~> +"TJ>srr;usFT).0kJj6gXK\t2WM?,ZNG_p$@="'*UnNfV5Z!'5W2?ngEb&WhA::#FOEG8]OJ&%o +C1(doFeQ::EGCiMWIAoLTrFcFIYO>gQ$6YF?!McMYGI_e[^W<8X/`5(ZEL1'UQT_-Bm"H'FeF"I +8mH(LBk\T=R[/"k8n3'`B69<=ZD3D+@ocrVMP[JRW2co#Y5YI(WiN5&ri.uZXK&;)Y,\Y2XdOB9 +<-Y=ISV_;n@W-aYTVINqIs,I:G)i,lWge?>d2WVQ6l'X/;f(bi/'b +q"adarVlfoq=jUVp%A(Rq"X^`rVlcmr;HBWgrd76XK8P*Xg,.5XgH($lLaoJp\=^dr;-6cqYp?n +qYC!eq'>b0p@e1Po'>)R\>uI)YHbC:$cr;6EkrVliqqtTsYkh4%dY-"t9Z`pO5ZaR +rr;oqFSu%0lcQ*%[CNo[\[JiLSptKeE/:'_YcX@093[CaZa%6>I;`t?Dht?rRt,U4S#`BFF_c,E +JZZhjIT#&7EZ+@ER\\#Md]DfDA\H'5?]3;eX['RK^\$36R`NY5Q +T!>)KLR=j!M4_,bYa9cVC2f$'X1Gg6Jo>@CJX*+<[^EQP\%&oW^qdRn]",A_]",>_]Xthg]=PYh +\@95eXdl]To_AC`r;Q`qrn[T5rVuosrr)lsr;639WhQQ%]Y2"k]"#2W\@K8c]1T9bIk'ZXL#IK\$N?GZ)XtAd+R40g"+[&f@\a0gYCW@gtLE6 +g=b-2g"+[&f$qgRXehr![(!WY]=>8IS?CE4rVlirs8Dp6rVlirrr)fns8CoiUn4BbeGfLGrVlis +rqufrrXo2/rVlirp=#IqXdkW^hYR6Mrr2corr.3Arr;ZE[\KOaQ'n2;Z-Vb-euY+@hq+rsVU+l0 +fVjt3bjP5NSsQ_(^SI9teFi[t]8r?4lF;S;f%.*qR&n3We\7W:T$.!1r;HTos4E^$Z.SaGkIHnG +^t6/aRCD&DpskmoZ/GEPq:DC*Y0c1TYEb39RA8("oFTlbNMPP5iM_s=dII28rr)fWs*t~> +rr;oqFT)+0lH,luZF76M['6[5R!E4NCP/%MXJqLu7otPQYH>C.H#%,/CP8LbQ[Eb$Q`$O6EG'95 +IAsuZH#oXrZ\EgnWNiIfL5r%2SUbNmB4cmu\Z_j8^qmF`[C!?P]Xb;NX."EMEIE.GIA_Tf;.FQh +E,ZhRTq-L2;/1Q'DL7eY\Z1mGCL(S!Q*7^&ZF%$K\Gim$['d?N[C*BL[^_'#i +V3-"9C3PH$W2l54A.R_?D5XgYRB[C3QQ[f3]7[/RI#[^ENIYI_BQXK]:P +XG27oXe:E$Pb3tiS$9?&P^7+WD2+U[[^;NQCLq@2OeT"`Yd(I=Za-pL]=#&T[C*HO['dZ*LaBX.GB-MjL6>W2$#W +R[TY4R[ftATV.mGR[KM-rfeIhQ^aV?SX#.gM3FU4Y-+n'Q]?udS><$XT9tn2R@*r;"dbUCQ^F0> +RX1HoStD[OVl-8WOc>KoWN`b8Wh#93Odi5JW1olSSXuFDS"#k7R$X/-R$a>4R[ftATr+rpVjNI' +QD1C_Y-"e'Q]76!Tr+`aSsbt5Q^=).StDRDR[KV6R[05)PED-#U8=QPOcGToUo^f'W1fWCOd2E3 +Wi2V_SGelYS"-%Arh*,[R[KP.PE_B"R@pCNS!/hlQ_LRdYcF_"S;`8fT;JK[STqS-Q +U7[sFS!ob6S!oe;Uo'fQP)bg%Wj0"C\[SrDS#t30r;?Qns8Dp6rVlirrr)fns8CrjURe-\e,KCF +rVlisrqufrrXo2/rVlirp=#IqXdkW^hYR6Mrr2corr.3Arr;ZE[\KOaQ'n2:Yg2P)eZ4n +"oeK!rr<#trI"P9l,fcrWiNP9W1]oaV3Za]LS(`JTTF4q;/DGuXf/>#Ss5(eNLd)MTpV%1U8t;f +P`CuqS?0&qQ^">PY+1fPW2lqnSY)d[Vjid+LPVG&Z)=7nZ*C=-XK8J(Y,nP#WMGlAOd25lSulcc +&XK/A$X/i?$XYd,[WN3;1Tn6]O +?\PMfWhbu?N0Km2X/VngTU:h&RAHpcY,RqKKo(eUV6d=uVQHo!X0&Q(XSf.!XB;U+XK&;(YcF_' +YHb*sRA?m[S"-4MTq80cZ*'plOGo?sXKAe7X.50+NgZW@X/W"qWMunsX0Ah0X0&M*XKAV+XK/># +WMQAdWhQ8t[@N;Wh=LC?s8N#UrrW3"s7cLJrVZQad&38&WN3&"XJhhbUSXohX0&P)WOBq*mIg5L +qu$BjrVQ?]o(2JFp@e7UqY^9ir=o2)n))U.# +p@\.Rp\"1Mo^hD(aL/%HWW'"!XTtl*Y.W-Do_JL`2uWaTrVQKirVZNep\=O[rVlfrrr)]hoAe-, +XJi/%Yck..XJi//cK"Hiq>'g^qtg0drVlclq#:!lq"aa^qYBpcp2fccd_E)kYHFq)VQ$SqX0fk" +lh:/Or;HWorVZQhq=sd\q"jjarVZTlr;-3_oBP&KZ`L73Z*:F7YHY=?_:IuJr;HNhq>1$frr2ln +qY9dVp%A+Vr;QZmq=sXMh8m"(Vl6PoY-P@8Wh5T[fC/S6rVcQks8Dus)#XF4j1hI\S#Fd7s82cn +rr2rsrr)fps8W)ts8R(qh` +s8'd&PISuMQC#JXrqt65PJZefruUC)Q)VmllG8sLOIs)Gs823'PaBSbeXMi6ht[3MrVlfYs*t~> +rr3&us8W)sI/Na+bc%MJ[(jPhZ*_'MVj!%)Xh2!CRt"jPGFl=SZadBAT9YV.W3s(9Un4<_[^N<2 +R@p@S\A,DGTsDJHW2$N&\$iK>XKo=AW1B?AQE%U5[]d0U^q$qd]=PVf]=,2XZ)*t^US=0V\T^;H +Lmjs)Suo/ZEFNmGSXgUfUp.A>\$W6+Ng-?F]XtV]]"5Mb\@K2]r4"Pn]">Sc\$`]Y^TEN5?Ybe4 +_7$SCR$aPGZa[BHXf\IkSYrg(]=bVPR$3i)V6e"NYHth>\Gj,?])T>@\,a);])T2j]=bV\\%BA^ +VP^W-Yc"D&ZE'q0\\#DVUmm^@XgkjQ^:1#-Q(+VQ[(!KN[C6(D#._I^]",D`rj`!=)7mGk]=GG\ +\\5AWa2=mCZ/YKQrr)`ns8N#XrrW3"s7ZF(r;-'8XeDc']=Yem]X>,V]=e-S$am(6XhE$5gY(<6 +f)F2(f%&:#f@\dUf`0V+f[naRfdYM!`jr4MX0T4E\%&lNWN!5Ad+6k$e^rO.f[na-f\+p/f%/C$ +e(*%$rmq,%(":77XJi2)\%95a\?W*8Z+nW;g=Y$VecaOSf@\dUgAoq+f)XJ%fDjD?f\>**^pC/H +[^j&_\[JlFUoh;Qe^rC&e^rFPed'j\g=Xs+f%0iP*S/ineC<%#f?_:=Wi3#*\@B#W[B?O2\]NCV +gtLH\f`0P_f\+p0g=k63f@JL&f%/C&f@ns0b.4UPXg>IF[^EEGXf/D;ce$n(f@A@!eCE4*gYCW@ +gXt-1f`'J>f$r0ue^DLKXJVu#ZF.6W]sk>GS$CZ:qu6Qirr;rsrXA`)rSkPiStE%4s8VuprWiK& +rr)fps8W)ts8 +rr3&us8W)sI/N^)bbqADZ+RiXX08k6ToOkiW40%1Q[<"@F.0JCYdCX3RurbsUp75)TUMIOZEgI" +Q(4MC[(EQ7SZTQ6Un=ZkZa-X.VlmA0Um[L0P,5\#Z)Y+A]EEqZE1%)U7%FDY-YRGZDEbFP*VcD]XOoE[^5eBro$FA,VR!V;\@T,PY-PFAZEL:$PDP-[Str*P +S!fS.Q'Rc)S"-%@SXPq4QB[PpOcu&tS=Z:;N.ZkJU9(Q%Y,IeLMNF@'U7[m=P*;)mOcbfiQ'RZ! +rK\XoS"?1ASti0YSWf"lQ(b4^['Qg*P`CciTVeQYS=>t:S!s;C0pe/iPa.Q$QC"#/S=ZLUX/))C +OI2`@Y->(0V3d1&Q_C:QT:)%5QBRMtQ^jS7R@'B@R8]E9PECleQ(4M>R?`S=5h4R@0G1R[ft@SXYt4Q'.2iOcl!!TV.a7M2djrWirV.X/25BM3FR.URmj;P*(uqS"BPN +!M5e[QiNKOQkc3fUn3m6O-cQ=YI2!T[^)d!Yh8IBrr)Zls8Dus%/g/(j1hL_SuL6>s82co#QOf& +rVc`qs8N#tr=8`#g748&R?b5i][&'(KQEo',eZ+qChq5#qY2]H\ +lElq^g&D$$TpW(&]VCt+jT#8Lc'X^?jLC);e&nMVS"m*q\>u'_R_eXqr;QTns4Nj/_!(dtqoG.h +\^A!TR)AIorRI="_XIL(*pBYiWQFMl_4-FGT=O+aqsDCfQco!NS!CM@q#:9krr2'[J,~> +"TJAurr;rr62gNCbc%A*Ycb%.YHP,.Xo>L&XT5O'YnjODWi<&#X/`/"X/`2!WN)qsX/`2$YPt[KVQdCB3+/#Q +X/;u*UjZW\I$UV3Yck%&VQ-c%ZEpj>XfSW'Xo#1KXfSS(XK8P+XKAP#VQ?u!MIoOWBof9uWiWD/ +Z*:C5X/rG*X/rJ,XfME#'!/:@YHP(/WN*&#WiE%uX/rA&q5jXurN6+$riH[3X0&S,X/iA*Y,n_- +Y-%])&?W.?Z*:C4XKAP)Yd(L$q"t$dC&%>jn*fc:o^qkP +qYU0frVcZjp[R:g[]6=0YH+Y(YHP(7_qFDKp%8"UrV?0^q>'g]q"FFWp\"4Qq"XLPo(D\ChT<1, +XJr.qVl?\rXK]CckOeTIr;?Nlrr)`jqu$?dp%7qNq"jpfr>Y\2p[I1h^9FT8X0/P(W2cl"\^'@0 +q=jX[r;?Qj$2aYtq"=:NoCVbUpE]V4q"==NkgmSWZ*LU6VP^DrWMm&>hXC.3q>1!dr;6:'gqAT2(o^M2"_Q^)CYHG"1Yd(@6[):P_q#13jr;QXOr;6?dp\=IRo(;SJq"t$fqY9m\ +n))6qXfAA!Wi`S4Xf@tXZJP*GrVcZnrVlfrrVccqrr2j-s8CrmX.GiZdJa+BrVZWmrqu`prXf&- +rr)ckr9:b_RZsVjlhg_]rql`orbDE3pYs`[o_n=Ei6&3iP+fYNeu+\8gt8]kZ0(iZlaWFhf_PEj +T9ut*]:b\.kPG2Id[ucDh7A`Bd_qcGR@Bb>TU_LEVoA6,qu-Bjs4mVgOeft`rr)TCUQr4=_j-k9lhp_[r;Zfqk5Tr~> +rr;oqs8>4Xn'A,;ZE_6g]!JiU^;%1c]>(t[Rt53[F-*H6]sb,N]u%Ch\@T5[\\,Pb]",;\]Y;(k +]=55Y]=YV^\@]Aarji$>rji'@5eOhE]=58\]=PM^]"5G_\@B)Z\@T8^]=ttk]!Au`G=65=\$iQN +^TWH/D24gh\\#G[Yd(UG]"Phk]=GG]\[h^L!4Vm9s0r!;*P&\i[^*3K]]\[oBN]E#PA\IcBe^V@Lq]"#;_]"#8]\[]-H\Gs,:\Gs,>\Gj&<\,j1Qrji'@"M2.T]".gM +!P,iA]a_Q_\[],Y]=kql]=PP_qRQI4*kAei\@K,[]=YS][(3rXYfFbaR'PiJq>U?jrr;usj8T2Z +s8W)sGlRa@rr2rrrVQKaf!(dF\@K/`_7m@b\@oVe\@B#PWN3PNe_&L*f$i$ndF6Rme(*%$f%/I) +g"=p.f\"g,e^;IKWhcW#\$rfT[^)s5[)CACf$r1!f[eU)f\"g.f@AF'f$r1"g"G!-e_&U)a1&+L +YI(dJ\[`-XZE:14^!,$Zf@JL%rm_A,f@ep6gXt*.f@U#Qrm`7Ef[e9_[^!*E\%9,Z[Bcj1XLuj2 +f@8:#g"4d)eCE1'f$`"Fe/m/ieCE.#e(*$s_m?>BY-b^L\@K)PVPq&Mg"Y65fDX;#eHjaVf%Ja/ +f@SUPeGmu'e^i@%aL8(IYPtmt[C3KHWi<8>cdpb#f%&=#daQe!f\,!4g"4g+e^i=%eC)drf$_UL +Xf8A*ZF.3V]stDGR^D#Dq>U?krr)iqs8Dorrr2oq%0-:d^oX9'WRCeGr;Zcp!<2ops8ET.rr2lo +qY]TgSXPe=b3Ss)rr2fprVgR1s7bO'hXpd:l/9^fR['Yajk-PsZJO< +rr;lp62gQGc`=(LY.hl_Xg#.A\[/NK]!eQ'I:HN#N2O+pZE(1>^:1AS[^EHL\@8lS['R0M]",;Z +Za-sI\$`NK\$rgF[JmW6[6h@4\[o>[['R0K[Bm3I[C!\[C!Ll[sqS=#Y.P*(ljQ'[l,S=Q7@ +R$O#$OcYZePEhQ,T:([kKTi79rieD`SreknSu&3RR$*SoO,f9`P*;,pP*D<"QBmo/TUhRCU8=TQ +OGT!dV6$o.[&p'hNf9-kU8"9LRf/WRQ8t4rQB[PpPEhAqPa7])S"QXVTp_+/R\HdaZ*14(R?3Do +U8F]UQBmu)OH>WjR@9S4R@9S4R$X)#rfA(^R%9hU?krr)iqs8Dorrr2oq%0-:c^oO0$W7(\Fr;Zcp!<2ops8ET. +rr2loqY]TgSXPe=b3Ss)rr2fprVgR1s7bO'hXpd:l/9^fR?XG]jO^>oZ/+*8PHsBIrTq(bZJ#*P +d%Hf6aLn4;^ZbRon^F.ra54FkU=7)SR[Tb +4T>Yc4M"Z*UO.WN( +Yd",1$E^D3YHP+1Xfnq2riQ1&riHa7Yd(F8X/`2#X/`2!Wi<"uri#psWW&muXKMQ))lBjIHVndO +XK&+rYGI+uGDi#iY->(.VPgJtYPtg,XoYZ+rN6(#s/Q1&Y5YUSY-"e)VPU/iX/;/,>>A=ER'3cq +Xfnt5YHG"/XKJ\+X0&M*X/`2!WiN9$XpqJ5WiE,#WiE%uXKAS*oWA.ps/l4#s/QC)X/rD'X/rB$ +WrK+=Xfek1XK&;%X/rJ.Z*1@6XK8P+XK8P+XKAS*rN6(#!3?*us/H^/US=`kV4FWmWLC*Oo_/:a +rr1jU!r`0!rr"eUrVc`ps8DonqXi=>PaSJKV5:&eVPBlaWi2hsZEL@;`nThMp%eL]qtp6ao^VD; +mdK]9o(DbVq>^=2qY9aQilnj2WNE;&W2m)'XKoarlLX]Aq#(*erqQQgrq.Q.p%\:Sp%J.Ro'l5C +p@$q_\#l^0V50rcVl?`$^=)3:q>:'err"JIqYBs^p\".KoCMYMq>:'cq=s^Sj3kcJW2Qc!X/Mtr +Wi`hWjn8KEp\Xpdq>(!a0)"r/oCDGBp%J(Sr;$'Zo'"W?[BQm=X/;_nXf85%`89tUp@e:Xr;6?d +p\+=RrqHHd5kk*Nqtp6cp[n"Ag;:(qXfnn/Xfek0XL#apm.gPYr;6HlrVZQgp@\(LnacAGp@nC\ +qt^$^p[@"][]-1(WiQ-#'WnC,QF>iEq#13jrr)iqs8Dorrr2oq'EA!h^oaE/XO6nEqu6NlrVlco +rqu`prXJi*rVZ?N`i?/_kkY2Wrr2fprVgg6s7"(0\DdJfqYKpA[$m8ahqY5kW7oq*OKn0Lrp[@^ +YgrRKd@H]6bJ0a>^[(grlcYunc.odlVq/eWQ^OYU\?rKDZb+`]s7uThrr:K0Qc84`rr132PIAiK +QCH"hrUeI1R_\Ckqu,cZQE&!hkShC8R?aASjSeuTl*m.W[],Lnf_5=Cr;?TprT=-1~> +rr;rr1]@7LqXN(AWNN\D_7[=g]"Pqn]tV(]Sq:]fDi(="^:q+_\%f\f['mNV\@K8`\[o>\\bs)> +\-TXW]=GG]]=YZR\c02>\IZ<`]=beg\@B,]\[f5\\@MRJs0r!<-bI()]=G5[_1u%N;]]=k\a]=beg +])K8>\dH'^]Xtbc\[]2]]`,SP]=PP`]"5D]]"#8Zr4)[8rj`!=s1&'=s0r-@]"@sPrjiKJ]"5D] +\[f;a]tM)X\dQ$W\@T>c]=YYa\@MUKs1&0?\c0)@\[]2\r4!TS]=YS][CjAcY.DEUUq#U]q#10h +rr;usj8T2Zs8W)s/H>\Irr2rrrqlTdg9R+f%8O)e^XQGAC]/P^U:>NZa[NV\$`NB +V5q2Of%8F#e^rC$da?Lnf@AC"eC2joeC;prf@A@#e^21=W2Ql+\@K)Y[]ZO-\]`X[g"+^(f%/I) +f%8O+g"G$0f@JI$e'c^oeCE.!aL8(IYI"/76EdDfYe\T9f@AC"e'ujqeC<%"f\+p0f%&:#eC;sq +dacpr`jr1JW3L?mrql`orc.i8nAhT>iW&rSqY&dSShQ2dJWlO>e)T8G>Q(GPIrVQTY\!s/$WKaO;pAY$gr;Zfqk5Tr~> +rr;rrs8=bOq=)k=W3!>;]sk>R[(!ZW\@K#IR=8aUCPAIg]",/MZb!cVYHkRD['dBO[C*BJ[CEaG +[gKOM[Ca'-'+1SS"5n)K7oGbYHY:9X.PK3P+AGFSsGM#OH,?_OckllP`qC3QsQ2M +SY)IASY;gOR#Zu_S#.Q^*btOcbfiOcPTdOcY]fPa.T)U8+?JPa%W2 +XKf(8XehGINKp-2T:2%1Q]mGiO-,]qS!oe9S=5k5Q2Zj_O-5fuSXP_(S#*3jYH4e$R#?`^T;SNX +R[=#>s-I/^R[Tb=T:VO>Q'.2fN/WaYQ(">5NJNR^UoU]'Z*1!iM2IOhTq7[;OcPTfPa@c,S=Q7B +St)46Pa.Q"Q'e2?V4X'7O-ZNAYd:aG[^)`u\E*8Wrr2lqrVlfrrVccqrr2j)s8:ilXf&)!dJNtA +s8Ms!rr)iqr;HZp%K6;)r:T3lWiaD,q>L?mrql`orc.i8nAhT>iW&rSqY&aQS!L>;h5cR8gY/`k +ZL.Shn[Fjif)#BoSsm.4^nR=6m/?qMbbC`Th7/]Jf>X>KR\dC%[BZsC][cfWqYgJWlO>e)T8G>Q(GPIrVQTY\!s/$WKaO;pAY$gr;Zfqk5Tr~> +-iX)Crr;rsrquWdma\\8U9h2,X/W"rWN3)%Y,e@cJoGgaQ)(OeY5YF4X/_tgUSk)kWMl_nW2cks +Wr8prX8f1&X0&J(X8T-uX8f7$WrAsuW2]crs/?+#WMuioWW/psW@"RAW2Q\oU8t_bF,$(X/W,!X8AtDX/rD&X/rJ,XfSS)XK&.pXL#43Q[s3uI?120Z)Xh)WiE,# +XT#7$Wi5ops/>mq!iMonri#[n"0&<$XT#:#XT,?oXT,='XfJCurMU($W2Z_nVl?\rW2]cpri,pu +!36!srMg(&WiE,$XK2)s(oaI4WiE%pU84otWLTW_Yc5=toC`+_rr1jU!ri6"pAQQ=q=N@GQC"ML +V4s]]Vkg#aWMc\rYcXt5`nTkOpA4^ar;HNfp$qM=mI'uC+nG:!p\=LWq"OFKi6&O0W3!)"VlHl" +X0KOnl14K>q"t!gq?$HboD\<-o_/"Op%7qLnF,o>p@$ta\?;j0Unac`VPgDt^=)3:q>:$bqu$?f +q"OIQoCDG@naZ5Ep\F[\p\"4LjO:oKVl-MpWi)bpWiW_Ujn/?Bp\Ogaq"OLSo_%kJo();=nFQ;D +p\O[Xo^V+o^pL;KY,\=oWN<+uY/B)`rq$Kiq"jj_q=jUWqt1$aq"Xg`7elZHlIj%YX/rP/XfSY, +X/iPAf'E).r;6?grquWgp[n(HnF?)Ap%A%QqYBp\p\!q0ag\7IX0/Y.VPL5nTpW@Qo_AFcrr2rr +q>M*,s81`hXehhod/*e>r;?QmrVlcprr)lrs8C-is4*3m]&NJ]n\^]Y]@=EYT$-m.psc"$[H.8as5Ki8W6=,IZ(.8MQDDgtr;Z93 +V31bH"hs*qs8;ioroX62~> +!<2uts8Pd]t1PKOFDbBU9qSI]t1\`]=5,NZ*h.A\-f[P\@K&V +\$i`S\,No;\,No:\,No:\,Wu<\,Nf:\%)FJ"h;+S\[f3I\c92>\H04LrjX,[YIVQCJ#Iq4M[^`iV\c',>\HBFR\[_RJn$rD,!P#];\-BCN\[oA^\c'&;\Ho^S[^W]R\%&pG\G`o3 +\Gs,>[hu]g]!f#T^W!ddYdqBO`9R$ir;HTns8N#XrrW3"s7cL8rVZTegpj#Q\%B)V[_'2^[^s)\ +[^NTIWN7TdaZaodF$Cle'H(FWhl`$rjNiV[]l^.ZGY&>e'ZXp +f%&=&f@AC"eCE(!f%/IPfGiGmeCW@$`j`"IY-b[J]">JXX/W;8bgb4ndaS0E!7h%t!nPuUrmj6_ +eC2glcd:.gah>$aYHk[M]!o)RWhcZ*b1,"kdaZjuda?Fhe(*%#e^MsodF6Rme(3$te^Vp]Z)=M& +[/RQI\$`ELm&s81ckYG\;$ +e,97Drr2fns8;oq%fZG*rr<#rqu#d3h!P"=rr)ls!<2orrVhUE[_4['rhVG2g +W8cX4P-aKQs6m=\ZIo'Re=`8?cFod9\E*Jbkf'*ce_mm%XOkOfR%_.CinVqs\A6ntrqlZls8UZ4 +Oh9ZKr:7doQFtb[R%MUts7t3>PI9KLrVtlQO/U7[d]o=2R$OPnoDJXXcD?[&Rg$Ofqu?TmrVksZ +J,~> +rVuor1B7@OqtKO0\"T\1]!A]MZF%!H[Ca]"\%0#VZaI3HY,\V/['[0GZ*CXArj)R/ +s0D[3s0D^2rj;[2rj;[2rj2[3rNZF0rj;^3"gt_DZEpn:[/@91ZN%6SZ)Y1GRXC-lZ*LL5Ycjdd +Q(Y.[Z*LU;YHbF@Za-jAZa9P9+g\P_ZEppH[^EKK['[-AY-bgPZ(Hl"HA.]e]",,PZa-n6Zi@<2 +Z2V',ZO3tAZ*UdB['douS=ZCGT:VOY+Q'.2hNf]KmS=Z=ET:VRAQ][Ak +O-#WqS=,M&SYrWqYcXt&R>craSu/9RR$Er&Q^F21S=Z@GTV%dDQ]mMjN/NXWQCFM7NerdbV6.#. +Z5g'FQ]$`bSY2L>P`UrfP*D<$S"#q=T:hdFQBRO3PSfaYUnjTKOcYm)Y-YL=Y-YL5S%@hVq#:($ilbK-WXkhd3Lo94eW0+COrVl5kQ*Js;s3mU.\';RUQac#NrTD+hT@Dc+Q)iKVTpMF`e`#<1 +^ULu4qu6Hjr;ZfJOH@'6p\aR"R$PD7\sT)5p]('=Tp)nFr;HZTUlVIti6nm#R[BD:cL^u6nBRkm +rgO)*jno)UrVc`Xs*t~> +!r`&prVliq)uB3og:ET;[^2d-Vl6\uWMur#Y-5"'R@0bJXSf(+WMl_kUo(#gWi;qpri,prri,pr +#cXc$WN)u!WiGlq"feW(Wi2lnWW/prWV`XoWW/n8WMc\oX/_tr[\].VVlm;-WN3(sTqJ3[WN*#u +W;s!uX9,H&WqNJ4WiW8&Wi2hoXKJ\*WNiqCZ`'FaT;ANgY-"b)qlBas!ir?#ri#^ns/>Xj"/r2u +WrB!tWWfB#WiN2#q5XXuX/i8#rM]aqri#jp"/r2uW:$YbVuWjnX8f1=X/`1uVl6SnVPBo`Xg>!u +TVSNmc0Frqrr;usfDkgK2#[@Ko%q$IPbkFYTVJE[TqeQdW2Zi#X/`JEg?\>&q>C3jrquWdnF#]1 +m-aB5o(;SJp@S@W,4b*VaL/%GWiN(qWN3"tYJAcRnFH2Eq>0p_q"F:JnF?)?rpp-\rpg$V%.Nl\ +mbl9tXfA:qU87db&>u_FdH:&pq=sa\qYBp[o^`"Ms6fpU-1UU"p\O^\p@[tEp\=OX +p@\+MnaQ&fYFYhX0/T(X?!;[Wj':ilLt,Oq>'pcqY9dVnaPu8o(2MHo^qhN +p\+=RoBP&N\#cR0Y-4t&TVe``SA"4]q>LqYgHnrr;uq +rVQQorVld*rVQQns8N#rrVHKms8Mlp4oPEZrpRX^Ju?rNjlb[JXdGTfi7=ZXWoVm0OL"'Hrp-_N +ZeYEUd@lu8aL%A$VoRi`e[(I4h;ko,W7'*fYa:onf]hPGZ(eSYqZ$Kmqu6WLQ&DZfkNLBtRA7pZ +]pG;6q#:6MWfEaqlL4/_R?"Gte@;' +rr;rrs8=>Bp@$eNS"IF.YHkOE]=YS_]"G_j]s=T8Ydh?X\[oDa\[f/W[C*LC\d#^T\@T8]\Gj&= +[g'@O\%&rW[e@31[KF"K\@;FH#.M.S]=PSapU^C8s19A`Zb"/`Tr56/^:L_]\$N3Scr4E!>"1u+S +\GE`;\$ia=[fX"I\,El8])T>:\d#dW\\#G`\GWo:\Gs)@\$ia@[iVue\[])W]",;WZa[Ze\ZE!> +Zb"TQp\Fdcr;Q`qrn@DNrY,5.qt/jaUS5'-\[8iW[^ +rr;rrs8['R$AYHY==[C#q>!4;^2s0Vg3 +!jf2SrVZZprVbIMrVh\%/oNX.u#?M3+*oQ]dGkNK&s^Q^XJY(O,]'TNK96gR?WPY +K9W47ZEpj=TTY4pS"cOCP)bN^Nf]HgOckrpR$jG6SXuCDT:VL>S=c:8N/$T;f'$Z)t.+RuN8fStr'LQ'7DsQC"&1SY)RIStDXEQ]mJgMi*FS +QCFJ6NJNUbVlm>4Z`p?qNJj!jT:;.0O,oBaPaIl-R[g"EUS46FPED#mPa.c5U7IU4P*r,JZa?g6 +YHb!t^[(XhrVlcorW<&trr2lrrX\r,r8GDlU7eL7s8MonrVulr!r`#oqu-Torr*B*qu-Qprr2lp +qYgHorqcXXrVuiqn%ap7VpF2\kMsdgR%(YFf;+2&jkHVoZfq>dm&uY\h>@3"URJU4[@3G\aQ2^= +[$79@jgCAQe'h!qR%D"ElK?U$UU8eQs8Drorr:];MlP(ckgQ]&UWV?)Q^u@qrr(cTNhFS\n*\;c +NipdZ\=K(dX.GW[g\_$CjKaT)SYsd&rVl`nrVksZJ,~> +!r`&prr2rq1]@4EnDhHQOgD9aVlHf%Yc4CiT;&6cY,eS'XfA7oV5L8iV5:&eW2HVpW2?JlWMleq +W;3FmWX5Z)X/i8$X/`5$ri,stp8Iti+/l*9W2HPmWMlbpW2HSoWhl`&ZDj_"Y-bL7WiW>)X8](( +W2cksWNu\ +WiE"rX08S'ZGbG]o(DhVrVlcnq=X7Fm-lWMcl6fB;Pj +o(MkTq=s^UnF,onF,f5n*TN2o(;D/bI=URVkg#]rhU1(YJ&?Fnb)YMp\=OXp%7hDrp9aQ +mf)YtnalMOqYBs]o&eE8Y,A.pWMl_lWMuu0cK=`lp%.kOq#:"Xp$qPAnaGi0lL+B?o(;\Lo'u// +dCc]bXfSIrUT1DpW3F1olgaQ8o(;VKp@\(Lo'l&4lKdj+nac>Ep@n:PnEJT@Xf&2#ri7'@Wi<#& +^t.fDqYBp]q>:$`p%.\An*oo?p%J(No_nG"o^_8"a0htHWiW>&Unac[S>4'hp\FderVHNmrVuj? +rVufS^8ITsVp>/]F#T:)t0e[_$0\aKLqpC"j# +Q_q1Fp\t3jr;HWok5Tr~> +rr;us-iNuArV5sFaI8F*\>caA\@fMbZELI:[_0;b]"G_g\$`]U\[T#T[f3f9\d#^T\[o>]\Gj&= +\,<`:\%)4B#Iq7O[^WcV\,Ef=\%0&\rji!=)nEPk\[f;^\@T;_[(4)j\?r]X^q[Cf\@]>^\,NfA +\@8oU\%0&Z\F[02\@9!I[1p'[]!o#P\A#hq]tD/!`4`R`[(!R?\,Wu:\bs&=\bNc9\HBFR\[_UK +"1YnP\,Ni0\,Wu:\bs&=\bNc9\H'5:\c0,=\H97M\G3NR\@K,X\%9,YZa@3T^p^AMV4t][n+Z\W +r;?Qorr1XOrVlip*rGTocD@#3\[\rT]<\ZK]=YP[[C!'7Wjg$reBuXgrlbSkcHjhadaA'@s3Utr +dF-Cgrm>r9c,I,jV5pu5\@8uWYc4S,_U$]Ycd1"fdaQarda?Ooe^Mmjd*pIpf[eKueC;d][B$:1 +ZaRBT\[SfBW33_Qd*g:dd*^:idF-IjdF-Oof%8L'e'c^pe'land)NZ$X0&Y8\[])UZDjUt\&m(H +ccseada?G@d0\:Qf@A?udF-\#rmVt:dF-Lg^TaW7Xg5CE\%&lLVPprEe()mod*U1heGRkse-+4K +e'cSAc:Q:+cd:+f`jMbCXg>ID[C3HHX/W>L@T?[-,rp@O_ +K<*,5^8-j_`7`&#RBb&f\X/Jimf34Z$c8$mVR>1Qrr;oorVlfYs*t~> +rr;us-iNuAr:faBa-i4%[AL(3[(*WPXfAA%Z+%6N[C3TQZ*1I?Za$aVGWhtd9"Un>'4Z_O.\Vo$T`R?bAQm^\X]ea1YQMkIN$ +a0(G]Z/Y`^rVl]ns4s0&S?^&NXIGrrh;c>@T?[-,rp@O_K<*,5^8-j_`7`&#RBb&f\X/Jimf34Z +$c8$mVR>1Qrr;oorVlfYs*t~> +!<2urs8W,s)#jL0o]aVlP-(j^XfSP+YcFUnT:V^PWN#lp)5X+&USO`^U8"K`WMcYmVkp8hW2?Ml +VPpHhW5YnauVRrVcZlq"4%Blf[Epmd]l>o_%hIo^q\@khF+_ +W2?PnVPL)gW2?Z2f&lAgnb)YPq"F@LmI'Q6rp(-^md0<.nal2+bI=XSVk]o[rhL+'Y.W-B +nFZDHp@n=Ro'u2:rp3MJm-X6/nFH>MqYC!_o&\<5XeqtnW2HMiWiE24cfXlnoC;GHp\+=Tp$hA: +mHa$#l0eBEoCMYGnF5f)d(?K^XK/7oU8b2lVm!tklL=?6oD\A#oCVSAmd03#jlYdlm-aE8p%J(M +nEAK=XJVomWZ.n9YJ8WPo_J:Up%S=Yp[n%HnF?)Cq"X[Yo^i%R(\@1^g;^LuVlHerVlHo!QBSK! +m.gJWrVZZor;cirrVuj+s8:iiVk0QZchm_PdKfSs6unF]]&\ce>AtM`j_k=QBn#/PErK1r:7Xe +T%No*^7(1IS=,CnS]gO%r]g>Zqu6WLRZX/1Ssb_1\_6N<_k*ULq"t$bj0Xl3Ssbk.UW;6 +0E2"OrVuoqr;Q]lp?^2$QEmm#\%&lW]XbAOXfS_5\@B#X\[JlO\%&oSZa@3Q]D]8?\Gj#=\Gj&; +\G`u<\,a)7\-BLR[^WcU\,3Z<\[]2[\GWl]\@K/[\@K,Y\[o;Y[_'Dl[Bd?V]stGX]Y1ne[^ETR +\@K3M\Gs&0\GirR[^`lY]",2QYd1dP]Xk\d]tLta[C3TUppg=6s1%R/s0r'>r3ua;r4)a8p:1+4 +s1&!;!4qm7s1/9B\@DFHs0r'>rj`!=pp_*M]"#5Z\[])T[^`oZ[^:0ir;Q]o!<2ur%fZG,rSt\oUSOs>rr)]krr)lps8*$"rVZNj +rr;us%K65(rVHeNkOHK +s4+$B\]D=\TpV1:S<]GHhu3/`Pb?_,mD#-RPb";*MP&,`rVetWrr:]@Oe%u5R? +rr4#;s8W#prr)]dld2>jYd:C:['I*K['$C,VlHr,Zi76rr2lqs8N#XrrW3"s8N"Is8N#rrVuiorVZBW +euG(2YHb.9\#QF5]",2NWhbr>MNO6mP)YEXM2I:TQ(+>`ZuZ)t+)R>Zl^S"Q@@Q'%/kP$!p5R$j>1S"-%>R?`kmMM[4LOHuE. +R?38cS#$PEV9#TV7m>N/X$qWN<5.\$;Nl +ZIA49qu6Qlrr2irrr2lrrXAi*iP2CeUT2`@rqlWjr6Yg7".pS"?%1S%75BlGK3fd.mM:puA`BPb+;.PbZ:Ud&rb2 +bjkAWXH0%'p&G!;T:)e#kkb;XrVZWnroX62~> +rr*W1s8W&rrr2fgm*r2-VQ-`(Xer%urN-1$VP^3gUCgV>d@hV>mFmV'Mq7USXicV5'ceYG%J^WiDnkVQ$VrW2?DgW2cnu +Wi)_lW2Q`hWW&jrWrK+5WMcVhUSXlfWMQ5YT;&6cZ)t"(po4:l!iMlkm\U/aVPgAjVuEXoVZE`o +or7ti!iMlkrhf^l!2K7arhTRk#Gn;qVkp;iW;`[rW2Z`jW>;G3W2HPlVl$>hWi;hnXfIbP_<((V +qYgEFs8W$Rs8Dlor:f[4Z^R;XX/N5)TqA3_X/MqtYH4\-_q=8Eo_84\rVZTgoC)&2kN1pon*oi: +rUN#>n*K2i`NlD=WN)hjV5U>iXM<?cfFTeo_%nNp%%VOmf2Ztm-F!(mHsB5pA"FWp\+.;d(HKYVl$AhV5C8nY.DsAoChbE +o(MeLo_%eBlK[Wtk3)!sqY]sUoC229lf$1%Y,\P'Vk]ucX/Mr!_:[u>nac;Do^hYEmd09(k2bRa +kNM3tn+-,Ep@Rk;f"S5^VQ$SrWi;s-Vl6f6eEHMup@RtMq>'a_o*Y-`qYU*ap[n(Lo`"Fro'4rK +[&0b%X/Dl#[&B(L^#&/PrVHNmr;cirr>GV5s8:fgW106Pchm_UEnrql`qrdXtHrVZZoqW>buTp_.3VSV-]rVPThX2F5g`MgWCrVuAtVp4N)rntAob1FG) +R\QaKOdil;qu?<;V5rSPqX2\5SsYn<[+"XGs8Muqr;ZfIPF&>FR['MTg@YC6ca("7qu6KkrTM.n +Q'e,GcLUMKYckh%rr23.YH,b1rr*8STouP2p&4mgrr)fpk5Tr~> +(]OI7rVuorrVlfnp[?b?TW>B,^::GR\,Ei;\,Nf7Zk'RO['dHT[^39G\%B;`\@DII!4`$=rODg: +s0r'?pp^O>\@/lV\$u:Fs1&6A\[]0I\c9/f\[]/[\@/oX\@/cO^;."V[CNiVZF.9U\[f/U\$ro[ +]=>A[[^WfW\bNZS\[])W\@B,^]",>Y['R-K]"#,OXfo(?]Y_@l\bN]7\c0,.\c9/>\bru;\c'&< +\b3K4\c0)H\[]/[\[o>^]",A_r42j=rj_j9s0r'>rj`!>ppg@8rjWfU\@8rW\[]#T\[J0%aQrBj +qu-Kmrr;usgAh3O1]RFOrVZE[gpj)SZ+7?X]s+ZI\[o8X[Bls3WOBgmd*9eXaiV]Jbg+M[d*KqZ +c-Xh_cMl2jd2:6Ubf$ldUoLf4\$WTOYGeA(_U$ZWc-4H3c7R;dd+$e*gsjTjb0A8]f@A3ld*g1V +[&U(,ZF76Q\@&N=VQ@>Kcd9t]c-FY]rm1\lcMl-KcHjkacHjkcda?FhcGR)kW2d&/\$rcPZ)OLs +[`?eCbf\/Vda?IjdETn\d*U+cd+7.6f$i-srm5T,]rn62XKo7A[^WZIVP^`>d*^4eccse]cd9t^ +c-FSYcHjh]b/qfLbg"DXd*Tb=W2H`&[C3HN['6U0YJ&-,d*BnZbK\AXbK\Gbg"bKBh:gH-c-4DT +c-Xk_`4)_@Vm*P6ZFmoUQ^GVJmeZnYrr2irrr2j-rr)lrikMOfTW-E>rqlWlrVl`pq>L9hrXJc$ +rr2fnrr)]hrr;usqu?]q9)nkgr;Q]lk/FEqR?X&8_;=h_qr5Dl_s6R,W58$&s7!Rsc0G6,i4?8; +f>+2NUSaKBS%.>Ps7Fd:X5WsPma&).R@'YSe+ +rr3]2s8W&rrr2fgman_8Wj&h@[&pL;rNuX2rilC)'sFdCYHkIQ=[" +rVZE[h792OWj8k<[]?F6\[f)NWhbr>MNF0kOc5-QM2I7QPF.o7US=EPT:_RZa@!?W1&X"N0BQkNJWRSrfM/`Q'I`, +T;&-WV5UPsS!9%oN0'7=Y,.MEMNO9pQ&po[MN3jaR%'_CVl[,,XJMJSOcbfiPa\5:&t4uAMNjj7X00"I +ZC$uoi9pF>qYpKm!<2ur(&n13rSbJjT:W"0rr2flrVcZmrVHBbrXJc$rr2fnrr)]hrr;usqu?]q +J,fKGr;Q]lk/FEqR?X&8_;=h_qr5Ak_s6R,W58$&s7!Rsc0G6,i4?8;f>+2NUSaKBS%.>Ps7Fd: +X5WsPma&).R@'YSe+ +rr;oq.Js)Bo]t8IW1Tig\$2[(WNWV9\@/`KY,nRuU7n?YW2QMbSY)XRVl-?iU].(iV#7%lVPgAj +Vtd4jVZ<[oVuEOpV5C-hV#mNiV#I1jU\U]4V5C)aV5C/hURe?bSsuLPVl-AeVP^2dUnjicX/r>" +V50rcWMl]eVuNUoW;`^pV%K]/Y,eP"VPKu\TqnZm\$)^-r29^qW2QWWV%9H"VPg>gVl$>iW2HPl +W2KQls/-1%Vl$;eUo'ubU\pqfV>R+hV>d:jV$3ZkV5C&brhf^ls/5moq547jVuEV0WMlbpWiN(n +W2cM[X3^)%p\OjgrVb@JrVliqI/Nd0iPha]RAI'oYbn.lWiE"rXKJV'Z,G>[n+-5Lqu-Kjp@@Y: +kNM-ml0Rm+mI0N3md9?)jO_>UW26DjV4sc_VkgB-eE#uan+-5Ip%%P8l0nBFr:]RBkNV0pmHj*( +o(;;*bdjsZW268aUnsocXLZU8mdfu@o^k!2nF#]3n*oi7mHa-+n*]]9o^qbHo'YJ^]<%m,W2Z\l +W2lu$]?o[3p$qM@o^q_Ena>W&roRbQk3;@3rU]RMn*TK+hTWO2VlHboU8+]hWMco8fB2GhoCVYF +naGo3l07Bmj5]7bkj%O&o(D_Ko'ben]rIj(W2ZbrW2QSkY.iBInauGDnauSMp%%\Hp\F^crVQEb +p%7kIrpgfolJ'=bWMuu#X/rY0S;s2ckO&*Frr2j#s8Doorr2rrr1 +qY^Bnrr)fnrVlirr;6Knrr2fpr;M*Brr<#sn)N^Kop?U`'q"X17lMCJXqWQo*pAY'a +kiD-q`h8^,db*+'l1tAXq=3G'oDJXgo]=fUeD0<^s8W&qrr2`ks43:!^!4sQh +!r`0!r;JAIrVcEVhScLlWOK[SYHG7D^;7_)_SO"#]!o)T\%02c\?rNH[CNl[\@8uX]",BK\Gj&= +\FR3#\1bD&\@K/[\[f5[\[])X\[]2WYIV?LXL,IG\@&]P[^EQN['mKV]t:e_[C*NU\[_@Ds0r'< +rj``P[^Nc]^:_"d[^EKJZF.9\a2#0oqmla:#._7R\%&rWjL>B(]"5G^\G3W4\,s.L\F@'/\Gj&= +\G`u<\F[6M\@K/]\[f;`]=+rO[B$+/eaE,+qu-NmrVuipgAh-Ns8=2?q"!IeYFq_t]>;1eYHt^J +[C!C9DOI3`+dF-k8p&>!emc!s8Mibk2P\&s8NPYRZOo +rr;oq./WuAo]t>NX.uT"]sauAYdV-V^V@Io]!o&OYHP4;[^NKEX/rM2[C#n;rj)d5ZEggBZMq31 +ZM(U+ZEpn9ZM_'/Z2h6'Z6uo_Za-g@Za-p?WO'(4VQR20ZELI9Yck:7Y->7?\$`QHYHY@?Za0G6 +!j]/=rNcF/'XFsI[(!QRZa-g=XfSV,[(O5dZ*O85s0;a5ZEgaoZ3%A>[/RB.Zi@<2Zg"asZa-n3 +Zi791ZN.<-ZQ$3VZa-pC['R*G[C3BBYd(+!Yg`"3q"t$irVb@JrVg4'rquQ_jNF]sT<,E3\$)m< +\%&cHWMGl?Mij?kO,A^ILPUeHP*_Z0U84QWT:VR>Q'IMnNK'!^PE1EGJ<$8%XK/D!R>ciVPa[u$ +M1pY>M2@.NPF\\WYc4=dS=Z4>,G(oqO,A^PR]*O#\$`?1Ob\UFOHu/nNf]BbNfT9`P5LS@ +QC!huOH5H_OHZ#tP)4mMPFnk[ZEUI.R#-NROHYfbL5CnNO,fq>^Ehn_rL!r;ZfhjkA25h!+P4s8Dlp +rqZKlerZ94c-atql1P&Uq+o)/Lcrr;obhUL*1kO\`Plf$pjp](6go&ersqZ$R)eXDT,jo#/X +r;HWprVbjXJ,~> +rr+VOrVccpqYgEemGlO"S<]nX[Ap4,Y-+t4Yck12XJr(mUo(&hW2-,YTV8-XVPBl[rM0apUnji_ +UnsrdVY@"gV@'5uV5C,dUnsl`V>d7lV50pdV#[=hV>m>cV5C,dUo(#eWhuAbWLoi]V5C;lV50iZ +Tq\m@jV>-kcV$EfmUSO]^Unn!ds.o[l +s.p%!V5:&cV5C)cVZ*LnW"5l-X/`(nUR[L@_qaVPqu$Elec5UI0)bS9kgd,,Mj^WQYc=OrWN3"t +XKS_)Yf#,Vmd^#HqY^9fp$qG5k3MF"lg=30rpmI'H4rppHenaZ2@ +naQ&oMrVccoqY9dWp%7hFnac26g;U@uWi<&%YH+1RPd9!.meHe\rVc]orr)co,Q7Z> +hmf8HU8Y]SioTCekN_F&p&+ggrVc`oqYU9lrr)cns8Ms$s8Murs8W)ps8Dp!rVZTmq#CBm!<2or +!<2rs!WDrps8Muqrrqr0R$>/Hr;ZcorVlrtrr)Zmr;?p#q>:3ALlfUCr;Qfrrqud"rVlfpr;6?j +!WE#qrrW)qrr)j(o]tYKNM"D`rVlfqrVc`Xs*t~> +!ri6"rVdQ1qY^?dmcDp-U780r^U:GW\[oDc^&G_^]tCqc\\#Pi]t1YZ['dBR]=GG]\[o>_rj`$< +rOE!>\[hUIr4)p>\[]0I\c9/<\M^n-\[]2\]",A_]",D`\[f;^\@K2]]XP)R]"Lu"Q]"7mOp:C76"1l"P\,QDD%*]!eiJ[^WWM['Qj2WOKmkc-",J`l?'@bK\;UcdgRm +d*^4bbg+JWc-+>Tb/1QcUo:T-[Bd0HY,8&!^WXsJb/h]Ib/q]EbLGA.jP/)+cdL+ceC)R`c-OPJ +[&U(+Z*^mG[Bm!4UoLlAbg+GTbK@uOs33^Pd*gCkd*U1fccs\WaN2ECbK@W-Whu\rZa[BMZa$I& +VR+1bcH=2Lc-FSVaiME>b0\Sae(3:;kL\,2dJhE.aLeUQW33G5['dBMXJD\u_T^9LcHXSTb5TL` +bKS8XdaQ[nd*BkYb/qfKbK\>O[Ap4/[C3NO[Bm']ki_9tmI^;Sr;6Hl +rVHEjs8MuprVulq#64]$rr<#tqZ$Nn"9&/qrqQKprVlforrE&srrN)rrVlrtrr)fq"nBHsPe$)W +rrW,sr;HWsrVlcks8;g$rqZHke;04*mJQtbrVl`p"o\H"rVZQhrrN)tr;Qiqr;QZp$M +rVuor/cYeGr;QEWjO1N1RAd^/Z*:OA[^WcW\[]/Y[^36E['dBOZEL@3Y-G=>ZEUV+ZN%9)Z3IY@ +ZEpjBZi%-/ZN.<'ZR<&b['I!D['R3GWNik3X0](:[^33AY,n_,YHP7>[^<k9s02R0riuC,lEgMrqm6+(s0D^2l*CGsZa9A2"1,;= +Zhgs1Za-mAZMq0@['d?MZ)k"$R&7p\me6MTrVclurr1RMrr2rr4o4m\$E*8 +V3m4!OdMAnM2$_dL5_S!YdCjGX.GE-K85MQP`LfbNfK*[OckusR[]e8S"#e0 +OcPEXN/s3gObnaIOe&JUZ*CI0QA1!GNKK6WKSPMHNJrjYOd2B0V5:&fXL,4$OcPEXNrP:WOGf*c +UTC](XfA1aMM-hOR[95"N;eYDMN!RVPa@r:WMcM`R?N[1NCT%nR@]k1MiO7%X0Ak5XJ;&;LQ7Ua +O,JdJL5CqRQCatUZ*q0MXJ;8NP`h)gOdDT/R#d)`Q(P%\[Bla!S@IA@n+lt^rVc]orr)co,Q7Z> +iOkkUVQ7G`j6#UhkN_C$p&+gfr;HWnqYU9lrr)cns8Ms$s8Murs8W)ps8Dp!rVZTmq#:Eorr2iq +!<2rs!WDrps8Muqrrqr0R$>/Hr;QirrVZWo!r`,sq>^Bk#laYss3ujd`U3U'!WE#qrrrB#rr)cl +qYpTprquctqu$HlrsJDak-p>BbOGK0rr2lproX62~> +rr+_RrVccpr;HWkp$CGLTo>2;\[/QDWhuJ^SXc4AT:r$VV5L8gUS=HVUS4?UV5'`YUSFR^UC3lm +USO`_VP^8gVPX3fs.o^mr1sIiUnn!bs.fanUnjjdV#7(hV#I4jV#R85VQ6YfUo:&cX.lAiWMQA` +TUqgOUSXofVP9]UUSXibntd2$VPU,aUo(/kU7@[BU8tN&X/)8RT;SQ_r20Lj!2f[i!i;]gm\KoZ +rhTUjqPF4h!2]Lgr1sIjV5=0es.odmUSIa_&>Q%sV50o^U8+NZUSO]\Unmpb"/MchV#I4jU_BT% +V5C2jWiE"qUmmI,WmKempAFjfec5UI>lFNmn)2*RLQ8.3XK8:pWN<(uXKS_)YJSoQm-s]Cq>1!a +o^D/0kO8'6o(2MEn*]Q-lKRKmi75`MVPL/iVP9lbW2H]/e)Tc^n+65Fo^VA6kjS?Is8;Zap\-') +lgF*&m.']6h93C7Xf84pVPU/dVQ.,Jhs9e&nal;>mHj91oChtYqH*Lhq"FCPnF#`3md&fW]WJ*1 +WMuenWN<2(][,X0p$hA;o'u29lfmQpm.0f +!ri6"rVe8EqY^Bip$U_VVimLW_S!Ll[Bcp8WiW>+YdCjK]"G_h]",>]\@&`S]DfA@])T;J]",A\ +\@B)[\%0'H\GWl>\@K,Zr42j:rj`$=r4+So\[f;_\[oA_\[o>^]"5Gc]<\oX[^j,[[D';`[^VPL?-aj&#NaN+;$s2I.CeDBPaN2NJc-F\be^rF(e^`0scHF<.`ZiOG^pL,OaN2QL`O2bGY-bXG[C*BFX/`D;aj/,QaN)?CbK7iNfAGZPki:CGccsVSaiMNGc-*r. +VP^>nZF@0=R?ahsipH@5rVlcorr)otrr)co,Q.T?kJO7"[ATI]TW5/qXL>RKcK=s%r;HWnr;6Hm +r;-?jrr2j#s8Muqs8W)ps8DourVQNlrri?$s8;iprrW2tr;Q^%rr<#rrVuiorr2rtrYGJ3s8N&d +_3gOtjT#8Xs8W)trVQTos8N#ss8W)urt,2.rVlfprql]pd"[Y%mf*1`rrE&ss8W'%s8Dlorr)ir +s8)ourqucprtbS1rVlforqP$MVN6hRm/6h[rr2lnrVlfYs*t~> +rVuor0`V+Kr;QQcmG>dXOI3Ah\[SuOY,S=rVl-MoY->4=[C3HJZ*:LVl?l/]tLq\WMZc'os+S&r3GUos0DO.q6L%,!4(jq"gYJ@ZE^\4 +Z3IS>ZEpg@Zi%*4Z*L^AZEaD7&$rXN['6a8UR.7MeE62or;?Nqs8N#Ms8W(JrVlfpqXWafTo>57 +Z*:R,7LlR^dR\?miY,nV"Tq.U;P`_#gP*D&aIY*ZTX0/P*V4!9q +Lm"0kNJE1=Jq]#k/+$sZ_j.XT;ernXL>RLcfb0)rVc`or;6Hmr;-?jrr2j#s8Muqs8W)ps8Dou +rVQNlrri?$s8;iprrW2tr;Q^%rr<#rrVuiorr2rtrYGJ3s8N&d_3gOtjT#8Xs8W)trVQTos8N#s +s8W)urt,2.rVlfprql]pd"[Y%mf*1`rrE&ss8W'%s8Dlorr)irs8)ourqucprtbS1rVlforqP$M +VN6hRm/6h[rr2lnrVlfYs*t~> +rr;io(&[t(nD_a#PDZ*@Z*(('VPKlVSXlGQU*HG/V59iVTr"]cTU_XLUS=NZTqS6WU8"EWUSO]^ +VP^8fV54$cs.fpsUnjc]USOZ[rhBFf!i2TdoVDM^s.g[1UoLAbTr4ciXdbcVV4sZYV4s`\USOfb +UnF9NUAh"aU]@1gV#R2+Unso`USFNUU84T[TqS<]Vk]iQTV\K\r2'Fh#c4>mU8+KZUSI7Q!2K7` +s.o^kq5++e"/VfhU]$tlUSO]\U8%R\!huHbrhKdoU8+NZUSO^bU\pniV50rbrhTRh"/VljV>dA' +V4scaRZEuMf]ho"r;Zfqec5[K%fcM+rr2iko&nE+PE2H:rh`2aX/i1tX0/J$YJSlOlgOK?q>'m^ +o^D/.l1k;Wr;HQfoC;87l07BkhUB9DVPL/iV4j`bW2?W/dc0QZn+?>IoC;;8lL4QIrbh]7rU]CC +lK[g.oBY5V]<\W@W2?JiVPL#e[E7=mo(2GCn*TE*mIKrFqu6Wqrr2lnqY0UMmHj6*hp8s:VP^;k +Vl$DpXfoCajRW!5m-X<2mdBH,kj.j:rVQEcq>^?[mITi6kiLUB[]-+$V]M\0UoLPtWNX1ijm2I/ +oCDD>md9H4oCV_MqY^3bp\sk1p%7e@kiC:,WM6/aVl-JmWMli%^t%W;oCDD>nb)YKn+6DSruq=8 +oCDPHo^hVDo^_8"`jMkGWN<.pQB7KBe`?5qqtpBlrqultrr)fqrr^Em"TA8sr;?Qk(&@b*rr)fnr;HQkrVl`lqYgEm +rVZTjr>>J2nB\AAb3Sp%qY^\[tZ/5BXrqu`orr)fqs8M0\J,~> +#6"T%rVuorrqn)@qtTaCdCPa.Wk,dO['?m?XK/J+Yd:aF[^`o[\$ifZ^V$tZ[f*cD]=GG_]=GG] +\[hXJ!4V^4$FdOT\[]/[\@B#Wrj`$=p::45s1/0>s105\\%TDY[(^\@K-K\H'/<\HKFQ\[]3K\G`rA\@8uX\[h[K&@SmHYd:3pV8;!S +oD&:as8CLJs8F5BrVccqqtBRCe@1j4Wj/b3Z*UmHZE^^>WMQT'`QQHGa2\(u.E]l[bgbhElK.$_ +g!nHrbf\)Oai;'"VPC)p[Bd!AZE9ptXh;a!b/hX&`r=#'b1#/+k2P7QiSrJ8dE]nUb07rB[B$:/ +Z*^mH[BZ^+U8PB8bg+DRaMu6@bKeJ_eC`U9i83;Df$_jda2Q$=a1o!]Unt,s[^NNJZDaIoZG=T+ +aMl0Abfn5Pa2Z9OhrNn[ioKRqf[AnG)nXrr2oq!WW/trVulsru1e7rp@t6Wj&FpS=Q@KUSOoeTrZ,nqYpKm +rr2j&rqu]nrr)cnrr2oqrr2`nrVcrur;HQkrqdH+qu-NmrVZTlr;?Nmr;6?hrr2lor;6F0r;H-2 +Z)u17qY^3frVuorqtpC3ir;7E1rr)ckr:\X>Pa/N1qu?ZnrVlfprVuosk5Tr~> +rr;oqs8=SJqtT^Ad(#F'Vmj.BYcY%/W2HSmWi`J.Yd1UAYcY.:\$`B=Y-P@ZEjJ7s02O/ +"1,;=Z1G:$Ym@Y?Z*:I;ZEgb+ZN%30ZN%0K\$`9>['[EVW2Hu.YHP4:YctF;ZF%!DXfJP-riuX2 +ZEgh2ZN%0GZEpmCZEUO8YHb@:Y-,(<['?[2Xg>=oLOXu>TrY8pX/22@KSkqZPDk6KJV&Q1MiO$n +XLGjQ[^N/N^YQ(+\Y]",>XZb!E0OHGQ^NKKEdLkh+bWiiJ) +Whc#;It`rJP)kQXKnP/7M2d[eSu8s.]M>oP)kT\Ng6'%Q&UTVOe/PSW1TKP^"VZ>q>:'grr2iss8Muqs8N&u)Z0R6 +m*)W3Y,@n]S=lUNUoL;dXN'E"rr2lqrr!0&r;?QnrVZWnrr2lqrqZTmrWN2trVZTmq\Ar(rVlco +r;?Nkr;HWmqtg9jrr)cmqu%B0rUA. +rVuco-2dZ9o&n`JWKNL=WN)klV5U;iW2Q\nUS4?SU8"6LTVSK`TpqYPU(X5oTVA3UU8+HWUSOc` +V5C)bU\pqfUB[NhUS=NXU]$njTq\9VU8%FXs.]Ogs.]Ogs.U+'VOjEVVQ?ecQ_L4HTr"]bV>d7p +VPU&]T:htYV"pebV#@&#UnXW[V50fUSY`BgWM5lOT;2C^oqVhfU7nq"X[\p$hA3lM(2Pq>:*cp@Rk@ +l0.9hh:'0CVl$MtW2-;jWMlo1dGa?UmIU&Eo^_G7kO/-Err)clrVcK]nET9*naPi!bIb'^WMQGg +V5:)hXLH@/m.0c=nF#Z.l:((0o_JIbrVZWmrr2lmp[dnAmd&`Q\uhp0WMl\lWN<5+][,^1oBki1 +nF5l6m-fB)2^o()>>md9H2o(MnUq=s^[ +qYU-aq=jRNlK7'R];_O!V5L5iW2HMlZ+ncMnFQ/;n+-,Cna>uCr;QZtqXs=Hrpq!!nF,o;kgm_[ +Vl-]&W0iX4YK5M`o_e[crr)utrr;rr!<)lq*;oj:m`_]&Uo18qY-"h0Z*0phR^:]As8MrprVulr% +0->+rVc`qrVc`qrVcWnr;I'%s8W)sr;HZorVlfrs83B*s8Mrprr)irrVQTorVc`nqu-fnk1.oAq +#(-j!<)lq$ig5(rVlforVccprVld-rVQQns8DrskfM37p&4jer;Q[+r;HWos8Dins8Murr;?Qor +r2rtrr)lr!<)lq#l +!ri6"rr+AFr;HTlqt]mKgrljfR]!KuYck:;Za@3P\[])TZaI9O['[]!o/Z\[T'I +\Gs#?\@8rUpU:L<\$rlV\%&oV[^Q1F!4V[3s0r$4aMu3=`lQ6Cb0A2]jm2*j +iS`MDeBlF^aiVWC^9OQ0WO04DYHkL;VkgE+a32TE`rbg+Vegu./Mi835?e^;U_`l?-A^U'o:Vl[24[Bm3EWM68p +^rjeq`59O:c-+8Oa2lNXiofIai8jCrgXFTqbK\8N\ZD[,Xg,4;ZF.'@Unt?4b/qcKb/q]E`lQBN +f%]-Bio/kSgt1!#bfRoFa2u3*WMlu+rO"PhY,SA']ZJIBa2Q!:a2l9?bgt\5kN:[Pbf\)MaN)9> +b0A&BZ`'RpYd^d.Q_(P-hWsk4rVZZo!r`,urVcfqrVdf7s8VT7Y+r"uYHb@9YHY:8U6V+NfCo7D +r;HTorr*?+rr2lprr;rqrr;rqqu?Tn$N:#)rr)cns8Doqrr<#r%fQG,r;HWnrr;rorr;rqrquZm +#5730dcL9%rr)orrVd3)rqu`orqu`ns8DoqrXf&*rVuorrr;3(d-(*#rVZTmrX\r*rr2rrqu-Qo +rVl`mrr;uss8W)ss8E#srVd*!kfgNNg[Y4?rVlisrr2$ZJ,~> +rr;io-2dZ9oB=rPXHo6LYHb41XKSh3ZEpmCYcb+3Yct71YHt[FY,SN$Yn+.DYHb@:Yd(F:Z*CU> +Z*5s02O.&@8[FWN*55\[J]?W3!2-Z*OA6!3lC+s0)d6Yct=8Yd(F:X0MW-s0;O,&[/@B +Za6m9Vl65\[a*k#pA+[drmUlKrr<#tr^m(amGQ0gR[fqGZEgXA\[8N>UR-moNgH#kKn+T#J:`K5 +OI)E2[_BA`[BZa/Tph4.OHPflOb\F=P,,:aX/`%bN.m%JQ'.&YrdoKNLPh%QSZTH9\?iEH[&9Ia +P`1HXOcbWYLQ.[qXKf+8W1As#ItN`DPE1WZM27%JOd;H/VQ-c$Y,\CpSX5FrM2RIYO,/FDOIW;S +Ycb"$P(S48MN3RGJ:i];Mi3RVQCb.f^qI4_ZF[B4OH,0SN0'-[L51n_Vld(5X/Vk[LOb)>P)G0R +L4b)1Ko(hSStrHr\[SuNW1fZDO,T!VOd;8mLl@[oW2m##Un*X$JVT>NNJE+:JqSr:NL6TJ[^irS +VO<[4OH#3UMNF0lOG\dGO.`VSSX?(ZcJ\![r;HQmrW<&ts8DosrVc^8r;ZfccE3h>X0/\2Y-+t5 +YG7DOZInpOrqu`ns8N!+s8N#rrVliqrVliqrVQWmrX/W(s8MuprVuiprr2rtr!r]*rqu`orVliq +qu6WorVl`lrW`)Ye^ERSr;QZqrVc^'s8Mrprr2iorVuiprr*K-qu-QprVli\ajB5DrVcZlrr*H+ +rVlfrrVQQnrr)ior;Q`qrr<#trVuisrVc^$qWQ/4^YA;VrVc`qs8N#Zs*t~> +rVu`n*<#d.mc;j6W/HY1XK&%fTVJB`X/MbbSXuIHTqMCW"JDH^T:l+V!hl9[qP"+gV50o`q5"%c +"/M]dU&LedU&UkdT`Us^UAghfU7n:[UApngU7n:[U(X/oUSFQWUSOc_TqJ0UU8"EZV>[1iV>d7o +USO]\Unms`*20.&U84Z_US+?[Whc>aVkp#WTVSH]V5'`XU8.FX"/DZfU]-tRU(O)nTqS3UUS=NY +U8+KXU84T[rM0^oUnj`YU8"?TpnIe^r1X1br1Y%$U7nl0Id"d(Z`\VQR.uOc,mOf\uAqqtg9ls7lR8r;Zf_`M0!+VkBZ[XJr5$W0`I6^>Skfrqu`n +s8W)srr2rr#QFc&rVliqrVQWnrr;osrqu`orY#81s8Vumr;Q]orr;rrs8;forr2lrr;Za/rVlcp +rV#^Lp&"^erVl`nrr)fprW<&trr2j/s8Doqrr)cmrVuorrr;c]nFl_XrVc`qrVlisr +!ri6"rVlfp-3!l?p?q"l`N##bXL5F0\@fAZZEUU?[C3KM[C!BO[^[KX(I[^W]Rn@/G+"1P_I[J%'/[J731[0*kH +\$k_6s0`!<[^Q1Cs0a/[[^NTN[C3KMZELI<[^WZNZE^X_o;VqI`]g]f%8F!e(*%%f[eEkaiD?;`5&^V +U8k`=]X+lKZ*1('\]Dn4`5T^6`lGs/]uf'ojkA#%cJ%14fZ_:Qa2c-3Z`9n#WN`k>Z*CU4['I*HXJr(oEj3@&`k9")c-=>M`PopD +fA>E:cd1A5n_r!@_8XU?^Tjf=X/rG,Yd1U=W2HW#`lu66aN)<=`5TgAcdq"6i7#otgY^c;e^)@V +`lQ-4[&pF4ZF73LZDse!W3*SReBPnI`lZ9=_8=7^HlrVccrrr)iqs8<3%s8Murs8Don +s8Drsr;ciprVld/s8N&uqtg6irr)irrVlipr;Q]prVufqrY#2/rVlchn*p#IrVlcpr;HWnrVlct +rVlfqr=]//rVlfpr;?Nns8Drsq!RYFqYpHlrr;rrs8W$%rr;urs8N#ss8W)urrE#rrW)orrX&Q# +q!dG1o_\UcrVlisrr2$ZJ,~> +rr;fn*<#d.mc;p:WK*1AZE^F,VlR#-[^3-+5Yk>3SYlCm,Yl(^)YQ1lhYQD#4Yl:j+YTp?UYcb.4Yct=4WN!#(Z*1:2X/`2&[(L9ke,KLKs8W&s,lR8pf"[u>Lnhr!UU%VGZE0plMh?qSQ]?`IH$F^fKSb_TT;DOc +I]9?HW2?;VOH,<\O->]^I=RN][^NB>V4Ed(J;feVLk:50J:r]5Ko2>'^:geHSYMhHbAQ(=_OY,nOmOb\L>OHP0DKS"c*JVArA +QCt:aZ`9arXK8@nR?NVcMia'^Mi*O\Tr>&pW1B02K78B6R#coNK8"o+Itj&SVQR2-Vk'*9Oc,,5 +N.c_9P*CfSI=@-JX/)&FWQX,YnbE"XrW)unrZD(^HlrVccr +rr)iqs8<3%s8Murs8Dons8Drsr;ciprVld/s8N&uqtg6irr)irrVlipr;Q]prVufqrY#2/rVlch +n*p#IrVlcpr;HWnrVlctrVlfqr=]//rVlfpr;?Nns8Drsq!RYFqYpHlrr;rrs8W$%rr;urs8N#s +s8W)urrE#rrW)orrX&Q#q!dG1o_\UcrVlisrr2$ZJ,~> +rVuor!<<&ss8EB'q"*e+d^bX'Su;Rf#cX\uVl?SiU7qLZs.TIe!29Cd"ehZbTqS7\UAgqfU'@Bg +V50o`V>@(hV#mNjV>d5$Una]\UnXWZU7n9RTqS3SU&1SaTb=)pUS=QZUSOZ[UnslaVPU,bV#@.h +V?!IiVB)M1VPU,bUnac^USXiaU7\*WX/;\iWMZ>]Unso_r1sLkVPU-bV?!IlV?3NeU$SKcTVA3W +Unso`V59uaV5'i`VPX6g"f8)nV5'daU$eWTU&:VcUS@X\s/#ak,,V35Uo(/nXJ_baTUqdOXKSRq +Q&q`Se)Tojqu-NmrVulreGoRI!<<&sHM[3thpJm"MO1NNWO'%9US4WgXK]IjkO.a+nFH8Hp$hD: +mdBK.l0@^0qYU'Ym-*NhhV6DiW1TlhZEC.&VPpSsZd7e#m-XE:p%J(HjPfG"s8VfYjll74s7kp@ +kNhKsfu^_)VP0liW1g#hZE_'jiT]^rm-X91$L[6ElLFcOq!7>?rq8GHo^_M?md98pageOWY,eCp +X/r5!YID^9o'PQ%mdou7ki_3toD/=Wkh=bSq#C3XiS3DYkh*b^Z`U2)V&H5-V5^Z3gZdVTm-X60 +mHj6/o(i:aq5qYpLirV,dGlK-aD]WS-*Tr"ZcVl$>iZ+7s9oC;)0o(VbBkiq?tnbN+Xna#K. +n*KN5lK7?uk1%;YYcb"$R$=)IeDoccqYU6krr)iqs8N#rs8Dp7rVulZ^n[U&TpqdZ[^UEmrVclurr2osrr2rts8 +rVuor-NF)DrVlfoq"!_+e%;$5VQR85['R'D[CNfT['[6L[^W]Q[C3NOrjDg7rO)d8[^Q(@r3cU5 +o="\,rjM^3!OfE8[K*`3[KbPAd,3j8bJV9?b/M#uVkg5j[(X#TZEp^2W4'FX`;[X^`Q-!:`5g3YjP7o"rm4Hec-"&C +_Sa@3^p9o;Xg,:>Z+%0BVk]ug^WOL+]uS@?`l5m9bL5)#g<[[TeEQJ^dDW]8c-=)2Y-"e,Y-G=> +ZE0q$WNjLh_8"%1`P]T!`5g'JfAP`Lf$;e%inrJ?c,R]BaMbd$YcFe+ZF%$EXJi%qWjBdpbe_'6 +ai;-2_Ss[Eg"b6+a2Q'<_o0R0]"lD-] +rVuor!<<&ss8Ei4q"*e,d^kg0UT:W(Z*:C6Yd:X>Y-+u-YktX(YktX(YkYC-Yck:7YctC:Yl(a0 +Yd(I;YHRl.nur(tqQC"*YHP2.Y5kj,Yl:j+YQ1m+YlM$)Z2_$0Z*1D0Y8"4GZ*((-ZaR0BYdLd; +X08_2Y-5&.YQ1m*YkbR(YQ_;9Yck:8l`UAoYHR`*s02R.r3?:+!O8ldY61r2YH\#0s02O,*jN)\ +[^3-LJUW9,J9lQo +MNjg8Y,\1_PEV,aKnOl#JrZ"PKnP8GS=H"9U:]+?l1OoMrVulqrr2rsrr)lqrYb\7roV%nV6$Ja +V6IA8[^iiLXh<9SrVlcop&>!i!WN&rrqufprr;ots8MusqYgNnrVlirrW`?#rr)fnr;QZtrVlis +r;Q`p"98B!rVlg"rVZWnrVc`qrVc^$rVZWnrVc`orVc^#rVZWmrr)iqrr;fns8Doq!rr9!rr;us +s8W,t'E8%3rr)corqu]mrVlfprVlirrr2otroX62~> +rr;lps8=,?rVH6Wk1[kYT:21?WjK4;W26>gWMl_mVPU)`USOfcV#I+pU8+KXU84W^V#I4jV#R7k +V#I7eVuNUoVuERmV>mFmV$j)qV50i[Tq\9VU8%O[s.TUjV5:!eV>m=kV>[:jV$3`lVl-DintuGb +!iDlmrhU7'TqJ*UW26>hWi2_gV5L5gVl'Hi!i2]koqhhhV5'dOUB.*arhTUlqP=7hVl0:d,aQ\n*oo?o^M54lg40:qY'OTs8W&mo'GT&k2Y7B\YYjiVlH_o +VPU&bVmOqZmI'H2m-F$+nbE%]rqQ0as8Drqq=!V5l/g^I^p'W+ +Sti3_WiW>(YI;F+m-X$#nb2YElfdQuo(r=]nET<+mf)PPk8!=MkM+;!\#l6bP+f;+h!+A'qu-Nn +rVZfsrVc]os8Dut)uTa6ikMFbT:Djpbg=bff[np;jmW'FrVlfrs8Ms,rr<#srVlcmrVulrs8W)r +s8W&us8;j$r;- +!ri6"qu6Wo(B4:/p@.5!aK_P6Su/j-^:CVV['mHRrj`9D\$`ZR]"5BE[JmW4[0X4K[C!?L[^EO@ +[K*`6[K*`5[f3Z:['dSYE$Z +V5h&Ea2>aj^a?t>c.:k6hqR#KjknY6a2Q$;`P]6cS!TeKZ*LU9WhuVdV7b'rao9>.`lH9E_SOLQ +kiUI6]=uDBimu;k`QQQH\uqj)Wis"O]Wn`FW1^#s_8X@/_SjF5`PTL5dG!X6`l#sCbf\#G^qIFq +_8CVhr +rr;lps8=/@rVH6Wk1[n\URn!OYe%HSYcY+6ZEpjCZa-j?YHbIAZ*Y-+n)RZj)6\]s!so_JF_rVZWrs8N#Js8W(HrVlchnE&9@Z(dSNXi/,h +XdkT;Oc5!JN00'LG&_MCF`r4hOd`/S\[A`M\@8Q0OGSaLNK90YI<0ReS#EEgVk900It!KJP)>!I +JqAZ3Mi*RdZ+diMQA^WbV5g2OLkUbJMhQ\1KT`"7^ppDASWA;MLQ%.GK7nr7MMbPmM34=*XeUu; +Q'RYsNei78ItMSuAp'[B['GZ)aUaM1gS?O-#E_N/EX_U8b2nUmm?m +Fa8XuL44N%K78/pJVTD]Xg"drQB@>kKn"JoHA%<@OH5KbP)tTbW4gO7l1+NFrVlfpr;uusrVc`q +rVum:r;Z]T_5a<+T<#iSd*gLtfA#6En,!(_rr2rtrr!?+s8W&rrr)`ms8N#ts8Mrrs8E#ur;Hs! +qYU9lrVZWkrqu]qrr)iqs8;oss8Drr!<)ors83H,r;Q]mr;Q]nrVc`ps8DlorVcp!rr2rsrr<#u +r;Zcrrs/K!r;Q]os8W)t!r`0!rr)ls#lOSus8Doqs8W)ts8N?&rr2lqrr<#trWE)qqY^?lrVZs# +rVc`qs8M0\J,~> +rr;lps8Z'pZ4S#W`sWhuSgVPU-fV?WikUSO`^V#7"fU'%3fV53sa#,J)mVl-Dg +r20Lj#,\5mUo'uar2'Fh#c4;kTq\9VU8%O[s.U4&Unjc]V59u`V59uaVPU)bV5'larh]Xj#c4>m +V50o`V5+$crh]Xl$`'VqUnXW[Vl->cW;`b)VPL)cUnso`V59uaVZ*FlU^*`lUnsl_V5=0ds.]"X +s.]Og(Smh%V59uaV50raUSXf_Unsl_V50o`V>d7iU@+c[U8+N\USIa`#,A#lVPU/frh^R.TUqgN +UoLQ"XfA4gP)GHq[`[=fo(i1\rVQTDs8;lrrHA,6nDr9E[[i8Cm-3p2rr)HMhV7)b +rqPj@jR)BrfZ:M'Wi)u*W1K``XfK%_jm2:"mJZG[lKIU,r;QEKhrj>)mf2Z8mdKW2khaOnVkp;g +V5U])WN*)+aPud]m-F$(l/Ua_l1"KJs7YR'd,4Qso]P2kkO.Wkb.=dSW2ZZnU1C$pUo:lSjlYdn +mdKQ/lKdj-p\b$ip@@tTqYU*ZlK7 +!ri6"qu6Wo(]OC2qY'@k7jOcuNE\@JuOYHbF@[JdN6[JmT9\$iaE[J[E3Zhq-0ZNRYAZEpn9 +ZM_$3Z*L[B[J7*4Za@*I[']Y:"gk\F['R+9Zk'LM[C!6G['I$EZEppEZEjJ9rj)R1#I:\AZF$sE +[J[??['?g@[C!6F[(*ZU[C#q>%'m4GZEpmCZa7$EZa0D5"gkVC[C*C4[0*eD[C#q>oMCZi%31ZNRYAZa-n8ZQ6?UXfJP*Z+%?W]!noBS!'&4\]ijnoD&4[r;HWorquou +rr1OLr;K4br;-0WjOq_eU5bG;Xg,16Wi;kiUT:oA`P]O-_83jt]>)>1g#M,If%]1*jrVlcqs8Doq!rr5r +rr)fps8N)ur;Zfr!WW/ur=SkliT9\1rqu]mrr2fdl/q=,qu.`rr)cos8Mror;H]prr3-!rVulqrr2rt#lXc%rVQNms8N#rs8W,u!r`0!rr!$#rVc`qs8N#t +rs/N&s8Drrs8Vrps8N)urVZs#rVc`qs8M0\J,~> +rr;lps8W1Z)t+0ric:*#-b;7Yd(F:ric:'!jAc0poj_#s/uI+Xnf." +XTPc2YHHfes/l^4Y-+n0Y-"h/YHRK!!3Q7(riQ[5Y,n\,Yct73YdCa@rN?1&r2p%%oWAA"Y-+t2 +Y4/XpXokl1Y-%&n"g+r1YHG%gY6(l1YPt[GYHG(3XJi%qWNEM8\$iWEUm[=/UU\P&kjnQHr;?Nk +rW<-!rmh&KrZ1t:rquNYiRZ)ZTTGYGZEpj9Tph1%K8,>FLjjMgrGbh_K8uD!ZaI$=Yd_-FSWAP[ +M34'hObJ.2NLm&KXK84aN.HJ>Q]HoSJUDipKntPER&RO$UlU4^N2*JIP)+dKNei::IYO)\Z+dTD +Un3ZtIYWi+UmmBqG^>.)KRS>rH@($hKSkq^VQ[D6Y-"fa +WhYr>Jpr<.NfoTfN/NggVld,%UR[BnFEi=iJp_lnIXHHgItWlRX0/=fOc>9TJUD`eH\IIYO:[D) +JVAuO\^9-lmJ$JTrr2rrr;uusrVc`qrVum;r;Z]R^T!m!UVZ*anacAHpA+R]qu6Worr)lsrVc]s +s8DiorVc`qrrE&rs8W'!s8N#r&c(ePjn&KNr;?Nmrql +qu6`ss8W)ts8<]0q=En1f#+MRNK9L%VlHbrW2HMhV>d@lV$*ThUnjjdU]$nhUSO]\pn[qd!2f^k +s/,aks.falV50maV#R2%Una]YTqeEYUSO]\Unjc[U8.^`rh]Lf!2]Xi&#,krV50r`Unsl_V50l^ +V>[1gV#I4hV@'6"W2-)YUSb#kWW&akU^NrnV59uaUnji_Uo"$c!McIiU[Y)YU]7+tUSO]^Unso` +V59uarhKXmUnjjcU]I6drhJnW!2K:as.^j8USO``V5C)bTqA!PVlm2%VP0E?NKU'Gb1PbCpA4^c +rr;rqci4(Fs8W)tG5V(!iRc,SR?*DkS#EQtZ`C".^XD--n+$&Dp@@V9lL"9@q![D-meZq]q%#nac5;rkN_0_b.=^OWNE(nUo(,kVldebhrO"fn*]Q-l0@U'p&"acn)is+ +p%@qDkiV*mkMFV&Ybe+nXKAP%Vl?c$]$/pkmI'E4oCF@!m-*Tro)/L]mH3QplKRU#m-a?.imbrO +QAh$"Yf,/Ql1=fNrVuoqrWW?$rr)iqrr!?,rr)loi4GbPR\e:)s8Mioq>UEos8<'!rVZWnrWN/u +s8N#ps8N!(rVZZjk/am>eFEM9/-#V:e%`H7mJm4bs8Mrprr)corqu]nrVZWlrqks,`S'bMfYl"u +s8MoprVl`prVuj*rV?'QlgFTJr;HZor;QZprsSf&r;HQkrVZWnrVcKiq>^9i!<)oss8E)urr2oq +r;P^UJ,~> +qu6`ss8W)ts8ZF'P9s0Ms;['R*G[/RE3Z2V'/Z2M!,Yl_59Yl:m- +Yl(d*YlD!-Z2h0.Z3IS>ZE^^@Zi79/ZN@G=Zi.30Z2:j,YmdqCZ*:LrZa6t-Zi@<5 +Za-mAr3H@-#-tM=YHP18ridTMXK&>&Z+7HRZ)jaiPaA8Yc._7IpA=dcrVZWmr;Q]qrVb:H*<#p; +rr)fnp?LYjbI*n(P*VfD[CEWETVS^#^r-/gEPoZ.]=Yhue(rm4cH=SljP\S/^qdn/a2GZtVP'ik +Z*CUAZ`g=&W4U'd_8=%&^;@k,^VIq@hquhs]"#]8kLn%q_8sd7[]c[/X0/nEZ`:.0VOaNj^;7Y& +_o0C,_nWq*d+I:+^:M/!`l,g4^r!qe^co?5Un=KeZ*:LB[Ap!pU92&G`PB1#^VIRq]Y_e?gtpW( +]tDPMlIX(n^r4=5^:(,=Tr>3"Y-"b*W1]ff^APqM`;RPO`luuiinr;2c-Xk`a2# +qu6`ss8W)ts8XhYOHZ32XSo='Ycn&/ric@)"0J`/YPt[&X9,N*XSAmtXSo7$XSK!u +X9#H+iN<-_riHX4Xf\\,XfSV+Y-+n.XS]."X9G`-XK/J)r2gF2YHP+4Z*:=/WN35-Z2Lg(XT,F% +XT#@%XSJsuXO+'LXPU&_XKAV*X/u9%)69^5Vl?i,[^!!6TU1h-V7Fh'jR;j>r;HTmrmLiErcnD@ +rql?Oi7H)XT9be3UTUl+W0`PXUo^2EKoCtMMhm"8IXZcuK7eVuI>XGeV5LJrR>ZWCItrr=Jp_omI!^0eK9)P%ZEBja +O.!&MP_"1-Jr,GFMhd(IS#W]tXf%kXK7&9+L4=SsG^"@4G^P'tO-uiHZ)OCfTq@^3K7/)qL5_1T +NJ`XYTrbH"Vk9E=IX$9kK7\Q!H[9p]H@:C(S>r]eQAgQPK78/nH@L[-N/EFAF*38+YfY\^kjeKH +rVliprWW?$rr)iqrr!9*rr)loi4PqWSuC$6q>^3gs8W,t"9/8srVld!r;Q`qrql`prX&Q$rqY]t +ZanTUrV\8HrpJ4L\]F1ULBmrr<#t!r`,trr)coir=N~> +rr;us(B=C5rVlirrquZfnEJl[_Q]`"P*DE0rMU7+W2HPjV5C/gVPU,dV5:!dUB@d@lV&,r(V50l]U8+N\Unji`Unso`USFW^VPX6g%]-&"Vl$>f +VP^2dVPg>hq5=7i"/i#nV>d@lV>mFlW!fW,XJ_eeUSO`aW2]cos/$'uVP^2dVPg>hq5=7i"/i#m +V!Oo]UnsrdVP`j\s/#mrVPU*HV>m>4V5L5gVPgGrY,nY&WiDnbP`LcaQ_qC>g>hMkq>C3hrW<-! +rmLfJrVuosrG;K/nEAi^`j;;!MiO4$Y-Fn#ZGY/KkNq^0p\=FMm-aNDrq>R5hWX\4rqG^;jQG[` +f?:t6Tr+oeTVA<`Wi?qY^ +rr;us)uop:rVlirrquZfnEJr``3Q/,QC4DEY->4=Zi791YQ1s-Z3RY=ZE^[=YHR`*s0)I,!jSu6 +pp'k'"gPA=Z*:J3Z2_$7YHY77Yd(L=Z*=23$*^\>Yck77Z*CP3Yn""CZ*LX>Yd(I;Yd(L>Z2(^* +Ylh;:Z*=54+Kr#SZ*UdB[C +n?W)!"1#2:YjSdrYQM/7Ycmf*.Bft[YHG+9[^WZNZ*UjBVOa*>QCOtgceRUIo_JF`rr2lqrr)fp +s8N#JrrW0!s8MtArqZ'Jj4VSaUQgh&SZ/p$V4FKf\\5_l^r"%-^qRP#bh:q-c,@KBf%o*._Rd@o +^qI:bY+qD[Y,eS(YHP"&Uo_2E]tM1o]=Yen^V%8!dbN[-`koU:io\h3]tM>'^q$\LVl?`&\$2s< +XIkrW[Ca)c_8F.)^Mgp%^W"LMhq,i``lZ?C`PTC*^qRV"]X"H1WNrq;Y->%(T:r6h\A5qo]",Gh +_7dOu`mEDpg!@UTdHKoJ`kfI,_SEmrY+qYgZ*CO +rr;us/H>_KrVlirrquZfnEJo^_m,r(Q'\)>XKA\1YHP+3XfSY.YHG"0Y-"h-X/l#ss/Z1$#d(21 +XKAV-Xf_N("g+r1XfSW'XoGI.X/rD'XK8P*XSf1,XKAV+X/i>(XfVK'%]le7Y-"h-Xf\\+Xfeh/ +q6'b""0Sc.XT#@%XT,F%Y8OUOZ`U1*WiN5&Y,n_,Y-"h-Xf\\+Xfeh/q6'b""0Sc.XR*%mXKAV- +Xf_)qs/cC+Xf\\mXoGI)XfSV)q5jUs*iuKGXK8P.Za@$BYHY:5U7.@1Pa\SacJ.CFo_JF`r;Hm" +rr2rsrmh$trVuosr;?HdmcWT_bIFC8P*DQ8XJV28LPgqBIsQ6XEH,r:GCbjKWMZ2NPaeMMV3Zg_ +I=d0.L4b//I#aeiTVSEZRZ3&VO,ejBI!0LLFaAIbJrZA!WLo<2MNk*BSW/5MK8>;:Jqf2JSZ8ut +Vl-&@H[UU"I!^-bH[0r;J.@0jR%^LQO,T3_O,SjEHiA>8I=QlsH@V$GUnjc^U6UOcK7no4Kn">h +G'eR\H%(O5U8t>iR$F2CWf_dWH$t:!M2[:GN1?rPYcat&RtQ?OLjaPnGBS+NFa8IjN0g9 +rr;lps8Doq&cMV$n)iHUaLS=AP`h?$S=ueXW;`[oVZj#sVl6Snq54:mWiH&tri5dns/H:&WiE%s +WN#lsr2BXn"/r,qVYm@lW",`(W2HMiVl?YnW2Q\pWqE=tWi;ttWi<"uWN,lq"0/?"W;`\/W2Z_p +Xfnh&Uo^l+X/DhnW2ZbpW;gos/>ss%'$;+WiE%uW2Q\p +W2K'^s/,jqrMKXor29Ro+K2<@X/VtoX08b/VP9cRQB-iWOIiVhc.V4Fo(`.]rr)fp!rr9!df0CI +s8W)sCB",'n*8l`age7WHVl6`%Ycb%)V5UK2g>V/_p@IS9naPl,io]b,r:T@TiYUeBkiqO'lf[EfbcmS(VRjmuh<=G+ +rVcZnrVm'#s8W)us8DrsrUNqrVcNjq#CBn"TSH!rr2oqrr)orpAY*l!<2-\J,~> +rr;lps8Doq(&e%(n)iKWaL\IFR$X;7U8Y2tYd1S6YlCs0ZE^\6Z37G\?`9?YHP18rilF-s02+""gG8;ZE^\(ZN%30Z2q25q69n&"0f&8YkkU.Yd(L>Z*Ef( +s04MgZ*COYd(L>YH=t5[^WTFWMcM_Q]R5mU9VP[gZIkmp\Xmerr2lqrr)fps8N#J +s*XeFs8DlorqlBXlf?aB\uD3cPa7i2PEM]H\@T8a^;.Y'^V7J%cJ7F7d)X2QfA#!*_77(j^:LbZ +Z)*kbYGnM&XfJ@mU9D5F]=GPc]">_m]t:tte(`^1cHOPaj5JD%\\#Yp^UC2=TVA?f['?g@X.Pub +]Y;(n^qd_a]m7?,`6?cfgo^q[b+ +ce.%.f$DXmkNUO7^;%Fs^;%7]T:D^YXK/D(YH"%c^V@4i_T'R4^qIFq_T0sSh:p;ra3W8^b/_E8 +]thP']s4K2Vm!J7%^N: +rr;lps8Doq(&e%(n)iKVaL\FDQ^4&2TVeckXfei+XoGO5YH=q0YHP+3Xfnq2Xf_E%"0\l1YOeps +Y6(l1YPG=&YHG&+Y7[q@YHG"0Y-5%3YHP+3YHG%1l)k,lY-+o*X:)25Xg5==Wi3,/[''D."KSZ- +Xf^ol!jAc0n?;kp!O&[)Xo#:$Xn/[sYHG%tYQ(a0YHG%0Y-+o*Xs(!NXfnt5XfJP-['d-=Vkp&V +P`:WdTs2>Wg?.blq"t$gq>LHqrr1IJI/X*Frqu]kq"*t@jk@tlXIbfEPa7MbH\733J9Q'SDfBZ5 +DKUJiSu8BQP`qQ2W1oN.H$XskJqJ`4K7/iRS"?FNSsG4dM3!UFG]n4MEclVPH[q$BUSjcNPa.f= +W0iBiI=[--Jpr9)NgcrOXfAClM1C;>L4+>iFEAjNFEr:cLm+F.UR@F7Q^!PdIs?$SF*W7eJpr3, +S#E?aVkTE0I=M6JD1HqTEccYUGB\@bNLQfFV4X6LX/D#+G'A4YK8P\GKSl1nVP^2aTpC.VOG7q$ +G'.nJF*)YTK8GhbVPfrIOd;>qL4=MoG'ejuMM?e@PbG+ZXf.nYML']+J9lTkG&(i3EH62HK9Mt& +Q]$FoHN/-eGSPRWLOsYdH'>JPe)0H]p\Facrr)iqrVm'#s8W)us8Drsr=K#,iP)CgUTDrDrqlZm +r;?NirWN9"r;HWorVua!rVQHhr;HTmrqufrrr;p'r;ZB-S;N0#dII57$iB;0SW]/2iVriRrql`q +r<3-"rVZZorsenRT9-A8kK'a9ir8rUqu7*(rVlf]a/uYrp](3hqu6ctr;?NhrrW2urV6Bes8W'$ +s8Doqrr2lqrW)ojrr;uuroX62~> +rr3*"s8W&srZ1q8rr)lrrqlEWk24e8_6To+Q'7>oQC454S=?%;rgWqV!1WtX#G%BUSXc.;SGo)e +T:VXHSt2IFSt;MPSdq<_St2IDSXuIFSXc4@Sc,)XS,\uYS,AfVSHGCNR[a;H#G%?SSXuCDSb8TS +SIM0]SXuCDSt2IET:VXFr1*eV&>5bhR@U:\Y,%PUS"#t?SXoMHs.'7`SXlAOSH>CQSa2gGSc>5U +Sc>2bSXuCCSt2FDrga+^S=T#:"e2$PS"#rHS,\uYSc55\T,=/iS"-+AR?`nrNK0']Q_h.0d+@4C +o_A@_rltK@rr;rsrdXkBp@.>*fZh7>VOEX.O,&ao_U@/qk3VU0p@Rh?mdp;TrqGpNp&4pip?L`$ +l0.-^d`/M^TV7U9SXGk6R&%LHhrEe^m-X61n*B0$nFuk[rVQKks8Mi^i7m/MkiUO7Xe1uJR[fk; +TUhLF][u*%lL+$&kiqk1Q^jeDQ);jWdGr8>;kV4ss7q>U9hrVcZlrr2lqrr)fqrr)iqrVZWn +rVllrrVlis!<2orrVfXkrpdq&R$+,Zk5,#TqVANGR$jc+rr;roo^VJ>nbW:crVlirq![J +rr3*"s8W&sr[.RArr)lrrqlEWk24e9_R$/3R?j/+S"?=LUna]ZUS=NXU8+N[U]$tiUS=L]U]7.c +UB%%bU]$njUS=NZUndj`r1sFkV>I%jUS=KXrhKRiV#I+jU8+ILUB[HfUSOZ[UAU_bTFdrtURn0] +[^2s,T:hmPUS=LNU]7%jUSOZ[n>-)Z"/M]dU%tG_T`_$aUS@U[s.TUjUna^SV#R1iV#6tjU8+KZ +V#@(fU_f_tU84NTR?s2%PE_B&W4L'ug#DAipA4ddr;HZn"9/?!rR_)Ird+P@rVcZjp[RP-fZq@? +W1B-6O+`:YYdq9R]"G_l^qRFo_op]kinDf+e_K$7cb[0&]tV+h[BQ2ODUnO?JPF/A\^:Uqe +]=Y_j^Uq(k`mWPpf[J:"gYLK(]XPJe_7m7OR?Ni&Tr+W]V4Ns=Wk?'Y^;%@o]R7E*]t_D(dFm:- +f\"g,d`TJA]!o/]_8*U]R@'bNY,S=oRZ(H8e_&pBd(m>IQQ^s\;SY)UGMjV/jZb42p`59:%]">_qajJbof$`%!f@/!d`5'+%_S`sbSsl4DUnsmsUS"$A +Pc):1]#)P+[^Q1Ms1T_qc.CXq`P/t!^Uq.o^q7.o`jhY'T=2npiT]k)qu6Wqrr<#rrW)urrW)us +rZV4>r8GJrWMZfHrVl`orr)cmrr2lqrr)fqrr)iqrVZWnrVllrrVlis!<2orrVg%!rpdq&R$+,Z +k5,#Tq;&HIR[^23rr<#so^VJ>nbW:crVccqp[@A:mE(o]Yh\X"`m +rr3*"s8W&srYYS3rr)lrrqlEWk24e9_R$,1R$Er&R@KoJU&1M]TaINfU8"?STV8*SU&:YbT`_$_ +TqM4Ts.BIfU8"@MU'%*`U7qRZrh0=drh0FgTqS.GTa%0`Tq\6ST_tG^Se.]oTpqXQZ*1!pS"-%B +TqJ(HT`q*_Tq\6Sn=orV"/;K^TD>/[T*(a[TqM7U"e_Q_U7n:MUApnmU7n9RTqS-QU&LecTd$5+ +U7\$MU7n*EQ'7;lP*;?5\]3%LiU-:3qu-Nns8W&srr2its8DoJs8;jirVQKgqt^!YmH!!J_mQM9 +P)P*:E-m@qHus=ECi+$)CN=fYR%pLMR@'SCW1T3'H$FagJq\u:J9Qg4MisTtOc"R7L5^tW,F*iCfI!:%"S=c:?Q\g!-FF8UhI<]gQF*`1VFa&7gPb=qPUS"0TT8Il6F`qtZMN!18 +JrQ%]P`q8n7>Po*Ne;@pF`VPBEcZGPJVK8TTVA'IR$X(uKR@raF*E+iLOXZ"M3F@!T:D4+IrK[g +I<0RYF_53%DJjH9I>aG\O+_iYFW,4=F`VG?Iu/l%EJga4e_fTYo_JC_rr;urs8Doss8;irs8Dp? +r;Z]R^os]5XO@%Gr;QZnr;?QnrVlfprVulqrr2lorVlcq!<)lqs8N)ur;Z`p;#L=_`2&c`TYfjf +r;QQK[@*GOV;M:PrquEYna>rDs8W&rs8Mc]l145`SWU/3mFoS+lMgh]q"*q=lL=TJs8(NWS>F9k +qZ$QinEfQ4p\b$i#Q"2ip@.SBq#:6urVuorr;HZorV?Hprr<#trr +rr3*"s8W&srWE)srr)ir&H2M$o'55ie&f;-Vk9?=NK*ms"-8G#NW"b:MMmGlN=Ci)MiN/`gUMi7Iks,-u'mcrV,dDhV6uNlK?g5 +Um7%&NfK*YO,f0^XNT5Pkj7X!kiq9mk2kdno_J@`qec0%n*B6#j5AhQi7H&RQA^`aO,AjTO,oU) +_V=5>mUnOa4q>U9irr*&urVlcnrquis +r;Q`o#laf!rVulrrVlfr!<2orrVgI.rp[h&SX#SEf(Jt?q9Gk%R?sQ!rr;f]fZM.Jakc^kqtpEf +iQ8dRbdj:1Z.eX(bKoDOrpJRh`k&\"ht$U3ae4caZ-Vb2o\RKp]Z&Ifq>U$$a3Wc?rr2lr +rqlQjs8DolrrW3"s8N#ts8DrsrrE&rs8W&us8N#trrE&\s*t~> +rr3*"s8W&srWE)srr)ir&H2M$o'55ie&fA1WM,iIOcfO)!KrTAOSt:GOH5HaOcbb%OTgi/Ockih +r/q5GP*1rhOSb1?O9:W.P*,^+#*G(3OcY]erf@)@s,dSKOcb`fOckihl]M71rf[5B%?QX3PE_2h +OI2Q,P`_*nP5gXEP3J)4OHGZgOcf-rs,d;Ej,j>'rK.GKOcb]cOd)&lOH9C#'p"KBR\Hmn`6[)m +jm;U6qu$Hkr;Q]prVuctrr;rqfDk[G'E.q/r:f^GjP/,)^pBr2R#?`bWrBM>]">Vh^:_"d]Yi(L +iSE&1eD/m2b.kKs]"PehZDEb?O-5?]R?WenL5_b/\\#Me]=PVf]XbSd`6?Z[e'ZRof@%j[]!f2c +_SE]XkS_^]).N_B[%Ddb!.(e^`C,b.bO)]skVdYaUE*NKTKhPa%JrJ<%"GZ+^.R*PfA" +\[oGg`6$?Sf@ej0d`fbL^V.=q_SWXNOGo8"O:ID7O,]'TTY%eC]uJ%$\GX&]_9(*Qbeh!'^;%7j +^V.(`^rO'[Q)MRMj6ZC1p\Xpgs8W#r#64]%rVlfrrVd6's8:ilYG\5!df'1CrVcrtrVlcnrquis +r;Q`o#laf!rVulrrVlfr!<2orrVgI.rp[h&SX#SEf(Jt?q9Gn(S!fu*rr;lafZD(Iakc[jqYU$$a3Wc?rr2lr +rqlQjs8DolrrW3"s8N#ts8DrsrrE&rs8W&us8N#trrE&\s*t~> +rr3*"s8W&srWE)srr)ir+8u*3o'55ie&f>/W1]WEOH>WfOckliOH>N`NfT3\O8Y.EO,f6]OH>P" +O9L],OHGWdr/h/EOcb`dO7&)3O-#Harf7#>s,[MIOH>NbOHGWdl]D1/rfR/@%$-F/P*:udNK]`r +OcB@#"-AY,ORSD4O9:W,OH8ai"cnb,OcY[oOoLLFOcYZciK+D-OH>K_OHYihO,j3u'onB?RA$[j +_p6ihjQuL6r;HZprr<#trr2its8DoJs8;irrVl[lr;HQho^:ktd`K>6VjrfqE-6\bI!0OIC27U" +Bl8'BNLHW9R[9P=URI0nH$F^fK8,,3G&Vn`I"d`CLOjSiI>*B(HZsLJDK0]:F*N:pPa@_bPa.W( +P`:HJH@:C$M1B_eEdEJ#OcYT\Jp;6YJphibDej*)E-->PItj&PS=Z:@QB@&UG]7D1B5_s=G&_DC +K8YYEMhuq(Bl&!DJUMfbE,g&FFE;PIIYj>\Tq@jBRZrGIEcuSJIY`c*FF/_$N/EIKLjiuSMLokm +F`ID"=*&V5It`lFQ^XM;S<]%dHZO%?DfpM`J9#IHIY$$a3Wc?rr2lrrqlQjs8DolrrW3"s8N#ts8DrsrrE&rs8W&us8N#trrE&\s*t~> +qu6m"s8W)sr;HQm*W>p3oBk`!f[7^Q[]c^.Tq.U:Q'R]"QB[W!Q'7L1QN*3OQC!p5QN3HOR/3-P +QC!u*QMm-PQC!r(rg!MJrg!MI!gT+=rK[;Hs-EeQQ^I')#aUgCQC+&*Q^Ic<%[C9mrr)lr!<)ip!rr9!fDkmL!<<&s +s8RNGs8W&op$h>3inDc!^::JKTq\m:gZ7S`mI9T3l/gsdl1+N@n*KQq9 +O-?#uQ^F#+YJo,OlKm`rkNV0iioK:fm-aB6o(DY?j5JkMi8s4be[hH@R@0D,QC!u*OcH3SdbX-Q +lKRNqk2k[`iX+c6nac>Eo'bo.roS@aiSiYA]:tOOP*;)mPa@f-S>Idl07EokNhU. +o^_J@p%7S1jm2*bgXjBBR%'Y:R?s;1Ssth7`Qlljk2kgllK@6hj5]7alL"9Bqt0=EmHWlul0%3f +aetGjS!fS/Q^*buPaA`,g=bKSmj@2^na,H!i83GVlfdBdiofUikN_9hg>Co#>1rVlfprqkTeXJ;JhdJNt@r;?Qorquotr;HWos8N]0r;HQho&A-GiV*lWLTHcf]UMb]Arq] +cEjUPTUMO_e)fQ%QAh$'_VXA#[A]djU9Vl'q=`1A[]u^+Z-DeT=PJ,~> +qu6m"s8W)sr;HQm(B+.)o'GMsg!RjS\$E09UnF3FR$a;0q3_,K#+1aDR$sJ2qO.>M!h#FCr0[PP +rgkC[^P)PHeRJrX)R$E_i +M4Lu`]Y1qf\@TAf^q[Op_T:!Jccs\[c,@6,_S3Ih\>k[FNKfk1S.;$YQ@t:%['RQb^:q:l\c0*7 +]"Z&$b0ehkccEu;]=>A^]thFeQ&1KdR$X2.R$k9`p`j*o"gl^R?aH$rqPR![&BjtU9E): +qZ$0=^9+'*YH".`\(TujZb5>uo$=\FX.c#V\CB[#^6akEVSh +qu6m"s8W)sr;HQm&cMY&oBbYuf[7aR[]up4US""SQiNKPR/`HRR$X0:R/`HSR$jA0r0dAJr0dDK +r0dSP".>ODQhHgBQiEKNR.-ODQj/tGR$O,,RJ`HPQN*<^QB6oTJV&W:QC*u*R@'B2RK&WVR@'A. +m$IsCR$a;/R.-ODQiibDR$Zs&$CR9KR@0D0R?s5,rg=RhQC"&3U8G&t\&-D@g>;#_p\=Xbs8Mur +rr2lqrW<-!rn%2MrI"YDqtp3MI!'@ECi+3;G]%27J;fYTPEhDmJokjQ +K7eZ$GB7_DF8^'*Faf10Pa%AlNJDq&E-HJHI>Ll[X^QBdMeHu!hWH>RG'dZrVc`qs8;lqr>#>1rVlfprqkWgXehhpdf'4DrVc`qrquotr;HWos8N]0 +r;HQho&A-GiV*T=PJ,~> +rr3?)s8W&srr)cnrr;lo'`@h$n*&fhf[7pa`l,R!YcOq.XK;E's/l@(rN?.'s/lF,Ycmi+r3$L2 +YHG%3YHG%3Z*:G0YlCm1Yck74XK;E's/c1%r3-.'"L#&6YH[;qs/l@*q6'b$&$<(AXe_59H@:^D +Xg#"4Y3rLnXr":EYH=q0Y-"k0Xfeh/Y-+n/Y-"h/Xf_T*!3cC)ql^"&pTOV"'sFdDXf\b/Xfeh/ +Y-+n0Y-"h/Xf\c%XT5O'YPtaFYHG+5Xf\e2YHP4<]"Pr#aii2gi8a"jqYpEkrr)orrr**!rVccp +rRClGrr;rpr_*4fqY'ROm,m-Tda-%RZ_FVFgZ7P^lgF3.kMkCViTBFjk2b[im-Ep!jlGLaj4hVR +T;o0#XK8V-XfS@nXMNECkj%9giT&qUi8O[pFQ;NIk3D3fg>ClHhVmPSd^c$CXKSb-Y->+5V3[pq +eD]]Xkih0jk2kU\hr3_]kNV9rki_$ek32!hjl4e"TUV[SWiE,%YctF5Uq54+2PW3NY4Y-(R(YcXUu_opNhjl>LfkiV!gio/kUjQGmun*9&tjl5=^ +jlGO_aetW)Z*:@6YH4\"U7S[ +rr3?)s8W&srr)cnrr;rq&cDM$q"4"rr35[qs0*lUYct=8Yd1L;Z*COVd\$WNN]Yhh1^qIIu_nj$t +[^3WW'(5 +Yd(F9UQ1S?[CNo\\@B)\]Y"0R!kc@frPM:F_8!Xp]Xteh^9jMoP+JYVYHY77XeqJDS$KQ8]Y(hc +[^`iZ]=55Z^V[n*_SO.-^U^qn^ULeaViHV&Vld50ZEUL0Q'\SW[DB]Y]`5N9\@8oT\\,Yna2uB= +]t1YY['dBT^VR+=NLHlMXfnt4X/DSPS[Gr3Zb!]P\A>kj]tD"m`5fd.\%')a\@/u^]!f5e\Y>P# +ea)o(r;Q]qqu?WprrE&srtt_7s8N#rs8N#rrVlipiP):bUoi2Is8;lprVlcrrVld.rVlfpr;6Ha +f!_ +rr3?)s8W&srr)cnrr;rq&cDP'q=X4?j58M:bfIiD^:1BEXoP^*YPtd)Y6(r3YP>@%Y62&5YHI]) +s/lI-Z*CM1YlCm,YkP=&Yck8-YlCp+YQM/6YHI;ss/l@*r2p%'rN6gXKSb/ +YHG%oY5kfnY5kfhY5kfkY6D)4YHY46qlgp@Y-"n4Yck=>]"Z#$air8hi8a"iq>L3grr2rrs8N#r +!rr5teGoLHD>X2-qYC!crr;rop[IJ-h:^<(`O;1ZG(G0kG&hM;D/rCL^mgC1q@"EccJMH@(!hJpDNeIXHKlL51>'E.FFTX0/UQ +XfA7`G]eRfHZa(7B4u+&G'A7[J;&f7L4t50I!9RKE,p#GJ:2?NI[6k4XKJb1VjrK\GD:d#I!TpT +Df0?,Chmp1IY3<.Kn=i'G]%ACGBA=jJol7%Vl[#&XJr%bK7/Q,H[L!QD/aQL9irr2iqrVg1&s7"%&RA?I>\**YejgCSGR#moss6@P$SYE-dS +rr3?)s8W&srr)cnrr;lo(&n1/p@@_?k24nEe'Q:Z`Pfa7`5BLl`!F9!`5BO3`Podp`<+&u`W!mW +`;mpV`<4-!`PhSks2G&Xr5ScT"3/9t_th7N_ZRir`Ph\ns2G)Y`p1MC`;[aU`;[aU`;[^ca2u6/ +VicRbRBaTJ`Q#ja`W*jY`Pf^4m)0(F`5KX5`:1bG_umus`5D#]s2-2%_o'@/_o9R4`l?!9_oB^5 +_8OC7`l?'BcdC7ph;[V`n+HMSrr)fps8DutrquourVb7Gr;H]pqu.Z8r;6?boC;52iS)`+\tH1K +g#1lOkN_F#k2G1QhVe@k'B%d+j6,XhjlP^ghT2Xl]uJ"/_u@Ra^p^;G_:.3#kMk@Thr3MmhgaG8 +h;I8LioAbGiT9%Sgu.#8\"BS5`59I3`P]^,Tr5o^j6>dhk2k^fjP\nNhW*\SiT&tZinrYRk2bO` +jk.2AVR4.X`59C1`l5C3hr;HQmr;RZ5s8W)trVulrrVc`qr8G8]Q^k&( +rVu]krr2lqrr;rsrXo),rr2lmr91GJMhmnCl2(DXrr2iqrVgC,s7"%"Qa! +Wn$:GP*MK.Yeer_s8N&rq>:3lrqHErrr<#trVcWms8<6&rVc`qs8N#trr2rt!<2-\J,~> +rr3?)s8W&srr)cnrr;rq(]=1.r;$!Sn*T8pg=Om'cH4,Ha2c3=`Vmd_a2Z0>`l5p:`PqVlrl+oU +"iJ9s`Pf^m`V.=N`<+&u`V[XXa2Z-<`W!mW`Vda@`;mjU`W*mU`W*mU`=Br0_mlS+K8#_u_8aI5 +`9bGC`9G8Aa6CPC`9,&a`5]g;`l?!:`l5m8`koR1a2c3>a32fVeC`U:kNhU/q"jpdrr!!!rVc`p +rquourVb7Grr2rrrr.BFrr;usrVZNco'l#/inMl*[?[;j]">Pb\[oJe\@&]O\\5_j]",>Z[C<`[ +\[AiV^UpM-PH_g>`lH0?_n3"@Q_h$s]=kb^['mKT\%&uW[CVY. +`l5j7\P`\$roY]"c+mU6M1P^rOL8`PfX*Ul1VH\$ro\ +]=5/T[CE]RZaI?TrO@*`]Y1e`_n`an\u1XOWOp$eaiVN=\u;='YI2-Z]">Vd\[],U[C3TV]tCne +]=GAVZF.-K\A,tfR$Xec_SX:1`5B9jQ^kFm[^NfYZFI`_\\,Pb\\>no\[K#]]stGY]tV%h]="E, +]\W2Tqu6Tmqu$HmrVuosrVmc6s8W)trVulrrVc`qr8G;_S"Qk4s8Vuqrr2lqrr;rsrXo),rr2lm +r91GJMhmnCl2(DXrr2iqrVgC,s7"%"QaSrfK!rn4?;T=)_`[@3Mtk3'[VQDhI3 +Y+(B7[+O3@Nh+r"_j$OmbL+,!Nh!r@ae4lfYftCtPEN,lag[b)XOl^OPa@l3YJJi^s8N&rq>:3l +rqHErrr<#trVcWms8<6&rVc`qs8N#trr2rt!<2-\J,~> +rr3?)s8W&srr)cnrr;rqs8;oq'DhFmnEoAqg=Oj%bfIfC`l?!9`;[^U`:h1M`W4!U`rF!X`q.1L +`W4!U`rF!X`p:VC`p(GB`;[aU`;[aU`;dgh`Q#m4\##.:K9rdV`5BO4`5JLks252^`5KR3`5]a6 +rP]Ym`Q#d2`5p!=`lH9KdF?h)iofXro_JC_rVc`qrVulrr*Vmj=U`lZ?A\tt=1I>!-# +H#$kuAS>^jC2@X#DK9l@G'S+LI"6WjH\7')G]SeH]tq\,/Af-7X+bnTLOj\dB5)*sF*2PIG^4af +H[:$bG]e"CCi468ItiT!FH*E=`l7qs.DE*QF*EFmI!U'^F)Gc-BP;*qDKU2JH$=FSG&qA2G'S7^ +M1g&&UqO\F`+6ZrZ'gN.Jpi&iCM[p0FEi.\It3-(K7J>qG][_2?t3h`Ee'+$G'oX_]tVG)`PK!T +IX$QrF`;>;@V9RnBl%X(E-?JKDJYO.4u(fW(1-[)U:rR@(\Lk/3jWVn9^GRZ!B9fA*ZkSD*_SPF&Jqd(c65S&!e" +T9G_IbK[8SOflgI[[NG]f''i3QC=GL_:S;Yrr;olqu?]qp\tErs8W)srVQTor +rr3'!s8Vuq!<;op%fcP,qtTpXnE]9!iSE5@rR_&"s4@;%s478%r7Cu$q:>W!rn%2&"52>ZfD=.k +f)XCtfDjG!fDjM#f,!#jf\"g.f[nd.f@\a-f@\^,f[na-fDaG&fDaG#f*p"f)!u7f%8R*e^iC+f\"m3h;72SlL"*5q"t!frr2rr!<;op"o\H"s8N#GrrW3"s8N"/rVlcp +rVZNdp$qD1hV5uFYKGDMhVmMVkNV0ii8!2Hgt^iGhqm/Hk3;'jj5SqLbGqSbf@JO'e^iEhr*MRhV-cFjl+qHhV?JeUTi(sf%9oP=P:fpV81L8jQ5I`j5f=^i8<;C +hrNhVioK4\h;$oGi8`(Eg"kQGjQ#:[iSWMHgtprGhV[AUinrbXjl,(ShSlIm^!bK]f%8O' +cbQKde`#HFlKdEln*&cgh:^E5hVm>Jj6Gmii8X"ch:U/qZ`qU7p&"Xbr<*'!s8Mrrs8E-!s8W&s +rW)orrXSl*rStScR%1,'rr;los8MusrrE#rrr2lrrX\o#fU7brQBAH-q>UBlrVl`prVg(#s7"+" +PJ4l"T$Hoi^SRa,UQM&!n\CQXXN&iIaek#neBb4bT>9FLdB/IkYLM=5Nh"_m_PFZbh;->WOH[63 +d]&V0^=C/kMl>4nm,PX;QGVChQ'S>`gZ\/'rr)utqu$Bkq>U^!s8W)srVlfqs8N!!s8N#Os*t~> +rr3'!s8Vuq!<;urs8Dus%/ftrp@Rk?kN1[ZgtM_Zrn%/%"4u2Wf^dYnec=>"ecOISf)F;$f(7Jp +f[naQfE0[Wf\>$Xf_$f_a8; +f%AX+e^rI,f\"m3h;7/RlL"*5q"t!erVc]us8N#ts82css8N#Is8W&us8N"Es8N&urr)clq=aIN +mH36X^mh"*\[o>^\@T;b]",>[]=b\c]=PJZZ*V$T]!f&V\@AZ)RD.(uf@\d/e]YS'SZ0$-^:q(a +\@K,Z\%9/XZ*q*M]"#,O[(O,_ZE^pNZ(RD_bh1S$f%/C(`hAd![CNlY\%&rY]"5D](UUHU\[]&T +\\#AXZ*UdD[^s)XTU)IhdJhgJf[nQpZB1Tb[Bm?R\?rTM\$`QJ[CNfTZa@0M\@TA_[D9Mb]=b;8 +S%$Sif\+p-e&o,"YI(dN]",A_\[T#T[C!d=Ur)-aqu-Qor;6Hjrr2rtrWE-!s8Drr!<)or% +fH>)j1_:XT<$H?s8;iprr)ls!<)lqrr)lr&,Z+RR?",0Og3^;rr2lprqufpr`oF%nAq,`^;6/-c +LU59Vl$SmPF^J"_OHmpaOf=mViI\+dB8t4_;a_.YE>!Qf%dZpT%WhUVRb"0hp8HgQ+Pr'Wg]g#f +>aA@Wn?_,jL^PA`8/.oR&IgTkj\HJrW<&qr;?Qirs/Q's8Muqrr2osrr*!!rr1XOJ,~> +rr3'!s8Vuq!<;urs8Dus%/p%tp[mt@kN1[YgY)PX"4u,Tf]Lccf_O/!f^m\pf^[Snf_a8#f^@Ak +fDsP&f`'M&f`'M&f`0P5eAeYYNK^'GcdgOrf@JNGf)XCuf,<5mf%8R*e^iC+f\"m3h;72SlL"*5 +q"t!fr;Hj!rr2rtqu-Zsrr1OLrVd$"qYC!`qYgBlIf9*8o(2MCkM4OkJ9ls%I!0OKD/F0-DfB]< +G'%kNG'%bBE-?MNG'87aLkg83[E6\Cf@np/ag@=_J;8]+H#$u'BPD*mC2IWqCN"68FE2;BI=QWe +G_1a+I!h@:sLnB5)'qCiFB4BkM1! +D.mKpF*;YOJ:rK6[G:BPrr;ooqu$Hms8Doqs8W'#rVuorrr)orrr*E*rr(ljURIdSe,TIFrVlfp +s8N)trVlfps8EQ+pXkmoV3[7Kh"gsKrVc`ns8Dq%rVuB.S"_ +^t\)BqYpHqrVQNjrqZR!rr<#trVc`prr;us!rr9!gAc[~> +p&>CfChW!SSh;.)RhqHuFi99:Wg>CrNhUpN:gWm:+\_?3,jPo4\jjL6) +[`HtRioB%ViSrkThqHc?k31g`kNLp\g>:]BgtUH*[Ag^_h;m\YjlPFXaeuMmd*g_-hqd8Rl/gm_ +jQ>IWf\-8Z:Yt'cg>L`5eC;UI[Ed[ijPf(Wjkn4saO8Sdf%f0AiS`VMh;$`h:p]ArnnRPki^p[h<="ReBc%;Yg)D)qu$Ek +s8W)t!rr9!r;Z`p"9&5trVld+qYpHR^8@HoWR:\Er;?Njrqud,rr)fqr:SO*R(/iPYM8pQrquir +qYs:hs8N&eb+"L6d%$E9jO^W0XL4sjT%;r*Paeef`Q>cfM4M]#T:E.;q#Bp)S +p&>3ps8W)ts8N#sr=o2,q"OFOnF#W,kiV!fjQ#=^jlGLojTX`,jlGL_oAor3"6AS*jLjURj:CA5 +e$bm:U8kuak2YOajQ)Hbs5a4A$g6a]\@K,[]">Pa]=YPa_7[:f[^Wl\\[SrNYI(R%T#ojJjQ5Rej4MAUU9(l: +]XkM[]Y(ha[CNuYYI1aF]t1DL[(;[];q9h]%Q-&j5oC\g;9AQ +^;..\\[e`F]XP2Trj_s^*.SsHV1gq&lIfD44?bL"VV]rIKe\DuAKSZL#h^mCD, +q>UC&gmF,1e\@QC[G1TYs8N!'rVuosrVccprTO7arr<#trnma+~> +p&>3ps8W)ts8N#sr=o2,q"OFOnF#W,kiV!fjQ#=^jlGKfjV-_:jl>C\d'T@1TW#QYj5K(\jQ)Hb +s5a4A$g6aCi+*2EH#u@E--AIEH,o:F`qnNFEMh]Mgg]$f%]0Ek2kUQ^7Bn/M1^5!Chda&CM7aNe`n6f\trk +j:C8"[@WeLL3RZTCM[m,EHM/&s*4Qh5BhBtE,0?1DfKuPMh-)-XO,k_jlbgae?jgSO,8+!Ec,2p +DeWcqBl.^)D/ +p&>3ps8W)ts8;iqrYGJ1r;-3_p\+7No();?n+#r;naZ2?nb)JQnc/.]oCDJGo*+^VoCDGA]CQ!l% +.NfTgqKSVWNaG+o'lVJR.;$_o()>?nF?#:naZ2AoCV_Lp\F^arVl]mrr2ios8E3"rr2rrrR_)Lr +W<-!rr2q@rr<#trVlirrr;urr;66Zn^OS=_TgQ[f@\g2gYCT;f$r-pg#LrBgu./LhV[2Ce'Z^jY +I*0Sm-a90nF,Pm_6Uo+f$i+#hVd>Lh:UKBhV$]9?gt:95e]+qp^uOkNnF5o5mbG.EZ +GOo:gu74#h:g`Ch:pW:hrNbOh;dSPf@f*>h:pZ;d^Q6kg[+Ftn*f]0lI)]9aNDochqZo?ioT4Zi +oAtPg"4g+f@em3f\+s+b08)IZ+&BQnaPo5nF>bn`Pp-McI(7tgtpi@g=cJW8(lVMg"4j0g=tHAh +Up?/f>=Piali6an*]Z3l.!&Je_f-8jQ"hIkMFkGhVd;Ih;7)KhrEbPf@]!:dEg(SYcuC:pAFgdr +VZWrs8N#qs8DrrrVulsr=Jo+r8G>bT;8I4rVuclr;Zfqrqufqr=&`)qVS<@ToteYk5,)Vr;cins% +WLmrr;K0RZl.TV3%h+`hoQA_Pr]le_R3hR@0bHUmmR.V89L,T"*VOs7jm8Q`e]f]q(bBr9VJ/Y, +e4bR$X/GjP?u+WQNc(SY=4#rr3A`T89Mq]U,/"i;N]SrWrK&s8Muqs8Do[rri?$s8N#Ts*t~> +p&>9rs8W)ts8DrrrVuj.rVZThq"OOUo^hYEnF5o:nc&"Zo'u8DnceRSo'u8=oC;kL"7bsQn\"Gm +nI4pWmbGOPT;f'8kOS-@nX/k]nac8@nF5u;nF?&>oCMVIp@nC[r;$='`nF,i6 +n*T5[U7f$.[BR-IVQIA5Xg5IK]XbNN[MH?`]!8??\[o)P['-4$a6**or;Q]qs8Ms!s8DoqrVuiq +rr)lrs8WMZ5OOJg")S=mLOq>^?>V4+[;g:s8Qe,JdWZ`pR+SXPt7[H?AN +R]FZa^7V1Eq>UC%ih;72eA%HE]AWYfrVd*$s8W)srVuipkl1ebs8W)thuA3~> +p&>3ps8W)ts8Ms2r;HTnrVZTiq"OOUo^hYEnF5o:nc&"Zo'u7;ne:QanaGr5g:X/NVln##n*TZ9 +naW";'_1bbnaQ&FFE_kMH\mi9Q-81Lm-aB5mbl0\KS,2:H#IV= +DJsH0ASH*u@q]RpH?jIIF*W.YG'en$M1^\ff]_Ykn*B0#d\2AHK7J2iH$XURF)uABBQ%d/F`;,3 +EH,f-BlA$5G(,7-J:acJl0[g'm-E]e]7kZjJ:<-#GB%P@Dej**EcGr3Chmj(DJa3)C2Rm+H\[T: +S&ja\o'u>Cmbbm[RZiSREcQ&9E,T]9FEM\JGBnFVF)uGBDK#Mq,'S[#M1CYoh>rG<'aEc#N,GBn:XKntJK^Z5(err<#qrqufprr2lrrr;p.r;QWQ]qh +rr3'!s8Vuqs8VuqrVccqs8Duqs82imrqZBb!r;Wdp%eX_q=t$epA+a`]D;L%%/Kblil%afX0^"; +qY0s`R/$p\q>'g\p\Xacq$m2tqY^9irr2lqrr)cmrr2oqr;Hlurr2rsrmLfJrr<#rr\ONPs8Drs +rr)cio_."?Y/JN0dF?b"f[na+e^N!qcIUq-eCNI4g=k?:f[e^/cEF_>p%/1WGPV%%h8$/(cdpOk +fA#*9h:pH2j58J@f%K'CgY(? +f\YTDf\>HFg=Op.d^cKsiV!!=p\4@No@Kn>`6$H`hqH]7hW!PRiSE,8f%8O)eo'6reCN='ccaPS +^9"g$oChqOp\+=LhTR^:Mr]UYP>o?sP&QCaeDR[0;HinUc*V8^iqU8?'*rVZWL +TS]Yp\ +rr3'!s8Vuqs8Vuqrqulss8MuurVZWk!;cHb!r;WdpA"dbq>'FQs7lZi]_VU&%/Kblil%afX0^"; +qY0s`R/$p\q>'g\p\Xacq$$WlqY^9ir;Q]oqu6Wqrr*!!rr1FIs8E#uqu6Wqs8E]1s8W&qrVlcn +qY'U5V5(N1]=YZR\bil_\$NW\]!J`R\[AiT\@&cX_76#7hXU.0p\FXZldiJ8W4TaR[CH1H0"A*j +]XFoCXg5RNZ`gX@\$N?F\@AZ5T>Bjdp%eFXoCUtJSu&^$ZaI?T[Bd6Mrj5S4]Xk;HXg>LEZ*_*R +[BmJZ*h!H\$iQGZF.-M\@oPa\@fG_[C[Bm9L\[o;XYHG+9[C3NU]XP5U^9XN8bNnrtq"FLUld2T'ZF@3J]""fG +\[/QJ[^iuY[C!BO\%9,VY-GRM['R-DTVBEgp\k$gqu-Zsrr2fps8<*#rr)fprr)lr$iAnrV4sof +d/X.Br;QWpr:g1!rVlfpn'SM:Tt/tMr;?Qls8DpirVuE.R$Q+\\ +rr3'!s8Vuqs8Vuqrqulss8N#rr;ZWqq=sd]p]C9dpmCmVq#C'qo&.B]SuK!9lhL2PpmCj\q"aa\ +q"O[\s7lipqtg6grVZZorVQTos8N!!s8N#Is8Dp$rVZTiqYU6hrabm"q#(0lrqQ-1P(o'TJpr/s +H?XLSGBJ%OG&_YNFDYl8F`_ePI!^@#QBm2meEcMop@nFVkKTcPJW>Y=G'%bEEcc;6Ble-%B4u41 +I0mXk0:&p +P*(QMG]e.PF`r"SH$XjdIX?6[FEVgnF`_qXH[U[5OGT=:jRi0@p@n.>_NBG/Lk'f#H"h/?DesB6 +FEDPBDfKf*$bVP0cc`R_Pb +S$q)FrVY*AS$^\u]q(bBo[Bb*Q_1"HS!TMLj5$u.VT.&uUSc9.rr!;^To,kt\Wrc"iVEHLrVZWp +rVZZjrrW3"s8;lqs8N!!s8N#Os*t~> +n,NFe"98B"r;HQqr;HTnr/(CPr!r])pu]SnT<5HCo)JXdr/:LRr;QZorr;p(s8Muss8Muqrr)fp +rqu]ur;HTorVb.Dr;Q`p!WN,trr;q8r;-0_god]k_8OC:bg+MYcHXSWd*KhWe'cRheC)Xhe'ZLg +eC2=3[H[P_rVcZmrUf*cVlmq_cd'k`dF$FkbL5A,f@\Krf\>!-f@o!3eC2mj\Yc.AnG;nWrr2fl +ke3q"`mW;aeC2[bcHje]G0eXjg=4Kse_/U*f@nj'bK7f@YH,S&qYg4V_TL?Xd*0eb +f\+m,dE^%ef[\EseC2R`ccjMP`k]!]]&WJWqu$?dq"*OdZFS60da$4fe'cXic-F\aeCW7"d*Bq_ +cdC@td)X,F\Z<*an,)tX1&LtKp"mEk`6HZXh;6Z5hV-T3d*Bq`dam%#eC;smbKe_kcH4#9W2Rl' +p\Xmerr)forqcZnrW)oprr;p1s8:okV4jifdJs7BrVuinqu?]pqZ$Tp&-)V(o\R^:jRW6KrVlis +rVHQor`oF%n\glbb3RTWR&d3\ZHgn#OeUC_Ya(ikcd^Ca^V&+^`0QameFik +l2Lkbs8W)trrrE%s8MroN;`eS%fQD%k/O9jXg?4Bs8;inMur;Z`ps8W&os8W'krVuE+R[VCbeZ"q:WM6]E +e?>(3fANp$Tt8P!d`B29e`t& +l2Ue_!<<#ss8<'!rVZSQrVZR$p>j/fSZB'!`LOarqQnFQPTrVlZ[ +d\_JAMi*Q:M5/Vho_e[cq=a.(Y)S:%OG8+,G^4R\H[:$eIt3'!I!U'_H$LZ^Jq\]'Ko_1MSAOLb +qYU3ipZfkhL5:P5I"HljG("OUFDu,:rc/coEccSRG]e=cLkUSANJ,QCth8eC)FQ][c;cQC"c(p&Fm5U7/OBfsmEAdGq*WR&I^A`N>Sr[boiFR&.dP +^n.+;p&=t#f:%Z%d'o:5^Z51jrVc`ps8<'!s8W&4s*t~> +n,NFe#QOf&r;HTnrqlVMrr;p,rr;fW`i#N4[*8.ArVlbQrr;rrrXSo+rVulqs8W)srVlcprqcQs +r;HTorVb.Dr;Q`p!WN,rrXAc'q"E@=RA6mk[C<[E])TB4]Y1qe]"uA,ai2'/^;%Cp]"5;JQa#TI +q>U?ir;HBQ`MK?6\%B;e]tV1q^q@V:f@Sg!\&-5)`5fs?`PTI,\uVI"an#E,rr#OfrT_+gS#a'0 +]YD7p\[oJi^V%7uc-jq\a2Ps6`Q#g2]X4c;R\Idaq>L6krVQ<^fqtCHZad`a]XYSj`5TX3`5g*O +f$;1I^qdLhrjWcQZ`L($]]Ae]rVl`jqXig`Tq\m(]=blW^Dai"]Y2%o_T:'Oc,IE1^Ve79\$<9D +UReO5n,E5>qu$?aiP`.5\[oGma2,d>aMl$0]>)>,ai;67^q[Oo^W+:-\[/B5Xj-/*qu$ElrVc]o +qZ$Nnrqufp(B""%rVbcgV4XZiec,UEqu6WorVuosqZ$Tp&-)Y.s7u6Yr;Q]or;Q`rrVHQor`oF% +n&:upb4>#3Oe&5F^"1`?Q(cgn]U>>(i:Qm*]qi@#c`!M=c0kGn^mpdueChC$T[2A\KX&qhmFSe> +R^Cu)XHfX&gVK2;\a9=mr61=b\CJ +ir9#Xrr;'Y!<;Zis8TV.s82VPgAkVkTucWi`J)V50o`V50obUmd4=i:d!Grr2hFo\mHNQ(k4WWi;qoUo(#^ +Vm`t;\#,RhW2$)^V5C&^U8Fo^Q_;Fls8DrrrV?BU\X&>HUS+9UVPBiXUo1,dU8P6%YGnItVPgAk +Vl$5[S=5V0^Z5(dr;Zfqq"<./Q`$[XWi)JXR@U"ET:hpUXgbsNX/DnpUS4K]W2HMds.)6[ht$RA +s8DfhnD1U?Q(t:VVP^/aUnaZYUSXlfX0K+>X/)MfXL#+(SY;gIQ`JI%rr2rqr;#j7\"o\rT.6_9 +TVSQ`Unj]XVQI#$UnXW\V4jNVXKAFtU7I[JalrKsrVliqrVlisrqcZnrr2iqr>,>,pAOsM];2's +YgraQq>:0krVccrrqcX,rr<#trr;fbp&+ggrVZZps8Dfos8H:%s6mq#U<<&q\WNGWW4^a6[?mZA +lFi^Z^#/JYiOu&"iQnHqXj-;1lG/pWZdd[=R\A0bRte8ulgNN:U7A[Ng9-d?akak%P.U,]rVb', +Oh0/ZSYNsZqZ$Nmrr2rr"9/?#rP/A_~> +kl1bas8W)srVulsrJgdirVlfprV,ElV4Xipamf6)rr2lpN;ikUrr**"rr)lrrkJL4rWW?#r;6Hl +rr30$r;$-arVld$r:\L&I=H]ord&I,GBJ%OGBS4SDf'K6EcQ)6D/jZ@GC+sqIsIL8o(N%]s8Mrc +fWKmRJ:W/oEc#W0DJWiuG^"=ZD..=+FE;SKH?aX]KoCh@Pec_aq>LE-HVOE,]f;G'X(57=9E/JUWQbg[Y%3qYBmUm)Y3UgmWr&dd$8Q\"T;!i7Y5uVT@Q0 +Q]\lHs8DoAPE +o)Jah!<<&trquirrVc`n$2sf#rr2lrrr<#arW<-!rq??nrr<#.rr2j*rqbfuWM6N$bOYZ2rr&/^ +!rr9!q#CBn"98B"rVHKsrVZTlrr)Zl"o\H"s8N#Drs/N&s8N#rrr;oq$2seso\6[CStMkXV>dDc +Vl6VqW2HYsY-5+;Y,e\,XKAM"Vkp,]]B8k_rVcWjr:oR&Y+qegVl?SkW2cr"Wiih?\@f&DYHb45 +Z*LX;XK/D%V51EFo)/Car+Z$'lGoioTr4`bX0&G$W2Zo#Wi;nu['-R8YcY+4Y-"k/V4O3IXNg&* +r;HWmqXsI8Z_OCoVQ$SoVQ-l*YctI?ZE^gIYGnP(XJhtmWMlVfTVAL+k4e]Kr;HQjp#X/iStr3\ +WiN5%riB&!WiN5%X0K+:WiE,#XgG@0USaiYU:8bDqYL0gr;$!GbIF^TW2?]#X0K+UWts8W)trVc`rrr2lprqufqrau3/s6dmtR`>1$`/fkDXj#eVYDek%p!0%`U<)?Zb++9eg>]rB +S@-`!`M8Q'\i9fVt%(\'DdZMkA#HhUST\SBg-0R@q:Qq>^Hmrr2lo +r;Q`rrP/A_~> +o)Jah!<;ur!<;clrVlrus8S5\rr!0&qWGnuU9:lIoD\^hrKdEas8N#ms8W'#s8N#rpAY*l!ri6" +q>LHqrr1OLs8E#uqu6Wqrr2rt!W;iorr;p?qY&XFQ^=,1R[KM.QC!r*R@9J.Q^O8.R[oh3R@'>/ +Q^.N9'"$]lq#10gqt]jF`h\odQ^F2/r0SCfR%9Y3SsGG)R?Wr$QC!o$Pa@o0T.QC+&(P*ME6bNAKpr;Q]np[d(?SY)=:R$EenNfoQf +Od)/tQ^sh=Q'Ri*QB[Z'S!f\3S#*s]o_87]rqlN^i4kkJQ^7W;17"2kQB[W!QC!o$R%9Y2QBdc) +TUh:1R$sA5\(L9Kr;QWlqXWL[XIbcDP*_T%Q^X5*rg!YSS=Q#GQ2d3NPn'1PSXGk3QCbJ4lM(2R +rVlcrrVZZms8DosrVZ[-rqufrjh%7VU9E)FrqlWjrVulrrr<#t!<;op!<)lr!<2urrVl`prr-O0 +rVu<*SXRRor5=YTQ`\KlfWgI)g@im`MPA/NlH5WQWS6@JTq&O;gr6%GOK[-c[$700gQd8mfBM,) +T9ktRj4^PuT"34bSrKJbi8E1eLn2lQ_3pt1iVENQrVlfpr;?Qos8B_4J,~> +o)Jah!<;ur!rr8urr2oqs8E9'rr2rtrr<"]rY,80rVZTgji+*iX0Ke8qt^3jrV`,_!rr9!q#CBn +"98B"rVc]srVuorrr;uurlY9@rW)usrW<&rr;Q]prI4VUPOJKH?aXYG'.nJF*)MF +EGoc4BkhErAo;R-F`hnUJ:rf]hXpUArr2lpoAI9HKReGpFDu#2DJj9&B5MBuE+rm%F`DGCFEM_J +G^bF*OJ^7jqtg6hr;$-N^m^"0Is6!YH$==LEcZ51!c +q=F%%U5t=hJ:2`dE,g#EF`_\EDesB5C1V*rDJNs%E--;MIuBf-iqE6IrX&Mmgp`ArJ9uN`rcA-_ +r,so>EGKH4Df0K5F*;nTEH?MXJrd"[mJ6YYr;?B[g:3Z1Is5jRG&_YMEc,c2CMe!.CMRa)rc&Bf +FaJO`I=R$6X3To#r;Q]prVuiurVlfos8DosrVZ[-rqufrjh%7VU9E)FrqlWjrVulrq>UWts8W)t +rVc`rrr2lprqufqrau3/s6dmtR`>1$`/fkDXj#eVY`5%'p!9.bU;u9Yb++9eg>]rBS@-`!`M8

    ^Hmrr2lor;Q`rrP/A_~> +o)Jah!rr9!rr)lrq#(r]jVPpJnW268aV5UQ,aku[cqu$Ekq=a.,`jrFX +Vl$DkVl$?jUf++cP`1WULnCZFWMcVkWN)npXL?1)mJ$SXs8DigoAdluXJVhkVl$;iXKAP*YcF=T +Mi`p`V6$YoV5L>kUSXon^=;KDq>1!frquKSe\ADkWVi[rWN)rsV[TMsP)k]]Oe\nQUSXpgWBdPh +][>m4p\Fdfrqc6Le\\YoW2$5gVQ-_qV5U>dQB7)dRA?g^W2ZetXK&.pW2mGPi:$F:qu-Nlr;HZq +rVlfos8;j6rVQ?^p%S1Qmao"GSY)k-r;QWnq>($irVcQl$NC)*rr)cns8DlnqYpEmrr-O0rVuB0 +R?,5_s3d?kP.0?>goZ?sg]$?:M2e12ZCZi7]]SqBWfijNYG.,2OL7s\"JnPXL"[]Oh0iJ^QP5*j8&`SrVlfpr;?Qos8B_4J,~> +o)Jah#64]%rVlfrqYgQrrr2`n!<2uts8JAbrr*B,qrl)#UTUuJo`+pjreLOJrql]srr<#orW<-! +rn%2MrW<-!rr2itrr<#trr<#urVuj/r;6EhpZ9Q.Y+V>WS!fY2R@4&C7[TU7Ss>"YK7o/LS!fe8 +R\-I\\^9[8p\k'gqt]jIe%)ELR[KS2R$sM6R?ikdH?=@eR\#q4QC!r*Q^3r*TW#9>hX^O?rr$d2 +p?UAJZDs[gR$jA0R$jA0R@BIqI=?9_O.2T,R$Eu)R@KnK[`I7ip&+dfrquN^il&$sSXGh1P`h;u +QB[Z$PD=F-I=6j9S=5k5R@TnC9kqt0$t\>l?qR[BJ/Q^F2.QC!paR#liFI!:.* +R?j)&R$jJ:UoLuQkOeQFrr;upo]OZ8X.l/PS"9PJs-="\SD[Q^OAUEmrVlisrWE3"rr)iq#6"Gts8Dln +qYpEmrr-O0rVuB0R?,5_s3d?kP.0?>goZ?sg]$?:M2e12ZCZi7]]SqBWfijNYG.,2OL=VX0\R\Oh0iJ^QP5*j8&`SrVlfpr;?Qos8B_4J,~> +o)Jah#ljo'rVlfrrr)Zl!rr9!r;Qcrrr<#tS,WTis8W&sr"&c%ji+0kWNXD4r;$?lrr.cSqYgg" +s8W)srVlisrl>'WumT8n_`LPU_?KnP&/Jq/E)Jp1d2?X[Yp +J:WH1M3+.$Z-2D+qYgEnrVcHQcEa(-N/3.:I"$[!I<]X>>#eX>J;/`.JqJ`/K7nu:P+/Jfg[P%8 +r;HTip#so;Vjrp*K7no1K7ni+IoClBAQrD< +o)Jag!<<&ss8E0$rVcZlrVlip#lXc%rVlcprr;uss8SGbrr!<*r92/#UoUcDo)J^grK@0[r;uus +rVZZjrr`6"s8Drp"o\Ats8W&f#b\;\$rcR\%&lPZ_rtFLl/"B^:C_`]=PM[ZaI9Q_9^s% +nbE"[rr2cfn)W*B_7R4g]=PM^]=PM]\?D3WObJXg[C3QR%(a*`]",Ghak#YFpAP!i%K-"nlIj@t +]=GMa]=PZS]m7B.\>>4AO,KI8^:Ltf\@]8X\A-)5iU6F8r;HWmq=En/d`&l0]">Pa\\#Pf]"5G^ +X-A[.M3kQ\]",A_]Y;(n_p@6-o_87^r:p'[mGZL3]t1V[[^EZX\$ifXWJuCRJ!-eB]t(bf]=b_b +\\?#,g?A,%qYU3hrr2rt!<2iprr*f8q!$S_ai;?9\[&36ZEgI,c2Rb?r;6BirVlfos82fqr +o)Jag!<<&sr;QWo!ri6"r;Hfsrr2rsrr<"brr2j*rqu!!Whcc&bk(l5s8A,[s8<#urVcZnpAY-l +`;fl9!rr5trqm'#s8W&rrr<#tqu$itp?UMY_76n[Z2Us+YlCmRYd:^DV1N]2I>t#+ZEga@[_'K) +hs9k,rVlcmq=Eq.cG@#qYHP51ZR<#ZX.=rhFEa%X[]Z[6YHY77Y-5+=^WkTunbE"[rr2cfn)`*= +]X@aD/$Q1[ZEg^=Z).6YdV?ifB;Ysqu6QmqtK[Ff>kS3Yl:aSXKJb0XKAV% +P^[n.Iupb;YHY45Z*CI=]>N%Sme$;NrVcWhoBP,U^pp]LY6D&0Xfnt2riQL"L44]#Ml*`XXu`bk +['mN\cf+]W8@RMi52=UOHPm(`T?gno[UFBOHQ33U8GigkJ3ds +iqCj$R?NbrXh1X0]A`23^S7'mbMh!SMi=-pW6",upr]D9cKtH-rVZWmq#8,0J,~> +o)Jag!<<&sr;QNl#lal(rr2lqrr;uss8SSf"9&5ur;QR(r;,QoWM-5la7&s&rVlcoPlC^]!ri/s +r;QNlrVlfps8N)taSu>@s8W&ss8Drps8DuqJ,TBHs8Dfcl.F"bXJi%pVPg;fUnXNUU84W]OD@p' +A9Es*USaogYI2*gh!4V2rr)iqrV5a7c+UHaVkp2aUSX`UR"oQi?Xe_dW1p#]V59r^V5L;q\&R(_ +n+ZbYrr2cfmc)U-ZDsasUnaTVVPU#\TTaS7DIdI:R\6CKU]72BV5LN1b1PqJp\k-krr;ojlIO"g +ZE:+'UnacaWMl\gRY>NeBkVdZU8"HWU&Li$X0ojoiplpFs8Drqqt94,ah"^Vrh^4&VPpJmVPg;e +OE"lFA9X@=TgPQLV5UGu\B3Rop\b!hr;6KjnDDI$Y,A%jV5:)fTqA$PO)ec=@<7C!US"0OTq\3Q +Uo_&Bd,OKdqY^?mrVc`qs8Mlprr*f8q!$S_ai;?9\[&36ZEgI,c2Rb?r;6BirVlfos82fqr +o)Jah!<<&ts8W)tr;?p#rVc`qs8N#rq>LHqrr2`n!ri6"r;Hctrr0&"rr*B,rTV>%UTC`CoDedh +rOMt.rW)utrr<#urWE3"rr;oqs8W)t!rr9!q>Uj%s8W)srVlcorr2rmrW)usrr2isrr)Qi!rr9! +dJs7F#QOc$r;?Nms8MusrXAc%p[R\8h9sTobfn9.c2Z!jcHjeb`Ku+1Mjh,ud*Bq`d*L4ukO%p; +rVlfrrV,jIj4`#.bfe8VcHXMPa0qD#Q'Sf)dEKk]dEp.]b0/#Re(s3To_SOcrr)]goBP5_c-+>V +cHOJUcd,S8bfdbpQ(*l"Zc:).b0\Vbc-+G^e_TT`p&+jgrr)ZcmcE6Td*L(cdEp7dcHjndaKh+m +Q]\/he'-._bg">PbgY5'kO8-Brr;roq=X.:h9sQlrQZ#"cd:"`cHOJDTUVO;Ur:U*d/MAkd6Q(- +gZIqqq>L?jp\=LRlf$FBcH=;OaNVrRbK\ACOb/(7Pd/H[bKS5Vcd0n_db*@8m.:#Lr;HWps8Drr +s8N#qruD":rVlE2Ycaq&VP0NIRA@6qVmP1VrqlTkrr)fprqufrr;clsrVum%r;-Blrr)forqZS% +rr)irqWZ;EiVicKhosL3q#'U7bL5_Us8VcB]!&?Pea`\>rr2`T`NHG`eC2e$nFGDYea +o)Jah!<<&ts8N0!s8W#r!<<&ts8W#q"oeK!s8N#krrW3"s8;irs7?6irrE&2s8N!,s8D3%Whcc& +bOki5rr'D-s8E#urr2rts8E-#rr2rsrr)lorW<-!rqud(rr<#trVc`orVlfrq#:LHqrr1OLs8E*"rr2oq!ri6"rr2rt&cMY*rr<#tqtBL@f[.shb/_O"aT':@ai_]I]8h)bK9`a^ +bK.cJbg"SlkO%p;r;HQkqXs:=hU^&ra2lEIbK@lC_6/fNJqU&Fbf.N@b0'_*'?J>@e(j*Qo_JIb +rr)]goBY>abl5ao*oa2c3@`l6*JfAPo`pA=jgr;-6^mH!$Lb0%fGa2Q!9a2l9@a2PEONKK'e +]ZA19aiDHEbg"Slkj\6@rr2cgq"XFFhUKlqaN2EAaN2B@b0RV\Jpr32XN8Z,aN2BA`Poj?e(`pN +pA4aes8W)tr;HTnr;Rc8rr)ifb-8%IVl$/XR$jbXZ)=t_rVl]krVlcorr2rts8EQ/rr2lor;HZq +r;-Blrr)forqZS%rr)irqWZ;EiVicKhosL3q#'U7bL5_Us8VcB]!&?Pea`\>rr2`T`NHG`eC2e$ +nFPGYfC8h +o)Jah!<<&ts8N0!s8W#r!<<&ts8W,u!<)ip#QOf&s8W)us8)`ps8;irs8N#trrE&3rrW3"s8N!7 +s8Muss8;clr;HNU`2K?-XiBi.qYpNorkAF4rW)uqrr<#trr;uurqcWprr2rtrqZR%rr<#trVc`o +rVlfrq#:L[,a4/f$mIU#Krr)iqr:f[@ +gXOHg`VmY%_o9U5^pTYZFF8=o\AQ,$_ns=-_8agRip#t.rVulqr;--Rin)Do`W!eM_o0O5`59F/ +^8Zg3HZtIT_8=11_o'F4aNiH!n+Q\ZrqcHgqt'(-ccF&@_8=%,`PTC*_5Mm'Ci+`s]YhIs^;%J! +_8FCBe_K?Vp&"Ra!rr9!r;Rc8rr)ifb-8%IVl$/XR$jbXZ)=t_rVl]krVlcorr2iqs8;rtrr)ls +#5n>rs8MuqrVlWm@/g-(s8)!*`Spdpp#"!@kkP)Eg<7q1rr<#ke[hrg^=DcRs8N#nji+C,`738_ +hXL-lbLZ.^qr#8mWjLRLf>uJ,q=NUb\\d;#q:`3V\\m1qs8VuTcI:kIrVulqrVlfrrquourVc`q +rr2rt!<2ip!ri6"rr*!!rr1XOJ,~> +o)Jah!<<&ts8W)tr;?furVc`qs7ZEns8N#nrrW3"s8;its8N#"s8N!,s8M<)X.ui&b4GZ3s8BM. +s8E#urr2rts8E-#rr2rqrr<#trW<-!rqZQqrr<#orW)uqrr;otrr;us!<;Tg!rr9!dJs7F!<<&s +s82oss8Ms)rr)ckq"+%Dk24qHrn%2&s4RD'$eEkYgsMpWQBRoSe,Iu;g=t?;k3r!>r;6Eks8;]d +nET)lgY(30f%9oR37bd4Q^X8Ph;-]:h;6r@g"G!0gu%2ZoD/@bs8Mrlq"=("=#qYpKm!WN&rrqufrr=&`)rVZ]qrVlcqs8;cmrqZS#rr)fqrVH9_ +qu?ZnqYBp`rVlWcpA4aerVcZhna5i'pdqXNq>o(r4To_SLa +r:TRLoCr4^q!d_@nbE.arr2`fq"jmds8Murrr<#tr;uusrVlirrr;uurqcWrrr<#trW<-!rn@C&~> +o)Jah!<<&ts8NB's8W)trVlfrrr2rts8;rsr;?]srr2Wk!ri6"r;H]roD\di!<0Y2rr*B,rT_M* +Up%)Io`+mhrOMt.rW)utrr<#urWE3"rr;usrVuco!rr9!r;Qits8Voo!<;rqs8<*"s8W)tqu7-) +s8W)trVlfprr2rsrn%2MrW<-!rr2itrr<#trr+]dacq$f@AI*h;RSco_SRdrVQKiqXj1;hV-c[ +eA%T=P_u-Sf@JO&eCE4*gu7JcoCi(]s8Munq"4"Bf@SU)e^W.%hoD:OP)G[6e_J^*rmhG, +f@JR/j6ZF5qu-Nos8N&rrVl`p(B+72rpd:XSZ&ZmYHY:8Y,n.ed.7&4rqulsrVc`qs8W&us8N!* +r;6Els8Drqs8W#orVlWm?N0p%s8Dfgp\Y!ir;-6aqu-Nip%J7\rr)fnq!mb@o_A=_s8;foqt0:E +pA"CVqY^3bq"t!frql +o)Jah!<<&ts8NB's8W)trVlfrrr2rtq>LX!rr2rtrr<#prr<#rrW)utrr;uurk8=5rr<#trYY\7 +rVuoqqtpq#q#16lrVZQfoBYAhf\+p-f%/C&f%&:"da#=_ +JV/B;_q!Dl%FrqXf%8U4jm;O1r;Z`pq\f5%mcN?Zf@/4!eCN:'e'ls_ObSO>O0I!armUns$J3tb +g>:fNmIKuIr;Q`p"9/?"rqud3rVlcpnZn@LW3*2*Yd(C7XIQ!2o(r@br;lorrVl`ps8Qp%A4\rr)Q\o(;_VrqQ!NnFHASs8N#np\=U^rVulqrr2rtrquotrVc`q +rr2rt!<2ip!ri6"rr*!!rr1XOJ,~> +m/R(as8W,u!<)ors8<$!rr2Ees8E*"rr2`n!<2uts8K8&rr*<*rT_M(Up.,Fo`+gereg^Wrr<#s +rVZZ/s8W$!rr)fpquH]orY#2,qYL$_p[dk>kN1aajQ5Lck5=6`jQP="R\cOObM_FAj5fFfl0\*; +r;QZmrr2lor:]RDl/q+,j=]KRkiq-IU7e9O_CPZ^[>DS\Wq +m/Qq]!<)ors8<-$rr2lps8Muprql`qrW<-!rqZQoriH/!rXJi*r9MM*V6RAKp&Fpfrr0>*s8N&u +"9/?#rqufrroO.]rr<#srVZZmrser,s8DoorVcZmrVuipfDkmL!rr5trqlirs8W)ss8N,uqu6Qo +rX/W%q=Fak3(pklL"-8qY^9jrE9$qqt0FJlKIEok2k^cj5T+[k1R27S!9Sa +h<*q_j5f:]jll!uo(VtXrr2iorVZKao'bl+jlY^ejlYahjQG[VZ]gQEPca'6i8j%^j5f@bkj7j4 +q#(-krV]dpq"4%?kih-hk2kXbk2k[ek2X^aS=YtEdc9ELj5]4^kNVC(p%\F_rr)irrVQ?\n*B6$ +k3(pijQ,F`jmLToT:hUH^uF\@kNCpdjQ>Rbl0e0=r;HWo#lXc%r;?Qorr2iqs8F#:s6ZnJR%^@P +Uo(&cU8P-1lM^SXs8W&srr;usrr<#s!<<#r$iKu&rVccqrr)cmrVc`ls8N#trVccqrVccqrr)j! +rVZQlqu6ZqrqulqrqHEmrVc`srVlNj!<2lq!WE#prrW/srqufqrWW9"s8W#prVcfsr;Q]qs8N#t +#QFc'rr2rsrm^su~> +m/Qq]!<)ors8<$!rr1sX!<2uts8KD*rVlip&GuD&kJa9jXKBG1rV?Hmrr0>*s8N#ts8E*"rr2oq +s8E#urr20^!ri6"rVcZn^]+K9s8W&pqYp9lqYU6jrr%f7ki_0kioB1cmIBf@q#16lrZ;%4oC;>; +kiV!ei8ESSjlYgie?=dbP)?0rmH*^%lMg#\kiqO*oC_kSrr;usr;$'VlK@@0k5XXDk3(mfj5f7X +`L2XGMknb_l0@Kqki_*llgOEC3gqu$?ep@@V7k2bRakND'nlK70mc(1/eP+KDJmH3TpjlPao +m-F$*n+-2Jqu-Knrr2lprVl`ps8F#:s6ZnJR%^@PUo(&cU8P-1lM^SXs8W&srr;usqu?Zprr!0& +rVccqrr)cmrVc`ls8N#trVccqrVccqrr)j!rVZQlqu6ZqrqulqrqHEmrVlfurqu`lrrE&ss8W&u +rVlfurr)fmrrW/srqufqrWW9"s8W#prVcfsr;Q]qs8N#t#QFc'rr2rsrm^su~> +o)Jah!<<&trr<#ts8N0"s8Vlns8N0"s8W)t%KHG,s8W)us8N&urr<#rrW)utrr;uurr)lqrr;uu +rlY9@rW)uorr<#srX8c'l,p''Ycu.=s82co^An64!<;3\q>UNqs8Voo!rr9!rr3'!s8W)ts8Vrp +s8N)ua8c2=!rr9!rr)lr"98B"rVl[$qY^9dp@\"Gn*fcEnK%)dmdK]9o]*3KXeDfImI9W4mdp,D +p%S=]rr;utrr*u=qXa7InF,l;o'c)?o^'i%W2cT5oCh\Eo'u2;nF6GI%.j2gr;Z`orr2rsrql]g +:[m`nF,>KUnO6S`o6=SmdKZ9o_%bCo(VtWs8W#qrr<#rq=jUTo'u8>n*ff9md9Q8 +iP;%WXe)ofq!IVBnEo]9naZ;HqYpBnrVulr./`o8p%._BmdTf;n+#r;n*oi7f<;*RT@nFQ2@ +o'u8Ap%J1Xr;Q]o/,oSIqtTpXo'l,9md9H4oC28Fg8CR;SZBouoBu);n*]]:o^h_Jp\Xjcr;?Kp +s8N#nrrrB$rr2?$rMTXl#cOW&^=DNDrr)iq!<)foq>^Ko%fcP,rVlirrVlirrr<#tr;Z]o!;uip +#5nArrquZkrVccqs8;lq"9&5trVl]prVlfrrrE&trVua!r;HTlrVc`pquZipr;QQoq>1*gs82`l +&Gc2$qtp +o)Jah!<<&tqYpWrs8Vcks8N)uqYpj#s8W)us8N&ur;H]roD\di!<0Y2%fQD+s8)$(X/oC;;:0h +s8Dus%KHG'p\4:Lnac;CnaGuGnL*>2W2,u_b2r0dna5c6nFH/>p%eI^s8W&qrVc`nq=jUTo'u8> +n*p>I)Y!=ehS#MQXe)rgp[%G?n*]]9nac>Jqtpo'k;7UoBoj +h!OS#nF5u;nacAJqY^?mrVZTms8Dfhp@IkFnFH2AnF5u:nG1h +o)Jah!<<&tqYpWrs8Vfl!rr9!r;Qits8Vrps8W#r!<<&ts8VWg!rr9!jo5D]s8VTfs8N0"s8W)t +!<<#s'*%t0r;HHR`i#N3XMXK+qYgElmJ[1err1FIs8E#uqu6Wqqu-Wpr;QQur;HWnrVulrq>UNq +s8Voo!rr9!rr3'!s8W)ts8W&ss8N)u`W,o9!W;ioq?-Wmrr;oq$2sl$p[n+JnF?&Jo)J;*o'u8A +o^MA*Vj*mAV:P))oC;ACp%.bEoD&1[rr2ilp\=L]o-3bsp%7eEo^V(]S=,b.^[Usfo(;M@md]uE +p@\.TqY^?krVc^;s8;Wdq=O7Mp%J+Oo_%qNo'bMJTU_:A`oQacp%%_FrpWtWo_A7Xqu6WorVlip +p\+@ToCMM@m-F*0o()GDh7/f;UmSCRq===Up%.kMo^qkQqYU'_rVlcprVH<_o^hYCnFH5DoCVVC +n+#o7d\W>'R'>H;p%SIZ0D+i,p%\=ZrVl`lqu-Kjq"F@NnF,i:o^qhMp[[hJfV=t/RA\-pqXjIR +o()JJp\jdkq"agbr;Q]orV$6prVulrm_Je!rh]t"VQIS_lM1AWrr)orqu6Eks8EN.rr)fps8Mur +s8N#ts8Mrrr;H]orr!'!qu$Hkqu$Eks8N&rrr*#urr)fpquH]prr;uurr2lrqZcusrVZWmrr2j$ +rr)fnr;6?frr)iorr!H,qYU6ir;?Nkqtg3fs8Mupr;?O"rVlfor;HZprVlfqs8N#ts8N#qrrW3" +s8N!!s8N#Os*t~> +o)Jah!<<&trr<#ts8N0"s8Vlns8N0"s8W)t'EA(2s8W)us8N&urr<#trr)iqs8N#trrE&ss8Drs +rrE&@s8W&us7uZos8Dp)s8)!(Yc"Y,`q06.rVjP2s8E#uo)AUdq>U3i!ri6"q>LHqrr2os!ri6" +rr2rtqYpNp!<1%=s8E#uqYgKprr2rrs8;oq"T8/nq=jg^s7[3%p\4CUpAO?aSZJQfg@Y4:pA"L` +qZ6Wnrr)utrr2oq+T)$2q"XUYqYL!_r;#m1WiN;#c1q52q=sa\q=saZq"apd!<)ips8N?'r;6Bf +q"OO^p+Q18q"aa[p?08lW1^08lLsuGp\4IYqY9j]qu$Ems8Drrs8W&srVQEcq=sa\q=ss`(A[af +`1j*8Uq--sp\=OZq"X^\q>:'erVZ`rrr2rr)uTU1q>'g[p\=OXp@n@Xp\*FMX082)jn8BEq#:'o +q"jmcr;HTnrr!l:s8Dlnqtg-`q"OLUq"XUVq>T?SU84<[cL_#.p\sq#p\=RZp\Ojer;?Nlrr2lp +s8N#nrtYM4rr2WNcc=#Fb0JGdg>M8fq>UEmrr)oqqu6Ek!ri6"rVd-'rr2rtrr2rtrqufprW2uq +qu-]trVZTmr=]&.rr2lrs8Muqrr2lpr;HWos8;irs8Musrr2j.rr)fprVc`orVZQkrr;urrVlfp +"8r,srr2j$s8DoorVccqrr)iq"98B!rVld#rVulqrVlfqs8N#ts8N#qrrW3"s8N!!s8N#Os*t~> +o)Jah!<<&tqYpWrs8Vcks8N)uqYq9/s8W)us8N&urr2lqrr;urrVlfpr;Q`p"9/?#rk/7@rVlis +q:'er;QZnrr2j8rr)`jq=saZq"jdZp\FRObbh88T?-d'p%S1RrqHHfs7uZk,Q.N= +rr2lqs8Mupqtp6cq"X[\p\=OZq=s^J_Q0]1X3U&*q#:$fpAXjkqYU3hrr2cm)#X4(p\=LVp\4LY +q"OUZjhd^fZ_P)'rq63`s7lWi')VV)rVc`qrr)iprVZTjqYBp\rV6Ee)>O('pYN9WYFi8bp%J1T +p\=LWq"jpdrVlirr($b&Gc+rp\4@Vro'rSV44L0o)8F[s7ZQir;Q]qs8W&srr;p! +rr;usr;RN1s8N#kim5Zaa3)]Uf%T'IoD/CcrVlcrr;6Kns8W&us8N#ss8Dp's8N#ts8N#ts8Mrr +rVcirr;6Hqs8Dlnrr!K-s8N#rs8W)srVlfprVZWnrr;oq!<<&ss8N#r!ri/squ-iuqu-Qprr)fp +rr2lqrX&Q&rVlcnrVccqrr)iq"98B!rVld#rVulqrVlfqs8N#ts8N#qrrW3"s8N!!s8N#Os*t~> +o)Jah!<<&tqYpWrs8Vfl!rr9!r;RT4s8W&qr;HQkrVuosrr)iqs8N#rrr;rfrW<-!roO.]rr<#f +rrLHqrr2os!ri6"rr2rtrVlis!<0t;rVcirr;QQpr;HZkrWE,sqtgp\=R\qYp9sqYU6jrVcZjq>1'c)u'1*q=sgbq!6"pTqe-up\jpa +qYBs^q>1!cr;QZprW)oorr;m;qtg0bqYU-dqYU3eq=s^H^87WqVT\9!qYC!aq=j[`q#L-qtg9iqtBjbhl36@Q_r!t +s7uHcqtp6dqtg*ar;?HkqucosrVcHi(&e13rq>?ta2Q*AcI1:ti9Kq0rr;rrrW)lnrqZQqrr<#s +rX&W(rr<#trr<#tr;Z`p!WDrnrWE3!r;?Qm')_e/rr)lsrr)fprr)fnrVlfrr;H]rrr)lrrr!N0 +rVc`prVlcpr;6Hls8Muqrr)iqrVulsr +lMh+gs8W)ts8N#ms8;lqr'qu-HY`h]H:V7ua)rql`o!;uip!WN&lrX/])rr)cnrVZTlr;QR- +r;HNiijPqmTXa7_qu6NkrVcZlrVc]qs8Muts8;lpr>#8-qu-Hhq#16RYGJ(cX3gV@qu$EkrVR-% +qY^?lrVZTmrVuiprr2rtrqufrrXJi+r:]O@kN_I(o(MnXqu-]trr2lnrqufrrW)uqrW)urrW)ut +rql`orr;ourqu`orrE&trVulsr=/c(r;HTnrr)fps8N#rrr*'!r;HTopAY*j!<<&trquutrr2lp +rVlfpr;H]prr*3%rr2rtrr)fprr)lp"9&5tr;HTprVlfprVc`qrrrE%s8N#rrVcots8N#Os*t~> +lMh+gs8W)ts8N#js8W'"s8N#ps8W'-s8N#rs8W&srVlfpr;??gs82uts8W&2s8;j'qWZ/)Tr4p1 +o)JXdrk&41rW<-!rVlfrrVHNns8N#tr<<,trVuipmf*:drr<#trr<#t[f6F.s8W)t!rr8urr)ut +rr)`ls8Duqrr!H+r;6Na[%"1qZebBSrVZTjqtBskrr)fprVZTmq@NW%o$OP>Y,BSArV?j:-r;?HgijPtoTXX1^ +qY^3dqtp6er;HTkrr<#srr)fqr"T&,qtp3fs5U8XUmnC0p&=jbqu-KkquZlts8N#trL3i"98B"rVQTis82cqs8;irs8N#ps8Drsr;uurrVlfsrr2lr +rr;p+rqu]mrVlfprVlirrr)iq"TA8srVuTj"o\H#rVc`pr +lMh+gs8W)ts8N#crso#-s8;ckr;6?gs8W&srVld"rVlfrrr2Kg!ri6"rr*!!rr21!er;Q$^!<2uts8N#ts8K_3s8E*"rr2oqrr2rr!rr5trr2rrrVQ]nqYg4(qY^?lr;66e +lDp,GTL?jnBRo.Wh[i:rqlWkqu-Eir;HTmrWiK& +rr<#ts8W)trVZfqrVZZn%K?;&qYKHmVl$&bcKtB'qucosrVc]o!<<#srr30#qtpj@0rVZTlr;Zcnq>L?PXeDDSVTe]4qtpL3i"98B"rVQTls8W&us82cqs8;irs8N#ps8Drsr;uurrVlfsrr2lrrr;p+ +rqu]mrVlfprVlirrr)iq"TA8srVuTjs8;rtrr2oq"T88urVc]orr)fpr;HWos8N3#rVc`prVuct +rVlcnrVcfqrr2lprVlis"oeQ%rr2lprWE-!rr1XOJ,~> +jo5D]s8W)t!rr9!rr<#t$NL,)rVlfrrr2rtrVliqrVd0(rr;urr;HWnrVlcqqYpNp!<17Cs8E#u +q>UEo&H;Y,rr;r`af1i,WlXl5qu-Nn^An64!<;ur"TSK#s8W#r!<;urrr3*"s8W)_rrW3"s8N#t +rrE&4s8W&us8DosrV-9ts8N#rrr2rrrVuiq!<)lq%fH=pZ'qhnZJPBTrr2lpoDSairr*]3s8Don +r;?Qmp=6:HYG]bIrqucprVc`p#64]$rVlfrrVcfsrr*'#rr)lsrr2os&,lM+s8N#c`N,r1X3pJ: +s8N#ss7$$frrN-!rr2os%K-8+m`;9!WM76+rqlWmrW<&ts8;j's8N#trr2lqrr)fpquH]lrW)or +rX%\pWihu(l21DXrr)lrs8Dus!<)cns8W,u"TSK$rr;oq$N0o&k-:h^T<6N8rr2rt!ri6"rr!$" +rVc`orVZWrs8N#ns8Dp0rVQHfqu6Tnr;?Qmr;?QnrVlffs8W'*s8Doqrr)fqs8DoqrWE-!s8Mlp +0E(qNrquZlrr2lor;HTnrVliqr;?Qlr;HZprVlisrr2rrqu$Elrr)fprr;uss8N#tr>,D2rVZZn +rr)ipqu-Qor;HTos8DlnrVlcrs82d*s8N#trr2inrVuopqYpNorVulrrVuiss8MusrWW9"rr)ip +rr2rr!rr9!gAc[~> +jo5D]s8W)t!<<#s!<<&ts8N)uqZ$Nns8Doq$31#)rr)cnrVZTjrr;lurr<#s^&S-3%fQ>)r9MG& +S>3+)o`+gerr0Y3s8E#urr*9'rr;rqr;HTnrr)cos8<'"rr2lorp0Rcrr<#trr;uurquctrr<#o +rW<-!rn%2MrW)uqrr<#trr7s8DutrqufrrW)uorW)oirXSo,s6n(,TW+[$qu6NlrV$6jrs&H%s8N&u +rr)cqrr2ourVlfp')qk.jgV@rTXX1`rVuiprr2iorr2rt!<2uts8E#ur;Q]qs8ET0rr2iproLA] +VOjm9q#:6jrr)rsrr2rsrW)uprWW9"rr;usr;Z`p')h_(qYU9krVZTmrVZTmrr)iqpAb0l!<<&t +s8Duss8Duts8Drr"9&9"rqcXJrVuosr;6Hlrr)cmrVc`orr;rpr;QWlrVulqrr<#trr;ror;HWo +rVc`ps8N#trr2rr"9/8tr;?O@rVQQnrqu`ns8W&qr;HWmqu-KmrVc`ps8N#trr2inrVuopqYpNo +rVulrrVuiss8MusrWW9"rr)iprr2rr!rr9!gAc[~> +jo5D]s8W)t!rr9!o`#'marr<#sk5PM^s8W)ts8N)u^]+E8s8W)srrW3"s8)^*rVulrrVlfrrr)cnrVZTlrr*H.r;Z)b +QE$^bi;!9Nrr)ffrW)usrZ(n:rVQHfr;QWdd\s(CUX&i;r;HTlr;6Eks8N#sr;uusrV?F3rVlfp +rVlirs8DoorVZT[_l'9"WR(#0s8Drrrr;oq!rr9!r;Zcqq>V0.s8Vuqrp%FqSYr-pq>U3frVlfp +p\k?rrr;rrrr2lrqum$!s8MurrXJi+rr2#fX082+l21GYrr)]m%fcP,rVlcoqu$Bhr;Q`rrquir +rr!i:ro:,TU7/%(p&=jerr)fps8W)ts8Mupqtp +jo5D]s8W)t!rr9!rr<#t!<;ur"TSK#s8W&ss8Dio"TSK#rVc`n!<2rs!ri/srVlis!<17Cs8Eu; +rr2lqrr)iqs8W)srVlism`VW&VQ@r7s8;iprkAF4rXJo,rVZWns8N#ts8Muqrr*<(r;?Nlrr<#t +s8W)_rrW3"s8N#trrE&4s8W&us76-hs8;j6s8N#trr2lprr)fprVQTc[%+=sYMAjLrr)`nqY^Tq +rVc`prVc^.rVZWms8DW>Wi)bdbPqP>rr)forW)urrW)usrW)utrrLHqrr2`nrr2rr!<2orrr*<*rr)fqrr)iqs8W)ls8W&us82fqs82fqrrE&prs/N&s8MrorVlZk +s8 +jo5D]s8W)t!<<#s!<<&ts8N)uqZ$Nns8Dio"98B"rVcWorr)j$rqu]ns8W&2s8W)urVuj(mE2E" +V5q]2s8;iprkAF4rW`E%rVZWms7uWnrW)oqr;QZqrVZZ\rrW3"s8N#trrE&rrrW3"s7uWqs8N#L +s8W&us82fqs8N#ts7uWos8;j"rVlfrrr2iqs8E]0rq3^m[&^Ojq>UEnrr;usrVlfnr +jo5D]s8W)t!rr9!o`#*os8W&srr2itrr<#trWrQ'rr)fmqYU3hr=/]%qu$Ejrr2lprr;usrr3'! +s8VKcs8N9%s8W)rr:^*hr!!*"s8Dutrr)otqYhcL?lr;?Qms82lor;6`qr;?Nlr;HR< +r;6Eirqu?5VPBlRaSc&9rr2lpr;HWprr;rqrr2inrVZWnr;QZpquH]orZ;+rr)fmqYU0frr<#trVlirrVccqj/o#LS#FO&rqcNj +rVclurr;us"TA5pr;?Nms8N3#s8W)ss8N#tr;cips8N!*s8Muqs8Murrr<#tpAb0l!<;rqs8Vuq +s8N)uqYpg!s8W)rr;HWkr;Z^,s8Murrr)cnrr2ins8W&rrr2lrrW<&qrVZWrs8N#sr;cirr;cio +r;uuus8Musrr`5tr;HNls8Dus!<<&ts8NT.rVc`prVZZprVZWnrVc]o"98>ur;QZprX/W'rVlfp +r;HZprn@C&~> +fDbjMp\tbk9rVZWmr;HTos8DrrrVlc_bcRY@ +XiU28rVlc.s8W'(s8MuprVccprVlfrrVlctrVZTmrVum$rVlfrrr.oW!<2rsqYpNms8 +bl7bDs8W&ss8W)s"oeK#rr)corVc`orVultrk8@2rX8](rp@n0U8k<7o`+phs8Kb4s8EN.rr)cn +rr;rqr;HQlrVlfps8;lps8W)t!rr9!N;rqV"onT#r;HThrY5>.s7j1%\#Qajq#C?ls8W)urr<#q +rWrQ'rr<#ts8W)trt#)-rr)Q?X/2S[ao25:rr)iqq>UNqs8Vfl!rr9"qYgm$rp[t0WLp3;nGW@c +rVQT[s8W'0r;Q]`bGq2-S\b1&qu-QorqQNnrWN9#rr;uos8W#trr)d/rr;rqjg_CpS[[k^s8Mrq +rVulqqu?]q!<;ur!<)lq!<)ors8rV?HlrrE&errW3"s8Mrurr)iqr;Z]q +rr2lfro=%Vrr2iurr)`lrr3?(r;HWorVccqrVZZns8;os!rVrorr2rt"9&,qrr)cqrr2lrrr2j" +rr;urrVZZo!<)ip$31#'rVlfrs8DoorW)utrVZZpr<30"rVlforVuotrVulqr=/c+s8N&ts8W&r +rr;usgAc[~> +bl7bDs8Vrps8<9'rVulqqtpCa$rVbfbVl?)ijSA`QrquotrVcWms8:-grW)urrr;orq[!0"rr)iqs8N#qrrW3"s8Mrurr)iqr;Z]qrr2lf +ro=%Vrr2iurr)`lrr3?(r;HWorVccqrVZZns8;os!rVrorr2rt"9&,qrr)cqrr2lrrr2j"rr;ur +rVZZo!<)ip$31#'rVlfrrr)fnrW)utrVZZpr<30"rVlforVuotrVulqr=/c+s8N&ts8W&rrr;us +gAc[~> +g&M*O!<;ur!rr9!rr<#t"98B"rVc`qrVulsr<*'!s8Doo"9/?#rVlfrrrE&Cs8W'*s8N#rrr2lq +rr<#trr;p)qs2J-VQd8Bnc/Rfrr0Y3s8E3%rr<#srVZWqs8Doqr;ZQkR/[6es8W)t!<<#s!<;ur +rr3'!s8W)t'EA(3rqcZk]r&9:XP*:Frqu`orV$6jrrE&srt550s8;cls8DZAWhcAWaSc)9r;Q`p +!rr5trr*!!rr2Wkrr2rtrr*B*rqu`aafhb=X3U/2s8N#prVuj!r;HTnrVZ`qrr)lr!<)cn&,lP. +m)lH*URf0rs8;fns7lQus8DorrVc`prVccos8;urrVZX+s8Mu[] +bQ%VA"98B"rVc`qrVulsr<*'!s8Mup"9/?#rjr+2rVulrr!hu8X/3#&_sm^(rr2lp^An64"onT% +s8Doqrr)fqrr;rps8N#sr;uusrL!Tdrr<#trW)uorr;rrquZiss8N#tr=/f*q>^9'VRW\4hYI3O +q#:D2rVlcokI[q$S[Rb[rr2io +rVlcoqu6Wq!<2`m'`S.4rr)fns8V8fVl6>ndJ3b?rVlcq!ri6"rr)otrVcfsr;Hctrr2fps8E-# +rr)iprVlg/rVZTls8W&ts8DorrVZTns8Dlqs8E#uqu6Wqqu6Wq!<2ors8<3&rVZWos8N#sr +ci4"Err<#trr3&us8W&rs8E6$rr2rtrVQQks8;rqqY^]trVcWkrVlcomJd.a"98>tr:9gdqucot +rVc`p!<;ur'*%t.qY0-mVk9ug^?b[kr;HQkmem=erVc`orQkKBs8W)trrE%SrrW3"s8Muts8Drr +s8Dp%s8Muor;6^3!TsLPqg%PFCm/8"'rVcWir;Z]ddAEM)PfsI4s8W&ts8DrsrqlNem)?!%S>OEmq#10irW)utrr;uurpTmdrXSo+r9)%tSt;@_pAap` +qu6Nir<)urrr;uss8V]i'*%t/jL;+eQa#NFqY^9jrr;usqu?]q%KHG+r;HTlrVlisrr<#trVud* +s5C&QU7J=.o`+dds8Doqs8W'&s8Dorrr)`mquZcnrVc`ns8W'#s8MurrVc`q&cMY*rVuors8W&r +s8Dlns8W&qs8W&us82fqs82fqrrE&rs8W$&s8Dlos8W)trr!-%rVlfrrr)cmrV[E/rVc`qrr2ln +rVulqrr2rsrr;usr;clsrr<#srr;otrr;us!rVomrr*<(rr)lsrVc`prVliqrVulsr>#8/rVuos +r;HWnr;Q]qrVlfrs8Muprr2rrq>UEo!<1UMJ,~> +g&M*O!<;ur"TSK#s8W&ss8;rqr;I-'rquZjr;HTlqYL*drqlcnrqufp!;sP/s83<&m*)K)Ycl"8 +rVQQk]`%m.#6"Jur;6Bhr;?Wnrqurus8N&rrW)oprg<]err<#trW)usrW)urrr2p!rr<#trY,>2 +s8Moqqn&W3W3=tMrr)corr)Qis8N)urVlrts8W)rs8E?"fWD*LS]Ud/r;?Qor;clsrVuius8N#k +s8N#ts8N!,rVl`nnB/#us8Mrsrr)fqquH]pr;?O*s8Mu\^9Oo7\* +bQ%VA"98B!rVZWtrVl`lr;QZqrVl]squ-Hj\GcC(%/]A6WhZf%`:3a&rVX>,s83*"r;HQjqu$Ek +s8;oq"T85urr;oq!<)ipR/[6es8W)t!<;los8Drp!r`0!rr2rr%K?>%s7a$t[]6Xjq>^Kcrr;rr +rqu`pr!WK'rqP-LW2?30qu?Zos8E#ur;H]pr;Q`r!<2uts8E#ur;Q`rrr)orrr*8pbd+CHXO$D8 +s8Dlps8Drrrr)fp"98>trV6Blr=&W(s6Rq5WMuN*qu?Tdrr +g&M*O!<;ur!rr9!rr<#trr3<(s8W&rrr)fnr;HTrr;6Bhr:BgcquHW^r;ZWpr;HWmo)8Rc"TA8q +qu$Eks8;oq&,c;"p?0JlS>iL$l1t)Mqu6L(rVZTlr;?Nkr;HTlrVcZmrVZ]m!W;iHr;ZWtr;6Bf +qu$BjrVlWms8E3%rr2rsrg<]err<#trW)urrr<#trrL9hrWN9#s8W)es8N!,rVl`X`N#]/S%JCoq>1'fs8E#sqYgKprr2rtoDTC&rqtieWMc#b +iqWELrVlfrrr2oss8E-#rr2rnrr +bl7tIs8W&qqtpBlrr<#s#Q4Jqqu6WpriQ2*n^",)YHl=DX8`e2rVl`nrr2lorVccprVlisrJLXT +rr2p!rr<#trr<#srXf&+s8'3qZ)Fq`p\k*is8W)ls8W&us8)`orVum*q:`$PWh[f7rr)iprr<#t +#64]%rVlfrrVcfsrr2rt!<2rsrVliqs8N&s$h)6CXeMi?mJ[(`rVlcrrVlfqrVuiss8Doss8N#t +rrE&prseo+rpJ"7X0/53qu?Tnp&Fsh#Q4Q!rr2lor;HTorrW0!rVld$l+jX2Tt'@crr2rt!<2`m +!r`0!qu-QorVccr%K-8+kH^nZTW?<1s7uQkr;QZpqucrus8DBcr;Q]ns8Doqs8Dios8Doqs8N)u +r;Zfr!<;rqs8Vuqs8N)ur;Zfr!<<&t(B=C4rVuK=`QmT?rr2iorr2lprr2inrVc`p!<)oprr)lr +!<)lqs8<#srVc`p!;uin"TA>urVulrrr)lpr;?`ss8MurquH]prXSu-rV,jQq#(-js8DimrVc`n +r<*&sr;HWorr)iqs8DrrgAc[~> +bQ%V@!<<&ss8N#ts8<&tqtp>krs/#UBmrVuiurVlfmrVufprVud/rVZTjrVZZopt2dMWh[c5rqu]m +rr2`l!rr9!o`+mhrr!9)rVl<0ZEBt'cL:`2rr)lr"98>us8Musr;HQorr2ihr=Jl*rp@k2WN;`* +qZ$HkrVlfkrVZZprrrE%s8Mrorr*W1s8W)urr;urkI[grS$M)NrVcZlp\k-k#6"T%rr<#tq>^Ko% +/p2*k-:\VTW??3s8;cn"9&5urVZZas8;lqr;Z`orr;rorr;rqrr;uurqufrrW)uqrr<#qrr;uur +qufrrW)utrYGP5rVccfeA]_pq#:9jrVlfprVlfor;HTnrW)orr;QZprW)oqrr;our;HTnrW)lqq +ZQlsrVccqrr2lrr;?Kqrr;urrVR9+rr2rsrV,jQq#(-js8DimrVc`nr<*&sr;HWorr)iqs8Drrg +Ac[~> +bl7bDs8W)t!<<#s#QOf%r;?NmrqHHmrq??lrp9XbroX4\rqHHmrUKps7uZlrrE%Us8W'?s8Muqr;6?dq>0sds8W)sq>TiaP,P%Sf_#%0ErXJh_eaQ`Nur;Q]o +rr;oq!<;Ne)uom8rr;r\`N#c5S@\IoqY^]5rr)ZmrVcotr;?Ejq$$WlrVuorr;Z]o +rqufprVliqqu6WorVlis!<2ors8E#uqu6Wqqu6Wq!<2ors8E#urr*]5rr)fqo@1b)jnSiSr;HWo +rVc`pr;?Nlrr)orrqucos8E#srVliq!rW#qrr)oqrqcisrr)fqrr2oqs8;fn"9/?"rVcX+rVlfr +rr)T]o(`.^rr;ror;HTnr;?`sr;?Nmrr2lqrr;rrrn@C&~> +bl8IWs8W)rqu$Hms8W)srVlcnr;HWnrr2iq!<0D+$NBJLHorr2oqrr1XOJ,~> +bQ%V@!<<&ss8N&u"9/8trr2itrr;u"rsJbnc(g`0[ES:CricA"rXSo+rr)ckr;HZorVlisrJU[` +rVuorr;?Hir;HWorr)fn$i9nsZBhMfZf(ZYrr2lrrWW9"rr)cmoDK6urVZZnpXcUJX/=,9rqu]m +rr2rr#lOZ"rr)fqrr2`n!<2rsrVlfp%0$5)nB%o;U8cB)rVlfps8E6&rVc`orVl0^)Z0O5mE2K, +XIm0$s82cnrr2lor;HTlrVcZmrVlis"oeQ%rr)fprYGJ4s8N&srr2lY\uVj#Z/YTXrVZTlr;QZp +r;QZpqucosrr)iqq>^Ko%/p2*k-CbVT;p-/s8;ipqu-HlnGiFc!r`&prr)lr!rr5tqu6WorVlis +!<2ors8E#uqu6Wqqu6Wq!<2ors8E#urr*l:rqu]oiinoPaQ`U$rVc`pr;?Nmqtg6hrr2lqqulut +rVlcpr;Z`qrr)fqqucoqr;HTn!r`&prr*&urVc`prr!-%rVZWorVZWmrr*B*r;Q]gi6Tj9rVl`o +rr2lrrW)orqucosrVcQk!r`,trr)iqgAc[~> +bl7bDs8W)t!rr5trr2rr"TJAurr2fp"oeK"rVQKcr##>/rVcZmrVZWmr;HTlr;HQkrVZTlrr)f_ +rr;p=rr)clr;HWnrVlfoqtp3bo]0Brr2inrVcZmrVZWmr;HTlr;HQk +rVZTlr;?Nlr;HTlrVcZmrVZWmr;?Nkr;HQkrVcWjrqlipr;HWms8<'!rVc`orrE&rrrE%Us8W'? +s8Mrmq>'g]qYU3hs8W)rq#9c_NM2oDf^ek9r;Q]om/I"_(B=@+e#/n5T#^L%qu6QlqtpLHorr2oqrr1XOJ,~> +ci4LSs8W)srr)cmrVuosrr)iqrr33"p@@Y;l0/*/$L$a>kiq;nrot6^lK[WulKRU# +l.s1IR&[C-iTodol+6-[l2KrRl0@O!m-XB=rVlg"rr)clr;Q]qrVZWps8Dous8N"jrrW3"s8Mut +s8;lqs8;itrVQKkr;Z^1rr)`nq7)opVR"tKqYU3hrVZWmr;?$^s836&r:\aGWi`;Hp\t0irquir +jS]SdrVZW_b-A(FXN^)1rVPRP%K-2(n'7u1XJ*B(rVHHMr=Su+r;Gor['c^?kkk>Wr;HTnrquru +rVc`_rUQrrVc`l +s8N#trrN,tr;Zfqqu6Zprqufp!<2ip!ri,rrr2iq%0$2(qW,Jo[GCl_qY^6j"9/8trqQKsrr<#t +s8W)s!rr5tgAc[~> +bl@Y@s8<-#s8W)trVlfqrs&Dqna>c/l2KoAl2Ku0l2U#Kl0dj:klC#Jl2TuHkn*(Akj%Ef^n$gk +Yef5_lK[X&l2p58lHSSnl4E4Fl0I^(o(W(^s8N#rr;6Ekrr;rprW)usrW<-!rh08mrr<#trW)um +rW)oqrqu^(r;-3arV3deW26lXpAFje"9/8urp]mdr!WE"qtAXFX08SMp\t0is8E)ur;?Eis8N&s +!;uQhs82lqrqm6)rVl<-YHF\%c0bE,rVcZWrVl^+rVl3-WM?Jc]_VO'qu$Hmr;?NnquH]nr:p6i +r;Z^/r;HQlr;>]gX/qkti:m0Jr;HTlli$k]*<#g5qu-KV[ABXkXj?b@rVccqrr)fprVc`qs8Mus +!ri6"rr*!!rr2iq"9/?#rVlfrrVlfqrVuiss8N#trVuctrVuosp\tUNqs8W)s$3'nqcC0TWZ.ALErW<&rrqZQrrr)fpqZ$Qos8N-!rVZ]qrVQWpr;ccprV6Emr;Q]m +rsSf)r8kes[GCl_qY^6j"9/8trqQKsrr<#ts8W)s!rr5tgAc[~> +g&M*O!WW/ur<*'!rr2oss8E#uqYpHl&H;_0qtBUKl0%3ij5f:\j5^*srSmh;!TiJ3jT+HBjo=E2 +jo=B`jlGL_jQ5LajQ5Laio/hSh9`QkM4:3Ee)90Dj5oC`n`Bf3"m+n/jQ5OTjT4N*ro=ULj5T+] +l0\*;rVlcprr)fnrW`?#rr;uss8Dous8N"jrrW3"s8Muts7uWur;6;U`p&4X[qY^6frquWk!ri/squ6Wo!<2urs8Ec3rr)ip +r8b5[UQhb2oD&1Xqu-NmrVlfrr;lorrqllsrr)fnrr)fqqu?I'rSk&RS=6@upAY!grVuosrr2iu +rr<#srVlio#Q"8mqu-QprVc`urr<#srr2rrrr2oqs8E#urr2rrs82uts8W)mrrW3"s8N!)rVQKj +rr;uss8N#nrrW3"s8Ms'rr)K7RYdE:f(/e=!r`&rq>UQrrVc`ls8N#trrN,tr;Zfqqu6`rr;?Qm +q>UNqr;?Qnr;R3)rVl]T_Q:0$s8Vrnqu6ctrVc`jrrrE%s8N&urquourVbIMJ,~> +ci4.Hs8W)rr;HZps8T>:F*rS.>WmD63=Uq5jji;X8cs8VDqW26>se+iq@rVlfrr<*'!s8Mrrs8MWirVliq!WW/u +r +bl7eEs8W&qrr;p+rr<#sqY'C=f[.g_`P_\l#fFU!_o0L2_o2Pns24oTlbrh@"2r0t`9tVE`!+,u +`5BI/rkf;a_o'F2]s!rtY,ne>`l?!9n&5IK`Pod5_pZI9_o0O5`5T[5`lZW^j6Q:1r;Zfrr<**! +rr)`nqYpZss8W(os7lTcrt550s8N#tr;-:-gq"FRY +pA=ges8;W`o_87^rr)fps8;]cp%\F]qYL*fs8Vuip&=Y/qY^Bfe#Sk3d/*b?r;-3^o_&"Ws8W)s +qt^*_p@nF]rVlilrn@C&~> +g&M*N#ljl$qu$EmrVcZo(&n75rVlfprVZWmqY0RGi76)n_nWn`])oRU])B/<\HBFU]taQ\&APrn +^V7Fs^:q@s^;%Fs^VB`]!kl4Xl+I&0s1JBF'YM&h\@8oMTT,#(R[gLg\@K2`]Y!^Hs189Eqn=Jn +^:q@r^;%Cr^V@Lt^V7It^;%Fs^;%Cr^V7Fs^:q@r^;%Fs^V@LtrOs)]]=GM`\\,_ue(s0Sp&4pj +rr)irrVl`lrqcWsrr<#tV#U5hs8N6#s8W&prqZisrr<#srVlcq$2abpY`PQLXP*@0s8N!/qt/=7 +Tqn@%oDAF`rr)iprqufrrVlfrrVl]prq-6jrr;p)m)5m$S>4*fqYg\bH." +qu$HmrquirjSoYfjKkSTPH!=0qu$BkpAY3nrVlHhs8rVQNmro1DNNL-K\kPYAYrVlirqY'XXqYL$ar;Q^KrV6$Vp\Xg^q>:-gq"FRY +pA=ges8;W`o_87^rr)fps8;Zao_A=\q>'pds8Vuoocj50s7Xj?R&&+*rr)ckq"F@Qq#(0lrr)`i +qY0^XqY^ +ci4.Hs8W)rr;?Wnrr)lr#5\#VdDEN#riHX2Wi<#!X/`2#Xf\b/XiddHXnf+4YHFt-X/rD&[_fGM +WN<5)Y-"h?Y5bUAY-"b*XK/=uWN3//]u8@[o)/OerVccqrr)`nqYpZss8W(os7uZms8N!Vs8Muqqu5=LJ,~> +bl7qIs8W&ss8Mrqr>#>1q=Nmu`4`L\Y-+k+WN*&$X/rA&r2]n#cE.&H!3Gsr&Zht2WiN+u[(s#F +VlHl$XK/D6XT,=:XKAS)W2Q\u[_0Q,j73!Grr)fqrr2lnrqcWsrr<#tV#U8iqu6Zqqu6m"rVlfp +rVlfo$ig"2R]E?lh"h!MrVZ]qrXf,/rr;usrVlfprVlcor;HTnrY#81q:MgJX/O;9rVc`orVlfp +rr)fqrWN3!s8DoqrqlZlrY>D0r;HZor9VG,YGA2Bm/6k]rr2inrVcZnnGiLe%KHCqd&NY3S\Fq" +qu6Wnrr;rrrWiE$rr)cmrVlcos82lqrqu`n!;lco(Zr6.XdlZUqYgBls8Murrr;uss8W)srr2ir +rqZNmr;Za(rVQTokd$hOSZL*/rVcWn!<2lqs8MWirVliq"TSGuqu$Els8<3%s8W&srr)fprWE-! +s8Mrrs8E*"rr2oq$i^,'r;6HlrVlisrqufrrd=\Es8Dlnrqt$7PF8&8[FtO,d*UA$meZqZo',2mf[\jFp&4mirr)fmrn@C&~> +g&M*N#ljl$qu$EmrVcZo&H;_0rqu]kq>:$^n)2C$Z`=#$!huS=Z7@SXuIHTqJ(H +T`q*_TqIsJm[jQPT:c+U!29=`';;(gQ^=)*Q(Y4NP*2-"S"61DT(/HPSck[YTqJ(1U&Uc'TqJ!J +St2@=R@BnMZ+A-9meHe\rVuorrr)`nqYpZss8W(os7uZnrsSf*s8DikqYC'gs8N#r(&n75rqZT] +X,W^=W71D;qtU$aqtg0_qu?Kpqtg0brqcZl)#X4"c(UVuS&+Lcp\FX[q>'mbrVZQhq>'sb!r;]h +rql]k!rMoorqufps83]/pZK;fUm[jkj7W3BqYL*erVZQjr;6?Zqu$:!o]=)cPa[iEoDeO\qYp%jPT"k +rr2ZVg!\0lf&Q8rm(o<[SA"(^rq>O,d*UA$meZqZo',2mf[\jFp&4mirr)fmrn@C&~> +ci53gs8W)sr;Q]or;HQms8McXf>=_lYHbIF]Y;(l]tV1m]Y49YrkABH!5?gp)ns)&^q[\#^VI\$ +^:h7p_8asWaLAXj]t_=r^:qA^^)"Jt]Y(tn^:V"f['Hm:YeJNIq#CBmrr2its8Murs8Dous8N"j +rrW3"s8N!,s8N#rrr2lps8Muqr;?Qk'E.q1s82TanFZ(WTs1W(cfONXkPaWHlKdd7l2p;N +lMKoCli?ALliHG=rp'sYmHs#[X.lVh]Bf"dm/$)Qm-X0,m-O]:s6BOJrp'IJ&a\iLlL!KAYHb.? +g$A.smHj0!:0XLs6K^O!:0UK%IEEJmb>%DU7e[9qZ$Torr +bQ%M>rr!9)s8McUe\SGkZ*UmNrk/?F^&>\F^&PeH^&>VD^&Yk7^AkkP^:h4m]tM.n^%T2?]`Z!^ +]tF?Xs1A9C't_,l]tV(g]Y2%tdFQ=G[CEl`]tD"l^Akkd^:_+l^V@Rs\[JlOY,nh>d,t-'s8N#r +rVlirrVliqrW<-!rh08mrr<#trWE3"rr)fp!<;op!<)os&H;Lsmcj0#Y*c,bYKPqjl/r!/s6'FE +#j:@4kN:pgkNDj+s5kEajlY[cjlYabaJbo4V8(mLkiq9lk32!jjlY^gkih4-kl9fEk5aZCkPjWC +kPscGjpTqVVl$8h^=h`7k2uX*s5j=Cn`Ko9r9+(A%Hlj/`1rfsS?q5@jQ5P'kPs]Ejo=HDkN2I$ +!9jFF)Wp5Gkih3mk2tdheZY[BT!$Atkih0kkN:mgr9"@Jjlbaek3(mhroa:Es6'FD(?jrGm+&,- +S!g1tp](6lrVc`qs8N&urr*'#rr2rtqu-Zsrr2]mrVlfp!<2utqu6Wqs8E#urr2rt!<2orrVd3' +rr)TWi8X5&rVQQlrqufmrX8W'pUQBQWiDVdaRB--AGkoL_60W9\\l7sf),L6e%;`^Zb4#c`nf\' +^::n\XNBc"iPr4"UTqemn,34]kKpfAVm!bO\A7M3qV] +g&M*O$NL,(r;HWprr2rtqu-Torqd6&q=3Fg[\KFfUSXunXfJK$Wt250W2QVmWMZSlW2HSnW2T-` +"/r3!WpQ_iWMlesXK8P,r2g%'Xf;8r$*:\OXdtuTUo('VW!0)tW2Z_of;\eK(oaI3W2m##W2?Ac +Tq@mO[E7@us8MrorVZZo!<)osrVclurr/Sj!ri6"rr*$"rr2lorW`>uqYL*err)j5rV,jIioSXZ +KpJ$u_:mr.hr3SRiS`\SrSde9!o`.ur8@_8iSsjq(#n-']pb1PQF#,uioAtRhr*JQj5T%si;_a? +i8NYQi8N\piW%gZiT'"Zj5T+[j5StQdBK(-Q^k>)h;I2LiSrkXjQ#7ZiSa@e!93t9r88LKdCGX, +R?=K'k2"qPi8EMOiSrkUio8qViSa^os5?hVd8JiSieVjQ#8! +iL-kqu$Eerr;p!rr;rqq#CM+mm/Qn=`3cSD +W33ndkM!;5R$OYnnbM._Z`L+)[a+.9pts-*]!&*Bdd6o2rVZits8W)Ns*t~> +ci4s_s8W)rr;Q]nr;Zcrrq#!d[&gIA_p-]bhV[2hhZ2U6huDX7hZhrnh;7&HhU(-qhV[8LhVd>L +iSi_PiT&nPhWF%Ve(NUWhuDQIhuDOHhqm2Fhr3POh:pK*`4N4OYJT,grVcotrr2lnrr;p$s8Doq +s8W(os8Drsr<<3!r;HWnrr2fn(&n12r:f[@gt:0-b-A"SYck^[aiDF"`ra?(ao9?_ai_d*bQ#^( +ai_cJb0.uMb0.oJ]reHDZF@Zmcd0hXbK\8SrlPJd`l?'>`lQ7#`W4'P`Z3+Db/hW?[&L%0Za%6g +bK7oLaN)<@a2Z3CbKA!'b6Q25bKS/Qb00e,*6ZRNa1A@T[BHpXd*BnZbfn8Sbfe2PbKA#Nb/jS% +s2G#X*66.A`Q#s>a2l?Db/q]H`3lhX\@]PtcdC%\aiaV)s2tA`!m8^0rlP5^r5S`Vs2G_ka3)QH +bJ10\X.uW3l2(>Vrr<#rrXf&-rr;rqrr2lrs8Drrs8N#qrr`9#s8Miorr2fps8N&u!<2]ls8ET. +s8N#kilAL8cL1T,rr2lpq#C?lIfK?EkGjT@_n;P,\)[Abrq"[JT9u%;T;/*J_"[NJXIc#SSt;LB +WQWc!SX5q5Qabo7]qD!hSY2ddeaiP"aK;#%S!otHPb[4:m(AjZTVA$DS@-\eXdPK=Tu#jP^S.0j +T9u+Kbjk;MX.>iJOJ'JRqu?Wns8W&srr;usgAc[~> +bQ%V@)uom7r;ZcrrU\m`Z)b(>`R!,jh;-rEhr!;Jhu2C:h;$f?gtpoDmb\!"#i=CngtgfCh;.e] +s4mn9h;-lBh;%n^&_u3uhV6fChV$]FjOqr3gYUfdh7hbGh#Q=2h&"u-inrPEeBPnBXer;=h=^dI +rr2lqrr)`ns8<0%rVc`qs8JhorVliq"oeJurVlcprr;p4rr<#ts8MunoBG)Yai;E8Un4Q_VmO2; +_>_=O_>h:P_8*kc_(NO>_8*k$^qd_#^qRLr^V@IfUnt)jXgZ!_`504(_SO"%_84"+_ns=._o'@- +_>_:S_8=(*_>_4]_8=(,_SO%#XeMSkXK&eL`;[UP_Z.FP_">GJ^qmk(_83q'rP/lY^q-Y?Tr=Z^ +]"u.q^])(J^^\,q_8*n'_Sa:._84"*rkncP!5e`Qrk],\^V[OXStr6_YIMHf_Yq4M^qoud#/S*k +^qde'rk\WOrPK8b^V@\(_Ss$]V5'QT^#Sh\r;HKk!<)ors8Dus#lXf'rVlfrrr2iq"9/?#rqZTn +rql`qrr;uurq?BlrXf&.rr2WNa0rD$mecn\rr)fjs8MtGs8;iYWfO'q]UbCuj88lUo[gRGR[g"E +V5'Nsq=i:>TV.pMTV%dUc.0@sR@on7\DQD]TV%gHTVf6No_[prYFh>US=umIV;qRC^7LslUnF*H +\'`L)S!]J8_<'dnTq%dJR%(/#nak&,SXu./TYfmhs8Dors8Drrs8N#Os*t~> +g&M*O#ljo&r;HWprr2oss8=5CrquZkqtg'Qe@DEHSY`O#^Vn15`Poj9`l5p7_ns:.^qde&rkRm: +#/J'l_ns7*o"cB__8=(,`lH0Bb0%oMaiMTF`Pom9^VIn3]X58b_86,d]YPQ%^qmq.aN2B@_nNU` +VOX'K\CC$Eq>:*frr)fmrr;p$s8Doqs8W(os8Drsr<*&tr;HQm!WDrpq\&i*rV5mCf#YS7Z_`S6 +Ocbm)ZMq98\@K,Y\,No;[gopY\[]2\\@B#X\@8uY\GirP['?EjOd;<)WjK@K[^P`\$rg?[g0@N\%&oV[^Z1C' +==j5Od)?"S$9B1[^ETR[^WcW\c0)G\[],W\$rfR[C3OC\,Wi9[f3c9[N2ic['m'#MiX'gSuT-+[ +^C*g[Xq2q>'m_qY^^Hnqu?]qs8N)upAb0l&H2Y.rq>?l[^FEKqtpBlrVcNkrr%S"?:KU7/pnp<]q6T:V[ISt)h)e@;*;T9bkQhrVPET:VUHV75%IqWZ,)Ssu7>T +Vn'Nir8>YSXuOMT9l+Wd*8_^Q^"5\jlO7NS=lLAS#ad'o?OD-SsGJ2_WUgrrVccrrVlfrrr1XOJ +,~> +ci5Tqs8W)rr;Q]nr;Zcnn(YIJVS1C3hrNtblg!a"lg!j'lg*s)lg3s%l0@U#lHSW1lKdd&m-F$) +l0Im.kiM!mk2l"!md'/Nli65blg!d"kiq5J3r;?Njp?^PW^p^V`\#m'V`j`.[[^,h9"1#8?[/RB3[/%-0Zk^!U['dBP +[Bm?O[_9Yt[&L=?[^qgkXL>P9ZO=(DYd(I; +ZF%$GZaKV9rjDa4'",*QZaI6NZ*1aW`l,HlZb!cYrjMj9s0WQJ[^Z*CU@ +rj!9F['[0FZadorb.k6d[_'2\Yd1[DZhh*.[/RB/Z2_$JZ*LaDZ*L[D^r*^aY/ArXo_\[frVc`p +r;?Qns8;iqrrrB#rr;usr;Qlus8W)os8N#ps8W)urrE&ls8W'+rVulokJ3m^OepLtrr2rrq#>jB +rr)iqn][_u^#@J5NN(@trqYNbQ&MEE[AT1CMo5>JWK!7L[]H!]N1S#1VN[+-S>sBP`12pe\[nl. +R(D>Ed&i_&WOAn#RYm]lqq\',UUIqFR>dcTbcmFuR^:Dt`h/<_Z+RE=RB+s%a.ecdS=Zn+kkkDZ +rVlfprr2rtrn@C&~> +bQ%V@)#sU5r;Z`mn(P@EUqG%.hrNqalKRNrlK\B5#O:RnUo(#a +U]./$Y-t^5R%^IUUnjibVPL$eVuN\#Vl6MmWMc\npo".hs/-C'VPpAdUSt8t]=4K,WMl]mVu3Fl +V>mFfV$&VPTlTW3Wb7VjsBWW2HMiVuUURb4P_kC=qVnQ:R^9N,Ss,2-a31EHP*hiC_9p2kOJfV" +XI#BgjmLU$S!g=eY+V;DT\fV)VN.L__7,noTu>6^R?jAMdG;g7O.EPgZ_X"ifB1,JPFA#5Y0,u* +s8Murrr)iqs8W)Ps*t~> +g&M*O#ljo&r;HWprr2oss8<`5rqlQhq"*[pXc\jJ]#)A,bg"GWbKKh-!6b>_#0=j*aN)<>m)B7K +`lH0@`l7Mg+iVIAai_iQcd0tcda?Ffcd'_WdEfkO`lQ'8bK\2N`l5p0`WF-!b5TTaaUlY>c-=JQ +\tkRVXj-)%qYU3crr;p$s8Doqs8W(os8Drrr;lorr;QZn,l@H5p$qA'a0VS,Nfo3GKp7saLm"!c +PE_?!Q^*l'QC!o&Q^Ri>s->%!Q'Rc&Q'IZ'R$EhuOcG]tRuN,^Q^3erP*;,rQ^r +OGSdXSY)O>MiO-kQBd`$Q'IZ&QBml(Q'R^7PRWh@P`h8rP`q>rQBmc!rKIeSNJs'iRZN8[O-Z3! +OHTU1#aq'IR?j,(Pa206s-NbO!gf4^Hnqu?]qs8N)upAb0l$iU,)qrbbjRZXGpoD\ahrV6DBrVlcprpe4,S\="3T8fht +o)JUH]U"PO[^W3!LlB:JiMqp*ZF?s,P)Z*Rb,:JdQ^t4mdDVQ:Vn'C?QC5AGmF&/+R&[WtT::b2 +h>H0,NMO&![[N2K_p,HRQ(,/.h8Z(JS[#i6Um\:8k/X3[R[ftPb38a&rr)iqrVlfrs8LaPJ,~> +ci4(Gs8W&r!;uip#lF&?_6^G^e)gMn!:9^N$1.!FmHj3-mHj6>m/?=rlkJdPm-X3,mHs0'naYr- +jlu'snaPtUm/QAclKRQsk321$oCMD2d_3-#[*/%>r;QZnrWW9#s8Dorrr)ls!<&\mr;H`prVld: +rVlfprVlfps8VlXf#kkG_8*t8bf8,ihpp$"ccc:0#0Y67c-=JVr6>/bs32M.c-=S_d*0_[da[%1 +h9Ns]ccsYWc-FSYcHXT3b5BHVbl>j$c-+5OcHaVVe(E=2h9*a^c-4DTb00b*!m8a2p]>`4[p](9lrr2ios8W)rrVZZf +s8W&us8;lqs8N#trrrE%s8N#trr2rt!<2ors8Dus%/oqPTTc.:PI'3Frr)iqr;ZfrGQ7X?r;ZfX +ZBh?5p#N'2T"F(]o$+%gR`j^Ia/"]Q`qIT=OKmEqfY!c5SAW@@OdE,ggYp/DMkeMRiR4]hVp3f# +R[pb4imkQ4Mkf2(e>&b\h;["eNgRH)]V:dc`9#RMP,6CYkM +bl@Y@!;uip#lF&?^Tk#Wdc18k!pT%:rosIJ!9sLJ#3kF;lKRNrhs(1)qW\%DrosIH#jLR9k3(pi +k3)a-%dE3=jm29rio9+_kjIj'rTLu[rojCH([1&Fk2b[imdKZ5jjC`L\$XBMrqucprVc^!rVuor +rVulqs8N)tU]:8k!W;oqrZhC@rr)cnr;?Qln_h[+[BZm8YI_-E]ZJ4.\\,M`\%'#Z]"@gMs18?D +\@DOKs0rrW\@/oZ\[JoV]YDJ0aLJ@Y\[SuS[^`fT\,No;\cK=OrOW$@!kPnOqmug<&%]9Z\%B8^ +\\Z;*cHE`)])B2>\,a#;\-0:N\@8sC\-0:N\[]*H\,WrL\%0&V[DL&-aM5'g]",>[\,!N<\%&rZ +\[f6K\bs&=]DoGY\[]/\\[T&^a3;]B\@&fW]XkP\\[oA_rji3D]",BM])T>@\0JJm\%&u[]=GG] +\%BT%b/1ZmXg,O\h=CL@qYU3fr;Zfqrr2oqs8E3#rr2rsrqQNnrW)urrr2rsrr#fXiT;W`h&-abi%L0Wg0R0fXIBC[++0g];1IaiVM-%Us.`WfWL=) +^!XQiR\@a_euFn0bh_I<^71S1h8Q+OTtAY)k4JTNrr2lorn@C&~> +g&M*O$NL,(r;HWprr2rtrVd9(qt^!Wj2eL!T;oQHcMbrjbK@rKb0'\(s2Y,Ys2>)[`Pod^`<4&t +`Q%bmrke`SrknTN"3/C'bPo`acMu-$bf@cLcH!c;`5K^@bJqN>_o(fY!l`*rf>[^,rQ"rX'?SJF +eCN-n\u2=%VSMHjp\FacrVld"rVuorrVulqs8N)tU]:8k!W;oqrZ1t:rr)fprVQHakgI)CSsYb' +O-bo_Q(k"CR@Tq>rgO7cSt)CDSXuFDStH"Rs.(7'SXl@DS=H4GTU_F>S=?:QV3d7/S=>n4R@0M6 +St;JNS,Ji]SXc4AT:__RT.HS+TV7sHS=cC@R%L1LXJhDKS=?"=St2FBSXuIES=5n9S!oh9R[]e8 +S",uERfAlWRfAWhUT:DqU6V+S=?"rgO"XR[]`DRjFSoSXl4;S!oh:R$F)5 +VPTiLQ'e)4SXc7BT:hmNT:hdHSXc7CrLa:bSXc4@rLEkU(7C\gX/VeZP*DH7\^Kd;qYU6jr;?Tp +rr)lp!<)fopAb0l!<;urrr;uss8N9%s8W)ts8N#trrE&rs8W&trXAc"f:\>&QBSZ5r;QZorqufr +rceD@rVZ]qjKb)Jch6@tNLmcDrUeC5MOViMhoMXSN5kV9PEE0'iRto9N1Io-UQV"Ga4oUnSr9Af +hr3%`Pc2mZ[[Wkpe)T#jUQ),.psl18bMM:2XcJm_d(Q3BTZ-$DWfj4&h<3V.S!q=P`M/Nh]?f3n +o_e^frr)cogAc[~> +bl8:Ss8W&qrVlTZdC$:#hrESRk5ONDkl'cIlg"H7s6TdO!:%nrs6:ZklK[X!lKRU!lg*j%lfdR! +mHWs#lg!d%lfm^#lKZ.M,3nL[lKRQsl07Epkj.X)m-!Hgg"XlPW7CA3r;HWnrr<#sq>UEo!Bo\$a0+iTKS"p\+:OoC_hVoa(0[oCMVIp%7nTp&FXdp%J+P +rV$9a"SVWdp[nIX*VB+$o^_VHq"F@Pp%J(Np@e.Np%@tMp%7nLp@e1TpAae-p@\(Mp@n@Vp@RnI +o^VPGp%7qMo^qbGo(2MGp%S4SqY(*cp\4C[ob@,op\+@Wq=jXYq"FFWqY9aUp@e1WpAadip@\+N +p%@tUo*b3^o^h_Ip%@tKoCW%Ts7RE,qYU*`q>'aUoCqtMo_%kKp%@tMp%J(Op@\(WoD\=\o,%&j +oCVbLp\=@Ln*oMi]s4r`h"LaIrr2iqs8N&urr**$rVccqrn%2MrVuj-r:\R'OKP7>W71J=rr)fp +r;Z`ps8DusDV1V@U<2QMXHJgEe+Vt=SrpMRs7timR>o2V\V[01oDALHYE,6laJP&jb45N._2F>\ +e_K!7ZBL]b^o!?oeG&q6e?"Y)iV;-;^"hQ$e$,(*\^8C"StjNrc'jg:rr<#nfW(=Me&%lEWRgnF +rr2rq#6+T"rr<#tf`-I~> +bl@\As83K-rqPm-Z`h='inWGPk2k^gkl0cFkQ'fFkQL)4kND!`kPsZMkNM-mkih3lk5OQDjrW^J +jlGObjQ5Lck2kafj5]:ck2k^fk2tmjjlYagk.^$Yk5ON`k2kaejQ5UjlfmQmi7Qf1WN"G:q#13k +rVlisrV?HmrrE%orsSi+s8DrrrVc`orVZZo+8u-8qY':-];DC0_TL0Qf\>-4f%&I,f\,'7gYCQ= +hY5h+g\KV,g>(K;r7V,*$ea(]g"b<6f\,!3f_sP(g]ZBegtLK\h#H.+h#6"-g(2rohr!;Gg=tB8 +g"bB;g=uV\s4dS-s4dS-q:c#*gY:H\f`p0bgY1E:h#5q5f\,':h:U?5g=c>V*SK0$gtUW=g=tE< +h;$iAh;-l@gY1B9gt^Zjfsr?`QG-BTZm!,qn\2N[+4!i +gpE?9\AG21WRgnFp=HL1VW7O.]>*4^hUSotS@d4kYb7ipt2U6]$nNkPc<70s8N#t +r!*0!rVlisrn.7$~> +g&M*N+92<;qu$EmrVc`prVulqqYL!ViPVI`Z,k,*_o9[9`VmgU`<*up_Z%IQ_>qF7_ApD/_SO%' +_83q'_8!^u^V7Fs_83q'_8*k&_SjIna8a6\aU-&1aMc!:a2>d2rker[_na+)^qfBS"i.sj_SO(? +_Z.FP_Z%@O_u@Rj`lZEKbf[uE^r3gMRE4O\p\Ogcrr<#sq>UEo!9ZEaA6+LAA[Za$a>Z*L^@ +Xf8;#XKA\2ZE^U=\$r`P\$rfR[^?%?!OT95[f<`7ZN.B3ZQ$3TZEpjD[BZa1Wi2MNM3=gVk4\ZL +s8W)us8Muo!<)ors8<$!rr1OLs8Dus&,c.LP`W&@P,Qk'rVlcorqufprr;rsrbgA]N2"GVfW:7$ +VUYA(^Rp\!o`+dO^m^;'o=BgVde*J:jKO`;`6"p>T?Hg*qn\2M[+3sggU!-5\&"u-W7C\Bp"$:- +V;h=*]"["Zh:/]pS%@"gYFhW8m*1u^aSu5>pt2U6]$nNkPc<70s8N#tr!*0!rVlisrn.7$~> +bl@Y@%K62$nC"G0[+Xj6jQ,J&kS3=Jlg!g&lg*p(mHj3*lg!j'lg!cbli65Mli$)Mlg!d7li-2L +li68Mli6;SlKRQuli$+`lN6A;lhfrbl0.Bslg3p!jlGF]g:jGadI[>9rr)irs8Dcms8N)uV#NFR +s8W&rrr2lqrVZWns8Muos8VT=^U(AhiUca7o_JOer;$9irr)`lr;-9eqtg3eqYU0dqY^9gq>:Kp +r;HTjr;Zcqq[NK#rVlisrqu]mrVZQjr;?ctrVcZlnbrLe$N0burqcKiqtgNS@d7mX.$$9k/3CFdJj.Rroq%`Y/e8SS?grKrr3'!rVcNjgAc[~> +bl@\A&cM_,r:&+6R^(K/l/:L\k2k_(kl9iGkQ'fFkm?P:kND!kki_*jlKA30qre"A!9jFFs60FE +!TrSCjoXZ,k5OKBjpgD5k3(phjlYaikiV!groO:Fk2u*p!9V_mroP9bkiq9nk2k[dkiq9kio8nU +fY45_d.@58rr)irs8Dcms8N)uV#Li%s8W&rrr2lqrVZWnrYbY/qY9*lYb@esak5A#f@f-EhV$Z? +hV?l@khcg>:fFgt^cCh=TP*h;7#dh\P),i87iN4Rs?rVlcorqufprr2k'pWAebUTLo/VjEL7a6MHjV5)*- +s8Vl2N/l3RXb*_0p](9c\!dNJ_O$[cUo18mQ%P!o\uqL$hZ*WQhm8H>hYlon^pp\Q +VOa'E^"(?/S?(0%_ip51rr3B*l+EXrrW2urV6BGs*t~> +g&M*N-3*rAqu$EmrVc`prVulrqtKdH`1)UT^sUKH^r"+/_o9U7`Pf[j_Z%@O_Yq==_?.Qj_Z%@] +^V7Iu^V@S!^:h1m^:q;[^'DHg^;%J"_8H8jqo8ZS%)p-#_Sa=0_8*k&^qfra&\u/s^q[\#^VIY" +^VIV!^q[Y__#;+%_Y_1K_\g8.`lQ6A`59I2a1eF5RD\=aqu$Bks8W&nrr;uurhTQErr<#srVlfp +rr)cnrr;urqu6BG\snG)MP%&QWMc\tYc4J!Y->+5Z*CL8ric@+"L#&6YH\#0,-\8SYck77Ycb16 +YH4q6Z)ah$W2Q`"Z*LU:XKAS*Y-5(7ri[`SY-5%3YHP+4Z*:I;Yd(I;Z*CO;Z*CL5Xfne)XfA>' +Yck77ZEga?ricL0Yck5(Y6V56YH=t1YHRr.&?i7;X0&P.XfJP,ZEUL7Yd",1s02O+s/uI*Y5PR( +Y5>F&Xq@k?Y,nb.YHP+/V5:/kWMcburN6.(qQTt%$E^J7YctC;Yct=7r3.9HXK/J.Z)st&X0Ab' +QB7&o_<(FjrVlcqs8MrnqYU6hrW<-!rn%2MrVuj-r;,6CN0T'T]&<8[rr)fpr;Z`prr$3ub*J3c +XgGC3Q]ITSkh +ci4g\s8W)trVlfnoA$sQVo\#fm-*TqlKRR4lNZY?m-F!(m/H>MlMp/OlKRQTlMp)TlKIHtm-3a! +lg+N6s6B^Nl+6."l0@U"kih3mkiqBulfmWqjPf"Q_4nBopAY$irVlearrW0!s8MsPs8Mupr;Q]o +r;Q`omEiDP`7XAOs8;Wbp\Od`qu6Njqtg0dq=sd\p\=OXq"XUXqYL!_q>^6iq$d#orquTgqYU3h +rVZTlqtp3pqtg0dqYL$`p%nX_%/B\qp\4LXq#('erVc`mq>1-g"8r#lr:0[aq@WW$q>'pcqtg3e +qYL*cqY^9gr;?Tl!;uins8)`ls8)]kq>)93qY^3cr;QWjq"OX_r;-0_q=jXYp\4IYq"a^\q>0p_ +qu$9iqAK,*qtKaXr;HQjqtU!dq!6b\^9u&KrVuorqYgQrrr1=Fs8EH*s8Doaaek8]X5!:Br;QQm +GQ%R@rqGKaP*DN(P*MQ(OI3Z5dBfRC`q''(pV;WHcgRrdXP!+=rUdL]V8pc]PGd=8qX)+hS"?"7 +R[fk=WP$$MR&8X:qXrXLMjrApkJj0PMj^6,OdEW,aJbN+cJZR-RFV96qYT^!T<,l@W1UHNq>L6h +rVQTor +bl@_Bs8Xgk5OKBkN_10jj<-.jlYdjk2k[aioB1bkN1aaio&\M_4e9np&=pf +rgEcfrVuosr?VFBrVZTmrqu]mqXid`WMQi9e)9!3g">$4f`'P+g>(KQ..g]-"-gCW)ngY(?;gY(00g"Y97f[ngUg&p$^g=cDX +"52D^g\ok+gDer&gYCK6gYUcAgY:H=jl=t8]WS-DiV36Gqu-Kms8<6'rr)cnrVuipfDkmM%/p5) +rU.e)PDuWto_JFaqYtd +g&M*O.0';Fr;HWprr2rtrVulpqtB@'WfE1DaNVcE_8F7/_SjF4`5BL0_o)JjqnWHQ^qde%_"#5B +^qmkd^];+J^CIun^V7Is]tD+p^:h4p_#D+J^^e2t_8=10_o'F1_8O=.^AbqR^q[Y"_SX.'rkB;a +^V@Lt^V7It^:q@r^;%Cr^VIV!^qmk&f"h@%qSc!r`0! +rr!i:rr)cmrr2lorr2]M\NQuXehefVPpAhri/AgX/`5"W2ZbpWMuhqWMleqW2Q\oW2Z_o +WMueoWiDtsY,\@pUSOfeX0&M)Wi2knVPpMpX/W(uWi)hqW2ZbpVlHbrr2T^p%]HG/VPU2dV5gMn +XK8J'riH.%!3?'uor.qiq5O=k$)XPrW2Z\oW2?NmWrK1"X8f:$WrK+#WMoKhs/5psr2BXp$)j_s +Uo1)bTqeLaW&CQPWi;trWN)tsVl$AjWMuo!X/`8%X/`5%WiN5"V5UGpWi2hnXL5L?WM#WHZJGiNN:h+q>C6gs*+GArr2ZQ\WW2JQ]dW(R$!fL +g=!@'V8r3*qtS!bOO3L!K!!_tq>KupPbuOGY*>mCr;5ltS=?+;R@Bb;T;oT@YaVKGrquKH[#^d4 +qru.qN/X4!S!'2Ne&\MWWmBV?R@2V(r;- +bl@_B')hh.qVf8s\B*Ron*TK,lg*j#r9=IOlKda#l1sWEl-ASokn`RKl0.?qkND-qki_3pkN;!n +lKda#kdp$_l0@U!kNDj,'Bn`Jm-F$*l/^spiP2G*iq`NOrVleas!@XDs8Doqs8DoorVlcmqYpN[ +a0E)"m/-e]rVQHgr;-9fs8W)srVclsqu$6ds82lor;?Tl$N0etr;HQkrquZlrVlisr;Q]o!ri/r +rVccns8)`l!;uZis8!0$qY9ser;6Ehqtg9jqYgHn#lOSsrVlfrrVcQl!<2uts8N&s!<2ops83<( +r;6Hlqu$HmrVuosr;Zfr!rr9!rquirr;HZpq>Ca"rr)iprVulqr;HTlrqururVQHhqZZopqu$?g +rqm6(r;?Nlr;6Egqu?Qfqu6U.rquQcr;69br8k)Qa6s!,rVlfqrVuius8N#Drs\l+rVcQ_e\&r] +o_nadrqcY=rVulrn&V5dRAQs\V5gD^R'+TWZ^7&pn,E4Q`0cV-o!aFQeFWP9mBi"I_T8aBWo*^Q +oY6HMYfFr1d)jDXg<-=VVqCkCo\-R.S_N>AS;WK&^X'0EOgEBSX.6!-j2dg_eGoOIr9(V[YK"8Q +S[.)Ms8Dlnrr)fp"9&8urS%:%~> +bl@_B')hb+qVf2p\&R1dl07EokND!hr8n1Gk3(mhjn\'=jm)".jn\$=jo4EBjo+jQ#:]j5]:ajQ#@`j5T.^k3(mhjm;+0jj<,sjlYafj5].XhrgYLiJhqm;Kh;-rDgt^`^h#H.+h#H+G +gtUQ=hV?rEh:pfDhr*GMhqm2FhV[5Ih>Z:1hZVflh;$fYh>c7>h;$]?j58YJhVHuEiSXOhs4m\3 +rnmb4!o;bkoA9N''].[%gtglDg"Y66hV[&@gtUZCi83nZ!9!_2s5!k8hVR)fh?D`igYCT=rnIS3 +h:qh^#i".igYCT?hVJ+d*oGi3hV[>MgY^uJi8lW2QVoXf\V'X/`2#X/W%rWrB%IXKJ_- +Y-+n.Xfeb-YcOh+Y,n\)WMcYsZ*h6`[u,aAht[0Jrr2fkqu6NnrRBPr;?QmrVcots8DoMs*t~> +bl@Y@&H2(?Y.E!8lgaK1kj%O#ki_m.!p]+:rosCHrosFI!pT"8b39H#l07EpkNM3rl0%C!lfmWC +kl^/6lKJ61rob6alKRQumHa$'o^CA4Vp4].s8Muqs8N#rrVc`qrrE%os8;lrr?)%;rVliqqu-N\ +afMVdlMUVXq"jpdqu6Qlrr)`lrr)ir!<2ur!;uW0<^[d(Pa,](#aujLpn4]^idoSAajqrSFfAR(g\IS?C`Ds7jHjOM:,Xqt\^J[EZplOJU4m +s7Xg9MPStJQ'&&ijn.rRPa/W#`iYi.d.#DLN5,,drs[MPN3UdLX.ZiUqYpEkrr;p$rr)fprr)fL +s*t~> +bl@\As8XmmJHq_rVccqrr)forr;uurhTSl +rr;p4rr)fps8DinroUthT=EJ5j58VHh;-lchuDX4h>c=5hqm5gh#Q='h$i/rgtprEh;@&Fi8EJj +h$)Tih;7&Irnmb4"5VklhYu@'hYl7?gtpuHgtgrIgYUiCgu%#fh>uNjr8.S4h;.e]!8[S0!SuW1 +g]lTigYCW?h>?(!huDO7hqm5ch[&/shV[2FgYCWahZ)C"h>c=Thqm5Ihr*AKi8NVKf\>EHiSNAB +f\G<=hrs(7S".Idqu6Tns8W#r"o\H"s8N#Ls8DrsrVum$p$;2Gr;HNlqZ$TpA,ZGo[>U0XgYh#K +im"HfS[m1`R$,,Qs8V5rR>&BI^l4l)nGiLGZ]ginbHmeEi;3KL_Ms\lmJ6YVe[Ds5cDQl+dJ*\; +e>\G+hT_IRY0cD,n\UZ]\'W4"TVp6-d$Td,p\t1$f:\)-dD`/Z[,(TXr;HWpr +cN!kB)#aC-k.[C_[_9c+ahkj0`5BF+^r!t)_8Q>j!lDdkrk\iT_SX.(_!A`:^q[Y^^];.K_#M.I +^])"K_>_7L^B_Hd^VI\%_SZ;f%)0Eg^;.Ou]thM$^VB-N!l;[erkQpr"Mhdd^r$&h(rX>.^qmh% +`mN2HR[V4[q#C?lrVulrrVc]os8N)uV#UAls8)WN!#%W3!/&X0Ah3Y-+n0XK/B#W;rsgX8f72X/`5"WN)tt +Wi;qsWi<&uX95T+XKD9!orJ+o!3?%!s/Qm9X/DelWN*#"Wi;ttX/r>#WiE%uX8]*sX!=^JXfSY, +XK8P)Y->(.VQ6o)XfA=qUSb#l[)9hYLQ9%3p\Xsg!;uip"T8/qr;HTnfDkgKs8Dut"nh3Pqu$Ei +rqcZpraYp,m'Vb6\_H'#iSr([Pao82^6atonc/UM^6jSeo=p3S`UEj*hm/E5^WNjQYM]0Upqi#Q +^?tdoqUDp]cHW5LWR1A=q9u:$VqoRaPc`9qp[H"cR't>]Y+MT=nBdP]^\@a-%+h/2Z-gOkTX +f)PdL!<<&ts8W&s(]FC1h6a&thr5M,dBg$niV36AnaZDRrVQTnrVcZkqu-Km"TA>urr)?cs8PS- +pA"UcrVZQfp\FUVnFH5Bf!`-@oD\^grr)`srVuordf97Es8;rqrr36&r;6Hls8Dons8Dp$r;5BC +I@Jpfs)./6Q]@rgbG1,nbiIEhV3HYDo?EMYV9\/Q[A&kQ]Z@=CW8IFMqTk[nXk<.8iNJ3+_Uc,\ +R'4ile$Y[(WS54GM6Pk/m*M_lOKm'PX-TC!k1-2[T[iH#jKjZ$^u!),R'GHCrqufrrr2lqrr2it +s8N#Os*t~> +f)PdL!<<&ts8W&s(]FC0h6Wopgtq5]m,m?ikN:gbjlY^ejS.d8k5OHDk2k^Sk5XKEjlY^drT41C +k2u[(#3G"2kN1miro=1Ck2k^;joa`-k2lU's5O(;ro+mXkND*qkj.9@UUo:Urr)fprr)fnr;HWo +rVlejs8W$#s8Dlns8N#sr>u"1bc7GEd,X*:da?\(i8!2IiS`VLgY1E:gtgiCh>Z11h;7h\s5!b3 +rn\:Dgt^cAhVd;Hgtgc@gYCT?hV\=hs4m\1rn[V0!oDhjrnd\2!8dM,$/XIlhV?lBi83;hh#H1> +gtgfChVI&Fh;7#Egt_VZ$f'RohVR)Dh;$f?h#?.1h>Z15h;7#Egt_;Qs4d_4hVR)ehYu=ChVHr@ +gtgiCh;$fBgtUT?hVA%brndY0s4mb5h;/(es4nXNhqZo:g#(iJgt^W9g=b',fA5?(W34M9rVcco +rW`?$s8N&urmh&Hrr;osr;Q^$rquZlrr;rqqu?Wo#5nAUSpd*]r;U[$]U=k[d*8DLV9\5X^8I9O +]CjL9Ni17dfXIZAS%d%NR&]-Bs81-4OKI1)o]*3:R)IXdR@UY3iRbW4OKIE[NK(@*p[?V6PE`H# +bH7/*b3%6KKqQu`o&R-5N54;iUmSFBqYpEms8N#rrr2oq!rr9!gAc[~> +g&M*O!<;los8Dus*W,j/e#/D3_nj=5`kK("_SO%%^V[k&^qmh%_SX.f_?.Qj_Z%=N^[/`<_8*k& +q8!$F!l2RcrkJTM^q]f_)ns##^qde(_nj.)^V7It^r!q&^r!n%^VIY"^[8i:_#V6t_#D.U_oBa: +`Po^0^Abe_^V[n3aJYB1g%54BrVlfprVZTlrr2lqri6"urW)usrWiK%rVuior;Z]oAGuMq_4-IO +YIh0;S!otHVPBudWMl\kV5C2kX/i4uWMl_oWMleqW2ZbpW2Z_oWMlbpWMl_nWi<&"W2HYoV5C8o +X/`5#W2HMiVl6VqWN)ttWiE%rWMuhqWMlbpW2Q\oW2]cr$`U))WMcbtX/`2#XT#@,XfSS(WMlcp +VZWltWi>`m&#lS/X/i8"Wi;qqWN)u!WrB!sWrK."WWoQ)W2Q_rWW&mtWW&ptWW&ptVus'#X/c)u +rMg[3VPpMqWiE%tWi;qrWMlbpW2Q\oW2ZfpWW0"MWi;qtX/W/&Wi)\lXK\e*W2?DeV5:&l]"kG5 +TZ63jqu6Wprr)ipr;?HirVc`Js8;lrr;ccprs/Q$qu-NorVcWnrVd$!qqmunS([`>DX4p%O/L=J +Ul_Csjk7>EQ%cgAcBXBdcfNceUQh4\ag%23i;3KMc^^*!f^SOmY`5!ef=%':Z-hL\\=Sb_hSkG4 +Zf1ZIe#\^rZd-^pQ_;I_eY7bjea;qgZ\XRUhSu@YZ/#3Tr;Zfrrr)iqrquourr1XOJ,~> +f)PdL!<<&ts8W&s*<#p+af)2^j5fCgm-0dTo(`1`rVcZjqu-Nkqu6Wps8Muq +rr)fps7?3irVld#rVQKjr;HZpr;lrtqu$NmqY^Wtr;HTos8DZjs8Drrs8;oq"oJ/orr)cnr;uur +r;QZpquurprVlcopAP'jr;Q]or;Q]q!WDrmrVZZpr<*&trVZZns8;lprqufqrr)lr!<<&srr)rr +rVlfrrVc`qs7uWrs8Doqrquirrr)ios7ulqr;-6drr)lrs8LP*DTR`N"okiVicQik(Y@T=MS-M2SFfm+&+uP+SJ>R@B;8hV4lZN30[oRZ<,WWmB%rPEr;f +f#F;DVS0mLOc-6rlbf0RY20'Ur;Q`qrqucps8<$!rr1XOJ,~> +f)PdL!<<&ts8W&s*<#p*af)/[i8N_YkN:mgkN:gbjlY^ejQ#7[jlQL&s5j7BroF4DjlP"Ss5X@F +k2tdfk5OHPkN:pikN1ghkiLsgj5oJ&jh0^_jlYagjQ,@[iS`Ynj8\6Zjlbd]j6P'qX3'c*rVc`p +rVcZlrVlfprr/Yls8<*#rVZTnrr+&;r;QHF\#d3cgZ%,AdEgA"i8*5Gh;7)KgY(B;g=tE=rS6r! +(u4!+hqZu@gtUW@gt^`Bh:pZ=gtgfAh;/(c#i4:lgtgfChVJ1f!o;_irS7J1r8%D-$fKprg"bNB +gtpoBg]#t/h;&"c!8Qnr#2J%ih;I/Frn[t=hV?lAgt^`Ah#-".ga(_2gtUW>h;$fAh;$c>gtgfA +h;-lAgYCT=gtpoCgtgfAgYCWagB-3fh#-"-hZ)@CgYCT?gt^`Agt^`?g>(K;g"ZM^'AhR#gtUQ8 +daI.:c`*qup\Y!irVc^!s8N#ts8LRKr;HfrqY^?ks8W$"rr;rqqu?WoGl.!QN.SD"s8W&ts7OsF +Q(c=R_4QdUV4s'6R[:qel*HG4VQcbTPa8#Za/k>sj8T)Uik(Y@T=V_2MiFjnmaeM*QD17MSY).H +j56hkOKlO*Ss"tgXjGM%Q'e_lf#F;DVS0mLOc-6rlbf0RY20'Ur;Q`qrqucps8<$!rr1XOJ,~> +g&M*O!<;los8Dus*;f[!^R:=l`koO,^V%1n_8*h"^VRb$^:q:p^qfras1nWMrkKMg^qmk&_83q' +_8*n'^qde%^qmh%_83q&_8*k$q8!$Fr4irVlK&Wi;qpVP^2eVl6Mkn>HPhW2HSpWi,iq,-.`AVl6Ml +WMlbqW2HPlVl-JkVl$AiW2HPlW2HMiVl6PlqPXk$W2ltuWN)tsVl6SnVuEUsVl6PlrM]^p!iW#p +ri#jps/61#VPgDmVl-KmWrK+2WMcYmW2?T.`O1quc0tE+s8MusrWN2sqYU3hrn.8KrWE)pr;QZp +s8<'!s8Dons8DqAqs_aeK!X\@s8Dutp!p..TZGg%SrT/5ToY;(QGWC[ZAt!BYFpo>Q(Yq4X,`q6 +rr;lT]:+hR\\+YoN3(b#eZ>"#Tr"EPT9H86hPc0iYe@<4ObnprcdB"^Q`\0V`h&R?Nrr;usr;Q]qr +bl8[]s8MiQ]rS]pk2k[elK[X!lg!Wokiq?qkND!jrojCFs6'aQkih9pkiqol07F1k6:,5 +jlkslroO=Hl07EAkm6S=l0Id)mHWs8kRm"?kNM!]jRD6GV7GR[rVQQnr;Q`r!rr)fp +rVlfnrVu)tYJB#`pA4X\pA"Rbr;-9eqt^'equlutrr)fhrr;uurquforqu[*qu$Eiqu$EjqYU6i +r;6?grVl]srqu`nr;QEis8E9'rVlfprr2lpquQcqq>L9hs82rsr;??gs83#ur;?HhrqmB-s8Mup +rVlcnrVc`pqtp?jqu$Ekr;HTlrr2iprVl`pr;clrrWrK"qu$Hns8N#ms8W&us8;j-s8N#qrqucp +r;6Bfqu$Bfq>U4,qtg6hs8W)so^;JRn[P76n,3.]rVcZlrr)orr;P7H"oeQ%rVQNkr<)urrr)fp +r;ZcpG5qI)_j-e?oDJO_qu$?S^n[^BjQk6rQ'.Q*Tq@afp]'BmVjj$FURmjLa3V/]XQTT\rV#3a +Tp(\&MNb-fn,2h4]q^jVRA-L8R,.GaV2g\)S"6:DQESfoaJbJoXkW*]V3dU +bl8+Ms8MiP]rSZnjPf%WrT+FLjPf%WjlPR`j5T+ujT"9?j9Xl.jQ5I`jlGLQjW*@CjlY[djQ5La +j5oFbjlYdhjQG^gjlPRckN1d;jo"3;itp_5iSihVj5]4_j4`P^j1hD"i;!&j +.KBDGrVlcorql]pjh7V#dG3^=h:L-,g>(E7g>1T>gYLZ(H^h>c:'h>Q+1hV?ocgBlTg +gtLK;h:pW9rnRP.s4dV/qqD#(!8[Y0o\Bo1gYCW@g=k<8g>(H\g&]s^n([lr!8IG*s4\.@h;6rA +gtgc@h;$iBg=b68g@s>%gA9S'fa$6cgY(?9g=lMY$JX@lgY:N>gY1E."5M_gh#?(+ +gAfq-gAfq+g&9VFh;@)FhUg99nD^U>`U*I!r;Q`qrVc`qrVc`qrr1IJ"oeQ%rVQNkr<)urrr)fp +r;ZcpG5qI)_j-e?oDJO_qu$?V_kj9Lk3^[%Q^!u2US40nq>]ZsWLfQPV4a9UajISeY3Gucr:T$_ +Tp(b*N0UTonG`.<^o*TdSYi +cN!qD)#aL5p"?U>UV+[a]tD%j]YD7r]=P\j^V9TYs1ScP^V@S!^q[Y"rkSoX_8=(*_SX.+_Yh4W +_SEt'_8!b#^V@J[^]2"L^VIY_^Au"I^]2"N]Y2%o^AGYV^;.S#^;7Y$^V@S"_8*h"^A,GC^A>VE +^&l'b_#D.u_SO++_8=(*_SX.*_SO(*_84")_8=(*_SX.+_SO++_8=(*_8=%)_Yh7M_AgD3aN;NC +`PTF(]!o/Z\$<]sbc[D?h=ppGrVufps8N)uWW*)"s8W)rs8W$>s8Muqrr)iqqu?]SY`P*KZ*UX5 +Tq%[JUnXNVV59u`rh]jsWi;hjVZ!FmVY-heVZ*J%W2?DgVl$>fV50obWW&h)Wi)YfTq\B[Unsrb +V>d@iVZr*Vl?VlV5C/hWi;qqWMl_lVPX9fs.odoV5hVPU,dV5:'eV>R4iV>d=lV>@%tV5C5kVl?\qVl$AjW:["fVuWanV>d@kV#mNlVuEOl +V?3ZoWW&n+XJi&+aha*k[,CQPr;Q["rVuloq>1$frmq)Qrr<#squ$Ek"8r,srVc`ns8Mt?s82*! +Q(?=or;?Egr;5`qUSbrjm*i,'PFA&:TUN[ks6%:uSX?(GT:)Uud'fCFkl:V[p#3WYPE_5gPc`=% +rUo!]VO3X=V5B6BhtG[#OHc0(T;8'GZ.7^QWLB9XgZceUQ^O8+R^1K:n]e)0^#T(krVc`mrVlfK +s*t~> +f)PdL!<<&ts8W,u(&e.2nBnVLbi.gLjll!ql07KsjQ#D%k5aZDkkaK@kl9lKkiq@&kQ'lAkl0i< +kQ'lEkQ'lGkQpA8kiV$kkiV(+kQ'f1kQ'lCkl9oBkl9o,kQ9r2lMg/blKIHok2bUdkMtUfmd&,t +YLE%?qu-Nos8N!!s8N#%s8W&us82fqs8W&us8N!#rVlfprr2jBs8CKNZHh\+p\Ogbqu6Woq=aR[ +rVH1!crVcZkqu$EiqYU6j +rVHBfqtg0d#l=GrrVZTlrr2fns8N#rrr2rr$NC#$q>:*grr2lpq#:)r;HTnrVcZmr;HTn +qZcusrVQEeqYp9ip(I3!rr;uqq"OURaK<#-p&+^crr2lrs8N!!s8N#Ls8W'1s8N#trr2rsrr)`m +s8N#ts8Mrrs8DusEr>=R]#O%3r;QWlrr;ZE_nXCSmc2X1]u.t$S!V%eq!-\Y^:DD0X-BF+j3bWa +n,<1`s7td$\"o[u_:e8RqX +f)PdL!<<&ts8W,u)?'R7nC"_Nb2DIBiT0.`jQ5L`i83GQjQ#8!jSIp8jT"qTl(;^Y.Q'hqd#=h;?r:eCWL3g=P!3 +gXk-6g=k<[h#H.%h#H+5gtUT;gY:N^gA]b7g=b-4gY:H8g=tB9g"QGX!8@D+!8RS.s4dV/qV2)* +rnIk7f\50;g"4j/g"?;Ws4IA)!nu>\qV(i$)VWs"g=t?8g"G*6gYLZ>g=tB;g=b39hVHo=q:bl' +!8@A*!nl;]r7M)(r7V)'s4I_4gY(<8gYCT +f)PdL!<<&ts8W&s(]E[@W1p]>aMGR'^:h4p^V.4h]=kql]`,YF]FDQh^;%Cs^VIS!_83q&rP8KN +qSE3Is2"`Ms1e]M^VBc^!5JKHs1JNL^q[Y_^^\&o^q[Rq]=knl]tV1nrk8ZN]thFs^VIV"rkANM +^V9T["2;Ob^@f5G^qmn'^qmn(rkeZNs2*d3s1eWNrkKVm`Q-*A`l,^-]=52W\@9#ccI04kV9SH+ +qu6Tnrr<#trW<-!ri6"urW)uorr2lrrr;p?r;QH1Q&;!1Z*14,U7J$ST:;=@USai]U8FiaW2ZSe +V5=0gs/#Ccs.omrV59ubVuERnV>d:hV@oi)V50i\Unsl`V50o`Unji`VZ*FlV?!IhV@BB!VPpAf +VQ$PlU8=ccrh]jsVPU)bV#I.hU]RBgV":G_V#I4jV[]N!Uo(#bUnsrfVk^#`qP=.drM9Ig"f/#m +V5:!cV$*TjUnspeU^j8uV50rdWMcViV5L5gV>$hmV5C/fUnjc]V#I4jU]dNkVPL!dU]@.gTbF6# +WMur"XKT.BQ\CsLlM(2Trr)iq#6"Grrr;usfDkmM&c_k0s8N#trr2lnrVulrs8W)rs8W&trc7r( +e%3QaqY^?jr;Q`hg;C_Mj6u'U_nO(3\=8l'p\=(2beLa4bc@#*d,`WjbO>H/rr;fUc*sOCXhrf\ +r;6!Gg;gqB`4`.,S)XJAf=.`\]?8OD^rk[(jj(<:^?5C\ca9RCXi0,irq59sbh2=\s8;j"s8Muq +s8W)tgAc[~> +f)PdL!<<&ts8O&;rVc`ol,BX1g#qS^k32*rlKRQrjlGOckND"*k5aZCkPaWEklU)5l1jH\l0.?q +kih:'eqtpBjs8)fop\b?rrVc`oqtg3d +r;ZZor;linn,3+\#5nGtr;-3_rq6ruq#(0irVc?Vn);3g_<(RnrVlctrVuosrW<-!rn%2MrW`E% +rr<#ts8;j"s8N#ts8Mrrs8DusF8Ye#k3Mg@rr2inrr;rglK$sT^pCoc!p$_25pAFpis8Mf\in;u@kk+fPm*)lIb2_pI^7garnGi=Sj4W/EkjIm)mI^5Jmc33ep&FpX +iRul@lLt5Wqt9IHnFuq^rVc]qs8N#ts8N#Os*t~> +f)PdL!<<&ts8NZ0rVc`pkf'R1fB25UioK4`roFCFiS`\Sj5].sirJ*;j8J'=jT=N)jnRmTjlGLa +jQ,IajQ5I`jlGI_jlbghjlGOajlGM%j8S*BjlYXajSn6Kk2k^cjlGOcjl>IarT*t>qW.\ +qrIe=!9F.@qr@k@jQ5M%jT"?@jT"?)jT"6?jSe*[io/hRiSi_Sj5JqUi8Ee^j65$uWP[`lrr2lq +rr<#trW<-!rhKMlrr;rqrYPP4r9:kfZ-(_Uh;$iBgtpl>e^`:*gtVe]"PMM`g=lP]q:kr'p=oT# +!o)G_rn.;*rRq2(!SQ-)gAfk+gAfh+gA0J0g=t?7g"P07g=lM[!SZ6+gAfe+g"Q;Us4@>)r7V5, +g=kuLs4mS-!8RS.rnR)!"kq_cg=b0Kg&g$_gA]k+g&Tq*gB-0bg]$"+gAot,g\oh,g"ZM[rS&.@ +f@JL%f%/@'h;7,NgtLN0\>Hmtq>U?lrr;otr;HQmfDkmM#64]%s8W)ur;Hm"rr2rtrqufrrVujN +r:fXAlhLGXrqu]ns8DQSjl4k.[D_1qkLm#!U"T4kYd_m3IpAY*hp$hD=p\t3krVcfs +rr2rtrr1XOJ,~> +f)PdL!<<&ts8W&s#lNbrSu'6Fa2%\g*l#M+^V.:l]Y(tl]Y2%n]tM(m^;%Cs^VIS!^q[\#rP8r[ +^q[Y"^q[Y"^V@V#^APbG^&u-c^:jKZrP0#^_ns7)^qmh"]=Ybi^:h4m]`,VF^&GbH^&GbF^Dsu& +^:q@t^q[\#^;%Fs^qme#^q[Y"^V@S#^qmne^]VHi_SZ8fs2##W^V@S"^VIYa^B23c^[8i:^EC>/ +`Q#m8_ns1%]=>;Y[^X#g_T]cgS\!bRr;Q]orr<#trW<-!ri6"urWN9#rVZTmrZ;%8qu-NnrVcZh +iie6$T;\ikVPU)]TUqR[:iV>d:hV$*Tj +UnXU_U]7%uUnso`V59u_U8+KXUSOacV#R7oVPU)cVZ*CqVPU)bV54*cs.f^mUnmpb#,\5nVPU,d +qP=_"V59r^Unjc]Unac^USFX_UB@nUSFW]UnsjcV$EfmUnXZ\ +US@LX"/;QdV>R.hV>m=mV50pcV&?)'TV%jMTqJ3ZV5UJlUoC,MLSibsrr)ipqYgQrrr1OLs8E6& +rr2rtrr;oq"onT$s8W)rs8W&tr\49EmcNj1rVlfor;Q`poBPGse\SW1jR20`Y)f:0pslUWc/e0Q +c(U)kf_+^umIpJWs$-MXmGcgOhWXV0rp7k:\BEt$iP;1OZge"ln`8HZiT]h!lg=??p?ptuk4ScO +n);sPhs0q7s82KYmdTuMs8Doq!<<&ts8W)tgAc[~> +f)PdK!<<&ss8O&:r;?TmjM%J#h<="_jQGdnlKRNpk2kafkNCt&k5OQ8kl9iGkl9fSki_-mki_0m +kNM-mkPXNGkNM*mroa=Fs60pSkiq0sfqZ-Ke +qZQcmr;Q]prUg'krVlcmq>(*hrr)lrrqufp$iKnuqYU3hr;?Nmrr2lrrr)csrr)cnq[3/rqtg3d +qYU-cqs4([q>0sdq[*,rqtg3eqYL*cqtpEi"9&5urV?Hmr<*&tqtg-cs8)`l!;c0]!;cTis7u`k +rq[E+q"OO[rr)inmHaH=fWMU:pAY!gs8W&ss8N)ue,KXOs8W)us8Mrr"TJH$rr2fps8FVMrVc`o +qtp?ks8MuprVc`prVH'5XHoX#e&o7iOLFQPb*n^"ajS84QBei=rr2lrr;QWrrr)coqA&o*rVc`\ +^71Lmb0e)&Q_MUsrqcQhrqI6)r;QZnrr2loqtg6hrr2ilq>0scrVlfqr;liprr2lr!<2uts8LXM +J,~> +f)PdK!<<&ss8Nl5r;?Tnj1V>"gZRYVi8WeXjlPR`io0mr!TW/7ir8!0jT"9?jT"6KjQ#:]jQ#=] +j5f:]j8@s +"68J'j8J$=j8J':j8\3>ir\<%j7).0irJ0>irnB#hqm5hi"P)0io&bOip,X[j4_)C\D?oYrqu`o +rquotrV`Vn!ri6"rVlfp&-)Y-rr;ZEZ)#.bg"Y36h#?+>gt1-/f\5-9gY:E8g=t?Zg\0A$g%a;$ +f`9b)f`9b*g&Kb0g"P05g"QGY"PVVbg=lJZ%GKRkg=b35f\"m1g=b0Xg&fs]gAT\+g=b0VgAfh4 +g=tB8gY:N!2rn&1@e(*41j5SV=hrMnQXOm.Er;HWnrVZQjs8W&Hrs&K&s8N&urqud!rr<#trql`qr]'rV +rVlcmqu-Norr)cnrVlfpq=)n:R&.jRbds1&[dEn5R[:.ud`APVQ*fZPr;HTkqu$Elrr)coq@`]' +rVc`\^71Lmb0e)'R%hatrr2csq=sd_rr!H,rVlcnqYL-grr2ilq>0scrVlfqr;liprr2lr!<2ut +s8LXMJ,~> +f)PdK!<<&ss8W&s)>i@#R\n$H`4imt^;.S$^V7Co]tM.o]Y;,W^&GbD^C.cj^r!n&_83n#^;'Z] +"i%db^V@J]^Akqo^:h:q]tD%m^V@V%_Sa=2`5BC*^qRLp]Xteh]Xtbd]Y2"k]tF9VrP&6FrP/`U +^V@S"_8="'_>D%J_#V:K_#V:I_#_Egr4`3Grk8HK^:s!Ls1TMg_8O=0_SO""]=PP_[^EZ_^q%G$ +WLL'Bo_e^erVlfqr;uusrN#tsrX/W%qtp?lrr)`jr;HU$r9qt)MOLKBVksBe$_X)\Q^4&0T;/6\ +VZ*A!V50l\TqS-RUSO]\n>-)\!2T=b"/McjVY[+lUnaZXU&LedTaRWkUna`]US4BUU7qR\#,@ui +USFZ^rhTFf!iDfjrhT.^s.oOgs.fanUSFO]UAq"eUAgnfUAUedT`Lp_rLj4dr1s7er1s@erhKIg +"f%lgUS=I]U&^n]U'@9bUSOZ[V=p_^UDKZ"TUqmTUo'uVRAdE]IZqtDr;6Kms8Dlq"9/?#rmq)R +rr<#ts8W)rrri?$s8N#ps8W'Xs8DoqrVQKjrr;urr;HTnrr)]_e#et4`mi2CR#ncDq9#.mXi]#4 +Xd56Zjo52VrVQKjrVlfpr;QO*qu$Ekrp%4eR'+TZ_PW]oanYl7qu?Elq>1$f&,uP*qYL-grr2il +q>0scrVlfqr;liprr2lr!<2uts8LXMJ,~> +f)PdL!<<&t(]XL6rVQTkhmoVrhWNtZioT@fkih3lk5OK?k5OHLk2k^ek2kafkN:q%kPsZEkPaQC +jo4BPkNM'jkNV3mjQ,Fbki_..jojl3l0.@0k5XTUkiV$jk2tdek3(pijlPXdjo4EBk6'r2kN;d* +s5s%>G-r9r(E^>S\X +p%8"RqYL0hqYL-frVZTlqZ6QjrV?]nqt^'_q#1$gp]L?gqYBg\!rMonrqcfqrVcZirVucsrVZNk +q>^6hq#^Hkqu-Hmqu?R"qYBs`qYU3fqu6NnqZ?]orVl`pr<)rnqYU3e/c#8?qtg3eqYU-bq>0p_ +qYBs`q>'m`q>0s`qYL$aqY9paqYL*cqYU-cqu$4qu-Tor;P+Ds8E#ur;Hm"rr2rtrqufrrWiK%rr2lor;Q]o +.fTDFr;HTnrq>eG9!t[@WVLS=5b9[+"[Hr;?QorVQQlrr2rr(&n12rVZZed&`Y# +R$X&$T"3YPrr)fpr!!&urr)cmrr*c5r;6Ejrr2inrVZQjrVlfpr;?Nlrr)irrVcfsrr2rt!<1XN +J,~> +f)PdL!<<&t'*%t1rVQTkhmfSrgudVQhVdAPro4.@iS`\Rr8R_7$KC%'io8qVioB%XpuDD6!9=%; +s5Et:(?=K8ioB.]io&bRioK.[io/kUjQ,@]qr.V9roF+>s5F=EjQ,@\j5T%Vro3t<"6AM&ir7p: +irA$=iq_X7iW\B%io/nVro41Dj5T%Vir8!*!875&"PMM_g"?&Pr7V/'rS%8( +!nuD`rn@A+r7V8-g=k$3 +g=k6RgAfh+g@s8Jg=Y'4gXt*,e^rO2h;$`:f@S^5in`&6k3gWpWmC&/qu6Tmr;HQlr;P+Ds8E#u +r;Hm"rr2rtrqufrrWiK%rr2lor;Q]o.fTDFr;HTnrq>?fUm@=;SX5V?eG9!t[@WVLS=5b9[+"[H +r;?QorVQQlrr2rr(&n12rVZ]fd&`Y#R$X&$T"3VOrr)fpr;Z]trr)cmrr*c5r;6Ejrr2inrVZQj +rVlfpr;?Nlrr)irrVcfsrr2rt!<1XNJ,~> +g&M*O!<;rqs8W,u(B+:0gp3?H`6#j-\\#Ph^V@Lr]Xthhr4W*B(;7An]tM(l]tV1o]tV7s^V@S" +^:h4orOr-As1SiQ]tV7q]Xk\d]YFH]s2+iUrl,\k_7mXr]Y2"i]">Pb\[f;`]=PP`])B;@]`Z$b +^VBc^s1eTMs1eWNrkJlW^qd_"_8*h"^VBc`"i8!h^:qA]^^7ck^V.=n]Y2%nrk/BI]tNpLs1JEH +rk0Dg_Sa4+^qI=i\@K/X[Ca;h[DBecS>as.qYgBlrr<#trW<-!rilG&rX/])rr)lsrVQKir;Q[: +s8Mrorr)lqrTCn^OJAtZV4sWUSt)=?R$aA6TVSC_V>m:uUnaWVU8"?TU8+KXkbJ0P"/DZfU]$tg +U].(hUBRHgTqJ-Srh9@b"/;QcUAgnfUALVfTV8*TU8%X^s.TUjUnjdSU]mNhUnaZYqkO1c"/DTa +T_Y;]TECm^U7qLZs.KgpTqJ$OTq\9VUnjd`U][BfUndm_$DF2gUS=KXU7n6Qrh0=dpn7ndTq\9V +U8%O[s.]Oh+JPO#T:r$XVl$8aU8+K[Un*a=Xgt3YOMU)Rq>LGrVcZmrVlfiiP;4RQ(4D3Q)N4.qq\ZOPa@o/QCkP5o`"ddrr;ro +rVc`ps8<]3rVlcns7F[>R?a/+P`q]Lg\LjIrVl]urVlfpr;?Qn)#aC0r;HWor;?Nkqu$Elrr)cm +rVc`orr;rr!<<&ts8N)uf`-I~> +f)PdL!<<&t*<6$;rVQTjfs.Bfhr`qWioK7bk2tdfk2k[bjlQL(!p/M(mH+B/"6J\-jo4Fc +kiLjdki_'diT'(akNCsfjQ>\*k5aZDjo=HEkN:q+jo=BFjlY^ejQ6C%%HZ[4k2tjik2bR^j5oD% +k5XNFjQ5LcrT+^TjlPRajlY^gl0%0fioB.`k2bV&jo=BFjlY^ejQ,Xg,NRtKk2kaejQ,FajQ#:_ +jl#+\lf$CPileL/fCJe;rVlfrs8N!!s8N#%s8W'"s8N#sr'g\q=sa`q>C*hq$?imq=sd]qYBsUq?-Wmqtg1'flMCPX!r;]hrqQ`oq>0m_qtg0hq%ii&q>0p_qYBs`qYC!aq>0s`qYL$aqtU!h +qt^*fq#^Egq="1DqZ6Qhq>1-es8!]1p@\+Qq>L&KrmCcGrW)ur +rWW?$rr<#tr;Zfr"TSH!rr;uss8;or/cG\Ir;?NnrUJINVOF'MUp/,5s8DB8\>#LcTrGcXmJQt] +rVuorrVlcps8N#ss8W'4rVucUb-\%;S"?Rjf^\n=rVlirrr2ourr)fps8N0"s8N#rs8W)trVZir +rVuosrW)usrW)utrr;uurn.7$~> +f)PdL!<<&t'`\13rVQTjfs.EghiSrkUi8O[n%H67(io9"Yio&\LhVd>k +iV_U6iVh[JiS`YOi8N\Tj5o=[hVR/Kj5T"Tro*n8"l\J#iS`Y[i?R:>iS`VNhVI#EhV[;MjQ#.T +jQkgUhr2_[Y1<+>rr)iqs8W)t!rr9!UAt8ms8Vrp)!AK-[*IL^g=Y-6gtCB7f\5*7g=k66g"QGY +s4RJ+o@j5tq:Yi%q:bl%qqD)''AD-mf\+s1g"G*4g"P05g=k64f`'S(f_sM$g&Th(gAfjsgAfh+ +gA0D%f\Y<]gA]b.g=b03f_3u&f\+s3g"G$Ef`9\&g&'M'f`0YKf[eR&f%Jm9h:pW:f[nm7gXt6> +kgm2D_W1Fgrr2inrVcWmdJs7G!<;ur"onT$s8W)rs8W'$s8Doqs8N#tr;ZaJrVlcnr;HZoo%:XS +S=cRPYg)\;rU/1FU7@jLWP7!Or;QWms8W&rrr)irrr2oss8E`2s81m"[&'@`SuB9RnbiCbrr;us +rr3#urVc`qrrW3"rr2lrs8N#rr<)urs8W)t!<<#s!<<&ts8N)uf`-I~> +g&M*O"98B!rr2lrs8W'-rVu]EX-fp+aM5_4_^VR_$]tM.p]tV:s]XkYb]tV2X]`5SI]Y2"k]=[CA,J1V$]tV>"_83q" +\[])X\?rZV_S!4ja1._9d.$i/rVlfrs8N!!s8N#%s8W'*s8N#rs8W&pqu$BjrZhIBrVlcprVkcX +PF8DRWhc>]T:MC&[TV;@Z!MQ1^U&UecU*62#S=H1EUnso^U84KRStDL@T;]&oOH['-o_JF_rVccr +rr*!!rr1=Fs8E#ur;Hm"rr2rtrqufrrWN9"rVlirrr;orr[n*JrVZTls8DN?]Vh6jUSP-=nGiIT +e@;6CT:r6ufBrM8r;HZqrVc`orr;usrr<#t'`J(/jN=j+Ssu=M]@cZOrr)irrr2os!WN&rrr +f)PdL!<<&trr3E+r;HHBY,8tkjl,4[rT4(?s5j1>roN>(s5a7Aro4XPi8a(djPf1_kiC[[ioT@c +k2cO$!9F+?s5X1?qrIq@jl>G#jo=E@it(52jQ5LckN1aaioB+\jlQL&"68J'jo+6CjlGL_j8S*I +k3;*kiSWSRk2kU_roF+>!p&J)ki;d)jSn6Ck2bR_r8\USjPo1\l/LFVj3Fj1eF<;6rr)irs8N!! +s8N#%s8W$!s8N#squZlts8N#ts!7UBrr;urqtg?V]=62No_.qMq"jj]q>:'cq>0m\p\FX]q>'gb +q>^3tq=saZp\=LWq"aa\r;$Bf#l48jp\=OZq"XCT"o.oiqt^'bq#C'kq"a^\qu6Eoq=jXYmeQkW +s7n_Mq"X[[qYBs`qtg3eqYU0dqYU-cqtg0dqYL*dqYU0dqtp6eqtg3eqYL*cqYU*bqtg*`p\=OZ +q"XCT"o%ihr;-9Zqu?Kpqtg-`q>(!a!VuNipDWi&qYL$aqYBj[p@J(ToCM:t]"HqprVuiqrO2b( +rr2j$rquZjr;HQlrqn#n$_oL-_nb`=ar;?Nlrr<#trWN2tr;HWo +rVuj+p?LAU_SF1>i:6aErVZHh!<2ur!WN&srr;rsrW2uqrr2rqs8Duss8Dut!<17CJ,~> +f)PdL!<<&trr3T0r;HHBY,B(kj58_OiS`VOhu;U4i;V]ui;_a9i;VUMi8!5Ojl"tQj5f.Rgtq#L +iS`VMh;-uGrnmk8hV\7iro!h6"lS@ui8YfDaG:hV[,Ef#4c"g\(LErVcZnrr;rq]Dqg.rr!*$r;6BhrVZWn +r$2+:rqu3@d)NuBbh;=ZrVcT\gWICNa3`f8qu6Qlr;HTns8W)t"TA8rrVlfps8EE"lIsJ"^rFg\ +nbiC[r;cirr;lorrr2rrs8E&tr;Q]qr;Z`qrr;rsrrE&Cs*t~> +f)PdL!<;in&bj_PRB=HJ^:V"i]=YYc]=bfS]DfJ4]*l3^]Y2"j]">Se]Y"-R&[o6b^Uq"f^:h(c +[^`ub^qmhc_&(#-_ns:+]tCth]Xthg]">Pb]=beg]"@sP%D'*]]=Ybj^V@Lr^;%G^_#M.O^;%Fu +rP&HM^V@J]]F;Bb^q[Ol[^Wi]]XbWQ]DoGD]=bf?]-Fo!]=bhn_8*h#]t1\]\$r`P]>2+i_oTH^ +UjIc[KTV8*SU%tG_Tadcj +TV%mNU7n9TTqJ$Mp7MV^TV8-STV)(RqOdbY!M?%aTbO/nT:ML@R%C%IW2H5QVpt;5qu$Ekrji(, +rr2j$rquZjr;HQlrqn#n$_oL-_nb`=ar;?Nlrr<#trWN2tr;HWo +rVuj)p?LAU_na:?i:6aEpAG!jrqulsrVlfrrVuitrVZZos8;oqs8N&ss8N)uc2W:~> +f)PdK!<<&s'`\13s8;fhe#fOah;dGRk3(mfj5^+!s5j:A!9=(>m,]VTjlPO_jlPO_jQ#1YlK[Kh +j65[ei8NbYjlGRcjQ#1VioB(]k2PA!j8\0Jk2kaejlYahk2k^crSmt=j5g4%#j(41k2k^bj5U'u +s5X1?rT4"<'&qs2ioTIjkMb=Tio]@]j5f=`roF+@!9ED+*ouGDk2tdejQ,FajQ5L`ioK.ZjlPI_ +iQ\O-dI-l2rr2rtrr*!!rr0/%s8E*"rr2oq!ri6"rr2rt,lIW?rr)ckqYoTa[ajO0o_%nPqYBp^ +qtg-`q"OLUp\4IWp\Fd_!VcBfpB(-ap[e.[p[%Y\p\=R[p\=OWpAFXjq"a^[q=s^Zp\smdpB13b +p\FIVs7ZWjp\4C\pB:9eqt^'_qYU-kqYU0Wq@!,qqYBp\p@n=Vp\4=T!;ZWhs7l`mq>'OVs7l]l +q=s^gp\FXYpA"X`!VuNipAak$pA"L\p%/(YoBtr"]X-2]r;ZcrrV?H*s!n$Js8Doqs8N#rrVlcn +rVuoqqYgEip$qJ6kjeKGqYL0jr:KFBl0Ij6rVld+s8MrnrVlcos8W)srVlfpr<`K'r:TI@kj.j: +qu.?.rVcWkr;HWprr2lor;HTorr2rrr;QWps8Dp!s8Dlorr11BJ,~> +f)PdK!<<&s('":4s82`ge#]LagYq#Hio8kOhVR/hi;_d9huM[6i9]DMhr3POhr3POhr*DIhra([ +gu%2Qi8!/HiS`VOi8H +rnd\4!8d\4rn[Y2rSA%Ck2t^[gY1NDiSEDLiSjdos5nf@\a0rn-bos4@G,f\"gLf`0S&f`0Rrf`0V)f_O5#fDsV(f`0S&fDsM!fE0[Wf_3nuf[naE +f`0Ruf`0Ruf_j>$f_j@hfDsOtfEKm[g"+a,rn7D+f`'G;f[nX'g=t61hVd)=e]Y.sddm;8rr2ln +rjr+Zrr<#srVlirrr)fprVZWos8;`ls8;W_nET9.q"sparVuffmcs'&nG)t]rXSu-r;6HlrVccr +rr)fprr)d%rr;ohmHEd"oD8@`(&\%/qu$Bjrr;usrVZTlrVulrs8Dlpr;clrrWE3!r;HWoc2W:~> +g&M*O"98B!rr2lrrsSf)rVcE8Vjss/`4u;b"2)7W])B8@]`5SD])K>3]E,XWrk8?D)8*Pl]Y(he +]=GA\^qdOj]>)(k\%'&a^qmne_Z@Thrk\`T_S6#^s186C$+mj_]=kql]tCuV\e)Ea\[fAd^;.S# +^qmh%^:q;[^AkqJ^AYkH^D+Dq]"#;`_83jq[C*QX]=>G`]=YZQ])]GA]`5V5]`5SD]`,M\]thM# +^V.:j\@8lR[^Wf\^V@h0\Y#V>lhLGXs8W)t!rr9!YlFb&!<<&ts8=8Drr)`krVuorr;HWnr;6Bj +gRXG#VP^,^TV%gFR@'D/R$sJ5SGo)]T:VY?T*:gYT:MLBnt#fN$([Z[StDUHTV8%RT+@TgTqJ*Q +TV/!OT:hdHS=]ADs-s@cStDUGTUq^Em%"?NSXuLGStPJCs.BUhTV%mMTqS.TU&UbnTqJ'NTV/!O +TV8$Ont-&XTqJ'NqOe"`TV.jHTDkMbTV)4S*hT$oSY;[BQ(=YBU8=]OSBC6nr;?NmrVccqrr;us +]`0J\s8W&rrr;usrVc`or;HZqr;-BkqtBUKl07a5qtg0fs8;NWlKRX(q#13k%fcP+qu-NmrVuos +rVc`prV['%s8;QWkih@(qYU7,r;HTkr;?Nms8N#rr;?Nls8N#trVZZn!<<#s"98>trVlf@s*t~> +g&M*O"98>urr2j2s8N#tr;?9:XJ`njio&kZk2k[aj5g."roF+@!9EM..HBOOj5]7_j5]4\i8a.h +jP](^kMtR_kND!hkiq?oio&hVjQYphiT&ttj8e<>k5XWIkN1gdqVr@Qk2tjjl0.6iio8qVioB+\ +j5f:_jlHF$'&qs1io]Rnki(FUio]@]j5f=`roF+@!9ED+"6AS*k5FB\jQ5LajlPO^jQ#1XjQ,I] +c*".qmeZt_rr)irrr*!!rr0/%s8E*"rr2oq!ri6"rr2rt)?0U6s8Dllq>TE[[FXU6p%@tOq"aa^ +qtg*ep]'sepBgWhp\FUZp\=OZq=t!c!;QKfs7c]lq"XUMp]L9cq"apa!;?*m +r;Q]q$iU)&r;Zfrqtp?lrr2lqquQfsrVcfsrVZirrVuoqrWiE$rr)irs8Doo!ri6"q>UBls8E#u +rr2lp"98B"s8;lns82f?s*t~> +g&M*O"98>urr2j2s8N#tqu$08XJiqhi83AMiSWJJhV\7iro!h8!9!5&.Gs+Chr!DOhr!ALgu%;X +i8!5Nj58_Oio8qTioB(WgtLN=hW*YQh;7&ghuMa7iWeH(jQ#7YiVMFIiSrhTj5f7Yhqd,Dh;-rF +hqm8Ji8EMjh@SN"iofOdh:pZ?io/_Ni8NYoi;_a9i9TA"i;VX3h@ec+io/kVj5K%[jlkXGY-$.@ +q>U?prVlirrW<-!rhf]4rVuorrVuiorVlcnqtpBMVPM&Tf%&@&fDaJ#fDsP!f_jD&f^IJqf@ej2 +mb.Wm$JF(af@\a/f\"m1p"9;t!8.5&!8.8'!8.,#s4I>(o@O,rf\$2Ts4I>&"k_GYf[na/f`0P' +f_j>&f[na=f_jD+f@ej.e^sfRs4I>&(>.3gf@ns2fA,6;g"4KNUrr-%s8N#rqu42,"TJH$rr2Tj +!ri)rr;R*&rVuosqtp?lrr2lqquQfsrVcfsrVZirrVuoqrWiE$rr)irs8Doo!ri6"q>UBls8E#u +rr2lp"98B"s8;lns82f?s*t~> +g&M*O'`\12r;?His8W&srVcB6VOap/`4l5as1AEF]"@mQrk&3C!5%d6!5&3Bs19_m]"5Pe]">Pa +[^j5j]!o;d^:Lkf^VRe(`lZBE_nj7/`Q?09]tV.j])KAB^&ks]^](tH]`5PX]=PSd]tV>#`5T[3 +_8!au^V7Iu^q]ia!5STK'>:ud\@fYp^UU\Z\\,Pa\[oDb])B5E]">Se]=[RFs19;a]=YYe^;7V# +^:_"d\$WKL[^N`\_8jO(StX?nq#:6orVlirrW<-!rilG&rW3&urV[!$rr)`krVuosr>GV4qtg*b +f9hSmVl$2]St):=R$a;.R$jD4rgi,ArLNtXrga"X!hGpSqORSV".c$UT_G)RT`:VeTUq^ET)P8^ +S=?#HSH#&YSGo&aSt2FDTUq^Ep7;5TqORYV"eD9YSt;VQTDtSVT*V*`TV/!OTV%kMTECgZTV;1S +nt5oSrLa"\$D*o`SXc:DTV.pLrgjjsSt2IFS=#Y6TqJ0YVj!C`l1OrNr;QZorW<-!rk/76rr<#t +rq69mrql]os8W)urVum$rqlTks8N#rrqlfrs8Doss8Dlur;HZqr;Hs"rr2lqs8W&rquZlts7uZn +rVuiss8N#rr<**!rr;oqqu?Qmc2W:~> +f)PdL!<<&t*<6!;rquZddAs1^gu@;RjlGLajQ#:]jQ>Oaj5]4]!9'Zj5].Zj5f:] +io9"Xio&eWm-j9$i8K6V[Fag?p@e1Rp\=R]qYBmZpA"CVrqQNf +rqHZjp\4IWp[e1[pB13bp\+=Ts7l<^rqQKerq6Khp@n@Wrq?Kiq"Od]s7Zcnp\4IWp\+=Up](!j +p\=OXrV-Beq"Xm`$i'Soq>0s`q>0p^p\=L`p\=O`pAk!fp](!ip\=OYp]'sepB16cp\ES=.JNQ1 +p\=OXq"X[\p\=X^p@e7Wqt]sWnDLgTbjG6*rVlfrs8;fns8Do.s8W)urrW/ppAX^lo_%nLp%J7\ +qtTpbq>^3kqY^?lrrrE#r;HZprquirrVc]os82utrr2lorr<#urr;p(r;Q`rrVZTmrVc`js8Mut +rVQTorVulqs82fqrrE&@s*t~> +f)PdL!<<&t%KHD,rqlTcd&X+]g>Urgi;_[5huDU;io&bPhrN\qhtu=Yh;IJYhqR#Jinr\TkNCsg +kj%HriSEAJiTK@\h;-rEhqm8Li8W_oir@s@i8U?krr;rr +!rr9!W;cnts8)`pr"/i+rVZNjgSLX[db*.&f%/IOf_sD*f\5'4f[p&R"52>ZfC.>qf@\a/f\$)T +s4R2$s4IM.g"=pUf`0S&f`0P(f\-2T!87/""P;;Yg=lPZrn7G,g=lPZr7L_rrRh)#!nQ#Vrmq5( +f@TfMs4ID)n(@]nrn7>(rn7>("52>ZfDaG&fAP9nf@JR*f\"g.f\+s0f@\a-f@g/Ys4\"9c)[MW +lM1AWrVlisrO2b+rr +g&M*N#64]#qu$?grVlip(A#eIS?KiL^V.:m]=kkg]">Sf]=YYckdpi+rjr0ArjsVl]=PJ__8*Ui +]"Yki]YVV/aN;cWe'H1V`lH6Jc,7<2]Xk_f]tM.p^&5YE^&P\_]Xteg]Y22$aN;H=^qRLq^;%Fu +^q[\#_83qd^D";l[^Wlc`PB$m[CEi[\%&u[]".dN"hD4U]=PTC]DoGG]=PSa]=n3Z'YV,h\$r]L +['d.R$X/,R@E'(!h5XIrgWqV#+V6TS=Z=CrgrtWm@OBMrgsIfSXl:ASXc1R@Kk?T;ANaOHI +f)PdL!<<&t*<6!;rquZdd&X(]gu@;Rj5T+[jQ#7\jQ5I`j5]=`s5P?bj5T+\jlGL]jQbsghriX"N&iSrnXjQ,G%jT"<\jPo1ZioB%Wi8Nh`lg3lsiSWPNiSrkU +iSrhTqr7Y9s54FLm.'K*i8'd\rVQ9[q#10ep@Ih7\u3^;q>U?ls8W!!rVuip]Dqp1 +#QOeqimQ-!d/ME+cdCJ4p?pkplLaN'hX14?rqcHgrr2rt"oeQ%rqu]lr +f)PdL!<<&t*<6!;rqlTcc`3q[g>UrIhqm2Ghqm8Ki8NVPhr!VTs5,'Zhqm8LiS`YMi9'+WgYUrJ +hr3eemd'0+n*]Q*io/nXlfm@,h$DflgtgiDhr!AkhuDU7hu;IKh;@&EgYCcKk3(g_gtLK:gtgfA +gtgc@qqVqBhq[#Gkj@WogtU]Dhqd/Hi8EMRi!&#ri8Yg"=sSg&K\,g"P05r7_2("5;G\fDaG&f)F>%f(dntfDF2%f%AXSg&K\+g"P0Zg&Kb+g&0Ls +f`BgZqUZ#(f@SU*f@\^,qq1r#"5);[f_X8$f_=&!f`'S(f`'S(fEU$\f@\^,f`'M&f`0Ruf`0S& +fDsOtf_a8#f)=2?f\+s/fA"s,e_8p;gt:<4cDmGRl1k8VrVlisrO2b+rWiK&o]"'@5([ +lh9c*hsC(+j5BA%s8Mljr;Q]qrrrE%s8Mror;?p#rVc`orVQQlr;H]rr;Q`rs8E6$s8Doqs8W)t +$NL,*rr)fprVlisrr2rrrVlisr;?`ss8W)@s*t~> +g&M*N#QOf%qu$BhrVlfrr"enJUn"X+`P9*t]">Yg]",Gb]Xtee]'$^*\hC\,\[oGd]=PJ_^qR=e +\\5Vd^;nOGcdC=sf[eHobKS8]dDj#<]Xthh]tM.p^;0`_*PfG(]tM.n^:h1k]u%e1ai;02]Y(ql +^V@Ls^V7GZ^D";m[^Nfba2>Qu[CEfY\%&u[]".dN"h;.T]=PTC]DoG_]=PSa]=u%o]tCtf\$iWK +Za@-L]"Gnt\Xf;5lhCDW!WN,trW<-!rilG&rS=>t8S!oe8R[]k=S=H2MT*1gZSt)>KSJ7TbSXc1=SXc4>S"6%;R[ot>T:__Q +TDtJbT:hjLqOdn^TV;@Z$_a2bTV%mLSt;UJTDbG^T*V*^T:MOET:VY9TDtJ_TDG,uT:hjKT:qgB +Q'n58SXuXUVN6hPjR`3BqYU3irquourVaA.s8E9'rq,3ucHsr;d1ajRg?\J#iSNnnn)E6lqu?Zl +q>C6ks8N9%s8W)rr;?L!rr)fprVcWlrVZWps8;lrs8W'&rVuiprr<#trX/])s8Muqrr)irs8N#t +rVc`qs8;ftrr<#tb5Zt~> +g&M*O!<<&ts8Nl6s8N&tr;-'3Wi!Yhio/qVi8WkZj5Kprs5N5%s5GTiio&eVj5T(WjQYdah;RJU +iTB\*q"+(Kp%7nHm-O'*o^h;.jPo.XiSieUro=";s5XgSjQ,F`jlGIZi9'=km-!Bchr+Lp+6)8= +io/kUioB+\jlY^ahrO.qn*&cgiSrhSiSrnXioK,"iq_X7j;?q:ioB%Xi8N\QgYgu7XJX;1q#1-g +rVlirrW<-!rilG&rW<-!rr2itrr<#trr;oss8Musru_4:qq\Ngh!k!<2ors8F8CrVc`lji4F$Y->1:Z`L4>g?[J*\_$9,]XHVkqL(s8N&sqYU6jrVlfprVlfp#QF]$rVcZnrVlfrrrW/sr;HTnrr;rorr;uurltIn~> +g&M*O!<<&ts8Nl6s8N&tr;?34WMdVfiSWPKgt^cDhqn:gs5)qrs5#'ZhV?rFhqm5Gi8rqQg"kWE +h;[bloBtu5n*]W/k2k^fmd9#jhu;I3h#6%/hYu@2h\+l)hr*DMhqm)AiT97cinW8Ag]$(6h;$iB +gt_nbs5+OKiSiYJi99XqjPJYIhVHuChV[5IiSXUjrS8=Ji8 +g&M*O*<6$9r;HTlr;HZprVcB3URSL+`P9'q\@TAd\[_RKs1.=(s1'\l\[T)\]",>[]"bkc[(!]Z +\A-5:e^Dmtf\"m/da-7ef@A$__nWq"]tM1prkJKI35<8E_8*n'^qmh$]=l/(b/qW;]tM.r_SX+' +^qd[u^V@S#_SX.'\@&ocai;**[^WcU\%&rY\[_LH!kPqQn@JY1%(a![\@K8c]t:ne\$c4As0<6E +[^W`\_n)D.aQiKsrVZWns8N!!s8N#%s8W'Js8MuprVlirrVc`qrVccpr;6EiqtK^+P`MZ>UnONV +S!]M-Q^F/,R$jEARf]"HS*um>RgYaUR[]hFSc>;]SH,8OSc>8]Sc5/ZS,SrXSHG@LR$mrC%@s8oViZtOj7<$A +qu$EkrW<-!rmh#Mrr<#krr;uurqufrrZhIArVlZT`iZ2BYd(L?XK/tele/t_f^Ib3\(pfTlJ:Fi +rr2io$2j\ur;Q]orr)ilrVld+rVZWorr;rnqu-Nmrr2lprr2j$rr)iprVZZnrr2rt!r`&prVc`p +s8Dios8N)uc2W:~> +g&M*N!<<&ss8E`2s8N&ur;-*5X/EehiS`_SiT'"ZqVqP8ki+2SiSikXhr*SUiSieXl/^^WiT0"V +jmr9Cna,W0mdT`6md9H9p$1`(k2k^bir%j:iWJ6%jlcU+0Bq]_io0(dmH`omhVmS]lKIBlk2k[b +jlPXfkiqBrini__o^V5,i8NVOhr*MSj5],!j8@m@iSrkWj5T%sir@sFi8WYKi82_\Vp4T'r;?Wp +rquourV`u#s8<$!rr2op"oeQ%rr2rnrZh@:r8+]jiUQX9qu$ +g&M*N!<<&ss8E]1s8N&uqtp'4Wi3bfi83>Hgtgf^hZ)KshB1Y2h;I2Fgu.)Gh;7,Pi7cl?iSNAK +mIg):k2tjjlKS<2$L%!JjP]%ViS`SKr8.J0s5!e7ir.mjjQ#4Tgu@J[k2G(Jgu.;Uj5JqTi8D/amH3<]h;$c>gtprGhVJ@lhVI#ehYuCBi8Yf@JOMfDjFpfDjG"f)XJ&fCmkr +g%j;#f)s[Wf@K#ee?ZdeCE7,g">$4 +f@\d'Xe*Amq#C?ms8N)ucMn%Hs8W)tnc/Re,Q7W9fs6m+R\$.GUmd[Pd,N[ +li7"`rql]trr;usp](9m'`\.1r;?Qms8DfjrVuiqrVlcps8W)ss8EB*rr2lprr;rqrr2]krr0k9 +J,~> +g&M*O!rr8srVQZorr2rq%J7l>S$0`J^:Unb]=bcR\bs&=\c0/?\ad92\Lb>%\@]>\\%B5]\%'&b +]!ScP]=PMebgt=kbg+P_f%8F"dF-_"bfIlD_ns7e_#M.N^qmnd`W*q4`P]I)`Q?Vn7_7I+c\$i`S\[oA_]".(:rOMsSXl7t9S=?"~> +g&M*N!<<&ss8Ec3s8N&ur;-*5X/EegiS`_SioK1[iqVR6ir7s +g&M*N!<<&ss8El6s8N&uqtp'5X/Nhei83AIhV[/FhV[2HqqqG1rnd_4mbe'#s55?\gu7/Hgtq&P +iS)u@iSN>Im.Bi2h:g]CjQG[gk32='k2YUcjlGCYi;2=4i8`tuk:Gl]jl#%VkNV-fgtU`Klg3p! +jlPR`j5f:_k32'nk24nNl1+6+i83;Eg=tE^hZDZlhWE\shV[5hhZ)F3hA"l*i8+f%8L(f@AI(f\"gS +f)F2%f%8O)kh#da!8%5$q:>]!f@TuP"4u,UfDaG&fDjG%fDjG!fDjG!f)aISrRUu""P2,Sf%9`K +pt,Mrs4@8&rmq2'fBq5gf)XCgf)jLRfDX>(g"=p.pt5Vu#2%PZf%8O)pX]Drrn%2$s4%,#rmq8' +e^i@Of`0\*f*BsTXe*AmqZ$Qos8N)ucMmtFs8Vuqp&G!i-N3r;eZ+XkStr6]X/2]&f&bDhZ..jS +S!_.clE6>Zjo58Xrr;usrr3*"rVlclrrE&ts8W'&rVlfprr)lqr;clsr<<3!rr<#srVcfsrr2rr +!<;uqs8N#r!ri/sr;O_9J,~> +g&M*O!rr8srVQZorr2rq&bO;BS#sQG^:^td]Xt\a]",BK])T>?\cB;/])T;?],A&d]XkS\\@fSg +['R6R\[]Duf@8$^_SjUErm^tr$JO1YbK\5O`l>s6rkgn;_o'F3`lZHIb0A2Sb/M3:b07uG^V7P* +cHaYUa2l<@`Q#p=ai_iM`4E@g`QZQE]=GG[[C3QT]"5G`\`p[2\[oA_\@8rX])K>X]=GAWZEga@ +Z*LdG\%]YbS=R^bpAP!ir;cirr%rX/])rVZWns8MuprVZX5rVlcnq=F4'OGp-=VOj?J +R$X/*Q^O81S"#lGR0&bDRf/`LS->CPS=>n5r0[eWR[]h:S=?&ISbo#YSc>;]SH#,dS!ob6R[fk9 +S=KSJ!h,OFrgNkT*h/[iS"-%@SXl@BS!oe9S"-"CPS"#k7qjRPQ#F_0OR[]e7RJrWYR@9V8S=BMJs-j@c +S!oe8R[T_9S"&o;s-`qWrg`tWs-XUhQ^XJ9UT:DYOLjKDq>'mar;Q`prQtQGrr<#qrq6 +g&M*O!<<&ts8Ni5s8N&tr;606X/Nhgi8C-_o_%LdXig#-rquWl!rr9!fDkjLs8N,ur;?QprVHNis$$D]rr;W>ViRUje()t#f%/^Go]FWI +i8D>9RD\@HT8'AsoDJUbp$V,.lLOcKr;HQeoC)#0nG<._rr)fps82fqs8N!&rVlirrr<#tq>^Bl +s8<#us8W)t!<<&ts8W)ts8N)ub5Zt~> +g&M*O!<<&ts8NW/s8N&tr;606X/Wnfhqd/eh#ZBgq;2/-rn[Y2lJDQss5.GFh;7,Oi7coAiSE5F +lgsT*g""X+j65[jkj%a/kN;'pki_$fjl>@ZiSrnWj6,^olg4!*mHNTejQc$niniSRl0[m)lKIEn +jlYahkiqF$mci]chs'_$l/:@OgtgcAh;@,HhVI>N!8[Y2s4m\3rS7M2hu2C?hr*GMh;R/2XK'V6 +q=spjs8N"rrrW3"s8N#trrN)rrr!0&r:g$=U85fWec!o-e(*%"eC<($f%/I)f%/I(f)F4pf)OA% +eH"2"fDO2%f@JO'q:5]#f%8O)r71bsrn%)!rn%2$#h@PYf%8O)f%'cNs47;&ebmu1e^i@)e^i=% +eCN7%f%/C&f@U#Q"4u,UfDO5"eH47Nec+2#f)O>%f(di%f%8L)f@\^-rn%2&rmh/$f@U#Q!nZ#T +qpt_trRV##rn%8'f`'M%f)F8(f%8O)f)F8'e^rC(pXT>rrmq,$s47/#"4buQf)F8.g=Xp)f$UXl +_WU^nr<*'!s8CCGrr2rt!WDrorrE#orqcXYrVulso[B_!UVkR2eC`@'hX:$ue'I%5^mUY/leS1f +Wn-e>rqlBVlK@I'q>C0hr:]aNlfmp8rr)iprVliorr<#trWiE$s8N#ts8Mior;Q`p!ri6"rr)ot +rr2rtrr2rt!<1.@J,~> +g&M*O+92?\js9>\@]Jd['[?U +]",T"f$_XR]tVG1e'ljseD/g*cI1+cbKS,Nb/qZDaiMTIbg4bbd+$Old)a)GcHaVR_o0[AdF$=d +c-610rlc>+cdL1]]stbrcHaJC\$rlX\@K/^]=PP_\[]36\-0:L[^`pJ],%uf[Bd'AYHY7:ZaI9V +^U'E#aQ`Hus8)]rs8N#%s8W'@s8MuprVlirrVc`qrr2rrrr;urq==.%OGp';VOsBIQi<9TR$jA3 +SXl;KR0T1MS=>t9S"';Ds-s%V!1NhT!LfMWRf8`SRf]+NSc5,ZSc5/ZS,\ubR[]h;R[TY4S"0GH +$_!TUR[KP2R$a5,RJrW[S"6+>S"6(>q3qb\S"6+>SY)LFSXc5HSc,)WS,\otS!oe8R$a;1R$sJ2 +R[TV4R[BJ1R$jD1R$sD0R[a5D#FV'NR[KM0RJW?oR@BS2R[TS0R@0G/R$sM6R@9S6R[T_7R$a>0 +R$sM4RJiQTS!s>Gs-iqV"IbgLR[X5Fs-a[lR[BJ/Q^XD4TW5&WOh0QDqYU3hrVc]ss8N#Ls8N#t +rrN)rr;QcqqYp?k55kN\s7Fd +ci4^Ys8Dlnp!B_:_;+#+io&bRj5].Wq;MA5ro!k:n)5YPio8nSio/kUio/hUk2P4QiT&kPipZX7 +lf-gXipQF-naH#FqX*YKnNZO3n+#i3l07O#mdKZ:p%7nJo();6jQl=)mcs!$n+#r;n*fc6m-F$* +mI0Q8p%In1!eq>g?jpB^Qgp@\.PpA"IZq#'seq#C'rq"ad^ +p\+:Sp\"7SrqHlsq"OU[p\+=Tp\"7Yp]C9cp\ssjq"OOUrq6Edp@nO]s7ufmq"Xg]$MXAlp@nCX +q"OLWrqR#up\+@Vq"OOXp\=LWp%7tWp&=Xfp\=OWp\ORbp%J+Xo`=d\r:^0b"SVN^q>($bs7lZi +r:pKiq"X[\rqQKdrqHHcs7ZWhp%J+Yp\smdpB1-`q"ag^!VuNiq>^6cq>U.+p\FXZq"jg]qt]jT +o]j8obNo!&rVuirs8Mrus8DoHrt550rquZlp[7SGqYpKmrVuorr;Z`p$iU(qd\`89j88lTs8N!M +s8;'1e)TE&R[qCM_jl[W]&!)Vlds4n]>E%WoDJLPg=4Kg]>j%1r;Q]orVlcorW<-!rqucrrqufp +rW)utrqZTorr2otrr2rtrl"he~> +ci4^Ys8Dlnp!9Y:_:mi(h;$c>gtplBq;))-rnRS2n(fAHhVR&ChVI#EhVHuEiniAAh;@#@h)e^i=%f%'cNs4./!!nPuRrmhY2eC<%!f%&:#f@SU(e^rC(rmh&"!7h"urmgqt(tI*bf%&=# +e(*(%f%&@$eCW=%e^i7#f@KrO"4l)Tf)4/"f)4&"f%&=Ded'aVe^`7&f%9oPs47>'e^aZM"P),U +f%9oP"4u,Tec"(ueHOOUf%8R+rmq,$!nGfNrmh)"qUPc!f%&@Nea_5jec+,8eCE1&f%AO"dFHUG +S\aI]r;?Nms8W&Ert550rquZlp[7SGqYpKmrVuorr;Z`p$iU(qd\`89j88lTs8N!Ms8;'2e`Gi. +SY!gR_jl[W]&!)Vlds4n]>E%WoDJLPg=4Kg]>j%1r;Q]orVlcorW<-!rqucrrqufprW)utrqZTo +rr2otrr2rtrl"he~> +g&M*N#QOf%qu$EjrVZX)oZNttY/8&h]=55X\@K-2[o^#I\%&rW\[f2Y\[],Y\@8oW]XY;S\%9)Y +^!"sTb/2!2a3rPgeC2t*hU9a!e'cXkd*^4bai_lPcdC+gf@8=#e'c[d_opHScH=2Nd*^7fcd0t` +bfp(2+4&<^e^D[X]>)G5d)iu1\%95a]=PSc]"#5Z\%&oV[dLX)[KX.K[^ETTrji6C\$ND"dtgKR[KQ>R0]1JR?s5,R\$&JRlHk,S!fY3S"#k8S"#q:R[]e8R@9P4S!f\5R[KV4R[T_7 +S=>t9S",q7Q^F,+QBdf(R$jG6S!f`ES,\rVR1>[US=5k9S=,n/RJrQSR@*uAs-WMJ(mp_[R[9D-QC4/-SuAZQOLsKBqu$Hnrr17D&cMb/r;6He +md^&Jrr2lps8W&qs8Dp)rVlB9VNeIJqu?Wprr+PMr9)V[jPn"GS]'4!S;a&Nh=g^2f>tb>_UIQ: +r;5j7eBl1H`om3rrr2lprr)fp!rr9!r;Qcrr;Z`p!<<&tq>^Korr2utrr<#t`;b>~> +ci4^Ys8Dlnp!Bb;^tdo+io/hSj5T(ViSk!uio8nSr8Co=hr<_Uh;$oHh:^ZOp\=:BkNVF.p[dk@ +nGN1LkNqU+oCMVHnE]?(m-aH9o()JHoC;26mciiun+#l4lL"-5nEfB)mHs6(lKRU$nF?,BnEJrn +m.L&=j5&SMro3q9h;T7/io9"YiSrhUiS`_Si8*5Igrle!cgCN+rMBPorW)utrr<#urWE3"rr)iq +s8NN*p\WgP]&3)TqYU-drqZusp\4LXp@\.Pp@nR]s7u]is7cHdq"Og^#5.]`p%J1VrqHWjp@n@V +rUp9bpAF^cpB(-ap\sjop%J+Po_/%Sq"aa\rV6Qiq"XU_p]C0`q#:!ip@n:TrqHKfrqHQgp\=^] +rUpHip@n=Vp\4[^r:^Bip\=OXp\smcp]'pmp%J.Sp%J.RpA+FapA"F^p](!lp\=OZq"Xj_s7cTg +r:^-a!quB_rq?Bd!;?Eds7ZKe$2F8hq"ORXq"XUPp_`c#q=sa]q"Xa_p%.h@_5tfEq#10krVuos +rh>YeJlco?snEYbR5Gbk(i5rVl]krr;usq>UHor;Z`p!<<&tq>^Korr2utrr<#t +`;b>~> +ci4UVs8Dlnp!9\;_:mf'hVHr@h#-!gh?;WjhV?oah-AaihVd5Bf\>37e_93WoBYDpj66"&mcip" +p\*b.k3)'tmI'E-jl>Fakj7^'m-jE1lfR?nj58q]lKREkkNhL!jl5Cbk2kXaj5fCflgF6-jPJeW +nF5Yug"G0[hYu?kh?MfmhVHuBhYl7ChV[2Hhr!ALhqd&EgW?LqcL(E*rM'>hrW)orrZhC>r;HWp +rV#s8TqoTQe'ZXneCE'ue^W'tf%/C&f%&=%e^aZK"4buRebn"teI'mXe^N!se^i:%ebdo$e^W+! +f@TuP!7h"u%FrtZe^`1!e^i:%e^`1IeH4=Pf)F5!f)O8*eC2pue^`1!rm_>+e^`1"f@AC$ec!u& +e'umtf%&@'rmh)$rmq%u"4YlOeGRkrf)O8+eCE.#eCE.#ebdqteH"2"ec42*e^i:%f%8L(rmh&" +!nGfMrRLr!!nGlQqpk_t%Fs%\e^`1"e^W."f%&==ef!#hf%&=%f%&@$d*^CiXe!;jpAOpfrr<#s +d/O^Vs8N#onCbh(hX^[FrVccrrVZ]or]^8YnBn2'[G19LqY9j_s8V]7Xg6F7`hT&AQd]ojWUQ1_coD\afrqlTls8N#nrrE&rs8Doss8N#ns8W)trrE&ts8W):s*t~> +g&M*N#QOf$qu$EjrVZX)oZNttXhhlf]=>>Z\[]0E\,Wu;[fEr1[oTrH\%0&Y\[f5Z\@AuV\$i]S +]!o#O[Cq8S!fZBRKAkBQN!3N +R/NKRS,SidR?s5*Q'R`$Q'[l)R$jEBQiNQPQj&hDR[fk:rgF1^S"#k9S!]P0Q^I`>s-j+YS",rG +R0/nEQBqN:rg*PMs-K!13\Q)46bVQBdc%Q^3r&QBml(QBd`$Q'IZ%QBdd8 +QiNKPR/`QUR$O'9QO&nDR$j;-R$j?5RK&WkQ^O;2Q^Wr;Q`qrm1TVrVulr +qXE1Xb22^grr)fqs8DlqrVf"YrUA45R^Lo@qtg*_qu?]fbcJ(ti5MFb`5ALCQ'J#]mH`!#SX>h> +YeJlco?snEYbR5Gbk(i5rVl]krr;usq>UHor;Z`p!<<&tq>^Korr2utrr<#t`;b>~> +g&M*O!<<&ts8Nl6s8N&tr;607XJitii83GNiSieTiS`SO!T;r7i;_\BiT&hOhrU-hp\jmapAk!fp'g]hp%S4S +p@nCXp\":[q#:*gp]1-gq#C*fp]1'ep]C9dq#:*gq#:'nq"OLWq>'d`q#C-iq#'sdq#C'ep](!g +q>0gep@\+Wp\spfq>L*gq>U-mq=sa\q>1*d!r2N`rqQNfs7lQes7cTgqY1]tq"ad^qY9g\q"F@O +l+sLFlhC2R!rr9!fDkjL$ig2*n]nD9U:K4WrVZZms8N!]rVZWcc`^Ko!<;ur +s8W)t!<<&ts8W,u`rCP~> +g&M*O!<<&ts8NW/s8N&tr;6-5XJs"gi8*5fgtUWcgthn`s4^r;hqZo>hVQr9g?8,'o'>T/o()>: +jPT(ko]"W`j6>sumd06$jQ5Rglg3s'mdBE)j5]4Vf\biWl/q*km-NllgYUrMio/hQiT'(blKmm" +h;7;_n)rNZf\>6=hVHuBj4sgmh;-reh>Q./h%8H!hVR/HhV?lCg;p:mc0Y9$rW<-!ri#i6rVuos +rr)lsrr)fps8MrjpXGk2_U$]Ze,.Vre'c_EeGn)!e,n1MeGdo!eCE+!r71hs#hIVXe'c[oe^aZK% +Fs%\e^W-udaQauf%&:Lec"&2e^W+!eC;sseCE(!eC;sseCFQJ!7Uqs"4buRec""teI^3Ze^`1!e +^`0ue^i:"e'unGdf@hqe,Rqtec+&"e^W+Jec4,$e'ujqr7(_r$ImPReCE+!eCE+!qpk_r!7gnps +4%5&e^W+IeHFCNe(*"Je,\%reGn(teGn)!e-"1LeC4?Fqpk_rp=0l,e^`1!e^W'tda?LmcE*VSk +P+uSqYgQrrr1OLrr*<*rVuE5Z)+2*i;!9Krqufqr]^;YrU\@9SZ9NRg=b*3j6up8]p,#*gr,kZ` +6#3VQ^O_okK]rmR%^UYR[h"Ll,fT]R$s)'bOki7rr;rorV?Ems8N!$s8N#ts8Mios8E#ur;Q`rr +r)otrr2rts8L% +g&M*O!WW/tr=Af'rVulqrU\7.S#sKB]=IpM"1YhL[c=js\,s.L\G`mK[C3NO[C]bJ_05a2l<@ +`Pfa9b0A5Xcc3]7ajADU]stS_]">Sc\@K0L\-0:N\$rg6\,Wl?\$i]P\%2LL"M)"JYcn&/%^<7E +ZaIK\ZC.6'l1b2WqYgQrrr0/%s8E'!rr)d!s8DlnrVulqs8NT-r;HKan]R#PUSjoZS!j5?&XSoT +St;I@R@'>-QC!u-R@0E>RK&ZSR0/hFS!s>D3glG+R@9P4R[KM/QBml(QC=;/Q^O2+R$a5,QBd]" +QBdf)R[T_9S=5k6R$O&'P`q>qPEhK#QC!o'rg3VM&XSfKQ^F2.R[TV1R$j>.R$a6=QMm-RR$j;. +R@*r>".#4;Pl6pJPmNeCQBd`"Q'R`$rK[_UQBml'QBdc&rg<_Os-3hTQ^=)+Q^3p9Q3*>9Pl?sL +Q'VE9rL!VQ"IGLCQ^.H6$C-pCQ^F/.R$a;0opGcIs-WhT(RLDOPEhH%T;SZPOhB]Fqu$HmrVlir +rm^uIrX8c)s7+C>V4tNYq#1-ir;Zcq55kEXo?XJ.Wkm*:g"4sLBorr**$rr2rtrqZTorW)urrr<#trW)utrr<#u +rl4tg~> +ci4^Ys8Mrop!Bh=^tR]%hr!AMiS`YOhV\Ckrnme6rno6aioAqQj6#CXg"u,mrV5sQo(2>;lK$mc +p@dP&iof[sn*]T2md9H1mJcGimdfu>n*TW4inEAXnaGc-mdor3hqR&KjQ-:&'BSBBnFZA=io97p +oBYAigYUlIiSreqhZ_rqhqm8Jr87\:jQ,A#iX=f*hq[/FbH7ejmJ6_[V>pSo!<<&ss8W,u"98B" +rVlfrrtYJ-r84chh=((2q>'g\q=sd\p\+=Trq6Tkp@e7Uq"FI[q#C0gp]L?gq"F^[(%h+gnac>F +p%7nLo^_SEp@\"Jp@\+WpBC9bp\=OWrq-fqp%7kHo_/"RqYU-`p@\+XpAag`p]'n*p\FOVq=sUR +pA=UWp\=R[qYU0fqtp6eqtg0`r:L?hq"X[\qYBs`rql`l$iBesq=jXYq"agaqYg:#qYU0cqYU0c +qYKsZp@eL[(&7Otq"aa\q"=:Qp\F[]q>1!bqYU0hr!3)nq>1!bqtpBj!rMihrqH'd] +p_`c$q>:$bq=s^Zq"=1>^obfGp\k'irr)fCs8W$0rr;oni2Ds8P*s8OqYpHlrr2iqs8GCarr)lj +c`Wn/TrYK'YHl$up[u@eRDIIeR$u"Pc_lo#a5l*ZMjq)tgVohITu>d4Ukk/<]u9".rVuiprr2lo +s8W%es*t~> +ci4LSs8Mrop!Kn?^Y%H!gtUK:!8IM.!8IM..G`k=gtU`Ghq?Q6kk4`BmHa0-lKIMJih:LH@ +k3;-okNM-mkih4/jr*CLmHa$"lKI$Qgun%hjlG[olf6^Mg>:`ErSeLKiTBIpn)rQ`jmMR!gt('0 +gtgfEg]cHfgtgc@r7_k>gYCQ=gtgiCgY1N=afDAbmJ6_[UAsf`&c_h)psl%2^s1o +p\t0lrQkNDr=T&/r;5ENQD'J0`97!rrVc`pr;Zfr6iI#_s7XdAT:2ISZEUO<_V+\V_3LG+fY3fD +`Sf(?Oe]tXhQ;^*[*7:DTTGkch9MgPOg2U +f)GsQrr;uqr;HWos8*2pbG1N-^V@=g[C3LB[K*en[K*`3[OJ\q[^*3L]t(JR\&[%Qe^)Ofccs\V +`5'CFfYtSCbL+efda?LkdF-Ijrm2P2f%8I"cdL1Y]Y_h;c,drKd*BYE\\5hr_YqFa_o0[BdaH7Q +^W=dLah5'jrON'?[^Q1Es0_p:laHi$"h(hG['mLD\HKFNZELG1XUq\@Z*LaL^9a9!aQiO!s8N"l +s8W'#s8MuqrVe&?s8W)srVQ3Wb`RgWV4sNLR$Ls-!YQPa%GuPa)02"dG==R$sQESHtaTR[KS2Q^3m7O91T0Q2HmHPnK:F +Q'df#R$a/'Q^O,'QBmf#Q2[*LPlR'JPld28Q2HmHQ2d*JP7a%EQ^d4Ukk/<]u9".rVuip +rr2los8W%es*t~> +ci4IRs8Mrop!Bh=^Y.K"hu2L5hqd2jhu;O6hu;OHiSrnThW!VRg",!Fp@e"@ki_%+i^r+gkk4K' +fA5TUmHj'!l0\!1nEoE!jQc:,o()MOqs`\-mI]r6l0e04kMFtNj5T1cmdTW,k3Vg=p?U_tlLOQ4 +iS3,Di8EpA"L]qY0^_p&Facob@/op%J(Np%J4Sp%eCT +o(MtTp%\C_q&B5/r;6?fr;?Efq"FFSp%J1Vq>:'cq>'maqu$His7lopp\4CTq"ssfqZ$FGqYBs^ +q>:*dq=s^Wo^qhMp@n=Tp\F[]p[e"LpA+[cq>'m_q>1!frr)]gq"jm`rql]k!VuNip\ssfpAk!f +p](!gp\OY%p\=O[q>0p_q"jp^n)D'_b3Ja"rVlfprR(ZFr=&]*r:JF,RBiEGWmgV>rVulps8W'c +rVlcpo?t(@NJEFWQ&gio_=%!6PF'/=^71Y4m,>+-Vr.-lRYdodkO@9 +ci4RUs8Mrop!Kn?^Y%DugtUW>rn@M0gY:ZA!8IM.!8IM.'&DF&h;$lFgssj+kOS0.jl>@XrnU0$ +h;dqhg!SF0k3(mdi8a"clg!Zlh;75YmHj3/p%@V,hrsOqjlG[olf-ULg>:]Ejlu*pio0(jp@7;% +h<"%lk1nP=g"Y<;gYpokgYCT?gt_h^'&;6rgtUT=h;$` +f)PdK"98>tr;HU(r;6'-U6qso]stPZ[^Q1C!k,MEi3iWnrjHII[^W`U\@8cL\@T,QXgQ*od`f\J +_SEk"^q[\*eBu%@^rt-RdEKbXdaZjtd*'JNcILLre_&^7dDNlFda-"TbgF_T]Xb_l^r+7;cHF2F +b1,+oahY[4d*TkI[^N`X\@K,X[^WaE[ft8R@'>,P`Uoc +O-#M&PSTFDP*;&mQ'mr'R@0>(Q^X2'Q'R`#Pl?sIPlI'KPn91DP*;&nQBmf$PEM)mQ'Rd9Q2d'K +PQ$^IOcu)srg!ML$'ga>PEhH"Q'IU5P7j+FQ'Rc)R$a>1Q^*btP*;0!Rf8ZRQN* +ci4IRs8Mrop!Kk<^=_8shYl@3hVI&hhYuC7hV[8Lro+FFhW!PNf@JjGo^_;-iSORg7c*.gmIfr+ +f\P`[o'YZ!jQlF2p@.;(i90Lsmd9N;qXWk6nFuP>kjS06ki(L\jl>IhoCh\9ioft2p?LYrl1+?1 +i7m#Brnd_4j59mn"lJ1nh;7#ehZ;Zoro3t:s5FCEhVR8LcEOCsm.pVZV>pSp!<<&ts8W,u!<<&t +s8Nu8s8W&mqqeQcg$JD)p@nFZq"X[[q"a^ZpAO^lp@n@Xq"XUYq"F[].JEQ2p\":Sp%7hFnac5@ +oCMPDo_/"OoCMVHo()GEo_/%Sq"OU[q"OL]oFUWbnaQ&=o_%tSqYBmZp%7nUp&F^dp%&+S'D;+p +p%A1Wp%.qTp\+F[q=sa]qYpBlr;QR$q=jXWp\4L]qu$BgrqQTkq>U6kq>L'lp\"1QqYL3es8!)u +q"XUYq>0p^p@eLXrq$-]!;6?c(A77ho_&"XrV?6`p\=OZr;HQhq"ad`rVHNh"o.icp\4I\p\ssf +p\FU`pAk$fq@<>urqGd:]W90=p\k*krVZWrs8N#Ls8W$0rr;ohe=;\sOG^-lp&4mgrr2iqrVeSM +rq+[BR@:%W]">DT]$g0?_O$k6ftX)L`U2ckNi;.2\sSeX\Ac@qWgo3?`m:H8V=4E`"oSB!rVQNj +rgNk;~> +ci4CPs8Mrop!8@A*'AVF#hr!5DhVQu8dbF$Vmc<6[gA]Yqg"tcQ +n*/QRfAZ#]kht4PjmDR,lJgOOiTKLikN_R/m,I'ko'YW"lL4*"gtU]DhVdSbna#/iipZU2jk\_Q +m-Wrif%/L-gY:H=gB-0bg\fbo&daHUld*U+bdF6Xse^XTI#1CoHe'c[lrQbYmbfe;ZdJhMmd14OLcd'kc +eC)dmd*U(`ci28pdF-Lof%']J"P25VdEqm=#gguJeC;jkd*_g?#gq#GdEp7fdaJ-Ds3gShs3_V1 +da?IkdaZdodalmk`MoNJkP5)UqYgQrrr1OLs8S +g&M*O!<<#ss8;rtrr*K-r:.n&Q`.O.\$iZO[C!9Hi3`Kk!4;a5BX>(R[^W`SZEq$M['-U?`QufI +]t:e]ZaREY_ogHR^pq,$eCE!h`Q-g!n-[^rOdIa1f$k\@K)Y\$`WP[^?%As0D^5la6Yt!O]E9\-0:KZ*1>0XUqY>Yd(RK^U0K% +am/X"s8N"rs8W&us8N#ns8;lrr>tn5o^^4gMk[&AS!TA&OcbfkQ^XG7S!fP+PEV/nQ2['NQ^3s8 +QNEPBRJiNPRK&WfR@9V6Q^*f#R@0G.Q^F/+QBd]!rKRhUP*2#oR@9Y;St2CARf8^>R$O#$OH,?^ +O-#QjQ'@DkOcklkQC=/,S=Gt3R@BM+Q'R]!PE_8qPEV8uQ^3r(Q'7DsPa.W&QBmbuP*;,prg!PL +rK@DJOH5QiQ2[$JPmN\=PEM)nQ'7GrrfRtZP`q>tR$O&*Q^*euP*(iiR@9J.rKS+aS",n5Q'IZ$ +Q'@MsP*(ljP*D8uQi*0KQiE?OQhm!eQ'R`&Q^*buP*_f6T:_1,]]/P\rVulqrr;useGoRI&cVh. +p!fLpUQCA7f_,4BrVlfos8DpPr;Q?;Y*k`VYI_?SYe&9Ro"gZba4e>#T#L*YY`>[Fn[b*RU:A1[ +\>l']R`<[LL8FA +ci4UVs8Mrop!Kn=^=_5qhV[8Lhu;KhhZ2O4huDP@hr*MQhq[)JiniABjRDm7l/LXXgYCQ>jQl:- +o&\Z_kO\NAkMG+\o_SFUlJpjblg3ltj6,gpjll:1oBPQ-o^V5-k3D6ok3V^5n)W<`m.L&:io0+j +o'>5ggYL`Dhu;KohuDO@hqm5GhVR/IhV[8Mro3n8$K0arinr%cXO->0rViYns8E#urr2rts8E#u +rr2rt)?'U8rV66FYdW6Op%A(SqYL!^q=sa]q=s^\p]1-fp^m2pq=saZq=saZp\+:PoC2>MoDeFi +o'u;Dp\"+Inac5Lnd>!^q"a^\qYL!\oD\:dnaGr7mdTf=pAXh6p\+:PoCV\Jp@e.LoCV\Jp\4@R +q>'aVq"jaYq>0p^p\=O[r;HQlqZ-Ejp]("(qY^6eqYBp]q>'g^r;6?cp\=R[p@S(Xq#C0iq?$Kf +q#:!iq"OOVrUg9ao()DOo)A1XncnaZq>0m]p\jdcq#'pjqYU0dqYg3kp\"7Zq#C*gp]1'fq#C*` +q#C('q"jjaqt^-hp[$eLX3'Z$rVliqrr1=Fs871WoiNKS">t7S!B%sQBn2^b,19(o)J[dr;Q]prVuius8Dnb +s*t~> +ci4RUs8Mrop*e^`1!e'c^md*U1gdEqmo_eXcr;6?in@tKibM'_%T#9mTYE,^Gkc^JIQ^O>.O-,`oTZ#!M +OK\6TrVZTmrr2lrrW<,urL3b:~> +f)PdL!<<&t!<<&t$N9nnae>*$]"5;Wrj2a5ZEiJrs0DL.s0?FH['mBKYd1aK['6gIaO&/J]=PGV +ZEq$S`66TT`Orq+e_AZs^qn4Gh:pE%`PKR=bfIc@a3DcF`m<2^a2Q6Lcca2c*8ajAM\_7RG( +e'c@S^rF^HaM#'k\@K)Z\$`TN[Bm3H['I"&Zi@<3ZaKeA)7[/`Z*1=4Y-"k2Yd(RK^U0K%am/X" +s8N"ds8W'Es8MuprVZQco?EDUU8=QPQBRDlOcblpR[fn;R?j)$P*(olQC%N8s-NVM&t5;YR@0M3 +R[fq>S"#e1QC=;3rg*VPrg3YM!13\N2jKVjPEhQ*SXuFCSXl4o_eXcr;6?in@tHhak=CuS\j^RYE,^Gkc^JIQ^O>.O-,`oTZ#!MOK\6T +rVZTmrr2lrrW<,urL3b:~> +ci4IRs8Mrop!Kn=^Y%;phYuC7i8Z:6i8'g^q>^3tp\Oa\p@RtIo(D_Mrq$ThnF5u= +naGl3mI0TEn-Sa\p\=U]q"F@MrU1TkmHj3,mdTiAp@nCXp%%YDnalDFoCDPIrq-?boCW%T%.s8g +p@e:Vp\4@SpA"O]"Sqiep@nR]!Vc:'brUpQlq"X[\p\+=Tp\aaapAjpd +oH*VpnEoQ-mI9`>o^hYEo_8+Rp%7nIo(;YNqYL*er;QQmq#L3fp\FRcq=sa\q>U-iq>1*d%/9Vt +p?USJXNKf%rVc]odJs1E%/p2"ilAL;cg:W0rVc`pqZ$Tp#Q=\qd%QW7mJ6c6o"^`ia4J"lQG2VF +ZBD9KkHUDGX1Q0^^W+FGhVH;VRBl;[q#(-jrVlfrrr)fpS,\!~> +ci4d[s8Mrop!Kn?^Xq5ngYCQgYh5ZnaP\pf&#fgo&J6LhsU41m,QpVi8s.`iSNPVk2G:`n*Aukk3_NtioTOqlKIR&na5Am +hW4%jjkS\Rlg3]ff@\g3gYCQ;gA]k,g&p*bgtM)Ls4RS0g=t?[f`9b(faQThg=Y$4fuL+lcL(H+ +rhBGarr99 +cHlI9"jt]Cd*U,Wdam%$eBuRecd0n]bfn5Qbg+P]d*_d>!RT6md/VMhdK7nGdehMn +dK@tHdF%sB(XgUVf$_a\WM.8oq#:9ms8DoorVccprR_)JrXAc)pYs6%\BjO?rr)fprqcZprWiE% +p!BCq]C#Fo/b6]IUrh<)R[LqTjg(&Mj6*\7Su]K=^V@e2eDB$'Y*lTarV6 +d/Op]rVulpr:.q(QD_=)['R'CZEpjAZEpn(ZMq3/ZN%1>['da49&$d`KGE`lu]Ma2>pAbJ_<@dETVHaNr,P`5^*MbfS,W +e'H"J^rOaIahts8cHaGCr4!'B[^qu-Kip%-IkMP6i=R?`noNfT6aQ^F51R$X&$OcYWcPE_@3Q4'%E +Q^F2/R$X/.SX]VI=.,PLT:hgISXPn3R$jA/Q'@T$R$O&'Q'R`&Q^*btPaIo0SXuCCS=H%8R$X,' +P`q5iNK'!]P*2#lOcu)tR$jA2R[]h;S"-":Q^F&$OcYZeP*D5uQi3?PQmJ2jR[KM.Q'@JsPE_8p +Pa@c'Pa.T&R?s,$P`q>tQ'I]#P*D/nrfJdqPEhH#R$j;-R@0A(O,oBbPE_8mO-#QkQ^=#'P`q;r +Q^O8/R$j>-Q'@JrP5^[FP4"POPE_>uQ'7>kO-H3,SXtk)^#S_]r;Q`qrmCcErXAc)pYs6%\BjO? +rr)fprqcZprWiE%p!BCq]C#Fo/b6]HUrV-%R@(_Rjg(&Mj6*\7Su]K=^V@e2eDB$'Y*lTarV6 +ci4UVs8Mrop!Be<^=V,nh;7#GhqHreh>c@3h-]$rh:gN:iSiSFgZ7enm,d-^i8n`]&unEf5rl1"0,kj.j6na>l:p%7_=lgF<3l/L^en*]Dt +h;7)JhV[>Ls4me6h;-lch#ZBjro*_5$K9juinr%dXjHJ2rViYns8E#urr2rts8E#uqu6Wq'E._& +goe->lgaN;p%J.Tq"ad_q=44\q=ssbrqQNh(\[LmoCDMGp@RqGoC;;'dYo^M;:n*oi8md9E0n+-/Ep\FRUnaQ)o'c)Io`+Ulq"a^Zq"FFUp\=O_ +q#^?bpAX^up\"1Lo'u8Ao_&"Sp\4LZq"X[]rqlfnq#:!cp^HoipA"FWp@n=Vq>'gbpDWbuo^V>7 +lg=36p@\"GmIBoEp\+:Po'l/@p\OddqYp9lq"OO\q#1$gp]1-dp_`c$q>0p`q"OLXrUoL6]r]B? +pAFjes8N#Drt550rr)lsp?D/Grr;urrVuosqZ$Tp2?!OHd&3ACiV33DqYU3frpddlSAEdlS=.4[ +jfjiLl12QSQakrIrV#L.h!*qEZ'quds7uWmrW2uqrr)fpS,\!~> +g&M*O!<;ur)#sU7s8MropprlKR[(lf?salf[3_jQl*mj6#e"m-3g& +nF,Z)k3;6tj4rJOlKR?`f@es7g=t?9gYCT`gAp$mg],t0gY1B7rR_b9f\"m0f\,!3f@J^/`i5o] +mJ6_[W;lns!<;ur!rr9!qu?Zps8NH)q"N=2TYJb"dF/$Cs3_;&d*U+acHjncdaHVDdf7]"d*^4f +d*U+brm3"?dEp4bcHt"he^`0tda6:ac-FY\c-+>WdEp4bcdC4jeC2glcd)I8!mf0:rlbkudF$Ck +da6:acHaeadF/$C&^eqLc-O\Xbg=__d*U4id*C#;bluD=cd'h^rm:\k&CJqRcd'h\c-ObbeC2dk +dF%s?$.@>Qe'cUfcHac8cjnCIc-Xkcd*^7hdF$CkdJhQ2dEp1^bg4_hg"=j%b085[d*L"^bK7oO +d/MJke,IemdJqYpdIkrfd/_VodJhQ(d*9qfdEBP0TZ-0irr2rsrWW9"rr;usec-6[s8Muss7Y^J +r;Q`qrVccrrqcZpr\aZRo['M*\Dd2Yq"jmcqu6-$R%D7K_Od76lfG@4Y3GMkQC#,=p\jgMf\G`Q +bd!VBmf3+]rr)rsr;QZnrgWq<~> +f)PdL!<<&t!<<&t&H2OrbFt6!]"55RYctCZa$[7YdV$HYHkdZ +aMY[![C-"@6ajS@`QccO]skf'g=O?R\]<.OeB>bF_8ssMdEp.beBl4O`m)WB^rFXCa2Q-He'?.\ +cdL4baiMZNc,[];a3DfH^AYSK\$i]NZE^[?Z*EJts02s;[(!TV\$iZKYHG#*Xq7eB]=kM=S]L*j +rVlcps8W(ps8W$[s8Dlmqu-Qpr;6BhrVZQdoZiVXU8+?JP`Ui_NK0-dQ^F/,Q'7>lO,f9aPE_?! +Q'R]$Q^F/.R$a>4Rf8^GR[ftASt):?S!oe5R$jA/Q'Ri+Q^=#'QC!u+Q'7DsR@Be?TqS-OT:D=: +R$X)'PE:c_NK0']P*;,pQC+)-Q^F83R@9_s +Q'R`$Q^O2*R$jA3S!]M-Pa.T$QC*r$Q'[f"OckonQ^F20SGnuqS=,Y(O-#NhQ'@DlNffZsR[KP0 +Q'7DtR[a;F#+:gDQ'@MsrfmDGs-*PJPl?sAPT,gNQ'RYtO,]-_S=Q1ANfq'7o(r7^rr)irrr1@G +&cMb/rVuokl14cOs8Muqs8W)ps8W'UrVlH9Vjk3Tp\O[]qu$?jn\CQ`_q2_qR_e@PY`Q$Po"LEV +\DR&Zp?C5bl/g-oR^2A]q>L +ci4[Xs8Mrop!Be<^=V,ngtgiEhVI#ChZ)F3hZ)C2hHepjg"kWGgtCH@l0RZphr!;FgYLfJk3;@' +k1S;@lLF6!f\Pc^o^1\qhrpSp!<<&ts8W,u!<;rq +s8Nc2q"idK\(U'9nauMIp\=LXqYL$Xp]:3crqZNf(\[Iko_%qNo^VD;md]lo)A7^oC;hL$M*l_p@\(Lo'u;Brq%*%q"F=Lm-p\Xjaq>'m`q>0sbqYC!`q>C!lq>0s`q"X[]p_`c$q>0p` +q"FCUr:TC4]r]B?pAOpfs8N#Drt550s8MusrVQQns8N&trr<#tqZ$Tp4oPBQd&3GFiq`NJrVlfo +rpILdQbM%fU8#]sjf46@jn6lnPc<.+s6Re(TX3+oWg'j\s8;fnrr;omqu$EkrgWq<~> +g&M*O!<;ur%fcP-s8MropCZbgAfq-g&Kf2g"4g/hVQr9f%oHOjkebI +g=Y'3h;I;Slg*NZd+IIHk1\;9ipH3uhV$W=jQl4$n*fc9lf-^Xk2P1NiTKCaiofUjjPf+\lg4$* +lg*iui7m#Ek2kOTf@\j4rn7>*s4[P-jkKgh"P_Y`f\$2T"k_GZf@\aTfa69]g=O?DW6O`*rVibq +s8E<(rr2lqrr;usqu?Zps8NH)q"N=2TYJe#dF/$Cs3^hl$dR)Ed*^7hda?LkdJV>mdEp8>ci;>l +ci23mcdC4ke'ZOfcdC1gccsb_daHLie()srdEp7gdF-Ficd:%eeC<%"e^Mmjc-4GZdF-Ijd*L"` +dF?^rf%AR&d*'PSd*KbTd*g7cdacgncd9t^c-FY]cHZ@6#1(T?d*U(_rQG>gd*hpBrm;,#dF$Fl +e^`7"d*L&:cj%hAcdL7hdJhSndf\+KdaS0C(!t@Udb*:+e^;O_d*^4edF$7^air-2e,RkodfS%J +df.Ynd/VMmdK7hCd.Yj"d*^:iccsecdEBP0TZ--hrr2rsrWW9"rr;usec-6[s8W)ss8Dins8W)u +rr2rtrqcZpr]U5Zp!BV-\`3G_q>L: +o)JXcrVlipqYU3hrVi;dJ,~> +f)PdL!<<&t!<<&t'E.jub+Y-!]",/PYHY77YHbC;S2_mctaa3VuE[_0].d`fP?]th\6d*^=ie'u[]^;J%1^:hG+ +ai23?bf[rC`5p3Kcd'e[bfRc:^;J(5_S#iW#I_%IZa-jAYl:g/Yd(L=Z0ejsYp$E[\%0#X[Bm*? +Xf\b/Xf\b0ZF[]RR@VFap\k*irr<#tV>pSo+TME+P`h)eNK0'_Pa7Z(S=H(:QB[`.T:)4EURn!JTq@d@R$O&)R$jD3 +rL*YRs-s+ZQi<6PPa7](rgEeR*h&LaR[]b9St2@=Q^=,-R$j8+R$sG-P*;,rR$jD4qjearQ'7Ao +Pa%AoOH5TnS=?"Y' +]A`;UqYg?jrr;usdf0pXs8W)ss8Dins8W)urr2rtrqcZpr]U5Zp!BV-\`3G_q>L +_kX!In)^R-Xl]6#UQhb,p]'U#VkCBFd&N>:o)JXcrVlipqYU3hrVi;dJ,~> +ci4LSs8Mrop!Kn>^=M#jg=uV_hV8Usgt^`?gYCW>gYLcCg=uVa=5DQ_hW3n_iSEAJh:^KKkNCpeki^s_gtq)Tlg='(l07Bjgt^oQ +k2G+LgYL]@g]$".h#cBfh>Z10h0rViYn +s8E#uqYgKprr2rt(B4@6r:g$AYIE3MnaQ2Dp@n@Wq>0s`rqQ9a!;QNgqY1'brq.0'q>:!Zmd09- +nb)SHn*ouEq=s^[qYL*bpAXabo2#&Qp%.eIp@nCYp[n%Hnac;Do^h\FnalGKq>0paqtg$VlK@L+ +p$;#>qXsIUrquQdqYBmZp\FUYp%@tKo()DGp%%V?mI0Q7oC_hNp\4RY"SMQerVHNfrq?<`'DVCt +p\FU\q=s^Yp%.bFoChtQo`"@onF,f3mI9c>nF?8Kp$hA;p%eCWr:^0c"o7rir;-9fp]1-eq"je# +q"ad]q"a^Xp%eLVlJK:Vam&QtrVc`Cs8;lqr;uuurr2lrrW<-!rql`qrr;p^r;QB9T9-D +ci4d[s8Mrnp(E6f\G<?f\YZNki_'g +jPo"IfA,BEgt1*-f\+p/f\kH_fEBm[f@JRQecOISfDaA$fF$6\e_/NmW2Io-q>L;ks8W#ts8Mun +rql^5rr<#sp\*.1Tto%(dF6Uoe'c[lcd'e\cHlI:$..,KdEg.dd*U2>ci;;jcnitlcI(.ng=Xm" +bfe8YeCN-te(<@1gY1H>h:pQ2e'cUicd:%eeCN:*gYCQ9e^DgjcHlL:+j\HZd*pV#gY(B=g==Qm +a32r\aii2bda-Ire^;dmdEg,9cP4[LcHjkadaHOgbKS8Wd*gCme^`.Jd/VPod0%nLf[]uLrm;8' +cd0tde'c^pe'upte'l_Dcl:E`f@\['eCN:'da-._dEp.`eCN$kb0A>_e'e3B%arkVe^W*tdaHOh +cdC+en^&6#cdL7ebg=hcbJpNS`Td0trr<#srVZWms8DoJs8;lqr;uuurr2lrrW<-!rql`qrr;p^ +r;QB9T9-D +ci4IRs8MupnB7PmVRX+?Yl:g*XTPc3YHRl.!jSu6pp'k&#dLS9Xfek3YHRi-s/u^4Z*1@9Za$^; +rj-1@Xff"@]t:_YZ*CI2Wj&h:\A5tn['R<[`l#F"^rjsI`kK't]u%k5b/qZDai;'+^;@Uo\A#l! +^qdn+^:Uqe^W"78aN)9=`4rjn^;Rn%\$NHL[Bm3FYct=7Xfeh/Y-5(5YP,1%Z*:J0Z2_$:Z*UmK +[^EKJYH=n-Xo5=1Xg,FKZC7?)l1b2Wrr/Yls8E0$rr)cmrVeGJr;6EhqtKd0P`MW8Ss-k""U8=WWR[BJ3TVSE[U8"QdXfAA#XK&1nT:MI? +rg*eVS=udXX8]8!XJ_keS=,b1PE:icNKKHmS"?4GV4sTPQB[f6V4F9XWhZ5`VkT`OS=,_2R[fn; +S"-"SXZ(9R[]e8R@KnBSt,eLrgNkT$_!QSQB[Z#R$sJ5SGo!$S=ZCH +Sskt/PEM&gNg#g!R[BM7Tq%I6QCFG7R[KM.QBhB6#a^jBPEM)nPEbs.qNMq^Pa%>mOH#-VP*hZ+ +SW8iDi:?^?r;6Eks8DoGs8;lqr;uuurr2lrrW<-!rql`qrr;p^r;QB9T9-D +ci4^Ys8Mrop!Be=^"(ffg"P38gtUT;h:qt`s4dS-?ejPqgtglEh;$Z7gY_&Nhqd,Ii7QZ9g=b3= +jPS\Fgu.,Igu@Vgn*8rkhVI#EiSrkUgtU]CgtU]EhUpK;j5StRjPekGf%8^8j5f7Zhr*MNg"P?D +iS<,=g"Y98g>^leg&Tn*gA]h-gthtd&)cF*i8L;`s8W#ts82fqrt###ptW'] +g$8(qoCV_Lp\=a`o_8F^rV6Eg*;K:'p\4CSp%S@^s8;NUlK[d-q"jaToD&=bs8Mus+T;00oCMMC +o_%kLpA"I[r;?EboCDD@oCVYFo'u8CqY^Dp%7eCn*]W5o()GFrq6<_$M0m]p\FUYp\=L^p]:3bqY1p%q"a[Yq"OIR +q"jUHhRoo3lLt,Rrr;usdJs7G!<<&ts8N)urVcTlr;Zfqs8G=_s7Os>OgaBHs8DilrVc`f_NpS/ +i5_@V`pr<%Pa%37j3airQ^FA6R@_%JkfoucXmQ/err)cns8W)us8N&urgWq<~> +g&M*O!<;ur%fcP-s8Mrop1T8eC`C'f%o6:W:e^W1&f@JO*g"=p:f`0P*f[n^)r72J3f%&:"f%/C$eC`L;ks8W&u +s8N#trrE&rs8W&us8N#trsSf!pXPn1^sCKXdaS0C!n#?>rlkMid*V^LuHf$DUbcICP'g=Os3j6,OajQ5I_hq?Q-rQl#$e(<:.hVmJQhV6Z2dJhJmci234cd^V'iT&nV +jP\bAbf\8bg!7sugXaj,h:gE-da?Ffci),lc-4GYd/MH*dEg(_cd1%he'lgqda?CedEqm<(t70k +eC)dmdEp4`bg+Vce'c^ne'ujpdEhg;)q!OgaBHs8DilrVc`f_NpY2iQ.UZa7/?%Pa%37j3airQ^FA6R@_%Jkfouc +XmQ/err)cns8W)us8N&urgWq<~> +ci4d[s8Mupn]IPkV7*e8YH=n-Xfeh1Y-.8ts/lR0Y-"h/YH[r.s0-UKY-+t3Y-,"8ZEUU?ZE^X8 +X0/e<[^33AZa$I,Xfee1\%9#T[CEo`]",Sqc-42C]t:hc]=u(q]=,,W\[JoU]XY8Q\@oSd]"Yhb +ZEUUB]=u%o]Xk_f\[/ZR]tCeYY->4:YHb=7YHG"0Y-+n0Y-5"2mB?Pm%Bm%D[^EKKZ*(1/WiN0! +Wt;D;\@]#6SB1!irVlcps8W(ps8W'%s8Mupr;Q]q(&n10rVZQdoZi\]USF?DOH,6VMiO#"QOoCF +OcYQ]NK90`P*2#oQ'@U5QZnjdS"#tAVQI&&V4O3JTr4upXJi,$[CE]R[^W]NXf%h]R$X2.S"?FU +Xg,7@[Bcm4URmsCQ^!VpOHGm#Tr"`fXKS\%TpqICXfeFqYd1=-XKSUsSXc+6Q^O>4R[]k?StVsV +VPU#[St2CBSXuIGSXuCAR[OPQR[KP2Str-QSc5,gS!fV1R@B_6Q'IZ&R[X5Fs-at!T;&3\URRO3 +Ocb]dQ^aM6Q^OMCU77L:S=Z7>RJrNTQBd`%rg3bRQ'D93!KrZGP5g^GP4t.WOcPQ^Ll.:\R@9\- +P.T]Fqu$EjrVlirrm^uJrW)utrr;uurr)flrqufrrVuj_rVuQAV3/4Jq#C +ci4UVs8Mrop!Be=^!kZdg"G*5g]#pcgB-*`g]#n,g]#o;gYUiGhVI&EgY(64g>1WChVI&Ef@S[+ +f%Aa5hV?oDhqQi?kk"K8j5&PHg=k<:h;-i;e^iF,fA#31W@g"4j/gtLB5gYCQ;g>q#dg'HHeg=tB(!as7cHd$2=5jq"FFUq>'gapCm8mo(N(_s8M]YlK@I'qu-B^n+Ze\ +$i^2+rr;rhmdK]:oD\@sp\Ogcrr)`hp%%VAo(2JDnaZ8Hr;HQn)ZK[/n*TfIqX*hOrqQ0`s8Mfb +o(;VHoCV\GrU2?.oCMM?m-aE4mdK`CnaGo6lL4ZMp[RbEoC;86m.'fCoCDGAnG_tX +nGhr3mdKiHrVH*NkND-sm-F'+l07R*pA+@JlKdp/n*]Z5naGl4nFQ8Dp%A%Rq"FFUq"aparqH?c +!;HKfrq@#to(;bLlJB1Sb3J]trVlirrmCcGrW)utrr2rkrqufrrVujRrVu]T_Qh>QqZ$Nlr;HTn +pslmcfBM#"[+G'EgV9ng_WpO;\uDEtTrPf\naYAP[`\7BrVc`nrr`9#s8JMfJ,~> +g&M*O('":4rVlfrrr2rsr;?99XJrtag=FmTfEKmZf@\^,mF_Hj"5)5Wf)!u#f%8O+rmt]5gYCW> +g=t?6f%&@'gY:N&e^OHG#h%AU`i5o^ +mJ6_[W;lns!<<&ts8N)ur;Zfr!<<&ts8NB'p@m+1U;5%&r6kVm!mf0;rlkMid*Vd>s3Uels3Uek ++j\N]cHje\cHjk`f&>fUinDo0cHt5&jPebBh<4(gkN(_'jT=>ici)3IdF6_&hrAh;dJIda$1dci238c-+8Qbg+S`d*9eZcd:"ae()mo +d*C%dcHah`c-=AWh;?f2ci2 +ci4[Xs8Mupn]7>gVR3_6Y,n_*Xfel,Y5GI,Y-5%2XK;6"&Zi+:Y-+t4YHP17YHY77Xf\c*XC&*6 +ZEga=Yct72X/i>+Z*CO:Yck%*XfAD&Yd:aEZa[EMYdM9iccEc.\$iZN[C3QR['?d9Yd(C<[^3-> +ZadHLZamQMY,nb.ZF.0M[Bd*EZ*1F>[C!-Wi;qqri-R3Xff1GYEtd#lM(8Tr;Q`rrh]YprWW?$rVZTmrr4#,IVP'KMR[95$Pa\8AWNEG1[(!HIWhH)a[^E'8\@],MZ*ps8S!]M- +Q'I`)R@9YS=H.>R@0>1WiVqcS"?4AQ]dQ"S=Q.8Q'Rc)R[]e< +SlqVVU8P)pW1TE@Pa.T'S"H@ES=cUVX/2DWS=cCCR[BM4R$O&*R@'>,QB[SrP*(liPEM&jP*;)m +PEV/mPEM)jO,JmPLQ%RfR[oM&]]/V^rVlcorr;useGoRJ!<<&trr;]kr;Zfqs8FkRs7tcnZ-;Y4 +s8DlnrVc`je[W3Bl.`bUfD"pl^TOHNlL!'3WM6)[WkI0Wn_;!jb4P`4rVl`p"9/?#rgWq<~> +ci4[Xs8Mrop!Be>][GHaf\"m1g=b0;g'66ag=b05gA]b.g>(QChYu@2gA]bEgYCT=g>(H8f@JL& +f@\g6gtLWAgY1QKo(22*rnIG*2;6j@gY(31gY:93hV6Z5g>:T9f\YN@g=Y$/g>(Q@gXt-2g"4p4 +h:pT5f%Jj4f%A^2g=b09gAfh2g=b6:h;7&Irne%:g"tN,XfKh:q>L;hs8W&us8)]ps8N#tr=f21 +s8;Wegoe-=kjS$3oCV_Lp@nR]s7lrqp@e:Up\=OXrqQKd"8M]eq#9shp%%PCrr,msp$:i(lgt&R +qXO"Jrr2ijoC_qVs8MZXmI0Q7o(2PLqYL-irquTbna>f4nF?&LkiqU/ +oC25:meuN!mdKZ9nacGQrV?!Lkj%R'md9E.kihF*q>BsSlg!p.o'u5=oC2bI'(>8WnalDHq"OLV +q>0p]q=s[Wr:^?fp\=RZrq6iloD%qAh7Ti4l1b,Srr;oq!rr9!ec,XKrr;usnc/Xf%0-;(rr)KH +eE6T*s8N#r-iF#BlJ(+[p$^YfmJQnQimZ3/p&+=9d)a2Gcen +g&M*N)?9[6r;HTorVlirr;H?9XK'"`g=Op-f[n^)f%/C%rmh_4f%/C$e^N!te'Zh! +`Moi_mJ6_[UAt8m!rr9!rr<#s)uom8rr<#sp\341U;+t$dF$CidEp7cc-=JXcMc)hd/MAjd/VDk +cN2>9rQbGh*6m$olg:lQj4O7U2Ug=7i8Wk`l0%*`f?qmhcd0k\ +d+-n/iT&tXjQG^fhUBj(jl4eAjQ54Mhr`tQdEKk]c-=S]rm*+AdEp4cbK.cJd*^:ie^`$kbg"P` +d*^@mdaH@giT&Y?d*pIkbf7ZIdaHPBci;6IcHjhaeCE.%gu@ANf$Make^rC'e^D[cdb!=6g +ci4RUs8Mupo#I>fV6mY6XK&>&riQ7'qQ:"(Y-+k+Wqi_"X/rG,Y-7i/s0;R-"0S`.Xo5:&Xfo"7 +riZ:%ri.uZXKJ\-Y-+e)X/W,"XKT":YdCdBYdM3eb/1WoZa-g>Z*L^CZa$^9Yd(74['?a8Z*^g= +Y-bXDYl:d4Yd1XBZE:73XK&B$YR@M2WN<>*WN3/)Y-%]+ribmq"g+r1XfSQ%XT,=3XKJh8Za6sA +X/W%qVl?\rriH[>\uq?gaQiNtqtpBms8Aeos8E3%rr)cmrr2rtr>Yb9s8D]bc]jB]Tq%@-Mi*FO +NKKKnR$Er#OcfX)rfR2CJ!#qZQBml'QC+,2S=?=\]th:eX/Mtu[(O/dZ)tFJ^:^q][(*]Z[%j%T +Q^F22TrG9(\@TDf]!\]=TUV@;R$O#)Su/QkYHY:=\%/rNV519,\u`0O_7-YV]!S?&Pa%GsPa@f- +SY;mYWMl_jTqS9[VP^2eUnF9JS"?:FT`:]STV%[GYHb!uStVjMR?Ec&SXZ%5Q'IZ&R$sP=USFZa +XK\q/Tq%R?S"?:HUS=?NUSt?#X.l2WTqe?TStD^JS!oe5Q^.Q7"d5(4OcY\(OTpo1PEV,mPPgRE +OcTL!%>Ke,R$jM+PJ6,NrVliqrr2rtrmh#Krr2rsrpg$gr=&`)r;QZehpgfarVulrr?qOCr9E%k +lLjW#f^8V7o&A-Dh=^^8hU'?_`m +e,TII!<<&t&cMY*p!Kn@^!kWbf@S[.g"=s8f`Ts]g"QGY$J=%cg"P39h;6rArn7A,rn87Cf\"p5 +g=Y!-f@\d2h:^E6h;7#Gj65ahhYu70f`'PVgYL`AgY:WAe^r[5f[nj3g""X,hVR)Cg=k<9h;$`8 +f%Sd,fA#0;f@AI+h:pT\g&K^^fb`;pg"=p1gtUZCiSWMKgXt?9afMMhmJ6_[V>pSo"onQ"r;HTn +s82fqrt#&%q:r0^f]hhmo(2MHp@nR]!r)Kbq=amarqHHfr:^Hip%7kFmIU;Us(M,ljlc()rVcN[ +mJ-\[q!I5-nG*"]p@%D9mdKZ8o_/%SqYpKlq"*t?l0@X)o'u8Bq>C-_n*]`@rVucco)&F_mdpJY +p@.nXr:]UEmIBc=p%A%SqYU0aoC)#.kN_R0q"XUUmc`jPn+65Gp\F^_p[n1Xrql?Zp@\"El0Im2 +naQPH#4CmGmdTf?rqJ#@rquN\mdK`=o^hYDn*90+p\t3go'l&8o_J=Vp@n4Mo'br4mI'N8o_81\ +p]L?ep\=RY"SVTbq"Od]&G#Jgo'"lBY0-&)rVc`qrVb.Ds8E#urr2osqYgQrrr2fps8EH,rqucq +r:B@Ns8N#rrr+2Arr2]`nbE([oCVt\rV6!RmIU>VqY'FFlg=37qYgHlp%8%Xqu6Wq! +g&M*O'`\13rVlfrrr2rsr;?99XfK4dgXlDT!7g2^q:5Mprmq,"#hIVYf@\d1gY)SY!S?!'f+?N` +e^rL+e^N!se^iC,e^N+Kg'-6gjQ5@SrmijSe^W.$g"P*1fA#!+eCrR)e(3.$dF$P!g=b*/f%8O, +f[eO$f@JC"g"Y30daQh%f[]rOs4%D+e^`1"e^i:$mFM]SiRcZ>lK@'Ucd12"k2tIJdJ_B%db!:3i8j.ekMtCLd*'SU +rm!7Ee(W^:gXt06iT94[e^<+7jO;`DkM4\Hjl"e;bKS;XcdL=of\,!5f[S6kaiVfWf`'YHg!\-i +dF?^ug"bE=gXk6DkMY%Fg"4]uaii)]e'\0A1=+7ld*gIugtgfEjQ#+KeCWI3hV?l?f[%glgu[_W +f@83sg"Y98g"=s/eBuUfccsb\rQt#Z&^J_LccOAXcH3u%T>]perr2rrrmLiHrW)utrr2rorW<-! +rql`qrXAi+r;Q`ooBuAQrr2lqrZqIArqQ'Sq#1*]o_eafq"+"BoD\acp@.G7mI9fFrVufgo_AC^ +rr;uurg!M6~> +g&M*O!<;ur(B=C5s8Mupn]@GjUp[Y6X/W2&XfSV,pT4LuX/l3#ql9h#Xf\c*YQ(j+Y8+4BXfSP' +X/`2#Y->.3X/`2!X/i5!ri-a8Y,n\'WiN5&YHtF6Yd:^D[^s5h]=%XCri[0CZEpsFZE^dCWi`Y6 +Y-"n4YH+_.['R*DridNMZEg^8WiW1rW3*5)WMcYpY-"_)XKJ\,XfSY-YHG"/n>u_mX8]4#X!+RI +Z*LX?Z*(++W2HSoX/rD'XL>[BQ^l.]p\k$frr<#tV>pSp#QOf%r;?Qos8N!5S"$4[^;IapXJ`,'[_9GfYcYFO]sk,? +WNiqD\#>g`Q'Rf.Tr>-#[^s2e]!ST:SsYh1R@'A0Su/QjWi2o!ZadQPW2?i7]WABT_R?VT\Zhls +P*2&oQC=A;V5g`(YcXn%USF]fYHb?AY,\7gSY2^QVPpMqWi;hp[C*08V5L/aSX5_8TU_C8Q^3u* +R%'bFWiW>+Z*^g;UnONYV5C/iWi2S^V6.29Z)FLnUoLPuW2HSiU7e$ER$Ei!PED#lP)t]bOHGWe +P*1t+Oqj+BP*(c_Mi*7HQC!u/Nfq0=o_e[err(7Es8E#urr2osqYgQrrr2fps8EH,rqucqr:B@N +s8N#rrr+2Arr2]`nbE([oCVt\rV6!RmIU>VqY'FFlg=37qYgHlp%8%Xqu6Wq! +e,TII!<<&t&cMY*p!Kn@^!kWbf@S[.g"=sUg&Kdag&K\1g"P-2f\,*;g]#k-g=t?Zf`^'bgtLBZ +fFHTih:U91h;I5IgtprFg]#nGf\+s0g"Y?=gY1K79jg=Xs- +gYLT7eCNC3gtCB7f\+p0o%F&sp"BAtrn/+?g=b-1g>(EC9lqt0CFl07R%nFH/?nb)VHlfI6m +oDJXep%A:_q:-j +rV-$]p[[_8m.0iArp^9`mdBQ8q"t$hrr";FrV,mQpA=ddr:p']mcs9:s8W&op$V;Frr2lpr:osW +nEoZ3nFH/BpAXjepAjp]pB:3ap\=L^p(6feq"!Y(]roNCq#10js8DoDs8W&us8N#ss8)]rs8N#p +s8W&us8N#ts8W&ts8Ms5rr;urrr;usrVZWnrr<#tr;?NmrVc`orr*0#qu$HmrVQNkrW)oorr;uu +rg!M6~> +g&M*O)?9^8rVlfrrr2rsr;?99XfK4dg=Op,f@JLLf)O@hf)O8#f)=,#f$r4Kf)O8+f%8L&e^iI/ +f_sD&f[p&P"PDD\f@9fM%bB=eeBuh#h;$]9g=t?5rmjBbe^`.!f@ej/f%J^(e_Aj1e^rF'daH_" +f\+m-f%&=&f%/="f%/:!f\4s+dF6b'g"+a+e^i:$f%&=#eCE.#ebdqtfCd_peJd#he^W1#e'lgs +e^W'te'lgpd+?gdW2S#/q>L;ks8W&us8N#trrE&rs8W&us8N#trtbS-pXPq1^Wk0QdF-Fid*U(_ +c-4GWcMl,id/M>qd*L"_cd0o8c2Z'5cd'e[f&H#_l/C7>d+@.;l/:+BiTfR\cc=,Uh<*nWeBuVA +cj\=Og"t]Ll07?fg!n@Ibui9;cHaeeg"4ZtcICY1kMt1DgumYBe`Q#Lf&,QFf[%^ad*pRugYUlH +ioB"Sg=4NtfAG`Tl0%$Yda?UugYq2QjlGFZjmMQuhVR5Kg!\-lf\4s,e'lbEd5TV/h;RDQioTCc +i7clAjlkskio8nIdF[@EnEAcaeC]perr2rsrmCcGrW)utrr2rorW<-!rql`qrW)utrr<#urVuosr>5J5rr)irrr2lorVlfr +s8MrorVlcorr)iq#Q4Jsrr2lnr;HTprVQTorrE%`s*t~> +g&M*O!<;ur('":4s8Mupn]@GjV6mY5XK&A(XfSW&XoGR"XTPZ,XfVE#*3?3BXfeh1Yct:6YHG". +WiE,#Wi;tuYHY+,W2]crrM_QPXKJ_-WN*#!X0/_/WNEJ6[C!6H[C!3CZ*CI8YH>"5Za6p@Za$O4 +Za-a9YHP(.Wil?*#Ht;5Xf\b/Xo>@=Vk^/kXfA7oVlQu&WiE/'XfSY+Xfek1XfV?#s/u.!s/[KJ +XK/G*Z*LX?Z*(.,W2Q\qWiN8'XL>[BR%27^p\k$frr<#tV>pSp#QOf%r;?Qos8N",rVlfop@QXn +N1cl6PE(QXMMmLWQ'[f$PEM#gNfK3^O,f9^OHG]hOctuoQ^F21S"-=]]thFoYGeJ*[D'GfYH57M +]X+K,U9:r9\>l*dQ'Ri.TV\`r\%BAg\Zr33Ssu/HQr9?BU8OoaTV89e\@f;QWjBIOW33nN[&p^F +Y,%GIOd)3%T;/Vk^5t^V[ReXeqr!\@8fKY,S7nT:;77Pa.JqP*;&jNfB'[ +NfT +ci4LSs8Mrop!Kn?][GE^f\$,T"5;G]gAT\+g=b0EgAfk+g'cTdg"P-3f%&C-h:hk\!nl;\rn%5* +rnL0&gXt33f@o'9f[\[3i83/=f@o!4g"P05g=Y!-g"bB9f@\^+g"tT?f\5'4f%/O-f@\a-f@JO) +f@\a/gXt$.gt^T5e(WoB5#lnG3(_p@%G9m-X6-m-s]FrVlci +mf)K0mdTW2nF5o7n*o`0kNVC,r;?B]oDAR`l1"ZMoC)MSq=O1BmIBc>q#(0lrVQKks8;QXmIL&O +r)W^hna5`5o(W+_qYL!\q#(-jqt9[[qXa%8lLXfGo^_SAmI0W@rVuorr;HWprqGpNp&+der;-Bi +n`fE9s8N&tp@%MIr;- +g&M*N+92<L;Xrs\o,s8;WceY/\Nbg=]7d/VE!c-4ASbfn>WcHji9 +c3DV?c-=PZc2GldbotRbgX+3ogudhXeC3@?jkS5)bgt\6k2"M5r6K`;f&#KPlKR<] +e'cXldE]t\cHXV[daQUjdF[46j5/85g>q,9e)KHCf&#HCf[.gee(*.-iT0%YiSrq[k2+\?gZ%G^ +lK@0^f@JR-hWX4cjPo+Vl14?*hr3_Yh:'Zugu.#?e^W$pda[%1jQ,=YiofXki7Zc>jlu"[kN(gg +gX4O/n+Q/-g==a1jQ#=\i83>Gg""R"d*U(acHje]bfe5Vcd'bYq9Jua'$nkEb0\GU`2TEJkP+uT +s8N&urr*!!rr0S1&,uV/rr)iqs8MuprVlcor;HWps8W&qrWW5urr<#trV[3*rr)fqs8;clrr<#t +rf$l-~> +ci4g\s8Mupo#[PjUpIG3XfJP)XfSV,Xf\c)XTGZ-Xo>I,Xfeh/XK29#)lp'BY-+t4Yck:6Y-"_' +X/rD&W2HVsYH+S!W;`dqW'./^Xfek0WiN/!XKSk0WNEG4['6X6Yd(C8Yct=8Y,n_.ZEg[9YH=e+ +ZEg[8Y-+k+Wi`A'XK8J'WiE,#ri?X2VP9rgXJr%kVl[)(WiE0"XTtr0Y-5%3Y-%N&s/l(!s/ca5 +XfSS*Yd1O>Z*17.W;W\.WiW>)[CEE.S]L*jrVZTms8W(ps8W(7s8Mupr;Q`rrVuoss8W&lp!8h[ +T:hX9NJ`OKMN*^]Q'IPrOcPN^N/`jWNK0$[OHGWbOHPioQC"&2TW#0*]"GV\WMci(]t_+\Wj]^T +Z_sFlZ+.ETW190&BUoCT)['I!H\#c@%ZGFVt['$=)*NulWZEUI3WMZD]S=,Y-PE:lgOH,P%O9CW+OH5D#M%,/qQ'Rc-O-@??o_ndhqu-Zsrr0S1&,uV/rr)iqs8MuprVlcor;HWp +s8W&qrWW5urr<#trV[3*rr)fqs8;clrr<#trf$l-~> +e,TII!<<&t&cMY*p!Be;]$T$Zf\"m0g=b0YgA]e'g?RGmgAfn.g=cJZA_GYbf@o$7g"=p/g"=p- +fA,9=g"P04f[eU+gtLH7gYL]>f%/I+g=Y$0g"Y65f%&C+g=Om)eCN=.gtC91f\+p0g"=m+f%/I( +f@JO*g=t?5e^rR2g""R&gYUZ8f@\g2g"G*Yg&Kb-g"P0Zg&Kb4g"=s1gY1B9gY2V\"5;MagA]e* +g(`5mg>(K?i8EMLhV6`>g<$Fsd-g`.rh]YprWW?$rr)iqrr;lps8N`0p\o>q"t!bp\Fgalf.!oqu6 +g&M*O)?9^8rVlfrrr2rsr;?99XJieZf[n^+f[n^PfDaA!fCISof)jUVfDaA$fDjJ(f@KrQB\(Y\ +eCWC+f$r4"f%&:!eCiX1f%8O(e^Mstg"4g+f\5'2daHUpf%&7!e^rC%da?Opf$i$ndF6\"g"+X% +e^i:$f%&6te'lgqeC2msf@\^)dad%)f@&$pf\>$,eCE1&f%/I)f%'TIs47S.e^`7'f@S[-fDX>3 +f@\a-f%/C&f%&=#eCN1KdgFURdFZpeWN"52q>L;]s8W&us8N#trs8Stp=,b.]un\!cMu,kbK@rL +rlb>cs3:Pe!6tMe/'Z;]b0%oNbfe)Ndb!=6h;.#Pimc)of];5ReC*7>kMXq=f&#HKin;`*cMl'_ +cI(8%kNqR#hpg$%f%ANuaNDcQc-+A\f%Jp?jl5(Gc-=ergsX^.i8!#CiSN27cHt"ff%oEMj5&AA +hW=(`f@Sa5hr*JOhVHu@f%*RPm-iS`G>e'cUgc25`bbQ#fgbfe3*bSA=Fbg"APaj85Q +`2KBJkP+uTs8N&urquourVaJ1r;I?-qY^ +g&M*O!<;ur'EA(2s8Mupo#RGfU9_,/XK&>&Y5YR'Y5YR$Y5YU.Y-5%3XfVN(#HY&/XKAY.YPtd+ +Y7@\9XK/G'XK/:tWN<5&WW&hGWi;qpWN<;*X/rD&Wi2hrY-+k.YHY:9XK/J,YHG"1YHb=7XK/J- +YcXu*W[k3UYcXq+XKAS*XfSP%WiE,"X/`2#XK/@uUSXriWMH;dX0/M%WN32)Xf_T*"0\l0XSf4# +Xtm,\XKA\/Xfnq2YHP+3YHG"/Y-G==Za-d9Wi<"tWN*#$XKAqAYF(j$lM(8Tr;Q`rrh]YprWiK& +rVZTms8W&ss8O#8p@QXnMOpE-Oc,$MLPUkLOckokOcPK\Mi7RnFc23*$j]u%V"[AfpsV5BrPOd)6&S"-.MXK](A +]=P>KUSP$"ZDjq5\$<$fYHG21[99rEZEUL3V5:9)\?;m1Uo1N4 +\ZD^0ZF$^+R\$I\W190 +e,TII('":4rVcZlp!Be;]$JsYf[ng/g=b0YgA]e'g?RGmgAfn.g=cJZ%,'7af\5-9g=Y$0g"HAV +2;@$Cf%8R,f$r1%gXt05gt^W9f%A[0g"4g+f@em1f%/L-gXt*-eCN=-g=Xs,f@\d0g=k3YfDjJA +g"4j.f\+s0e^rR2g==^(g=t91f@em3g"G*Wfb)lig">!2g=k64f\,!3g"Y98rS.;)rRhq>g"4p3 +gtpuIhr!;Ff\P9'XK0_9q>L;hs8W'%s8N#rrr2osqu6Wq'E%V"gTS$9jm;C'nF?)@o(2MGoChhV +o1JZHoCDGBoCV\Em-scIrr)T`q#:3\j5KD&rq>[Cp](6ho^MSRs8Df`lg!d$lg=*0o_JLdrquER +kjJ*>p[.,.n+#i1l0e-:rr2qEq!RJ9oD&%Mo(DeNoD&4Xo'c#8md0E9r;QZdlK@U2s7u-Po_%eG +p%S7Wq"*e9oDJOWmHh-s82?KkOJ37mI9cAqu-?[lgF61rpU!ZoCDnQrq#sX(%_(ip%7kJoC2>EnE8W@YKQ5+rVc`p +s8Mrus8Do1s82d&r;HWorVc`qrVcZnrWN/rr;HZprr;rsrWW?#r;?Nlrr)orrqucp#QOf%rVlis +rf-r.~> +g&M*O!<;ur'*%t1s8Mropp%f*p6\eCE1( +g"4a'e^i=Ne1oV2f@/7"e^Mpmf%AO'f\+s0e^N%!f@JI"daQateC)dpf%8F"dF-Lpf[n[%e'ut" +rmq/#rm^tu)V3Efe^`7%e'cb!g=Od#e(<7&daZk"f@JO)rRUnss475%$.dYWf%8L(f\"gSfFHNc +f[n^*eCE.#e^N$uec!r(e^Mmse\nGdcgCQ,rgNlerW)utrr$ +ki17Ih;@#BhVmGQin`/6h;#Wgs+$nkjdlfbg4qrf@/@,hW!VTf[9]E!R8jfbQ#fdc1B-obKS2Tbf@fNbfI`$Tu?-g +rr2rss8W)s!rr5t^An*0$N0l%rr)fps8Doorr*&uqu$Emrr2rrs8E3%rVZTlrVlcrrVl`orWiK& +rVc`qs8J#XJ,~> +g&M*O"TSK"r;HNl'E.k"aIe]jZ*UX9WiN5(Y-"h/Y5YR$Y5YU9Y-5%3Y-"k0XK8P)X/rG*Y5GI' +Xo>F%X%'1mX/W/%YH=n*W2ZesWMletYcOe&WiE"pV5p_uX0/Y1Y,n\*Y-5"1XK8P-Ycb(/Y->17 +XK/D%XKSe-WN*##Xf\b/XT#:#X8oC$X&Z1!VPC#gX/VqkVQ-\rVl?`"Y-"h/Xf\b.XfSY,XKAV- +Y-"e,Xfee.YHP+4YHG%3Y-"k2Z*UaBZEC:0X/`5$WiN8'XL>[CR@VFap\k$frr<#tV>pSp#QOf% +r;?Qos82eDr:]a,P)>j&R?W2cnoQ]RE!S=Q4EWj0(K_nj$m +W2$/fY-4q/Yd1I6YHN>QTU:t-P*;6+XKo%.U84j!^q6kT['m9F['d(OcPK]N/NXRMi*CKMN!LPrJVSON/`gTLkph>Lm43lRuW]Gj7WBMs8N&urquourVaJ1qu-s# +rVlfprVliqrVZZo"T8/prVulrs8Dus"onQ!r;HTnrW)orr;Q[#s8Muqrr<#tNW4M~> +e,TIH!rr5urVQrod&a+TcILIsrn%;*f\$2V!8.8(!86;arn.S2g"Y9:g=Op-rR_t=g>(B4e^rI( +da?_#e^rU3g=Op,g"Y64rmXHhf\+s0f@ep5g=b-1f@\d/f%&=%g"P39h:pW7f@em4g=Y$-f%AU* +f\G<;f[e[,f[\L&f\+s1g=b-2g"=s/f\"g.f\+sVfE'[Xrn7A*r7_2(rn81@g=b-2g>(H=hr!;K +hqZo?fuU4od-g`.rh]YprWW?$rr)iqrr;uss8Nl6s8W#kq:r-[e`?&_mdK]:oC;DCoCDnPs7?<_ +r:L![s763[!:p-\E:^HopZ15rp\t0eo'l8Fp@7YD +r;H6Lj6caCq!$\rnFuYJpA"F\rqZ!Fkj.X)nF5uIoD\C^oD/"ooCVYIo^_YHn+$)>k2!_RbNem$ +rVliprW<-!rj`"-rWE)srr)fp$31#'rVZWmrr)corWE-!s8Mrp!ri6!r;HWorr)coO8j_~> +ci4CPs8Mrop]$K"-ecFCRrm_,%e^i:Lf)XC[fDO2%f@\d.rm^kr@b9;ae'carda-4hf@/7& +g"4a&e(31'eBuXidaZgte'lk!f@JL%e'uq!eC)ame(*(&g"G!.eC<%#f[eU&daQare(*.*f[\I# +e^`*qe(*%#e^rC&e^rC'eCN4#e^`7%rRCr"ec+/#f)=2&f%8O)rm_8)e^W.!e()tIdL4OTeBujs +_l0NZmJ6_[UAt8m!<<#s!rr9!rr3H,s8W#kpXPn-]ZSOEc2Q#gbnSCFbK7oLbK\;Tc-=JVc-4AS +b0%j)at(ZVa3<,njl5(Li9T^abK/5ok24\(N@hV6Q,cHjb[dG*^EiRH&mceR[Af\59AgY1QGkNM$` +e'Zt;l.FJ0a3NT1kL@i,hZ +dDsJai8<;HiSiq_j4;Jsb08*.b6H28cHa\YbkoZbb8ALIbKA#OcHXDNccjGJWM%2mp\t0lrr<#t +rW<-!rj`"-rWE)srr)fp$31#'rVZWmrr)corWE-!s8Mrp!ri6!r;HWorr)coO8j_~> +g&M*N+92<;qu$HnrVccqrVZ6-T9Q%RZEC:0XKA\/XfSY,XSo:%Xn8b-XfSV(WiN5&Xfeh/Y-+k, +X8]4#XW4LGY->.6XfAA#X/i8$Wi`J+W2Q_rVkg)fXJi,tY6M&,WiWD,X8]+hXKJb1Xf\e3Z*:F7 +XfSY-XK&8"X0&S0Z*CL7XK8P-Ycb+0W2HSkUo:DuXJi"oW2Z\lW2cu%XKAV+XKAS*X/rD'XK8P+ +rN$%%XT#@&Xo,@%XT>W1rN[BIYH=n,WiW;%X0/S,[CEB,SB'phrVZTms8W(ps8DqGrVZTls8W)u +s8N&uqt9R*OboX"R#m2]L51SCNffKfOcGBXM2@.LMN!IPN/`dTMiEaYP*;&lRA@*r['6gF_o/s[ +U92#?[]?I=_SU7IX@Y.V0;SY<*j +ZE:"#WN;n]OHG]gQD(Rp\>l$eV6dhH[&pC3Ycb")Y.;6NUS4^!^pg/.Su]*!X0&P,ZF$g0QB@8j +O,f0XMi*FNMMd4GM>rJ6MYi>3Mu\e8L^eulPEhH&NKUs6pAP!jqu-Zsrr0G-rr*#trVlcorX&W( +rVcZmrVlcnrr*#us8W)rr;uuurqu`orr2lorf@)0~> +e,TIH!rr5urVQrod&a+TcdgRtrn%S2f\"m0f\,!4g"GTC"khV`g">!WgAfk*gAfn.g=ZDVrR_,% +rn/4Bf@\a*dF$RueCWI0g"+[&f@ed*daHXrf\$2Vs4\RJgY1?5f[n^*e^`7&g"Y<;h;$]8f@\g3 +g=b*,e,Iu5g>(Q?gY(30f@8=#f\+s1g"G$1rn.D*g"G!Ufa-3^f[ng/g=b0VgAfh+gA]b@g=b-2 +g>(H=hr!;JhqZo?fuU4od-g`.rh]YprWW?$rr)iqrr;uss8Ni5s8W#kq:r-[e`?&_mdK]:oC;DD +o`"C`oCV\Hr:L$\"n_BVnac8Mo-*SioDAOerqcKhrr)TWk3r-Dp?V&>rr2ccmdg/JoBko1rotft +oD/@_q=O1Gq"aUUp\FXXmc`s&n*fW.l/q'ime?\ZrVZE\mf)QrmI9c?oCMYEmI'B,l0\-?rqu9H +j6QL>q==.RqXX.MrVuoon`f9-r;,dEjPT%irqYj=jmW$ErV-$\q"!h>n*]Q3qZ$Qpp>b#mo_ndc +p%S=\q=O4Lr;QBSkO8?Jp?18lo)/L`r;-3drql0Hjlu.#nF6#JoD\C^oD/"ooCVYHoCDPGn+$,@ +kM:-grVlisrqlX'qtg9krr)lsrr2lqrr)iqrVZcprV-;P +s*t~> +ci4IRs8Mrop]$T'[f)F2,eCE+#e^`7&f@JO:f*0aWf@JL'rn%/#"kV>Wf[n[QeG[nteGe#; +e^W."da$.fe^Dt"f[eO!dF?asdE^%adaZeGec45Af%8L'eC;sqda?Lke(*(&f\+p-e'lgtf@SR% +d*VdB'A(smg"=m*e'udmdacq"e^i=%ec+,%eCN4#rRM8(e^`1#e^rC'r7;&%f@SUQeHa[UeCE'u +e^XTH$e*YUdFQgbW2S#/q>L;es8W&us8Dous8N#srseu-s8;WceXrGGb0J5Urm(Pg$d?f;aiV]K +c-=GVc2Preb6?,4b/qfJrlQD+aN`Atk2P4PiTojfdEU8&jkeM:iU#jig=4^.gXacuc2Pp@cd^b0 +j5JhIg>_/MhV[8If?_R]bKeGXbK\8Rc.1_3j5AbGe'H=cd*^CsgY1?4dJhGkbUh/qio]1Kb/hoa +k2G"Kio/YEhW=%ejP&&1h!4%Qd`okYhX0LUc-P)&kN:b&hDX$5cdL1cdG!aKkLmqnbhD1@in`MQ +jl5+NhWO.\e'Qb/khj_*bM)(?ioK.YkNh9_bf@fJbPo]dbKTq0s31Abs2u8(bKJ&ObKeDRaNr)O +`2TEJkP+uTs8N&urr*!!rr0J.#lal(rV??hr;HWps8Moo%K$##s8Muss8N#rrr2lqrr)crr;HBh +O8j_~> +g&M*N,QI`?qu-NorVccqrVZ6-T9Q%RZ)t+.XKA\/XfSY+Xfeh/XnAjrXoGI5Wi<#!XKAY.Xfeh. +WN3,%riHC-YctFZ*1@5XK/>$X/`5'Y-#+AY*ba"lM(8Tr;Q`rrh]Ynrc\8ANWj]^W\#u[3[Bcg+R[0/!P*_f>Z*gpDYd(dP[^39CWh>Z>Od)9)StW!XVLGJH\%B5[ +ZE'gpT:hmPVQ-VlUS4*?P`h)iQ_CLdY,%PXVR=1LZ*V!OZ*1RH^:h"VU7eQu[\][gR%1:k[A07_ +Vm*S9YH4h)T9G:sOcl*,Z+7?DR[BkU]"5>TZ*h$GXK&J7]sFW4XLZ!MUR7UR[C3BIYcY7@Z(mPE +NW5"BNJrgSMM_=is+gc7N/W\mN;ne:N/R[k%>0G!Pa.\sP.]fJrVliorW<-!rji%7rr<#sq>:-g +rVlisrqlX'qtg9krr)lsrr2lqrr)iqrVZcprV-;Ps*t~> +e,TII&-)Y.rVcZlp!Kn>\^&^Sf)F8$f_j>(f\+s1f]_!(f\+s1f@\d/g"=s1g=tH=g"4j,f%AXS +g&K\@gYCN9f[\L&f\"d,g"G!,e'lgse^MsrrRMJ3gY:E6f@o!5g"+X#e("BJ'\D$kf\5*5f@JO) +f\5'2eC3%&gY;Y]"kqV\f%/IPf_a;#fDsP!f`0V)f`'S(f_jD+f\+p0f@U#Ss47n:gY1H>hVI&F +gXt95a/c2dmeQh\V>pSp"onT$rVlfqs8N#trtGD3rquNeh6+*6jm;@&nF5u=o(2VH$1m`YoCDJD +o();Jnc/)Lp&4mhr;$0crr2c`m.1#Np[%2>s8Vl_kiqR+mHEj%lKRU&p\k-jq!dP3oDAF]qY9[M +lfmWslg=30lK-s\jmi6Js8;TZli--:lKn!/n*oi6lg4!'lKn->s7u*Fk4&9JqtBd_rU9%Bq>L?i +o'>Q0rV>aCk2>:irVGm@iT^"6rr)cjo^1r/mHj60q#:7Fp?(B!oDJR_pA+U_q!meDqu-9VlL=ZM +p?1DupAY!]oCDJKs8MQMjQQ"#naQ,KoD\=\oDJ.uoCDMDoCV\Ho(;SCnFc84gq9c4lM1>Vrr;rq +\GuL+rVZirrVlcgrW2uprr)orrr*0&rr<#trVZTmrr;orrVlirr +g&M*O!<;ur&-)Y.s8Mrnpf\kuXjP&#. +g?7JEd*9\Vg?I_LbfeGik31sehq?H%bg4S[db*RBj4DGmc.M"7hq[,MjPJP@gu[_We^N43jkS/% +cJ7O@gt^Z=k3_EebK%]Ibg"DVbKJ-/bPo`cc2Z!*bKS2Rbfn8Rbg+MTaNr)N_l03GkP+uTs8KJ, +r;QZn"8r,srUp-jrVQTn!<)or#QOf's8Mupr;Q]qr;Z`ps8Mrus8DnWs*t~> +g&M*O!rr8urqlcprVdZ4r:7t&Q(bCeYH=n.Xfee-X/rA'Xf\\+or\7q"g+l,WiE-!XT,C(XKAW( +X8T+.Xfo"8['Hm;XK/D(Xo>L'X[97sYHP(.WN3/'X0&S/XJr.sWiN/!W2cr$XK8S1Z*:F7Yd(I: +XK&5!X/rD)Xfnt4Z*LR9XKAV-Z*:C2WN3/(YPbU.XfJJ$WN6$#qlBau!3>stqlB[s&$;q8Xfee- +Xfek3Yck44XSo16Wi<#"XK/_;XdG[#lM(8Tr;Q`rrh]Ypr?_LBr;6Bjs8W)us8Muqqt0O+ObfO! +R#d,[KnbA?Nf]EcNfK*Wreg]5@#Bl$NK&mTN/`jYP*;0$W3Wb5YHYCJ^UUDEYIM-KWMm/9]!J?. +UT(/aR?j,#Nf]X%X0T(9XJ`&)]t:e\XJ2)FNfB'_R\6IRUn=0OXgP[HYc+:dR[]e:TVJ6QS=F>[ +P*;#iPF%oBZ)jalTW5N;]!JiW\uhp6[( +e,TII&HDb/rVcZlp!U"?\BWRSf%0iPs4@D(f@Sg1$eO%_f@\d1gtUQ9f_sD?f[nd-f@o!5f@87! +g"=p/g"=m*e'c[oe^i@Oee-H\e(37,f@8@'g=t<1dF$CmqpuY8f\5'4f@JI$f\+s1f@JR,f[eX* +g"P*Xf)OA6g"4j,e^iC*f%8O)f@S[,fDaIqfE0[Wf`'J=f[na+f%A^1gtplBh;-i;g=O?EWmL20 +rViYns8E3%rr2lqrr2rsrr +rU9dV9_.rWs8;T`o_/4_r:BIPr;HEXlh:>Wp[.)&kNqHql0ITtlgX`Mrr2``k2l.3rr)chmc`s$ +kih:!o_%eBk2POlqYpHfna5T*kii$2s6X[km-U3W +kjSBJp?V#0meHe]n`8itmf)\Unc&+Ync//$naQ&CnF?/=k2!_RbNem$rVlip +rW<-!rkAF4rX/])rr)cmrr;urrVlcurVuorqYgTsrVc`pr<`K'rr2lpr;?QorqulsrVlfqrVleW +s*t~> +ci4d[s8MropL;es8W&us8Dous8N#srtGA2s82NaetAYHa32ZNc-4DTbKBh+9$58ubKJ&ObK@uNb0%iJb/q]F +a2Z3Dc-kA+hq-K4f])&Of@J^:jk\A5gu[SPdDs8Lc-")Lbfn2Oce..7inrD6c._=CkMt=ErlYnp +a2uZWf@8-g`Q6K`j5AVlbf]n-CsLVhj5&/,d+RICiS3;RjOVT(g#M8VgX=I& +jl"P3bfIrYkN:C?aN`>qkNM!af$DL]bfn>[f\kiLf?VOdgZ%2KgtgrJgXO^)j65OUeC`a?gsO?p +hW*D>daQe.mHN +g&M*O*rl6uYj%]l_2WN*##X/i>'X/rD'ri?R0 +XKAV.Yd(O?Z*:F6Xo,=5Xfen6Z*(++XK\n2YHP+1X8](#WiN8(ri?^3W2Zl'Z*(./YHbC;XJr.u +XT#D%Y-5%2YHkF&X0&M(WMuns +WN*)&X/rA'Xfnn/XKAV-YHG%1X/`5&X/W%sri-I7[]Ggeam/X!r;?Qos8JkprVe/Br;?Nns8N&u +rqu]jo^g@kM4L6+OGemIKnbGDO-,QcNJrdQM2D4h!f;hnqhu\XNffQmSuJuuW2Q\s[_'#NWNWe@ +Z)=G%\@/T:S"$"ARf8L!Nf9!aTW56$Yc=FmZ+[i^[&TXZOH,3VOI;lCX/Mb`T;Ss%ZDjOfR/WFj +R@B\7R@'>)OcYZePF/#EZE9ssV6@JF\[/`X];hR%XL5UHX.l8e\$;X!S=#bC\$i3)Q^ahU[^WTF +U6^^mLl7=ZT;f'"WhQ/cZFd]TYd(O?XJDVk[_9/OW2m>9Yb[ngZ*g^.TV/$^\[A5trf@)>$B0k! +Lkph?L5:Y@qM5oBLl.(FKnY86LQIX_RuWZFj7`HNs8Dlp!rr9!^An64$NL,)rVZTms8Muqrr*#u +s8W&orWE3!rVlfp$3'u(rr)fnr;Q`qr;lorrr2oqrr.uYJ,~> +e,TII)#sU7rVcZlp!U">\'(Q@gtgf@ +f@nfqWi=A5q>L;hs8W'%s8N#rrr2osrr2rtHN*sEr:]sAYI)jBm-F*.nF5u=oC;A?o();=n*oi; +nF6#nF,f4mdfuAq>^Kin*]Z7q#:6boD/Caq![SBrVZEYkN(djl/h0plKIR'pAP!jrUoI= +o`+sjrV,aEmI'?,lgafLqtKXKmdp>Urq>dGl07EqrouT2mHs6(lKdg&lL"U?cmd^,Pr:KILqu6BXmI'K=rr;KKkNq[+rp]sX!:p-Zs7.6$n*ff:o'l5>nac8@nalAAnau;4 +h7]u7lM1>Vrr;oq!rr9!^An64!<<&ts8Dus!r`#orr*#us8W&rrr;p"s8Muqrr2j&rr;usrVlfp +rr;ur#QF]"r;Q]orVleWs*t~> +ci4CPs8Mropr+oUf#c%Wc-=K3aoKQ\ap-&5bfe2PbPfT`aV2hAc,[oNbK%Q#TZ$!err2rs +s8W)t!rr9!^An64!<<&ts8Dus!r`#orr*#us8W&rrr;p"s8Muqrr2j&rr;usrVlfprr;ur#QF]" +r;Q]orVleWs*t~> +g&M*O*rl6.6Xfeb*Wr/n?WiN2%X/i>'Wi2krW +2Q_tXK/G&XKAY-XK8P+Y-5"2Xo>@(XK/>!VuE\+ZaHm$T#p9lrVZTms8W(ps8;j8rVZWos8N&ur +r)flo^g@kM4L6+OGemIKnkMErfCcRNJrdQM27"FLl%%KNJrgSNK&mVOd2?-W3*"iStDd[[Blp5Y +-k^CVP:)rZ)aUeQC481OHGT^M2ROfVl[,-XeVSo^:q7gWL8m2OGo'XR\m6lY,S4kW3E\5UmdU6P +`q>tQ^3qHQ^3erO,]6`PF85N[BZ[,X0]FOZ`CFH]W7a%Wj/q:WhQ/d\$;TsS!TM?\%&K1Q^XVL[ +C^ZEppCXJVem[_B>UVPpc/[Ap%$Z*^Y4U'7qP.foLrVliqr;Hctrr0Y3s8E#urr2rrs8E)uq +u$Hm"9&9"rVc`qr<30"rVc`pr<`K'rr2lqrr)irrr!*$rVZTmrr)fprf@)0~> +e,TII%fcP-rVcZlp!Kn>\BWRSrmh2%f@\a0f4EObf@JO&f%Jm?nGVnUneL]analA@nFQ)1gq9c4lM1>Vrr;usZN't(!WW/ur;uuu +s7uWqrVlirrW)utrW)usrr +ci4CPs8MrnpLfAhqZc.cdL7kf\GB@hV?`1bfnPgf[J*gdbhUg-! +cdgb,h:C34f$;F`f%Jd0fA#07e^W'seC2gneC;sqe'lhEe,RntebR_odfS%Jdf%W0daQ[ndF-Fh +dF$=gd*C+f^o"'VmJ6_[UAt8l!<<#r"98>us8N!7s8Mrkpsl(1]#`+`5^!HeCi[.aiV`Mf&,B=fA#qPckhae5cdL+_bgG/&iSN8?g"bQGgsjQiaN;KDb00e.Dp-8Eb/qiMb0\l'kMk4Hg#(oRg!JL< +m,HaRhrNq[gX=L&j5///bf@cRjQPILbK8&]i8rtRe'6+\b/qcNeCrd:gtC94j6#CYh;@5Oh:gQ9 +io]4Ncd1>+j4i2;hWEkOf\+st +T>]perr2rsYlFb&!WW/ur;uuus7uWqrVlirrW)utrW)usrr +g&M*O"onT#r;?NkrXf&+o#[PiTs(c)XK/G(XfSW'WrT0eWs5T'WiN5%X8/i_e]t1POX0&P.ZFIKV\[SiEWN!&-['-I,Y-tgGZE^^F]Y2"h[(*ZS +[_'5h^UCALY-bgU]XPD^[B?O4[CWoW[CEcSYcb+0X/W%rWN)ttWiE,"ri$!uWMuoqW=#Z+X/`5% +XK&>'Xo>L'XTto,WiN/"VksBj%^ECAQCc1_p\k$frr<#tU]50/s8W)sr;Zfrs8W)rr;63[c'+$T +SXGRtLkLG9M2dRWOcYQ]MM[1IMi!=KN/NXQMi<^XNJrp`R@pCTTpCt1S#!0gW2?T!ZE9mqVm!8& +TUM7;S=5Y(NJWFIO-ZB6XK\q0WNj%J]sao/rfVPeMiX=(YI(X=Wi<)(Z)OC^P*(oiOHPflQ'IPp +O,f3\Ocu93Z*q!AX0/e>]<.g1]=bDJWiiV4YGe+dW3i_"T:M76V6mb9U7.I=V6I;0WLf?7Lk^_D +OI2cCYH=k,Ydh?W[Bd0IZEL=0XgGUHX.Z5i\$iHZ)FOqV6%#,SreqkN/WVlL]E2/L&Qi, +M#E&CKnP/:LkUJ9L4Y,?Od);oOhKfIqu$ElZN't(!WW/ur;uuus7uWqrVlirrW)utrW)usrr +e,TIH!rr5urVR&rd&a.VcIC@oe^W+IfDjD%e`56\ec45#ec45#eS!5hW*e^k3;-ig==^.j5SeAce%19gtUQ>jQYsniS3;Ni8Nh`mHWZ^eCNF8 +ki_$ilf?dMgZ7YbkN;'phq6T4f%8F"e(3+#f)F;$f)O5(e^i='f%/CLf)O;#f)O;#eeclff%&=& +g">$6hVHo=f@8I'`2T`_meQh\V>pSp"onT$rVlfqs8N#trt,20rVZKfgp+68jm;:!mI0QDnc/+W +nc/1XnO`6?naGl6o(2JBmdBZ?q>:'Zk3(sln+Z\Po(;_Sp[IYFrr2]^m-O30nac2:lKRR"mdg)J +r;Z`kq>:0krVH-Uo_.qHnFQJSr;Q`r:]1"Zn*KB,m-F!*n*TK-lg4$,n*B6+q#13jqtKj[rVl6E +med"]qYU3irql?Tm.:/KlKd`qjR'sfrr)`l +rr2fhmH!L'rr;ojo_AC`q=s[Wqu?Q^k3)'tmdKW6nac8@naQ)=nF,iFnGi"YoD\:pnaQ,?mdK`6 +jkIDKbNem$rVlirrj`".rW)utrr;uurqufrrqHEmrr2otrqZTorW3&urVllsrVllsrr<#tO8j_~> +ci4CPs8Mropi8*2Ehr*AFd)a>Zio8_EeCs$Fh;$c>iof7JaiMWIbK@oIb0/#Ob/qfJb0.uNb/qfJb/qcH +aiaY-s2PPlai2,pT#Bjerr2rs[f?C,!<<&ts8N)ur;Zfrp\t6mrr2utq>^Ko!WW/trrE&srrE&t +s8W(Zs*t~> +g&M*O)#sU6r;HWprVccqrVZ6-T9Z.RYcOk(WiH'!"0/E&WU-VgWN*##X/l6$s/Z1$!3?+#G-.sM +Z+.Qfa2Ga,]Xk_i`Po^.^r+!sY.)BnaMZ!5]!\iM[C<`__7mb&\[&BA[Cj,XXJiA8]=#&T\\Z>* +`4i[m^q7:t`Q?06Za$dF^W".-`lZ*.[(*rma2>a4_mltUXK/D#VPU2iWN*#"XK&1qVPgAkri,mp +$E0r(WMuntWMuu#riQ4%)60[8WiN.uV59uaYHt6pS]U0krVZTms8W(ps8;j3rVZWos8N&urqlQh +p[l[oMOU3)O,A_lKhmM`Nf]?`N/NRMM2R=NN/NUQN/NXTOcbZ_Ng#j$Tq\!E9fY-5+=[^3-=Z*Ua>Y-5+8YHF[hS# +e,TIH!rr5urVQond&a+UcICABec+2"f)O8#f)F5"ec=8"eGn)!f)F2%f%&=#p=92m;Us@KeC;pt +hrjCrm,[-`iT07jm-3Wqmd9&giplj7lKm`nhqd/Jk3;0pkjIs(hV$T>k2tLLd+IICiSNJRlgaK3 +jl#1_ki_7"na5AjfA#/mO +[+".'lg4$.nFH,>n*fu?I.-Uqmd9K5oCMJ?n+-2Iq"O7?lg!WtoCqkFnalGFmd9T>q"*q>mI9T4 +md9E.l0@X&nFH8Ir;?EeqY^mFl0[s0nF,l:nac5>nF?&Vrr;us\GuU.!<<&ts8N)ur;Zfrp\t6mrr2utq>^Ko!WW/t +rrE&srrE&ts8W(Zs*t~> +ci4m^s8MropL;es8W&us8Dp1s8N#trVccrrVcQee=rPF +a32TIrlYGebK7iGrQ+rZ?HC71aN;QE`Pfd;aMl*:aj8DbeBQ(Xb/MKNf@/'meC;mhbKn\hdEBVR +bf\)ObK@lE`5]pCd+$b)h:gQ:hV[&;c-+G]dETeTc-k8#gtCH1N7e',bKcJ.1-da?Y$gtCK:f@o- +g&M*O+ohQ?r;HWprVccqrVZ6-T9Q%PYcOn)W2ZetX/`5$Wi<#tWW/suWW&jrWW0!tW(B`6-BI_8!_!_T0gAa2>p?ahP="c.:1]b/M*-\[]>g_8=%)a2u0,ZEh!T +^UC8DZ+e#d]=bu%cHXPM]YVV,`Q66JbJ:Tp\A6,*aNN#\c+q!0bg+GRa3)K8ZEUC0X/Puo#cXi) +X/r>"Vl0Ejrhodn!iW)srM]gtX8]1$X/c/us/Qj6W26AeV67,'QCZ._p\k$frr<#tV>pJmFoD7: +s8W)us8MolqtKa,P_u!&R#[#YKnY8:MiEdYNJrdQM2@+JMMd=MNJrdSO-,QbNK00fS"6(7OHPcg +Q(=Y@R[g"CS=#V0SXu=:PEqZ)P`^r]KRnc3Ng#m'UoUW!X0&S,VO`p0Nf]6XM2RRgV6$aJVPU2e +TU:q)NfT0VLl..OOcYT_NK0!ZO-,j,YHtL;XK/;$YFh#KX08Q&Uf4+cUnF-ETrXuTR@9>)TW,&n +V4F!CTVe]cTp_%$LP:J;MijC!Uo:;nX0/S(V5C8qY,eP&Y,nOtSs>P4XKJOuTVAEaUo'u^Uo:,X +O,]-XN/IOg!/:E*+bPK(LPCM9KnY26L51M:KnY&0Nf]ElN0(a5o(r7^s8N#-s8W&us8N#trrE&r +s8W)mrrE&trrE&os8W'!s8Mus!<2rs!<2uts8J)ZJ,~> +e,TII)uop:rVcZlp!Kk<\^/aReCE.$f\"g,f@SU(ec+(ueH47Le,Iksec+%ueb7MmeSWgbe'upt +e'l^piTp%*mGm'\jm2F)lJg[]mHif`hL;hs8W'%s8N#rrr2osrr2rt')qq1r:p-EYd;jA +mHj3-nF5uoC;A?o(D_KnE]?-m,dBup$qG:n+#l5m-aB5md'0*nF#]1m-a<,l0Ia* +nF?/Fp\"LW,P(r4lgF62n*f]4mJcMdlfdd3rVulmp%.S? +pZp\uoD8.Zn,Ml`na>],nGDk?lKdTto(DeQp%7nNqY^9do'Pf5o'l/;mdTi@q"jj]p%S+HlKn*9 +q"F@Qp[mtEmH3HopA4LQmdK]8nbMnHn+?5;k3ML*o'u2;nF5u;nF,o;nF,iEnGMejnF,o;m-X?0 +jk@;IbNem$rVlirrj)S(rW)urrr +ci4m^s8Mrop]?SjSeC;spdaZaoe'lamdeV8nd*^7hdf.Vqda?J8d/VF,d*^4dcHOYjk3MEt +h:^K=k3D6mh:^ZKkhOV=kOI`mio&MCg>:iOk2Y@Vjm;hudEg%acb6-Qc0b?*rhBGmrW)usrWE3"rr;us)#sU5q"WC5T=W+daN;TJb/qfIa2Z0AaiF8! +!6>)[29*VUaiVTCa3)]SccjJOcHF,Dc-t%`bK\>UaN2QLc-")Ib0.oIaN2KD`5BO6b082]f%/@M +diQrac,drJc-4;K_o0U>dF6RoeC)Xaa2c9B`l#a8aSs<]a8s?&rl8]lbLYY5i7ll5cdUUn_TLKd +g!nL!e'uprbK8,ce],_S`lQKVf@JF!e(37.gXjfrb08,QaN)BDbg4_ee^Dgmd*'JPcd^LpdaH[p +cHaVO_8k$WeBZ:`cd1"jf$D[le]c%VcHOMUrQ,>faiMQGaiV]JrQ,ksaiMQDaN;WK`Pp$A`5/=C +`9?sprr;u%s8W&us8;lrrrW3"s8)]ps8Muts8N#ts8N#trrW3"s8Muts8Dous8N"Vs*t~> +g&M*O"onT#r;HTlrXo,,n]@DeTWbT#Wi2kqX/rA%ri,prs/5gos/#psW2Q\pr29^sW2ZcmWW]B& +W2ZfrX(ni>Z+e<)dEKG?]u/"=cH3o8_op3;\%9`5b/239]=Y_j`5]^2^:hG+aM,'j]u7k#YH"qE +`5'.'`m)iSb/:s1aih`DaiqlB]"5\ubK@lHcd^1Q]#2h@bf%99aL\^_XK&:uV5C)cW;`e#X/`.t +WN#lpr20Li!N)gpVZ<[pWS=Pk&NK0!X +Mhm+BKnb85K`6]*LDbf!K8##3KS>,5K7nr.JrPhSR#R6Aj7E0GrVj,&s8E#ur;Q`r!ri6"qYgKp +rr)otrr2rtrr2rt!ri6"rr)otrVclurr.lVJ,~> +ci4XWs8Mrop!Kn>]$AdRe^i:$f@^&Rs4%5&e^`1Kec4.uec4,!ec+(mec""re,IjEd+%%?naPf# +g>(fZp%%A&fAZ,ai7?WHoB+lfhUpH9kNqNsinW2Clh'N!hrsRuimlE0l0IHjj6,dqki:OTip6$n +gYh/Ph:poSo'u&+h<"+hgXkBOoBkGfiTK%Kg"=m*d*U1heCE+!e^W."f%8R+f@JI$f%&=#eGIc7 +e'uq!eCN1#f\5$3gYCQ:g=Od(eAS>cd-g`.rh]YprWW?$rr)iqrr;uss8NT.s8MrlqV8?_eE-&_ +mI'rA"n;*RnF,iDn,r.KnFHPI,OtBuo^hYCnauJBl/q:%n)`Tqo()26m-amd9B+lKdg'mI0N3md09(lKdm-o(2D?m-3j(nF,`0lg=-/n*of7md9E0m-3p3 +r;QZho'bf.p?pl!mIK`4mHj6.n*K9$meQJ;lgpA"Oas8W#kna,Z7p%%\Dn*]Z5nalDD +nF>r2jlc"#o'l\I+n>!enF>i+k4&'8mHX!#kNqp6kN2!qk2bt#n*oi7mdKZEnc&%UnH/1KnG_qm +nF,l;o'Pl9m,Zm4Xip#)rVc`qrr.KKN;nD~> +ci4[Xs8Mrnp$II5Le'c[ne'cXkr6G_ucHFY_^SRjRmJ6_[UAt8m!<<#s'EA(2s8N#ts8Mumpsl+3 +]#Vt7ao9H_aT0B\`r='WaoBB]`r*jnaihiKaN)HIbfRi@`QucF_9('Mb/hZHr5fSma2Z3DbfRlF +a2l?@_nsC6b09k1"3o'5ao9B]a8a6\`tcS2_Sa=4aihoNaMl'9a2l?@_o'I5rl>&YD8jN6`l5j: +e(s!=e^)L\bLXtT`6HcYcHXSXcHj_S`66`Z_oBd9a32ZMcd:.lg>1Q9dEBSNbg+DRaMu6?aND`Q +c-"5N_nj73c-FPUb0A)MbK\)D_T^HTb/_QA`6$HTa2Q0E`l-*Ibfe0-a9B],aiMTHr5f&`aN2L& +a:cV;bfn)HbfRf>Vk:ojp\t0lrdk*,s*t~> +g&M*N*<6!8qu$EmrVlirrVZ6/TTl+PYH"P!W2Q_sWi>uqs/,gmr2'[pVl?YnWN#lq"KAE%WiGut +rMomss/L%;XKJV.]ueUIahPF"`R*/`ah>1"c-*l1\B*.=]>;1h[CaB!aMGR"Zadru`4*7maiM)s +WO'I]_8*n,bfn)E^:M/(beq',_ns$s_9('Obeq6=e',P:_U$]U^UCkp\?`BBX/VqjUSXieWMlbp +rhp($W2?GgUnjjcU^!ZmVPU/fW;`b:W2Z_oWiN/!WMlYeU7n9]Yc!\Ta6NEtr;?Qos8Jen.K9AI +rr)fqs8N&urquZjp[l^nLRFWtNJE1=JqJc7NfT3[Mi*@ILl%#fMuS_SMi<[XO,f3YNffKdMhm:U +OG/@HPELrcO-#G%NW>(0J:r]9O->lrR$X/*P`_#cMMHtAKnb;8L5:hNP*;#g +N/<7DMM[1EKnP5;MMm@KLl.+JN/Wa\T;\ikUnF9DR%p(,NL$$!P*1ogOctoeNKp0*NKKHePF%W' +R[]nBV5U;dSd9Aj7E0Grr;usJcC]/J,~> +ci5!as8Mrop!Kn>]$AdRe^i:$f%8O)f@SR'f%&=#rmh%u!7h%t!7h(us4%,!qUPJms3ptsCs^Yh +lL*rtg=G!=nFuVBinitpp[$r&o(hV/hV6]7hWX@mj4r/0eE->hh;@GcmbcF:f]hbaiSiqakhk(E +g#MGdh9XX)f[nj>o_\@Hhqm\mo]bE$p%\%:g"kZDf\"g,eBuXie(3(!e^aZK%+Wq\f%8L&eCN1# +e'n3E%F`hWf$r:$e^rL,g"Y9\g'QBZf$q[/mO +[++4(m-X6>mfi4NnaQ#9r9u$$nF5u;nF,i8o(;SGnaQ)?na,E"lLOE,jm2L/n*KB-n*fc7meuMk +nFH#7n*]Z5m-F!)mdT`6m-3`ulKIBom-sWFnc//Ln*]Z4mdTZ1kiqF$nac2;md0?/n*fc7n*]T1 +md99*o_SI[na5Z%k4S<-jm):$m-X0,mI0H,l0e<;kj.[&n*oZ1o(MqYs$-JXo'Yr;o^_SCnF,c2 +m-a<1nF5l2kNV@%nEoQ,mHWs+o^D&.mdfl5lK[NnlgsZ/io]Lfk3ha,n*f]4n*p>H!q>[Ir9tZo +nF5u;nF?#;o'u,8o'GDj]<09Aq#10js8N"Ks,?u.~> +ci4[Xs8MrnpmjR;[)h:1*5f[J@!da?@bc-Xr=dK%bqd/h\ErmV;(daHUm +dEp7gdF%sA$II5Le'c[ne'ZOhr6G_tcHFV^^o"$TmJ6_[UAt8m!<<#s'EA(2s8N#ts8Mumpsl+3 +]#Mn6ao9H_aTff*`lH0@aSj3_aN)?@rl>&Y501mhaiDECb/qT<^VnFA_SF19cH=2IaN;TIaiMNC +`lH6Fai;BAaiMK?_o9^?bfe)H`lH*<_o0U;bK@rJrlGho`l?!ccX/BaNViH`5KI+`QuiI^r+11_og9Kb/q]EaN4A&!6FuX +s2Y2^rl>_ob0.uJ`luQC_5EpDkP+uTs8ITLMZ82~> +g&M*N,QI`?qu$EmrVlirrVZ6.TTl+OYH"OuVl$DlW2HSmVl$AhVZ*FlV?WlpWMuepWW&jrWWK6$ +WrB'tWWK-!X8],DWN<8'YIqs#bJUp#]#;tJe]ktFb1P=i_oC0YbeCg'\$irhbK.K/YGn\=c,I0% +_9'a.Wi!)=`PK=(`6--7\@/lac-*c'ZamTR\]3+Of#kbFce@$q`m*,fdDEB(^UUSQXfJFsU8"K_ +WMuhqWMl_lVl-DgV#I.fU^ +rr<#trVccrrr<#tr;6BcoZ`PTR@9A!Kn=i*JqSu>NK&mTM2;.d!f;elreh_QM2I7QNfAsTNK9*W +KS"uANeDt=O,o3UM2R>lN@0U?M2R=TPE1TWL4k/.J:r]7NK9*ZN/`jYN/<@IN/WXMLl$tGMi7Om% +uH!mKSGACMMR"AKS>/:M>N,/M`-HRRA$FMR[0.qNguJpM2dUWNK&jSN/imSLle$iMN3j\P*:oeP +Eq]3V5C&\R?N\iN/ECFL]*&^MiNm^Pa7MoNK00fQ'%)eOH,?dR?W\iP*M2iN/WRJNL#caKSYPCL +Q.=PMMQucKE$T,K7nu6re:B,rIYo>KnP&1KS+c+NK93hN01g6oDAIbs8N"Ks,?u.~> +e,TII!<<&t(]F:0p!Be=]$8[OeCE'ue^rF(f@SU(ebmqreH"+tec+%ueb@Pqe^W+!rRCkrF4AO` +hWa@fgt($0jR;d4lK.*mnaYl&jR2X,jlG[jj5/bVkMb+AcI_4KlJCF]mHN(E9gY:<,e^_[>WmL//rViYns8E3%rr2lqrr2rsrr/jN[FF:' +lg=*-mdKT4nF5o7melM`mdKZ7n*f]4n+$#@o'l,In0%)]kNqa.lKIU)o'bu4mdTc;naGo7n*]]8 +n*]W4mdBKAlltidnEoN(kj.X&lK[g.o^_PCo(2JDo(2DAo'Yc+lgXK;oD\7bn*]Z6nF,f5rp;3( +md9H4o_%hClg3Zno_._=m-sK3md0<.naQ#7nFlJ=m-a<4o'Pi5o(W+[#5\&amdK` +ci4^Ys8Mrop\tdF$Cjd*L%brltnuda-(_dD;`ZcgCQ,rhBGmrW)usrY,>2rr;uss8W)sq=rL7T=Mq_ +a2n8%s2YDa`Poj;`lJ&!"38F$`W!mW`?iRGaiMK@`lQ6>_8+%7bJV08b0.lG`Q-*DbK7fGaN))[rl,Skb0.lF_o9[;a2Q'>bKS/OaN4A'(Wjb>aiD?9^r".7bKIuHa2Q!9`lH->`r`5][1`QZND_8F:3`5p-DaN)]mdrr2rsJcCW-J,~> +g&M*O('":3r;HWprr2rsrVZ3,T9PtLY,S>uV#mNlVuiW2HSmVl-JmWN)qs +ri6!tD5sS5WN3%uWi<&$Wi`nQai(j"[(4*"eBuFW`6-HRaMGg?d`o_Kai_K6^Ve%*[B-@4^rjR( +\%fnuZ(dqq_8a:$\A?>.]iA9M27"GN/[an +s,9^2LkLA8NfAaEL5_+LLkghFN/W[OLl%"HNf]3VLP:A3J:N9,Ll74KLPCYDNJr^MMN!LPLl$tH +MiQ'$u_NfT0UMMm:GMis0X +KSG>>LPq+KLPCH\K)^H*JqJc2re1<*!/1?'(P@BoJqAW,IY*N=OHtfd]]/P[r;Q`qrdk*.s*t~> +ci4^Ys8Mrop!Be=\]rOLe'ujqe^rF(rmq2%ec+(ue,@esf)F5!e,\%ne-"7NeCFNIs3c2Bc-P52 +lf-UJe_9-RnESuiio/_Lg!nU.iT91cq#0^>gYqAWg!J1)lgO&phra:ee]>hblgj2ie`-&di6]a% +l0mlidF-Ljd+77KqXrt*i8`nYiSNAGiook'q>C!Of?;Fgf@JX3g80rViYns8E3%rr2lqrr2rsrr/jN[FF:' +li-8RmdKT3rpTmT-L^Bjn*f]5nF5o7mHsB3nac8>n*of7md09,naPo2m-jE2mHj60rp^HemdKZ5 +mdT]5mdKT3mJcH(mI'H1lfm^&nF5l5n*of7mdKW4n*ff?lg*s.oCMPCo();=nF?&;mdC)A +s6p!W0^nN$nEoZ5kih[6o'Yu +ci4FQs8Mrop$l0IHdg>1Q:f[S6pfA,hpfiogZRn`gY:`OiR,T^e`ZA[da6h8lJ'M' +eE#oUeBH1_bKJ;ime-).f@o';h:pT5f\PTQn+?AGjjV8ldF?Xib085\dF-Fhd*^8?dKJ%IdaQ\E +dKS%Hda?Fgrm:ntdEp=id/MAkc4&%Gda-(_dD2][cgCQ,rhBGmrW)usrZV=@rr;uss8W)sq=rL7 +TXi%_`lH0CaiMNB`Poj;`Q$!?rl>&Y"i\L%`Pfap`uE%=`Pom=`l,d6bK@c@`Q-$=`Pfa:b0%fG +aN+;"s2Y5\a8X-o`lH->a2lBC`Pom>b0%fHaiVWFa8O!V`XBl0a2Gj3`5p*Dai=>!#/nL#a2c3> +rl"rYa2e2!3QK.X`Q,a.c-a_TaN_rN`l#a9b0.rLaN2?9^qmq/a2Pp2_SjI7aN2B>_ns=1`l5s< +ai;<<_Sa@ka8O!ZaMu7!`W*sX`t68/`Q#s;_o9[9`Q$'B`Pfap`WO9&a2e2!s2YSgaN2ECaN)BC +a2c4!a8a-ma2lBHbf7ZGaMYciT>]mdrr2rsJcCW-J,~> +g&M*O!<;ur&-)Y.s8Mupn].8dT<,/nVZ*A$V5L5gUnji_Una]\V50seVY[1oVPgAlW2T]ps/:.@ +W2?JlW2ZerX0&;#]#Vq/\$NEN_p-KJ^V.Ft]=YPX[(=#i_oLBbd(d-+`kf$_XguBk^pgbd_nE.D +T^c-3l)XL?-o`j`.TZ*(48_9gf^_n3\&`l5g/]Y2,#c-b(ndD;u[USt2kU7\-WX/`0/ +W2HJfUSXc]U7n9RU8%X^s.T[lV5C/fVZ*LnV?*WprhpO/US4KWT;\rnQ^u4_p\k$frr<#tU]252 +s8W)srVuoss8W)rqtp-[c'+!OR?EAYJGss5IY*?3MM[1FKS5&6L51P@Ll$qCLl%"HreWXmM2I.E +Knt\GL4b2:MMR%BLl.+ILkgbBM2-tJMhm+@Jq8E%Jq\r7LkgY:Ll..MM2@.ILPLV=L]3)CM2R:L +LkUG4KSYMCM2-h>KS+r2re:T1LPUbDMZ/MJN/`dTNfSsNPEh/bM2[@KL4b2;N;eeNN/`aMKnbGD +O,SpNM2R@RO,o9XM#E&;KS>2O-GN`]]/P[r;Q`qrdk*.s*t~> +ci4s`s8Mrop!Kq?\BNCLe'upuf%AX,f%/L*e^W+JeI0mXf$r4"eC;ste^X?D!n>cNrm^turmPl0 +c/.jVjk/&2g?.hij4Df5g"4m.e^i:$g"P3Gp@@A-nG)G*a2ccqmcWHakNqHfd*LV=p$()Yj7;d$ +dE^P5nE/6De(`[7j6Q=0m+]q:e'catf$_mjeCi[:lLF9!da-Cmd`]_TcdU@me^W*te,IkreH"+s +ec4.ueJcrfe^W.!e'lk!f@o!5g>(K8dFHadXK9e8q>L;hs8W'%s8N#rrr2osrr2rt%fZM-r;$3E +Z*`$@lK[a'r9jUR"n(dFmd9E@mKE"KnF#cEmK)eGrpg$W#O_*On*]T2mf)SZmd9H2md9K3mf)Ya +nF,f4mdKW4md9E0mHso>#jq'JmHj91nF$5As6fpS"RbaJo'u_K!:TpS!q,OGr9u9-o()>?nF#]2 +mdTf +ci4CPs8MropL;es8W&us8Dp7s8N#trr2rtrr)ZfeY8_J`5p!?aiVWE +a2\+t!QW4Za8X*X`VIOR`W!j]a2l?B`lH1"`ra2Z*``l?'@ +rl>2`b0%g)a8X'c`Pf[2`5T^8`Pf^o`s7_o0O4rl4uW0>tiLa2uHD`5BO4`5]p9_p-NK +_o0[;`P]O/`lH0Cai;<;_SO(,`lH-<_8=+,_u7LZ_ns=0`Pfa7a8X'^`5]j;`5V_rqSif[`lH': +`5Td;rPeoZaN4>"s2Y/Z"inX&`Pojk`ra9$a8 +ci4[Xs8MupnAq2aS>iQfVPL&bVP^3eV#R1oV5L2fVl-EjV%ol*Vkp8gWMcYmWMuhoVPg>hVl-Mp +ri11;W4U3r_R?\R\AQM4^pUJV\$`ZPZa6sD\%&uie^DIUcIL+HUnY-1`kJjg^;IalVP^c@be^Ti +^X(6?Y,f%Qc,-`aYID*S^W=dLageOZZEggE['?d9Z*q3U_TKj*Vkg2gUR[dDUSt2lW2HMhUnaZY +Tq\:\U&UheU]."fU]@7jVZ3LmU`$#+Vl?YnUnXWVSYiNgR%MLcp\k$frr<#tU]1Sus8W)srVuor +r[%L>qtKa-PDP]oOGAC8H@($eJVAl8M2-e:JqJ`1L5:Y?LPCM;r.k<.$AXFpLk^Y>LPCM:reCH. +'8DqKS4u1JUrE(JV8]/ +KSG6ZK`?Z(K+rldJV&?%MiEa\M35L3oDAIbs8N"Ks,?u.~> +e,TII!<<&t%fQ>'p!U%B\]`INeCE.$rmq/$rRV&#psfAnqpYVppXFE9eC;sreCE*ue'c@^hs^*u +g!J'rj6Q'mg""a1hV[5IhV$K3f$iOCmHEm2rq"sga4'2>k1e\RmdK8lg#_etlJ1+To'kYed,"!U +jjhW/jQPjnmI9T,f[/-ueC`R3g=Fd(da6J#m-WfadF-Lkb/VNIcdL;?eGe"fe/-T`e^Msrf@JX/ +g"G-7f$Mpqa/l>gmJ6_[V>pSp"onT$rVlfqs82d)s8MrlqV8?`eE#r]mI'o@s6p3\mdBQ3mf)YX +nF?&;nG_k[mdTc;o'lYI%IiiTm-O--n*of6n*oiGmf2Y_mdK]8n*]T2n*f]3m/?>Nm/QMWmd09+ +m/H;Qm-a<1rpBdTrpU9_mI'N8nF#Z/m-XfA!:TdS"RkaEmI'rA*U`=_nF>o5p%7V6kj@a$l0Rm/ +nF,oAo'u5>o)A.cnF,f6n*oi7mI'uBs6^!Vn*fcFmO7PlmHsB3n*TT7 +nF,o;n*TQ3nF,i6n*f]2mI'H3nF5o9nF,f5n*]WCmf`.Mo'u2JmLJaVmHsH0in1iFb3A^"rVc_H +s,?u.~> +ci4LSs8Mropm=c-F]6d07tIe'ZXnqpPMlrmD%udF$=gda6A> +cOS7Fc-Xnaaj8>OWN"52q>L;es8W&us8Dp!s8N#tr;I9*q"N:3TXr+aaN;THaiMQDr5JfYaN4A$ +rl+uZ`W!pX`?WCA`5Td:`lH0@`Poj;a2Z-;`lH0?`l5m7`lH->`l5p:a2n8#(s'h@aN)?Bb0%iH +`lH-=`5Ta8`Q#m8_o)Jl$c9`s_oB^7_SO..`Vd[P`W*jj`Q-'?`P]U3`l5s=`5U$G`4s++_u@J& +_oB[6`l>s7`5T[4`Pod7`5KX7`5]g9`l?!9`Poj9`l,j8`lH*>a2Z*`Pom +g&M*O!<;ur,ldlCs8Mupn]@DcS#E?bV5'i^V59u_V59uaV50o`VP^2eVPX9f!2]Xks/,jqrhodp +$)aYsVP^2dVPpNoWDB4b]?AL<\#ld>^WFX6\$NQT]Y2"k]XP8U['@gU8+KZVP^2bV#I,+V5L;kVPBiZSsuRYW0a*sl1b/Sr;Q`rrhKKd +rVuorr;?QnrVuosqtg0`o?/:LPCP:KS>/7L4t>:LPCS@ +LPCJ8KnY;:KnP/7L4tA8rdl&AKnP/8Ll."AJUW#sJqSf0JUi<'JUrE)JV3rT#)7qjLkg_>reCo8 +JqJ`2KnY,1K7nu5rIb*&re(3's+W1[K7nu7L5ChCL6%:FI!pQrIt3*&L5(A9L4k24KnP)6LkgeA +LPUbALkpqFLkpfbKF#6Lk^Y> +M26q@KS+r1JqAW,JqJc1KnbA;KnP,5rdtr;J:E-%IY!H +e,TII!<<&t%fQ>'p!U%B\]iOOeC<%"rmq/$rR_&"#M%>Re^W+!e,Ii!e^W*tpXC/2eC;sqe'umq +e'cC_hsTsqg!7dggudqejl5D$k#ga*j5JnSi8*Vcki(RgnE]&dg#2,^imlZ?m.'H'i90V!kMG"T +md&`YdG!aJjPJ_Sm-Efmi8j(`i8Ee_kNM0pkiq?sk2G@dn`noWcdC:mcH+&Mcd:)=e,Ro"e^W*t +n^JB(eC;sqeCW:(g=b06gXa^"e&JJhd-g`.rh]YprWW?$rr)iqrr;lp&-)Y,q>/mO[FF=)mI'K4 +nG_nVn,VnUn,MhTmf`.MnaGuHmg&:Mnac8@nF-AE!:TpS$1@?SnaQ&=lg*s.oC;>Lnc/+YnHn[OmHj0)lKdg( +rp16alg433kiCmllKIHun+#f1lMg,OmIB]FmM>3Umd]f:o'u8@nF,l:nF?)?naZ,;meuStnF?#; +naQ#8mI0T8md0?1nF,i8nF,c5oCDDAo'l,;naZSI!:TmSs6p!W!q5XIrpBjVmdC)C!:^!X!:TpT% +e0#UmIBN$fXe6.l1k5UrVhBJN;nD~> +ci4LSs8MropGg>(H8j6GXXh<+(dgsjj.jltXLe)'-D2`5Ta:`l5m9a2c3>`5T^8a2c3>rl"rZaN+;$ +s2k8]B$&3;aiDB<`5KR2`Poj9`5KR2`5BI,^;7b.`l,a1_SjI5`Pf[4`5T^8`l5m8`Pf[2_o'F4 +`Poj7`m)ZB]YDD&_84"-a2Gg1_ns:/aN)9=_SO+,`5]j;a2Z*<`l5j6`Q#m9rl"iV/B>cMa2l?B +aN2B?`5T^:a2>j:aN)`lH0?a2e%t!6>)[!li=&rl>&Y)o]h9`Q-$B +bJhHDaMYciT>]perr)iprr2rsrdk*1s*t~> +g&M*O!<;ur'*%t1s8Mupn]@DdS>`HbUnXTYrhKOhp8%_`#Ge,hUSXiaV>-qfV&Q;.UnXW\VP^2g +WM69$aNDE.WMlr.`5om5_8?2h=i.ti^:_4o]#Dt8_8FF@aM,*i\\c:qXf]+MaMPNs]uJ(+\$`ok +a1&1PZbaSo\@KAo`kT*t^;.Ru]>DM'`Q#p:`l5s5]"Gu&_6Tr4USjr[Q^FDAVl-EjV$3WgTqS-O +rgkR2TV8$OTq\ +ci4RUs8Mrop!Kn>\BE:Ie'c^prm_M.e^`7$eCN4"daHXodaJ-D#L_,Ne'ZUme,Ieoe,@^-dF-Ij +d*gCbb22FKin)K"d+I:>lKdd&lK@`,k3)!pm-O'(m-Wf_rm28*e'H4[cdC.gda?IkdaQXm +dJhPpe'e6Eq9f8jrR(etf%&@NfDjP2e]uUla/l>gmJ6_[V>pSp"onT$rVlfqs8N#trs\o,rVQEe +gT\'7jQl40melMTmd9E@mKE"JnF#cEmf2_UnGMecn*]T1n*f]5nac8@nF6DErpTmTs6g3\mI'B/ +mdBKAli-9)m-F$*md06)mI'?.md9B.mI'K5n*]N.n+#r=naGl3mdKZ8nal>BnaZ2?n*]N,roaCI +li$,KlQ>TdmcW]snF#T,lgF9/ki_6sm-aE7n*KB+l0Rp/o()eKs6UlqnF5l7nFH,nFH,>o'l,:nF,iFmJuYPmK`4Mn*TN1mHso@)Xm1cnF5o7 +mI0Q1lgX3!fXS',lhLGVrVulrJcC]/J,~> +ci4LSs8MroplJp^Yki^dPe(`sCe]c1`gYh&O +lL!ruf?MFag>hG`mHs3$jPf.\kND'lkNM-ddJhB"cd9qXa3;iScd0n^cd2U;!71Yk#LUoGdEp4c +d/M>md*L#9cN)8ibmqt@bKeM[a3DuKWN"51q>L;es8W&us8Doss8;lrrsSi)q=rL7T=Mk\`lS/$ +!Q`=\`rsr +`rF$W`Ylb8a2c3<`5Ta8`5KX6`5T^6_o9[:`lH->rPo)]a2l<@`r=$X`rF!Y`5V_q&]`&:_o'U9 +_S<"A`96morr;tKs,-i,~> +ci4RUs8MupnAq2`S>`B^U7e0Qrh9Cdq4dn_s.]Oerh9FgV#@(dV#@%kUnXTWUA^j*VlHDb\AZ>! +ZDa\%ZFdul`Q#s<_ns4(^r+.4aMlBK_6pV[^VIS!_o9R,YGJ)"]u@k$[^a,h\Zr?H^qR(PVl[A@ +]YVY1aM>0^Vl[>B`lQ?HaMu-6_SjF5`P]U3`4;nDUS=QZSsl1CVPg>grM(+$TV%gHS=Q1?SXuIG +StD[MUnaZXUAgi(USXicV5'`WTq%LEX/M>SaQiNur;?Qos8K)!s8E#urr2rt!ri6"rr2rtrVdW3 +r;63[c'*sMPDb!?H?aXYH%(?tKS5!WJcC<+K7nr5KS+jSK)UB,KnP)3KS+pUKd)8*KnFu/K7\]- +K7\]+JV/Z3Lkg\:Jq/?"ItNE,J:)WgIK"[3It<6)LP^hCM2@+IM2-e:Jq\u8Lk^V;rJ(?+"GDAX +JqEuS/V8P'IXHKjIXcluJUrE-LkL2%IYEB'J:WB0KRS;tJUrE-L4t82J:E0)LPUccLBE3^KS9>W +(PIKqK7\c/KS+o3L4t;7L4t>7Knb>9K`6]*K`?Z0Jq8K*K7\Z+re(H/KS+o2LAlo,KF3?`JUi<' +JqJ`0LAll-L4oPYs+M2@JU`3#I".!3Ng,B\]&E8Xr;Q`qrdk*.s*t~> +e,TII!<<&t')hb+p!Be<\B<1Fda?Lke'umrrR:nteC=EE!7Uqqs3UqsdF$>7dJqR/dF-Fhcd'qe +bKJW"jP881cHt+phrX%bk2P7Pg"G->l0ds'm-A4kMb4Pj5o+Fd+I:5 +eBQ1_f\PHKnF,Z#eB#SNf&H&bm-*Qfg"+g1hVmV]kMtORcd0tarm2&!d+$Upda?FgdEp;?d/VJn +d/;8md*^8?d/MGmd/VJne,IkseI:$]g!n/mO +[F=."lg4!*mI'B/rpKgRrp0XPrpKgT!U]=SmJcPRn,DhVmgJOLn*f]4n*ol:mdC)A!:KjT#k%'H +mdBK0m-O`='("rMm-X3+l0Ia+n*]W5nF#]2rTk!\md9B.m-X60mdKT2mf)PTmI0T9qX=^Xm-jnF#]2lg*s,md0<.nF5i4md9H0 +mI'E0m-Xf?$170MnF,l8md9E@mM,'WnF,l9mdBW8nF5o7mdKT3mHj3:m/l_EmeQ5cmdKZ6n*]T0 +mdB?)mci]^\#[a>q#10irdk*.s*t~> +ci4^Ys8Mrop8c"jP?;cHac7cMu5jcMu5cc2u>;c2Q"/c-4AVd)X5Y +i8E87bKA&Ve_K-DjPo%Lf$r4#h;mhajQGXVai2HQf@\p@ki::=a2cN]jQ,1Mg>LrCcHOengioc-X\Tc-O8+WR'u-rViPks8E#urVd!#rr2rrrVld'r:p$9TqK!6`l6!t +aT'HV6`Q#m8_o0O4`5]g8_oKg:_o'I4`5T^p`r3p[`l5s:rl4uW*QQ7B`l5p: +aN;KAa2uQKb/qfJa2Z-<`5KX7`l5mp`<+&u`r_ns=0`5Ta:a2Z0? +aNDTB`66QRai26?b/V<7_o0R9b0%fE_ns:/`lQ7#`s9Q#`5Ta8`5MYos2P#V!lW'srl"]Qs25Sj +a2Q!7`Q#s<`l5m8`l,g8`l5pr_[+6$`Poj:`Q#ps`<=3$`l5pr`r*gU`#6P6`Q$!?_SaI6_7le= +_rpdnrVlcprr;usJcCf2J,~> +ci4IRs8Mupn]@AbS#<0ZU&LYiTV8'PTqS3SUAghdT`1VbUA^bcUAghfTV8+ZUB70_T`1YbT`(R( +U7nH`U8,'.]X4cj(X.PlTXgu,nK8#&6K7ST(It*!"Jq8H"G^+UdJ:W<,LP:P@LkprfM&_8(KS5&5L4tA9Knb;8KS5&6KS"f. +JqA]1KS+gSImAO6JV8Z-K7ei4KR\H)NJiLBJqf)6IXHQnJ:WB.Kn4f*IY!0*L51M;KRn]+KS+i, +K7nl/JqJZ-Jq8Q,Jq8OQK*$XWK`6T/KS+l.K7\Z*rdb$"(4UjfKS+o/JUrH,K7\`-K7\Z)It3*$ +rdt0's+:?*KDpH=K7nl-IXZ]kI><]>PDG72iq*'Frr;usJcC]/J,~> +e,TII)ZTg9rVcZlp!Be<\B<1FdF$CjeCE'teC;ssrmMJ,daQXlf%&-nd*^7ed*^7fd/MGkd/MF6 +d*^1dccsead*U=sgXa`rc-F_cfA#-;g==Trc-4J_hW*YPgtU<$air8ef@Sa3g!\*ebgG,#gt:0. +g>1K0cd^Uud*'SVe(*"&hVR&?d`fhUd+6t-gtL?*aiVcSe_/g;hqQc1c-"8Vd*^:heCW=#pX&oe +!RT6mciVYCchu0+d*^7fdaZdqe^i:$f@/$ldD`2fd-^Z-rh]YprWW?$rr)iqrr;lp%fcP+q>/pP +[F=."lg='+rpKdQ!po=Arp0mWmdKT3mHs?@mJ$&KmJ$&JmJlSUmI'EAm/HDPm/HDNm/QG_lfm^# +mdKZ6nF5l4m-X3=lS[nhl07Kulg4$)lg=$&lL+-0mHa*)lKdm-naPr3mI0Q6nal;>mcWZpl0.C% +q"F7Fm-a?/rTP-`m-a<.lKmm$l0Ra$mHs9,lK[^%lg*p:mJZDImJcMRmJ?8NmJcMRmJH;OmJ$&D +mJcPLmJlSgmI'H2mHj6-l0@Wui7GH=bj>-'rVc_Hs,?u.~> +ci5m%s8MropScd0hYc-O_[c-Xe]bg+M[cHa\[ci241 +c-4GVb082VbL+nmd`oqVbKeG`f\5'2dEThUaN;f^hqm#;rQYGicMl&fc2Q#gc2>fcb6uS@bf@uR_5O)[`Pojm`<=3"`5]gr`;dd[`5T^8`Pqbprl+lV!l`*s +rl4rV)oft>`Q$!Ab/q`Hai;<>`l5m8`lH$9`Q#m8_u7LU`l,^2rl,_l_8=.-_oKm@b/_KBaiV]M +d*0YU`PMPm$-(9@e'5nPaN;I$_\C&.a2uEC`l5p7_o0L4`lH-=`5T^p`;R[T`p^nH`r3mT`r +ci4IRs8Mupn]@AbS#<3\U&LZ$TV8'PTqS3SU7n9RTq\3QV50`TTVA*MT)P@*Tqe?TSt2IET:_^I +TqA$PTV86\VlR).WhcA_USarjYd1O:X/MkiUSP!!]XkJVZ`U'uVQR50Yd(O=W2$#YVQI)*Wi2kt +YH4OrWiiG#TqJ0[X/iJ3['Qs8U7\*UXg,4Sp\k$frr<#tScA`h)ZTd7 +rr<#rq")^lLR"!YJ9uK`GBe@[JqSf.r.#3*J:W<)JUi9%JUi<%qLSTq"bD8VJ:N4MJH(*#J:W:N +J-CFQJV/T,rdb#us*u)?J:DrlH$k-oK7er9LPL\CMM[.ELP(//JqJ]-rIYc;K7SW.L5(A2JV/H& +L51SAKnG$WKd_h>MMI"?ItE<(K8PhTMM6_=LkL8,I=6QqK7\Z(JUr<#JUi<(KS+mUJ,=cmJH16" +JH15hJc1*#JUi:KJcC8qJc:3!JcC9#K)^B-Jq8H&JUr?%J,Xg,H[^a-NK]0Y]AiGZr;Q`qrdk*. +s*t~> +e,TIH!rr5urVQild&a1VbPoirdF-LneC2jpe'c^ormLhqs3_5)eBZ@edEp4dd/MAjd/VDld/M@. +d*Btada6:bdF6RldEp1^bg+S^cd'k`da?@`aiMKAbL+njdEg1cbfe8ZeBuRfd*Kt[bg+Vdf@83p +dF6XqdEp=jdE]qXbKnP^cHXY]da?Fgcd0nZaj8A[bK.fLd*gIqe^i:!ccjSVcHuR<#Lh8Rd*L(d +d/M>md*^5=ci)2ndF-@dd/22nd*L+ge,7]&e^D^gd)E&cd-g`.rh]YprWW?$rr)iqrr;lps8Nc2 +q>&mQ[aa@&lg4!*n*]T1m-O';m/QGVmdKZ6mHjc=!q#FDqX+=Ns6]jSrTs[SmHso@!U]7QmJlMO +m/QJPm/HAPli-8NkmQeDmdBK1md06)m-FZ7!9a=CrTF4E*pN"Tjlu-tm-Ns!kN1jlmI'H2m-X93 +o(2PEn*T8sroPNmo_\OWlg!j'lK@?ol07L!lK[X!l/q-lkiqI"l0.NlN?MAmd0i= +!q#FDr9a@Ks6TgSrp9^Rp[._Cs6]UL"RYRCmdC&?&ErBEk24h$Wls`'rVliqrr.KKN;nD~> +ci4UVs8MropbKnJVb0A5Wc-FVZbfp(3s31Phrln?dc-+AX +c-+;Ud*L"^c-+2MbK\;UbKS5WcHF8J`PTO5c-k"abKS/Na2uWRc-"5RbK7fHbKnVddE^"^d*pFg +bg+S\b/_NCbK\;Sai_lRcHZ@4--O`lu]CVl.l/q>L;es8W&us8Doss8;lrr>,D0p@Zn- +TtA4^`lH0@`l5s;`Pfa8`r6D._8="(`Q6-CaiDNIc-F\ac-+8I +^])+\a3rYncc=#FaMu09`5T^o`rF!j`50:,_o9X8`P]R2`59C1`l,g]`W4!V`r +ci4RUs8Mupo#RDcS>iK_TUqdJrh'CdTV8*Rrh9jqU8+EUVPKcRT:qmJSc52bTV8$MSXc5JSHtj] +U8"TVeciVP^8gUS=TaX/VtnVl$6gTduq;WMZD`U8=`a +U84]dVk]oWTqnQ^US=N\Vl-DgUnsiYT;AK_U7S!NUo43j%]?2!Tq7aDStMdLT:r-Yrh9@d&>>bh +St;IAS!oh9S=H1DU8%X\"/;QbTDkE"TVA-SUnaTQS=5e;VP93?`T['pr;?Qos8K)!s8E#urr2rt +!ri6"pAQ66qX_mlL6RdWJU;WbG'A4[JV/T,JUi6"J:N-"JqJZ+J,FlsJH(3!JH(*(J:W6#It<-# +rI=Wnrdjut'S1dbIsuckH[L6UK78E(JVK8RR#ZoTLkp_7IsuisJV&H(ItE9%IXm!$K7e](IXciqI"-]sJ,4Zs +JUi:MJbFToJc:2sJHC@QJc(&uJbaipJc(&uJcC6#Jc($"It3%JHOtIML5CkQLQ/q*oDAIbs8N"K +s,?u.~> +e,TII)?9^8rVcZlp!Kn?\B<.DdEp:he'c[ldaHVCdN?rdda?OndE^+ed*L+ecHXY]cd0n^d*^4b +c-FVZdF/!>s3_k4bK7lKbg=hcc,n#Jc-FY[ccsPPbK\>WcHXZ6boG$Tcd'h\bfe2RcHt"gda-4a +cdC.eda?Cfcd'f7bR`"Gbf@iLcHjkada?=Y`68,*#L_)NeC)^icMl0#cHje[cd0n^d*g:dcHjl8 +cN2D=rlkYnd*^4dcd;[:$d[2Hcd:%bcdC1he,Ieqdg=CEcHjM3X3g80rViYns8E3%rr2lqrr2rs +rr/sQ[F=1$lKmp+md:#?s6K^M#j^pFmI'H2mHjH3rpK^Os6fpSrpK[Nrp9IJrp1!X +m-X-(lKdg'lg"H7s6Lcll0.?ql0%0hjlkmhkNM0pkN2!qlKmp$jQ#7\kl0g'lKRO!nF?& +ci4CPs8MropbKS,Qb/M?@b0.rMaiaV)*6QIJb0%iIa2cre +b6-#7cd2R6"j>'3bfe3.bl>itbfe,Mb0/&O`6-<>Vl7o.q>L;es8W&us8DpBs8N#rs8W)trVZE` +e=iPH_oKd:a2Z*;`5T[4`5fp<`5T[5_u.IG`W!mR`;mpI`W*sV` +ci4m^s8Mupn]@AcSZ8Z`T:MRFT:V[HT:hmNT_tJrTV8-RSY)OGSXuFCS=ZCGSXc5LSc>2YSL1&) +TqJ'PUnj]TS"#q>U84NUS!fb6MO0s*ObSOEMMHn=Knb>8JV/W/Knb;7KS>2:L4oMX"FkiMJ:HF+s+10"s+10" +qLSHms+1&ts+(<&JUi9"rd#-!HA.-3P),.1iq*'Frr;usJcC]/J,~> +e,TII!<<&t%fQ>'p!Kn?\B<.Dd*L(drmCeopX1&/daHLfdF$:dd*U(^c-O_]c-F\`d*9e\cHX\^ +rm"$Yd*U%Zair#Td*^1_aN)HIcHt%je'H=cd*Btbd*Bn[cHXSXcd9qZai_iRdF$=cbKS8YdEp4f +dETn[cdC+bbfnDXbK\?2c2Z-5c-+8Pbg"M_e'ujoccjSTbK\A[dEg%^cHXVZcd'e[cMGiocHXVZ +cd:%bc-4H2ci;AjcN2>cc)udd-^Z-rh]YprWW?$rr)iqrr;uss8N]1s8MrlqVJKb +e)T`Zm-X6/mJcJPli65Ulg='+mdKT2m.TiHli?GPmf2\Sm/HAQm-Xf?"mt[Dm-X3>m.p&JliQM> +m/H;Tm-Ep"kiqC3m8!*=naQ)=m-!HijQPmomHs3$jll.%nF,i0jPo4^lK@6hj5T+_n+-#8lK.!d +lg3iun+m"^o&\imlg=-/naZ#0ioK:fm-a?0ki_-mlMg2Sm-3]rli$2MmJcJHm0;qEmI'B/m.p&K +lileEmd9B-j6[QImI0N1lg3p!kN_0cf=7m*m.gPXrVhBJN;nD~> +ci4CPs8Mrop5ai_cLb0'G$s2tAds3(Ge&^8D?bK\8Sbg+P[bKA)Qb08-0b=B_" +c-"&Gai_cNcHF;J`5g!Cc-Xncbfe5TbfnAWbK7oLaiMTIbf[uF`lZHMcHXMQaihuUc-4MZb/qfM +cHXPSb08&Nb00b+s32\0aN)?Cb0A5YdEp1_aiMNEbKS8Xc-"8SbKJ,RbK@uNpric^bl5lic-"/N +rlbVjc-4ASbfe3/b5TKkb0/&O_og3=Vl7o.q>L;es8W&us8Dp2s8N#rs8W)trVQ?_e=iPH_oKd; +`r*d_`5BO5`l5m8`5KRk_udor`;@OR_uRdU`rF$X`!aQ&`5T[5_o0L4`5M2b#fO^%`l5p:`l.ko +,fI^Ba2uQMc-FVXa2Pp7b0.uRcH=,Eaj&/YccsSN_o'O;aMe(s.`TWYeC2^faMc0FccXAWhUaJ#fXa#_o0L4`5MPls25)[`l?!9`8AQ6 +`"g80^qn(0^qQ\<`96morVlcprr;usJcCf2J,~> +ci4IRs8Mupn]@AcSZ/T`TDkD]ScPITpR`(iT:_^GTV%aDSXu=?SY)OES"0JKs-iqX!M?%aT7!3& +Tq.U>S=Z=FTq@jBQ^XJ;TVJB\TqS3TTVA9ZUS4BVUS=HYV4sTQS=ZIMUS=?MS=ZCHT:i!TTUqgN +US=HRT:qpLT:hjLT:hpQTq7dHTV/'UVP^/_T:MC;R[]k>TUqXCS=>t;St;LFTV8*STqS-OS=>t: +SXuDXSXc7CU8+ETrgt4&SXc7CTq\U61k`l1b/Sr;Q`rri?)!r +ci4RUs8Mrop!U"@\'!%Bcd'k`rm:_mpX'2ldF$=dd*Va:s31VhcHcF6s3G#sbg"GZcHa\Zcd0k^ +ccs\Ycd:%bcHODPbKeG\d*gFlcHjkbd*^=hc-4GXbfe8Ye'ZC]b0A8ZccsVTbg4\acd1"cbfS&S +daQUgc-O_]cd9q[b/qfLbg=b^bg-48"45?L;hs8W'%s8N#rrr2osrr2rt-N=&FrV??JZF&'> +l0@X&n*f]3lg*p&l07L"lg4$,mHj0+mHj6-q<\(Is6TdOrp1!Xm-X6.m-F$*m-O`=q<\"GrTjOL +rod_RlgO?5o_84YqtfpNk2PIenb)\Mm,R3rp%eFXo^1l)kj7d'jlGCYiook'o^(i%hs9t,n*foF +rqu?KiTBS"pA"LYo'5;skjJ':q=X4Akj.d6q>'^Plg!d$mHs69mJ6)Qlg4'.md096m/?>Olh0WE +mIBNFlg4'-rp($XjlYggh:B*:bNns%rVc_Hs,?u.~> +ci4CPs8MrnpTb0/&Rbg"DVbK@oJbK\<2 +bQQ,3bKA!,ao9?iai_iK_TC!9VPqi/q>L;es8W&us8Dp9s8N#rs8W)srquNbeY8\I_T'R7`Pf^7 +`l,d5rl#5__o0I1_Sa:1_o)Jmq8E6Ns2=rT&B)K(`5BL0_o'F1_o0L4`5MVnqSWHQ`5V_q!6+rT +?c'b$b0%rSe(3.(f[A!__8XXJg"b9-a2uf`gYLW9dEKbWd*p7\a2Q$=c.(J#da#qPd+d7(eCijF +j4;AmbL>+sg=t9/bJhE?cd^Y'f[7pcbgP2!g=FWoaMc!8`VdXU`Pf^l`W*g]`P]U1_o'F1_th7L +`W*jK`;dgC`"p8/_nX%-_nj*bT>]sfrr)iprr2rsrdk*1s*t~> +ci4IRs8Mupo#[JcS>`B\T)P5^SXuFDqOSXsSt;LESt2FESt):?SXc1?St;LBS"-%=R[TcGT)YA] +T*CjYSt):?T)P?ZSsu.9R\$.DTVA6WT:hpRU84Z]TV%mOTqA!TW2-&US=cLLTq7^AS=cLIStDaO +Ssu:EUnsiYT:qsOU8"9NS=?%>T;&*RStDaOTqS*LS"'DF"IbjQTUu+O*1E@eSXuIGTVA3UU7n0L +SXc4AT:MLBSXuRNTqD=U*M&^hS=ZCIUSOWUR[]\/SY`$ARE"LcrVZTms8W)!s8W'&s8Muqs8W)m +ruM+=rVcQab`RUDOG\U9GBA"PH@19rK7JH#I=6Qnr."Hks*suts*t&t#(M)NIsuiprdOlss*t)u +r."]ps*surs*\L+H@(!bH[C0lKo1hMPaJ#6TqIm=NJ`XVQ^j\ +e,TII!<<&t%fQ>'p!Kq>\'*(@c-FY]rm1_mdEqm=s3MJ+d*U+bd*^+_cHjbZbKeGZbg"DXrQ>Gi +c-4GXcHXW5cMu8kcV;^0cI("abK.cJcHsq`bfn5Nb0/#TdEp%VbKnGXbg"M_dETkYcHa\Yb0%oP +cHje[bg+MXaiMZOdF$:ddETn\cd'bXbK7cFcI:.drm2k6b/qcJbK\AYc-=V^cd0eXcHaVUbg4V\ +bKJ,Rc-4AUccuC3#g^f@bg+MYbfp(2s3(Jgrm:\m%+*DMd*'\Y_lBcameQh\V>pSp"onT$rVlfq +s82fqruV.7qVJNcdc'ESlg4'-mHj3*lfmWsl0I[%mI0K0lh9]Fm/u_@lg4K6#3tO@mHj3*qX"+H +s6KaRrpKmTm/H;OlKJ63)!gSYo_A=]rVc`qr:TC:k3i$Ds7Yd>lM(;U6i-WOnEfQ5p$_,)ioK@k +nbDqNlf7!ss8)B[pA=meoB>9"o(`(\rVHm-F!/lko'TmHs6*m-<]plK-mR\?!j?q#13lrVleI +s,?u.~> +ci4CPs8Mrop +ci4d[s8Mupo#RA`S#<0WSXZ.=S=Q4@SXobMs.(L,SXl:@SXu@ASXuCBS"?7DS=H.?R@9P2S",q; +St;LDStDXHSt5hME1W_oR$X2.StM[GS=H%8R@KkBU8"0GSY2UHSY)^TURn!HT:hgIR[T_:St;IA +S=Z@DR[Te@USFKTU7\$MTqJ!JSXZ"8TVS6OTV8!IR[KP1R@Bb;S"$"@SXl1:S=H"9S=cLJSY)RJ +TqJ!LT:PtO.@Zm$TqJ*QSt2FBSXc.:S"?7FU8+HTR[on4SYMj?RE"LcrVZTms8W)!s8W'&s8Muq +s8W)rs8W&us8N!7s8Mrjo?EDPPE1QOI!BdVGBnUeJqAK$IK"TsI=?ZqIe/'hIM.-ZIXQWnI=6Qm +I=-HkIsuirJ,XlsJ,XlsJ,Xn5I=?WnH[9s`H?j^ZI"$X"N0B[#TVJB`WMlMWOHGs,X/r+bOdDlC +WiE"pU7I^@T;%j@OcPZlS"HOSTU:h&Trt>gTVSZoXItiAQ_1(PXK/7oSX,M-U8b5qW1ooUTVSQf +X/DYYO+i(5Ic#YTIKt@OIXQWnI=;*Drd=ouIt)oromd!j!.Xus'RY4QH$+CdLPh7NNk= +e,TII!<<&t%fQ>'p!Kq>\&ut=c-FY]rQkSmd/MAhd/VE"d*^+]bg4SYbKeJ\rQR%=`l?-Fc-+8R +cHjbZbg"M]dE]tYbg=babfRoIb0A5Wb/hWEaiV`Pda,tPbg4MWrQYAd)9^7LccaGQbg+MYbfn5P +bg"ARa2c?Icd'f7cMc&ndF-:\aNi65ci;?!c,duJb0%oSdEKf5c484CaO&5Tair,Yc-"/MaSs?^ +bRD\:aiDNJdF$4^bKS30b66&6c-4K2cj\=Mda-+]c,6Q^d-^Z-rh]YprWW?$rr)iqrr;lps8NQ, +q>/sR[F4!rl0I^(mJcG\lg!`ukj%O#m-X6.m/H;Pm-F!5m/?8KlMg)RlKdg(m-O'9m/QDKmJlMV +mdKW4mHji +g&M*O!<;ur('":4s8Mropg8 +b0%fHaihoNaiV`OcHj_WaNDfScH=2Ha2lEJbfIcA`lH-@bg4MO_9'mBao0B^aVi1AbKS&Ia2uNJ +b/qcGa2uKG`l,g9b08&Orlb8a(=(7K`Pp!Gc-4GXcHF8Ja2l?DcHjYTrlcG.a2ZELaMu?Hc-")H +`Poj;aN;QF`l>s:b0J;TaN45"s2YhqaN2EAa2lEJahu6D^8@gTmeQh\UAt8m!<<#s!<;ur%fQD* +qtKg6TqJp3_ns@2r59#]_Sa=1_o0L2_ns=/rknfSpVd$JrPB/a_SX4-_SO+,`5BL2`5BO3_u@OQ +_uIXY_ns:.`5V\n@)Kq%`l?'Bf&#<=f[ea4in`#'aO/r/j4;GufAbfGgtLQBh:0j(h:^,rajSks +g"tcIe&]hnlf$FDg#M>Yg!@sng"kKAgtLN:e'-.ojlP=Nf@ep5g=Y$1g=F]r`P_Pj!lMspp;7'N +_o'F1_th7L_u7FR_ns:i_u@LS`5BLa`;d^o`5BI0`P][5^VIn.^qQ\<_s$jor;QZorr;usJcCf2 +J,~> +ci4RUs8Mupo#RA`S#<-VSXZ.=rL=(_S!oh8S"'DI%@WcVSXc.q8 +S=Q1=R$aA7T:VXHSt;UJT:hpQSsbtt7R\$:MTq@pHR[TY6rgFapStMaNU7n0ISXPh7US*a;`p*6rr;?Qos8K)!s8E6&rr)fq +s8Mrrs8E#urr*c7rquN^c&d[DNei44G]e+OH$t0nJU`,srd4]om=#+bI!ka<"ak`HIXQYAIfFft +IXQYAHi\S?rHVjsH$k$jK8Z+kV5'c[Vld8.UmRLAY-bC,R@'bPY,S@sW3*(mSti<_S!920V5C)i +YcOI^R]a0%U7e?d[BZQtR\6OVX0/M&Wi;__TWGQ.XJ_tqX/`+rVPpJkSs"eVIXU.'!e#NHp3d*l +I=6QmII;ObI=2$>&9W8PLPq=ONk= +ci4UVs8Mrop!Tt=[`Qb9bg"G[dJhGmd*M^:s3D;(cd0n`dEp+Zbg=_]bg+S^c2PpPaMPj:cHaVS +aj&2WaiDQJcHshZai_lScd'bVa2c?IcH4)HbK@oKcdU7]`6HTMb08&Na2c?Hbg4YYa32fUc2PjF +aN)EHcHODNaNMiRbfe8WcHOJWe()gfa3E#Wbg"P_bfIoLbK7iOe'#hUb0A8P`R3#QaNMoUbPoQ^ +a;W1DaiDKEaMl3DdF$1ZaND`Mbf\/Rc-=S]d/M?"d*^=hbg+MPWiFG6q>L;hs8W'%s8N#rrr2os +qu6Wq%K6,"hm0W:hra.flg='lg!a!q +ci4RUs8Mrpp<]k:[DpA1aN;QFrl>#Zrl>&[!6P5]s2e'ZaMl3DbK%ZEbK\5OaiMH9^W+I?aMu6B +c-"#DaND`PbK7fGbK\;Ub/_K?aNMfJ`5Tj>`lH?Nc,7B@bfIiHaMu0:a2uHIc,[cDbg"<0a#V,W +`lZEG`l,j;b0.oJb08&NaNMrYc,[cEcHOGTcd0bRa2uHD`m)oQ`lZdFm@2f[nX(h;?i0e)K]SeBQIri8<27c-OngccX2CqSNKR +_o'@-_>1qO_8=(,_SZ,d"iA0p_SO(a_?Icm_Sa7-o>CUF"2i!l_Z%If`PB=0_nWm]T>]sfrr)ip +rr2rsrdk*1s*t~> +ci4d[s8Mupo#[D_R\lpRS=5q;SXZ+>S=9GFs-aOhR[KS4S",t9S"HCHStMgOT)P70R$/T;%sEPb"D7R[fk9R$X52S=lUGR@BhBSsu1; +R@'D4SXc+6Q^aP;S=5t>SXZ+?USXWOQ^sh@R@Be=R?j/+R$O#-TU;"3Q^XJ0PFnD3R%'_@SXQ"; +s.0gpTUq[CS=>q8T;AEXS=?%;R/NElS"-%ATq\6RSXZ1=QCakFOdX5Rp\k$frr<#tX8i5!#64]$ +rVuosr;Zfr!<<&t+92?=q"2gnKp%FNIsQ<\F*)YSIXlrtI=6KiH[L6hI.MaiI!pEjH[GR9"abWE +I=-G>IJnO#H[:!bH?spaH$FT5H!u#IIXcm(R&?s\Ssl7M[CE?2SYid&XIYcQY-Y4'T:2L][&'=h +YH4=[RAd?kVQ7)1V4+-d\uM3eU9M,5Vk9Z^Xf\V&Vl?o*WhQAt]saf2V6$u.X/)D_VPKfHKRJ8r +i-bcVI=6KiHhi$mH[L3hI!kI4"FPWGI!bj=&9`AQLl@OQNk= +ci4[Xs8Mrop!Tt=[`Qe;bg+P]dEp8>ci25ic[F0dcHaead*9e[dF$4_c-Xk`bKJ&L`lH?Pe'Q7Z +bg4MP`5g!CcI(%cc-+5Nc-FSVaNDfRaMuBLcH4/Qe'Q1Vcd'YSbKS/Ob0JA[da?4WbgFh]aND`M +`lH9Kd*9\Sbg+PYaNDfPaMl6Gda-"RbgF_YbL"VZaNMoU&';i9d`]\O`llZF`732UbPod*b/_TF +b/qfNb/_ZMcHFATdEp"R`llZObfe60blZ5L;hs8W'%s8N#rrr2os +qu6Wq$iTnuhm0W9hWm/-2Mli?ANl=9&Bkih*ejn&NPqX3A&mJ?kXm-+!:qTmDkkFf5 +g>VVunE9-4qsEG1qu#^2fAuT%q!@/1p\XaVmd9TCrUfCDrVu]ThWF>'qtTaMmI0N0kNM0rlg"E6 +s60XPmHs9 +ci4d[s8Mrpp<]k:[DpA2aNDZHa2l?Da2n8#s2b5^s2b5^I`fdRaiquMa2lKMbfIiF`P]X:cd9qW +`lZHH_SO43air)Wc-+5La32]MaMuKbgF\R`6HQI`lQ9C`lH9Ibg4ST_o^3LaMl3A +aMYs;bg";M`lZEJai2M1K_>_;]_o0O5`lH0=_8b$djP.tt_T^lsf?).bj5JJ,aOT8-e&B/8`T6:6ajK#& +cGI]WiRlK*i8iG3eE5rB^VA"Kjl"Y6e_fEDf$_srhr323e)]lRb/2CUF"2i!l_Z%If`PKC1_nWm]T>]sfrr)ip +rr2rsrdk*1s*t~> +ci8Fms8Mupo#[D_R\lsSS=?%=SXZ+>S=>q5R@9P4R?s>2R[]k=T:r!QTV/$UU7IgER[BM8UnsfV +SY2^JQBRT"Q^OA7S=5h2QC=>4Q^*o,S!B/(St).5S=uRBQCaY6R@B_9R@9\>Tr"NQR%C(ISXQ(? +SX>b5T:haCR7Ed=T:;4:St)15R%C%ER$F28S_1S=Gn/R\,t3Q'@],OHQE5R%'\>T:DFB +T:hgLUS+0NUnj]WUSju]R@0S8R[X5D)k3@gT;&'RTq.^ES!KY@TTPY^l1b/Sr;Q`rri?)!rW`E% +rVccrrqufrrW)utrZD1>rV6$0ObJsWL4=JlF)uGIH[UBnIXQWlH[C-gI!kO6"ak`HI!^59Hj+kE +I!pBirdFfo"+>QDHMr3iH3AMN/W10 +ci75Ks8Mrop!Tt<[E-S7bK\>Yd*L%`cd0n\c-FY]cHXV[d*U4ida-4`bKJ;`e'H:_c-Ohhg"=j& +cd:"]`5B[>bgG(tg!e0a_oU*KcHFGXbf@fNe^MdabL+^Mb/r#VaN;cWeC)gsf@AL%b/_fWd)X/O +eBu@VaNi2[c-4GYd*'GLbKIuF`lufSa2H0Jc,e#Oc,n)Re^Vg_bKn>N`PfmB_8b9_cI17kd*Bn] +ccsVVdEp4ff@SO#e'uac_SsdHrltDc'@"hIcHjkadF6Icc-F8/XO-A1rr2lrrW<-!ri6"urWW?$ +rr)iqrr;uss8NT.s8W&nqVJK`ce[[Ekir'3!pSq3roO[SlKRX$lfm^!l0@U"lMKoFlMg&Jkl0fH +kks]ElMg)PlKRX$m/H>Nm;;:Xm-a9-lK[^$l0.Bpini\brVlTYhV@;irq5O>oDJ@IhW+8-p?C>\ +ceS9po]531qsNJ-p%Rk6kk=uFl1"ZKl.=JHpAXjRl1=lRqt0FJp&=s]kjA +g&M*O)uop:rVlfrrr2rsr;?99X/*,AaiMNEaiDEAa8X/0a2Q'=aN;NDa2l?Ec-OYWb/hQAbL+\[ +aiV]KcdUFpdETn[bf@Q8`lZEMf%J[&b/;'8bK\8Qb0A)J`luoZbJqZMcH!rMcH!rKd*^1de'ugq +dDs5MdETYJbL+VS_Ss^Dc-"/Nbg"5H`5p$=_8FC>b/;'9c-+/JbKIrH/BuYlb/DEIaMc!4`lc'6 +f[\0kda-1]b0.uM`lQEKbKeSdd*Btabeq03bKg+1!6Y;_'?A)2`l5p:a3DcFa2u)nVpFf,rr2lr +rW<-!rhoerrW)usrZ(t;rr)lsrqu`lp\*+1T!lAK^;7\&_8*k&^q[\a_>qFK_Z.LR_YM+I_Z%CO +_#(qQ^VI\&_84%,rk\ZOrke]Qs1ncP_SZ8fA&H:*`lH0?_S=(=iT&\:^qIb@i7,fhf&>H0_TCKj +gs*UFZbbbif>u7oi7#clg>(,ucJ7I3cIV+ce.:?iRlW,f&,B6aNic/gV^P9b1>G. +hqd&?e'#_I_YV.O_Sa:__?.Wl_Yh:Y_Sa:._84")_8*k`_$Iim_8=%)_o'@b_uIRm_ns7+_o'I3 +^qn(0^qQ\<`TQsnrr2lqrr;usJcCf2J,~> +ci4LSs8Mupo#[G_RAHaOS!s;Fs-ssrS=5h4R@9S3QC+,1St`'XU8+KXTr"fgU]-s"USk/qXfA7p +VPToOQ'[o-SYW6^Tp_(*Q("54R$jJ5Pa.f7U77F9T:_Ou6uZ*UC%V6db9Uoh;AV37"7Zb!QDV6@JD\?N$6YIM*DTVo?;Z^QuBUT_,9[BZp;Vjrg#I=$:u +Hi89hH2DmkG^=[_H@#+.!.+Wk!.+Wh&9W;QLPh7NNk= +ci7SUs8Mrop!U">[`HY7bfn>Wd*L%`cd'eYbg"GYc-4DVd*gP%f#c"UaNDrag==Tuf%f9Fin`AC +gY(&u`Q-V`m)fOce%%5iVqb@hr*88c.(@la2uoh +gL;hs8W'%s8N#rrr2os +qu6Wq$iTnuhm0W7guIP\l2BoHkRcq=kNM0olKdg%l0.?qlKRR1lMp)MlKRR/kQ^;8ki_0nl29fL +l0.F"mJcGOltu.Vm-X0*l07Kukih9ni8!>^rVcERhV7/erUK+;pAO^Jh<"D2p$(8[d,4Wup?1W3 +r:oaMo^h>,l1b2MmdpDTleC%Pp&+UQm.UGXq!mnCo(r1LjQlaCpYaQTjRDsAr;HZqqXNk7l0@Qu +r9F=JlfnQ9lK\?4q<7kCroa@HrTXCIo]d.TlKdg&lK[Wqk3:s_e[MR$lM(5TrVhBJN;nD~> +g&M*N'EA%0r;HTorVlirr;?98XJN>Dao09]`l7qt+iq^D`5Ta:aN)<>`lQBPf[7XS`59I9e^i-m +c-k8$hqcubego:s`ko[_c,@WMgXjWd_oKmAaN)?CbK7`AaNMZB`6$_m`5KX6`5TgAahu->^S[mSmJ6_[UAt8m +!<<#s!<;ur(&e(.qY0a7U7\j,^V@V$^qd_"_8*k`_>_=N_>h@P_>1tJ_#hKi_=bSF_8*nb_Z.IO +_?Icm_SO((rk\WMAAQ.$`Poj;`PTF1eD]E>bJCp4fA4lrbh(b*aM>mNiRl>e[B[U0lIO)#f\kN4 +e(<3r`m!2ug!J@1iQo6NaP#M,da6\-jPA>5cdLM!c,7`]k1IPZ\\uhGgtprJiRuT!_SPr_s24ZL +!5nQJ!l;ajrPA-Ark\WO!5\BGs1oYk_8*k'_SjF/^rF:,]qq@>kkG)Trr)iqs8N"Ks,[21~> +ci4LSs8Mupo#[G`R\cjQS=0AF+Io!nS=>t8Q^F2/Q^=#*S>*!eWh,fUTq\KiYcF_$XL%o:0=A*j +ZE^I(S"$(IVl?i+Z`KjdOcl'#S=5n9R$F)5VP]rOQ^s_8Q(4A4Su8cu[/RC8['m06U8Y,gS"?Xd +YG.DOS=cFES=H1DSsl+=TUhL=T;/'IQCOY=Q^*r*Q'\/AVk03@SXPk.QC=>,S@Gu+Y->".WiN5" +U7e<`Za[HW]XP;VZ`BaeR@TlIRf8]nS"61DU8"XKAb2Un4Ei]WnH>]=Oo+Pb>:l[&U(0]=bPRWi2u(Z)4%d[_B#8O-6$3Y-YLB[C!*2 +P(\4.H/j2PH$Xf8H1Z@\H2i0jH1ZCcH$Xd`H2_suFErRpM33RR]AiGZr;Q`qrdk*.s*t~> +ci4[Xs8Mrop!U"?[`H\9bKS5Vd*L&;c8Ekibg"GXbfn5Pd+-t7g;LnL`lZ]di7li6hWaOskMP.T +k2b7@aj/W&lK@Sb0%oObl5itcHt"ed*^1^bg"&-Y0cP2rViYns8E3%rr2lqrr2rp +rrl0@Qu +l0@Nslg4!;li6dMqu#j_Yup?q>>qYB[GlKRU(n`Slrr;QNSgY:cSmHs?5qu?Zlo'#9% +lKR9mrTX1BrojLJkNMg-o]cSDlKdg&rp'OG$L-X-e[MR$lM(5TrVhBJN;nD~> +g&M*N<<)pqr;HTorVlirr;?98XJWDEaiMNDaN)<@a2lo]YVD$c.Uq) +daHk2m-3N`g"bQDf#bkQfAl&TjQGjnhp]`fa3+A((!+G@e_8^(ai2EJ`kTO8b0o)-lfmR2j'h'- +eBun#cGdu]jl"P)_8F1/_SO(-aiVWFbKe8L`6$j_83q&^V@V#_#2%J_?Ril^qmn)_>1tG_>M(K^])%K^BhWk^VI_' +_84"f_>h@W^r!t)_8*n'rkJQN_Z%G[`5]g6^W"dbiRGrb_9(Bcd)s\fhq,i[`Rs/$beLKj`S]b* +a2ZH]j5&D=d`KJQguR2;f&,B5_S4(@gtL6(f\bQ8bf\#Kd*TeJb2).3a1Ak#bKS5UdbNj=f?M1J +iPPK.pqZpG"2M[d_#2%B_Z.Fk_SO%&_SX71^qdt-^V-J9`9?sprVlcprr;usJcCf2J,~> +ci8Ins8Mupo#[GaRAHaPS!f_7S"-%?S=>t7Q^F2.QC!i$S>EI%YF:oQTVSZu\[/KC[_g,*^q.%f +^q[7QStiHt\[SrT]=>#=R['2-R[]_6Q^=;?Wi;\ZQ("80P*qf1V6ISI^V.4i]th1\X0T%1TV]*3 +];_9dR[]e7R$_HTT:hgKTqnBOR\-CNS!]b@SX5V/R?j;;Xf\@dR%Bn=R$sV=Q_hU;[^irY\$rcO +Wh,fZZGFZ'`l>j1_8!@SSXc7?R$a;/R$jG8TV/$STq%O?R$F8=TTGS]l1b/Sr;Q`rrN#turW`E% +rVccrrqufrrr2p@rVulqp[udlJW>V@IX#sTEcZAJI=H`pI!U$]GBnLZG^8q-#C1WAH$FRZH2`$g +H2`%&H$FU\H?jd^H$O^]G^"CVG^+CSFoHPrFEMhRG^P!jI=@!BX/_n_Q'IrEZ`'RpZad32QCkLq +Yc!qLN1[YoY+VAd[_'&TY,\+`UpR\H$T"-(jUFSH[0aVGBJ1aL5D"INk= +ci7k]s8Mrop!Kn<[`Q_7bg"DXcd'e[cHXSUb0/&TcHFAScI_+Ci69Hlb0AT$khaqAhsC")j4N&E +m-Wf]bgY\Hp#t>nlL4*"f#u1Xb0/#Qb0&)ai8N80_oU3G_9'pHe`6)gmHEWkjQGRUfN@(he&ftt +nEJNF_SjL9`PfaUBlr;N_rs8E3%rr2lq +rr2rsrr9'SZd7Igk32'qlg!d!kND!ikNM10l2p>ki_..kl9fGkl0`Hki_1/ +klBrHl2BoHli-6dlg=$(l0%hi)qt0+.hX17>nD`9e +p](9kp@%)$m/$\TmHjWHnDrQjoD81Mn+$/HmcNZnkO.d"ip?UCqWd)#kj.Kpj6-%4s8ViXk3;-o +r9=7F"6o+9l1jQ +g&M*ODZB_8rVlfrrr2rsr;H?:X/*/CaMudbs3? +da?h5nEf#\eD99NhTj0fipu[%h;@GalJU17`lQ9Db0%cFcI^q0eAoAEc,IB9aii,jm-j6#rnqnY +hpg02gX!j_i9]RR`P97,`PTI-`lcHFa2lKI`PfjAbJV'2ai_WA`l?'Cf](l>aMZ*BaMZ$?bJ_ft +n)<9fkNM-mi75rda4BSJlJgaXiTTRceB>tT`l,g8aN2ECa2Z-;_o0O8bK%H<`k/+Id-g`/rr)co +VuQer!<<#s!<<&ts8Nu9rVcWfpXPt/[_BPm_8=%(^V@S!^VIY$_#2%K_?7]m_SPu`"2Vjk_>:qN +_8*k$^qfrcs2"cPr5/HLqnQg[_SO(*_o'=-`PB1)f&YiCbf%KJhqul*d+[C-_n*_7hqQW#]Y;YG +h9X!SaP#\;i7H>r`m3E"g<\.%imu/fbLbP(eBuh$g!Ig[`5^'G_naIOin;Mk_8sj@_nj=?hrEYC +`4u/c!l;ajo>(LF_85rarPAHJrPANL#Jn3k_8=(*_=b\F_&L8-^qdh(_o'4&`59:%Un5Qiq#C?l +r;Q]qrr.KKO8j_~> +ci4IRs8Mupo#R>^R\lmOSG\gqS"6+>R?s2)R$sD.QC+/=[_]DIUoC2i[)'YjZ*:g\d*0;6\%p,. +^94<5]?&%(Z*LpR]!8*"Q^F//R[KM1T;\rsV4!L5T9te1SY)de_8X7(\[]8c\ur6H\>u=%]Z@pk +SsPk8SXPt8T;&'RTV+TIURdpKUnaEGR@Th5PEqT'SuK'&W193ET:VOCU84)XW)S.SXYn,Q(Y:eYFC2jH?eb$!-n?c"*f*: +GQ)jeG4p+_G^4RYGOp(_G^4U\GQ)asF*<+fLl[:N]AiGZr;Q`qrdk*.s*t~> +ci6`=s8Mrop!Tq:[E6P2bKS2Tc-4ATccsYUaN;ZQd*'PRc.V=OjO)N0bg+u-lJC%>hs0^qf#l:m +l0miidFmp^nD)C1=_8jsG_TL*Hdc'W]jP/89f%JX"dbWj2aj0#? +l-dVjaO&GacHae`c-",NdF-@ddF6F^_SaF:aMc';b0f)0kM"/"aNDTCa32fMeai4egYC`Ik3D6m +g!%XnnFY]=e.UR#mH<L/sPZHq@fjlbjmlKRQrk2tdek3(som-F!(li$)JlMKiGkQ:#4kl0cF +jp:/4k3(mhjlY_)k5sl1kl0iHkQ'lGlN-A_Z$s829JlM(>Un`oQ=rq#.& +iU6UCr:B:Cp\jsUhqI/bs8W&mmc39jMkOnlKmHX-8rqZ-Qn+HJJn*TK1o^M&*n,<7[l/V!r +oC;/.jm`0Grq5O +g&M*O)#sU7rVlfrrr2rsr;?9:X/!&A`l,p=a2S%rJ&]OJ`59@-`Q60>_SX=@j6baIcI'VNeDoZD +cd(5*lf?I3aOT>9j42B'l1OGsc-P,,m,m!Ga2Z0@aN;HBc.M"8f>kSCcH!]@aiVlclg!E[dF$Cm +d`TkggsF$_i:,jR_na47d*9_Ubfn2K`5g-JbKA)UbJV'/`5fj6_D] +ci4IRs8Mupo#[G^RAQ^JS,A\&R[fn:R$Nu$Q^aG0Q'\#@]>hF]Y-Fq*\&ZP$Z*Cs`ccESrY.Vp' +`j`(V`6H9+USP'']st/8R@0G3S=,b5TW>K0Wg]':Tpq:;T:Vjc_SNaeXK/J-Xei&+\uh^*^ +ci7\Xs8Mrop!Tq:[E$A.ai_fNc-4ATcHXSUai_fPccj;Cc/%[ZjN#Qp`lQfpkM4J7i9KXbb.ba@ +j6c*gf])DghTWdOceddFgsXEhb0.uNai`#dk31XG`6$EM_o^'Dcee!Ogcrr;icl/CXgp%@e9jn/TNp%%_Ns7u0LlgjiKr;6L-[ +n+?MSp?q,+kih4-kl9cIkiq?qmcjc8"mP76kNM.-jpL;6k3(skkiq?qkk"$@kiqF!rot*Zj5]=^ +gXN[3b3Ja!rVlirrdk*.s*t~> +g&M*O)#sU7rVlfrrr2rsr;?9:XJE2B`l#g:`lA"rs2IsU`5BI/`5fs;]Xc#4jmh3Da3;<6dGa*: +bg"l'jk.M]]Zf3qj4Vo;m-<g<.4NcH*f@a2cHZkiC=:_8194 +`PB1+e(`?kal)^Ja2,a>g#(W +lfcsIb/hcThrs=`dEC,+l-I,\`6dB$i7?,obK@iDaNDTE`l?!:_o0I2`lQ-7`Q#KcWR'u-rr2iq +rh:Q_8=(*pVI0O +_SX.)^qRP]_#M.S^qmh&_SX.*rk]#Y_SX.)_8*k$^qfrcrPDsY]tV@u^;e^`kMb+Df%]*8bf.cV +gM%T^q[Y"_8*n(_SO(] +_Z.FQ_SQ5e%DT`q]Y;>#^:gD9`T['qrr2its8DnIs,[21~> +ci4OTs8Mupo#[G^RAQ^IR[BKAR=:WqS=5h3Q'@T&R[B5!T!,oR]:c.-USP<9`O`=\^rjj7X.Z8p +`Qu]?[_Bl&[%`eMTrtf3XeM>TR@Ke8R@KtQ\@AZ4QCFY?Q(4G:UU.eMYb[eZTqS'IUp@S;VQ%AZ +_Pa$!WO9@J[BQa3UnFE]Z*q'FZaHs4TV%pMRfAZ[Q^abU]Y1M?S=feN7@Ka>Sup&OZDsXjTrY]@ +`4W:S[EHduTqeEf]tq=cVkKfSQBdf*R@'A1S=Q7DS=,_2Q'.W3T9,M^lM(2PqY^V?H?=.GE,foBH@($dH[0gZG'Tph=9 +Tqe*9IX-3`n9P%Y"*o-8Fo$=\G5QLYF9cr3F`qtQG' +e,TII!<<&t&,lG(p!Kk:[Dp;.aN;TJc2GldbQ#`baDT2Fb/D3Chbg"AQa2n5%!6kGe'$nkIc-=DNai_DuWmL20rqu]mr;N_rs8E3% +rr2lqrr2rsrr9!QZd7FejQ5P&kQ'cEjo4BKkNV9tl0@QtkNDR&"6\n3kPaNFkN1gg +roFILjlYdjk2tmll2KlHl2KsFlg!d$lg!d$l0%3jhqmAMguS,-rqlNdp\+:Jj5&ecp$L_mhrO5# +rVQBerq5[@h;.2]p\44Bj58h[md9<"ipcjAp@IkKqXs49j6?15s8N#q*VAUVmJ6MBiniVXp&4pg +q>0s]m,mHnki_*lkND(-kPj]FkPs`Jl0.?qp?;P>"6eq2k5FKBk5XWCjojl2ki_.#kQC#3lK\B5 +&a/05k2G%C[Ah=6p\b!hs8N"Ks,?u.~> +g&M*O(B=C5rVlfrrr2rsr;639XeiDD`l,m:rPa!!`lH*<`PfX1`Q,s3]Z8XdnD1n!b.YL6j6"t8 +bM)%:eA/H$aP5h9g=G`1Lf[J$a`l?'?a2Q*Eg#M,Fb/20A`P9F5a3EH*k1@_j^r41+ +^;ng^e]#M_n(u"#b15G3j5/PCe',qXf&GoTiS`W[gXF?fbK7`>_SaF@h<3qQaMPm2_Sa.(`PU!c +jO2/b\\6)9jm2*]cIM4Fc+_'7dGe&obSai23;a2Z-[2a1A(FcKtB+r;?Nk +rhoerrW)usrW)utrrI^V7Is^:h4o]tM1r_#D(M^q[\a^Au(B_#qKh_8-#a% +`#io^qROt^q[\$_8*k&rkSQM!PlGK^B2-a^])"K_>_5W^Uq.o^V7_;iof:Tg"P-2cc!T;cdg=W\ +\>r)fA,*2g>19%`P0"&ce$dsb/D08b0\MZ`Q$B`hUp?.f\>**`l60OhVmAHg=t)t_TUT_bJM!/a +jo2'gXt34eB5\EotgXCs2"WK"i%jg_8*k`_>h:Q_8*k$rP8EIrkJcR^q[\$_8*kZ_>h:O_8-&b& +AGrq]=l+t]tL;9`TR$rrr;us!rr9!JcCf2J,~> +ci8%bs8Mupo#[G_R&-LGR?s8-R[KV6S!f\3QBRQ#R@'/$TWu8U]:c+*TqSg5b.Fma_9:!5W1BWe +`6QN?]#;h(UR.(*S>E9hW1TTMR[p%>R[p1U\[SZ5R@Kt?QCabAV7+@ZZDF%\U8"6NWOK[OVP\7F +d_VcSVm=(T^:_"`Yc=Lu[D'St]tM.iYGnFtURdd=R%0tZ^V@%GS=c:@Ssu4ATWcANXeV;IQ(bIu +`kf'c[EHh!TVSHi]tq:_V4sWQQBdf)R$X51S=H1DSXGe1PED?1T9#D]lhC>Squ$BkXoJG##64]$ +rVuosrVn,As8W)qqu$KorV6!+NIm4KJp;?UDJsK6G'SC\I!U$\F`_a'FnKn[F`qqNrH&-aFED[) +F8p=bF`qqNFoHOlFEM_JF)uGEFE;JBrGl(`G'7qMI=Hd)SZT0!Vkp/^Ss>.dMj9crL4P&8PFePB +SY;jKP)G!GMO'g(Q]R)ZLQIdcOc#!_UnO?JR@U%APDb9ZR\QaUTV/!INeighSJqf>ANP"3Aqu$Hn +rr.KKN;nD~> +ci8Fms8Mrop!Bb8[)L/.aiV]Lbfe5Rb/qiMb/VE@aiMTHbh21QlIanKdELD;p#4-=h!+.^cc!iQ +jm;-dh!Fdj_SF"+b0SM_c,drF`lQ9$RZd@OhjQ>Y(kl^,2jlZR*$L$a>lKRNsl0.?np?)hIkN:pgk3(mgk2te( +k5XTHki_-mr9=4GC[(-Llg4!'lKRKojlG@Wio&\So)A[cp%@qFm,m-VhWX@kj5AtVk4&$6me?VF +j5JbIioo[mkMb=Shra.bk2Y@_nac/7lL+62k2+hLkje?;o(;YEjPK(lnE/cfgYV,_pA"FYp@%/' +jnS!=kkXBHkiq +g&M*N(B=@3r;HTorVlirr;?68XJN;Ba2Q*=rl"oV`VdbP`l#X1`Pod6a402=jO;`6bfA<%n(Yk% +f&PlFahGR9hr`kLfB;_W^:_.pa3;lSb/M<:_o9[;`lH_SO+-`5Ta9`Q#ps`;dg`_7db*\YQ1MmJ-\ZrViYn +s8E#urVcfsrr2rtrr*K,p\342S[Q8J^V@S!^V7FsrkAEI%Dffo^:h7q^V7Fs^q[YX^]D3arP/BH +!5JNI!l)IarP/KL^:sT]s1S]N^:q@q]tXK\rOuUL]>)(m_pRB%h:C-,dET\E]"Z2/b/1m/^VnFG +d*1%nb/(j)]>2J1bK.Q9^V\%6aiME;b0neebfeA^dE')9_TC6WeC)dpcGI64da6%Q^q@G&cI:=p +f$r!`^VBBU%DT]o^V@Lt^V7It^q[Y]_#M.L_"5;B^;%G[^];4G_#M.O^q[UtrkAuX]">en^:^;7 +`T[*srr2kIs,-i,~> +ci4XWs8Mupn]75\R&$IHR[9A/R@*uArgGO.P`h?"Q^F87XM2ioZam]OX1Zp2_60rTbK[l/W2dAL +cc(S=Z:ASt`F![AfdcR\#k2TVJ6\]?A@3Z`C14Z)ak2`6#TgV7b-h +Vl6f/^q[@g]=bbaY->LUaiD0/]st;HVl$5\R@0M8VR4.RZ([VWSY2[KTVSR[9A'O.)f7O.")SpA=abrVuorX8i5!#64]$ +rVuosrVmf8s8W&qr;HZprV?'-Ne*4JJTl3TCi+-3G'a.7"aP<6F)l=#F8p7_FEM\Ip3$7Ss)S?c +F)c/>FSp7jFEM_IEcQ5CFE2DCF)q8"s)8*]FEMYJrdA%,RAmu9D/t&UL5q"K]&E8Xr;Q`qrdk*.s*t~> +ci8Fms8Mrop!Bb8Zc1&.b/qfLbfe2Pb/qiObK.ZBaN2NE`6miEq"+:Tlf@F1qW#`=f]_bdgXOa/ +kNh0_h=CO#_T'aAbKS/M`Q#m9`5g!Cai_rajl+b5`Q-':_9'jBdcC&qn`\ulj58G6h!ajoc-,&9 +iQTd.jlP:HdnJT]lK$aPgZ@YYg==a&bf7Q?bf[oC`Q?K_ki^[A_oU'IbK.cI`RjhSg.Z +l/gdfoASH]h;$oGiSrbMhVR5Pj5T1]i8Nh^jl,.Zl/ppWf@o-BroFs[lf[*Ui9omijPJJ_8Z +mIB]2jl>Itk5a`Fk6C)3kih3nl29cFk5XTQk3(pikND!jkN:pijo+ +g&M*N(B=@3r;HTorVlirr;?68XJN;Ba2Z0>rl$Y2`Q-!E`PB4,`l?<^nFZ,/hVI&B +dE:)+mbPt(g[3e:cJ%78f$;Rnj5o1Mdam@:h:9p"cH*i9_T0^6_8=19g>q;F`P9@5b/_H=`PBpl +mFKFu`5]j@e_fEeLinNJLip6$lcGRQ=`r*ah`Q#p:`Pf[4`5]g5]u%^uUo;T*q#:6jrh]Yp +rW)usrW)utrr<#trWrGrpXPq-[_KZX^]2%J]`l0b^;%CrrkJHHs1SEGp:pUB"M_[c^:jBW!PcAJ +^]2"L^V7G]^\kf\^V7Fs^:h7q^;%Fr^;7Rt_9^oof?V[b`Pf[,\[oPo`50=/^:hJ*_nF4?^U_%j +]"Phn_8!Xr^;7b*_SsI0_8aU9^qdq2a1o0o]"Z&"`5Ta<`4E=hbK7W>^:(G\^r4::cHaPK^V@SU +^]2%J^Au"I^]2%=^B;3b^:jKZ#J\!f^;%Fu^\tqL_8!_Z^](q\]tV4q^:Lqm^V7@VT>g$hs8N#r +JcCW-J,~> +ci6T9s8Mupn]75\R&$IIR[9A.R@'D1Q^O;1R$Ei!Q^F50Q_hFAdE^:lahuBZgVg.k\]W4<]skJd +b0@l:][5BAR@U%GTqJ!HRf8_(Q^aP;SXuU[\[AB.R@B_4Q(F\BWOg:"b/(a(^:^eS\]iI9X/NbZ +^8\9G^qmL^Y.2?f^ULJV^VdalYct:.Tq.gNTUVC>Su/j.^9F9"TVSEZTVA9UZI7%*V4X?PTr"s( +]s=ZEbLOMD`4s14c+^3LSXc1;R@'>,QC"$>Rf8ciR?s8&NgQN2OIO>VpA=abrVuorX8i5!#64]$ +rVuosrVnGJs8W&qr;HZprV?'-Ne*1GJ9Q'RD/O<5G'\L^H$OUVF)l>BEcZ5@FEM\IqfVp\rcS3^ +s)T-$F)uGEEH#r?F`__JF`_bKF)l;BFEDPEFE;L%ECb%gEclSLG^Y$iL6\R4Ss>M#LP15(FEMkX +IsZTnH$FgjIX$R*H?=CTFa/1YI!Kp\H$b$iI"-WmH\$g"H[:0oJU2EXFa8E7Ii!ZhJ9Q!ZLkU;. +H?+%KH[^R$MMZt4G')M^r,hs[rcA6`FED[)FSp:]Folf.FSU%rFEM_JEc>u9D/t&UL5q"K]&E8X +r;Q`qrdk*.s*t~> +e,TII!<<&t&cMV(o['Y7Zc(#/bKA#Pbfe0.a^`N>bfRiDa2lBC`R*`=oBc/Cki(h(qW#`=g?nS( +lfR?mki^aLfC8ao^rXgGaMu9?`lQ3>_oBd?b0/,cjP\P3aN;NA_T'R8cJJ'`n`f)ninVl!e*?J^ +cHP5:hos[6n*`p0g"PW[p$Unsip,mkf[8!e`PTU:bfRlD`lZQ^jlG%7_o^6Ma2Gp9_:JDSh9jNn +c,e#XjQYFEfC/OshWEk]nFPei`Pfg>ai_a)a;i=FbKS/Rbg"GYa2#[7]r7sXmeQe[rr;rqs8N"t +s8W'%s8N#rrr2osrr2rt*rc3>rV??IZ*M^2ioK7bkiqli$,Kk\fYHioT_-rUfF>jl#.[ +j58\LiSrhXkht:VjPJPOmbZ^ZjPf%Shr3MNi8N\Ti8`WljW$r;HWprr.KKN;nD~> +g&M*O4obN\rVlfrrr2rsr;?99XerJCaN)BA`Q#j8`Q#m9a3)KA_84%.`PTF6hXBmqnF5JmjS&9' +`51!enEf99iW%mXf?DY/qUiI!b/qT=`5BL3`59=,`5fm=bh1n1dE2C,B>M@"_8FFMm.'K)hqm2@ +b.u$80`Pf^4_SjF6a25O,_n)YCcgCQ-rWW?# +rVulrVuQer!<<#s!<<&ts8W)t%K,tpeY/SB^;.It^q[Y]^AknF^';?d]tM.o^%T/F^V7Is]tV1m +qRlpD^&GbG]`Pp]^%f>A^&PeK]tV7qrkMjV_na"%bh(Oo`l5g-^V[at\\#Sj^;@k&]"c(n[DU2" +\A?"q^:_.o^:h7q^qmat_Ss@)^;@Xs]YMJ&]t1hh]tD"l^VRh'\[9#k`P9=)\[fGj^:_1ua2Ga, +^;'9Rs1S +ci72Js8Mupo#RA_RA6OKS!]S2R@'D/Q'[o-R?`r!QC")0R&%@S=Q11_MZ-(S3]>MD#bg!l#S=5t=S=H(9Q'IZ&rgEeR&!rQIOc>^#SroM`lM(5RrVQSrs8W'&s8Muq +s8W)sruh=@s8MrorVuorq=DagJ;f85G&hM;D/XB9H$aj^G]n3-EsH`,EcZ;DF*%5#s)SosF)uAC +F)l;BEcQ5AEcH,@FE2DDFSg+kFE;MDEcZ8@E,fl:EcZAKH$]I==b;^)SWo%fJp_uqH?=.JG'8"S +Hus@OG]IVHJoYdSG]e.MFEVhLG'8(SF`_nVG]\(RGB.bKH[0aREclJFF*2\PH['ULG(b?iI!B[Q +GBn@RFaAL`F`VW^F:*)2FE;JCFE;MDErL+[ErC%eFE;PGF`heKF`_\Gq/cUXrcAipDf9N0E.!1i +NJ3D)iq*'FrVulrJcC]/J,~> +e,TII%0->+rVcWjo['\9Zc)jcDop/Gbfe/NaN;WNc,dlDa2l?DbL>G;iQ]p+b/W-+pYa08hX^O: +mciuuini)(cKY/W]Yhh1_SXCL_o9[9$RZHq:bj5f=cl0.@^kN1[]jo4H]k2G.Wn*/fljQ#Fkn)rQ`io]@^iofOg +kiqg)!pT"6rTOCIl07m)o&p&:!9`k8)!U8Jl07BnjPSnUhq6AbWljW$r;HWprr.KKN;nD~> +g&M*O!<;ur'EA(2s8Mropai)$4_o9R3`m2=s\\5bh[_g+s\\uG'_7dOt +_>V/'^:Lki`50+!^q[Oq^r+%(^;7_'^:h=u_Sa4%\A$)']thFu_o^$:\[T5e^V%4n^[o2>]_fGC +]_B,G^V.:n]tD%l]_];B^:j +ci8Fms8Mupo#RDbR\QXLR[9A/R[BG,Pa.W)R['&"QBmr/SuB0=];W!CVkgfLe\7rZ^!PE]bf@`B +_S!(LX2`YpQ(">9R$aJ>US=ENR@9YjUn4*HSY)da]"5#8R%C%HSXPq7R'+`Z\#?$pSX>qM +_SrmZYfkD"WNre;_8jBF)pnos)J3_EcQ0oErU.Z +ErU.ZEWU<&Er0qXE]%oYEH#o;E,fo?GBeF]I!U3rOH>4Dg$YXF8g=mH%:EiE,9K9FE);@ +F)l<]Es6T*F)l8?p2U=VEcQ5AEq+2REcZ>DEW0heCN"QLK8bJC]AiGZr;HZprdk*.s*t~> +e,TIH!rr5urVTUed]]RT_T'X;`lH3DaiMNDaNDcNa2Q$=ahtm7eDg&Y`6$6:][ZB>g;Cnam-j)j +d*C"cccf#YbKaN2B<^V\%Dmd/ZO`P]I+ +b2MmYgIcjPo@fi8Ntc +kN:a]j5f:_jlGIZhW3n_j5T1^io/nZjQ#>#jr3=@jlbgjkMtL^lfI$^hr*S]m-!<`i8j"]k5=H: +klU/7l2BlKl0@R+l2TrTl0.?qkND'lkNM-mroik9rTXsXk3(jahrN\IdBomqlM(5TrVhBJN;nD~> +ci7,Hs8Momp!^.E[)'c%`Pf^6`Pf^4_o0R:a2>^/`5TI%_pI?1hS@(L\@BlLm+&hcf&u>We]Z(W +bf[f;alN*H]=PJ[]Yr%@ccX8D^VRh+`5TmLhV$2prkiKd^;Ih&`RX#0g!%@L_8F+%_q4&,ahQiof1C^q..n_Sc;irkn`P$cL'%^W+:)USc<&q#:6jrh]YprW)usrW)utrr<#t +rWiAqpXQ"1[_2UR$GX)8#^Ab\`\%9;h]t:qh\[fDg]t:tm]Xkkp\@KGl^V7=l^Abkk_8!Xm\@o_p]Xtto +]=Y_j^V7@r_8!Xq]tV:t^:Lhe_S*JY]*Q0i`4iah\@fK-]a)3`]Y2"k]Y!mMs1JEFp:^L=!58 +ci="D=8i'eb+Y#dTqS!DPa.T&QBdYuPa@f*P`_2sR$*W%WO^0_Sti6PR^()_\"BA'aNMH/XK&D, +Xe_Vi`R;,[Q'.5pSu/NeUnF3FS"6.BT;8^$Z`0XhSU-lrR@Th8TWl/F[&9OeStVdEU:8(RWLgEB +^o=f^bK7H$Xg,:CZ`U=6\%BAha3Mf=XIl#VTU_RETV\m'\ZMKmSY)RGS!fbQCt\- +`NZ/Bb0-`PU8"Kh^VdU]S!95-R[KJ,Pa.Q$R$a5*P*(ohO:IbTTT>J\lLt,Pr;HZqri?)!rWrQ' +rVccrrr<#rrZqI?r;HZqrV?',MgpY=Hus:BBkqO$F*N"VGB\1MEH,r;EcQ0nEr9qVE;"8QE,fjo +EW0qWECi+05EGoi;E,K`>Ci+<;EcQ&8 +E;jkoFE2;9CN+EFE2;=rc8$['Q7i.GB7V?DfBfEH? +e,TIIDZB_8rVcWjo[C%CZG=Dt`l5s)kL@Aaa3)B@a2uW\jQ+q7`5fj:`koF)b1Z"CgWIFO +_T('enE86Bg@F^W]Y_M%c/A!SfuLkC`lH0@aN;TIbKJ,Rao9?l`l-!@]qqUOm.^JXrr)iqVuQeq +#ljl%r;HTnrr;urs8N]0rr2ijqq\K_ce748j5]4_k5OHJjQ#7[jlbjll2KrOl0.?ol0A32!:'RJ +!:'RJs6(?bkih9pkiq?ql07BqlKIKulg!a"kj%I!li-2KlN6A9l2KoHku6d-k3(pik2kdhjlPXf +k3(skjQ,Lfki_0nkN;!mjQ,Rgk2t^`j5f:_k3(pgj6,[ijlY^gjl5@bk2kafjlP[fjlP[il/gse +kiLgaj5T(Zk2u[)s5jUOlKRNsl0% +g&M*O!<;lo&HDb-r:SREWj9CY`P]U4`5MSkB>qp1_SO(-`P&aqcJnHV`l#[%\^B^-e%NNHjPn_/ +\@&rb_7m_/jR_9L^U:MgdFHdna25U*_SjC1`QHchg<[aR_8iD`kT:& +_U%6.j3GZqmd%s']tD&$h!*tO_n*Iq_Z%IQ`>HM0_Sj@.^r"+/^rFC)U8?*"p\b$irVlers8W&u +s8N#tr;ciqr;cirrVlfrr=Af"pXQ"1\%TMh]tV1n]Y+6Urk&\hUh.\[oA^\@T;b]XkYa]">Pa]">Sc]=Y_f]Y1qf\\#Me]=bhi]"Pee +\\5Ye]=PPbrk/9F'"b]c]Y;+l]"Peg\[oGe]XkbgrjiQL]"Gbi\[]5a]!o8_\birB\[oDd^:_)4 +]EPp[]Xteeq7?gA]=Y_g]Cro;])]MC]DoSE^'hNa_8!XoURoHhq#C?ms8N3#s8W(Ls,d82~> +g&M*O!<;ur-ia2Fs8MrnnB7PiQ_0q?QBRQ!QB[SrPEV5sQ'7;nQ^NtrQ`%LA_#C'IQ^b>)bI!e3 +[)0YdUmI=8U8"6OX2<5pU7.1*Su]&uWM,iMR%0b?SY)^^\[8?.R[]h7Q_0n=Ts;AGYFq5IR%C%G +WO^*dXI?9=_lC/\^q6eETV8*VV4jW[Vl6]'_U-WEYFV&QTUVIBT;8^&\i?jbS"6(?S=,\1U9_SO +[A9:\R@U=i`k87EZ,t+cR%Bk=VRa^_Yaq#DR[]_2QBd]!Q'[l)P`V"+OU@SQT9#D\l1OoMrVc_r +s8W$%s8Dlnrr2lps!RdFs8Momr;Zfqq")XeIYrc(F)Gc-C27[,GBnFVG'%_CDf9T7EH(Pi")r:$ +EW'hgEH#l:E,]`7E,T]7EH,r;EH(nqs)83_E,fi8DJsIkD?=g!F8g7oGBnFWGBe:QF)uAAEH6#8 +DJsOoE&quXDfKf6D/sW7Df'?/Df9T7Ec>l5E-$&;DfKc7D/O<4E,T]6DJsK3D/F94D/4$/Df'E2 +DJsK5DuFPRDuO_VE8>O6ErL(XE;sncE,fl:EH,o9E,fl:oPk^eEH6)=DJj<,DgHkaMM$ktht$X@ +s8W)srr*!!rr.KKP5g%~> +e,TII&c_k0rVcWjo[C"AZ+e,o`Pojra*u+L`l5s;`Pf[7aiMN@`R3c3%fn(Ph)hWsI_ +c,%-2`l>m6c/A'TgX=6ff&,BdbjT\ +e%a<'kK_]e'c^pda-Cof?qgdeDB-:dE^%Z`W*hO`5g0WjQ+q6_oBU3_7mIk`n'25hpBQl +cdLV1k1n/$g@=X]a3;ZHd,=9Tg<%7PbKJ#Kb0.rMai_iOaiDKE`l#j;]VVOOmJ$SYrr)iqVuQeq +#ljl%r;HTnrr;urs8N]0rr2ijqq\K_ce715j5]4_k5FBHj5T(Zk32'orp'LI!9j:D!:'RJs6BCD +!U/eHkQ^57lKIKuli-/Ml0A96rTaCJs6BXKs6:?`kiq?pjl>Idkiq +g&M*O!<;lo%KHG*r:SOCWNj.U`59Ci`.#VB_o'F2_ns7-`Po^/^s1g+j2f-Q[_'uSldiqlg?7VO +ah>:"_SX%&akZ4Df?V@TdbEO,bJV*/^;7_*_o9dNini)%^VI_"]u@t,`ms,.d_rc/^;7b.cJ.aL +cb%Hlj3#j,hqQ].cd'k`cHFP_e'5tTd+[:*c-"2J_>h8G^r+=Gi8<#%^V[b#]t1V[_U@?%gW[^\ +bKec!j4VMlf'VeL_T0R2bhVFDf#>A<_o9R3`5T^5_8=.._8*q-_nX..\>#hDlhC>Vrr)iqWrN+u +!<<&ts8;rsrVZ`qrr)iqs8Vf]=GMa\[f5^rk/9B#e@OZ]XkYb]=ImO#J%@U]Xk\e]`,MS +]">Ve]"5Pd]">Ve]=GJ`]DfAC]Y1uW]-+Yq\[]/]]Y1ne]"GYe]thCq\@9&^]t:hc]=bef]=Y`H +])]GA]DoJ(]D9&/]DoSE^'hNa_8!UnURoHhq#C?ms8N3#s8W(Ls,d82~> +g&M*O!<;ur('":4s8MrnnB.GgQCXY:Q'7GuQB[R2OoLSiOcYcmR$X,*V7XmbV4jKHS?p>ZZ_4)& +_ni^UR$O56T:DIK\&Q4gW1]ic[C3<;Ssl%7S"6.AT;Aj+\>u9jR[f_2TV%^HYeI`OSs>S/S=cLT +\]D[iQ`8WfOI;c5O.+,RpA=acrVikt +s8<0%rVZTmrr)fq0)bhMrqlTjs8W&mo?)u?MM$4rDJX$%CMe'6GB\4RFE)8CEHHGMGBS$*ECt7j +DfBZ6E,T]7Df'H6E,]i;Df9T5DfBW4DfKc8E,]f9DJjB4E,TZ7EcH&D/O<4Df'?/DuFY-E<'tVEW0nWEW0nVE;jeSE;aeRDuahUD@p`$DgHkaMLpesht$X@s8W)s +rr*!!rr.KKP5g%~> +e,TIIJ,fNIrVcTho?jY9YIh]la2Z0AaMu9@`l5p8`5BR:bfRuJ`R*Z7jNGW`]u&CfmG,q2hs'=[ +cG[T?aiD65a4BD@l/::MhrNeLc,R`A_ns@3`Q$3ZkiC@<_8F@3_TBs@bM)+=f#beF`5fs@cee*S +eAKf1k0)93j5](ShCRI:gY(-0hqm#5cdUV&e^)Rgahts1_8ORPjl=q3^Ve(0^q[Oo`RX&6jP/Gg +hDO3Lh:9Zjf^JCee_8R)h<4+bfZV7Tc-+/Kb08#Mai_fMaiV]K`kfU2\"fqKm.^GWrr)iqVuQ\o +"TA?!s8W&ss8Nc3s8W&nqVJK`cJ%.5ioB.^k2te'j8nB*roj@G!9j%>s69=D!U8nHkm-MlKRU5li-2LlOE.Dm-Em#m-O$$lK[Ttmcjf +ci4g\s8MropSl.F&!gZ@MMbJCs2 +`P]C%_p[Q0k2"V?gYgr>ddGX-Ef@KrT2;?sA +d`0;VlgEHQf$Vmuj6,@La2#O0`P]R1`5KO._Sa:._SjL4]thFjTr-*$p\b$irVlels8W&us8Dos +s8N#trtGA1rquNae=iJB]Y;%l^:h4l]Y+6U!P5o@\cB;=\cBA9])T>8](ro:])T;=\cK=Oq7$R< +]=PM_rjr*>/\AU'\@];]]=PP_\[o>]]"GS]\@K/[\@K)Y]=YS`\[oD`\[o>]\[f5\]=PKN\c92> +\c95H\[]/\]"#;^])K8>])T;L]=bbd\\,P`\\#J`\Gj&=]A:'u\b!E.\bWf:]DK2>]`5YS\\#Yk +]=F`0`96morVulr"onT$s8N"Ks-!D4~> +ci="Ds8YJ\>cUSbN7]X"<#Q^shB +R@'SI]>M@jYHYFH\Zhp$S!o_2R@BY7UU%SDXIkfGSX>b8T:DRX]==o5Q^F86T:`!h`PARDXNnMR +X1#UN\$`WMZ*LX8YdUsCWMQW#ZE0q$VkBIWQ8P))Ye%EHS!BD2R?j,$OdrMa^q6qY[^EKM[^)m) +TWcAY\$*0CYI2-^]<7isSY2RDR$O#%rf\+`Q'.8mP`_#mSXY\0aQW +e,TIIIfKEHrVcWjoZsP4Y.V]l`l?'?a2Z*<`l5p8_o'I9bfe)I`mBh:^<,g"tT@h;[SVf?;4Ua2>[+^Vn=LjlFt1]tqe2`5KO.a4988kN1ji +kiL^Ve^2I]f'2\bhrNeZlKdQee&oVJaiDB?aNDWGaiV]JaN2NIa1oI+[\TqKm.gPWrh]WUfkN;d*s5j=ErTOFLl0@O4lMp,Hl36G;lKRNro'-2> +rosIH#O1O=l0.?qlM]uIkS*4GlKRNsl0.?qkj.Nskiq9mkj&03([1&Fl0[`skj%BqlK[QqlK[Ws +kiq?qkl'cGkUu,bl0.?slfmWul0@QtkNM0qlKRU#lK@?ol0@Nsl0@KnjQc*rkiq?pkN_ +g&M*O!<<&ts8NW/s8N&tqu$09XJN,7`Q#mr`&PWO_o9U4_ns:,_oBg=`PTI8gud;._SE[pd,F!7 +aNE,lhUT`a_8XI5]t(hug?@e\h;7#GgsaFF`-oJ9^;7V#akGh8e]5D=`59=1aMc0Mhqc`#^V.D" +`59RFinhtsdI,l1c.Lk0hqm2FgY(-(cdgb'f\,-@hp]W``5BC']=bu$f&GZ:_7IA!`PB:']Yi.T +jl>=ZjQ,:Tf@/!aa3s)9i7m2Hio]F_f[%RP^V[h'_SX4.rkT/__o'@0aMbd+^9jW5cKk9(r;N_r +s8E#urr2rt!<2rs!ri6"rVlis%K,qoeY&JA]=knj]tD#W]DoGD\[oBM\HTLR\[]2\rOVs>"hM=X +]",B=])T;G]">Sb\[o>]r4*NO\[oA_\[o>]\[o>`]=>D_\@9#\rjr*=&\5N`[CEfY\@K5\[^s&Y +\@K3M\IH-\\[o;[\@T2Z\\#G`rjW!>\Giu;])T;E]=bbd\@;IJ&@f<_\?rWS]t1eb\@8uZ\[h[N +!4q7'"hM=X]",B=])T>>])K>A\cB;;])TDW\@TMk]Xjl0_rg[kr;Q]orVlisrdk*2s*t~> +g&M*O!<;ur"98B"rVld+o#RA`PFA#0Q^!c$Q'7@0OF<1MNK00fR@';*Q_Lh$Z_!\VPaJG]]W\') +YdUs@T9kn7TUhC3Q_Lb!^UUYY[^`cIURdmCR$e>hE,KH, +Ci4--Ci4-,BkhU-DJa6,CM[m*D>\>sEH#l:E,]f9E,fl:EH,r;EH#o;E,]f9E,fi9EH#l:E,T[n +Dujlro5FYH"`J@!DfKdrE;skUE"Hr(CMdp%Cj:;VMLgVni:R!HrW)orrW<-!rdk*4s*t~> +e,TII(]XL6rVcWio['S0Y//&n_SsL4`Q#m7_u@T'_ns@4b0.lFa3E5le]#A>\\?AFgsO3adG!=% +aMZ!;aN294^;na\i838Ghqm#5bK%WA`PTI-^V\4Mk2k:=_8=.-_og*?aOAr!d`0,=^r"(0ajJhp +be_Qaf>Yn\fA#-^:q@mW2n51q#1-iV>gVqs8Vup +s8O5@s8W≺-0diN]i@h;[PXk3(pkkiV'kki_0ml0.Brros[OlK[WtkkOEBkj@X7kl'cGkQ0r5 +rTX@GrTX@GqWS.Hl07Eqqrn.FkPj]GkkjWEkl0iGkkjWDkl0iHkl0fHkl'cFkkaQCkl0iHkRZqA +kNM0pki_0okih9qkNKqMs6'IIrob?dlKRNqkih9rm-L9krqurus8W(L +s,d82~> +g&M*O!<<&ts8No7s8N&tqu$09X.cc8`59@._na++_ns:i_g]J=_SsU<`PTR9eD&Be]t:_cbLtRo +`Pp-Sf?V@N_SjF3^q..qdbN[5g"Y<:e]u7S_ns7)^:q7pak>_6f#PM>_8!e+`ko^Ag"=Wg^:_.o +_8=4;f@A!Wb2Cdda3W8eg"Y9:h:U)r`Q?WbhVmV\i6fES^;7Rq]=l&%f)O\sd_WT2_oB[5^qRb4 +g#1lMiSinZg!kQ"U +ot'q1r4;p?s1/9D\[_LHs1/WL]"5G_]">Pc]=PScrjr*@"hM7T]",EO\H'5?\IZ9^\[oA^\[oA_ +]"5Ma\\%jO!4r0?s18!9s186@rjr*>s186@s183?&%fEb]=GG^\[o>_]=PVd]&^I)]">TD])0,> +\c')C]=bbe\[h^N)S +g&M*O$31#&qu-Norr2lqrWi#9SVr]&S!UR?s8*P`q8pT!#T4X.5E=QBd`*S7@qUV6@"sR?Net +Q'[l.Uog\iPb>IbQ_11VZ*UaC[C!6>TUqp[[(3c__RQS8Q'Rf&O-5`oTWPZ3WL&g8R@Be +f)PdL!<;urs8;oo#kcTFT!62O^;9cd<5uno_Sa@2_SX41aiVQ?`6$?Sc,7 +g&M*N!<<&ss8G%Ws8N&sr;HB=XJ)r?`P94+_na()_SO(*`5BI._SjL8`5'4/bgFSJ]XkM^`mW8T +^V@h7d)j,=_u@S)_7R=qb0eV_cdL@ncH*uA_8*n%^:q4naOfD0e],A=^qIJ$`4s15eC2UWrk8?G +cHstfeBl7O^;J7Hf%Ad7f#bV:^;7Oo]=l&%e_f<5_S!Y!_o9O.^VS"; +e_/[,eCr^+`k]C)^r=UMf@AI+gt9up`l#Xk^&YqH_#M4^^qmq*^r"12]"GhkWN+81q>U?ns8;it +s8N#%s8W#ts8MuerX/Stpsu(.[(!TW]DT2>\GWo8\,a)=\,j1Orji*>m^iG/o=>"6]"7aK!4r-> +s186@o"+k3s1/9B]"7dLs180>s1/9B]"7mO!kPqRrj`$?rODp>rODp>p:117rOEa]",D` +\[f +g&M*N#QOc"qY^DMh-+nD/!QoB5).!EH?/>DfBXnE=$Q#CMRa' +D/=$*r,2LP"E&-qDK#Ml!,qIGs(h[PrbhUO!cW$pp2BtKrGMsZD/O9/D/=!'rbVUO!,VXOs(hdS +E,]^nDZXfnD>n>SD/3s)D#%oLCi+%gC^=loD/=*.E,KRkDuXeVDY@umDJsH2Df9N3Df0K3DJjB1 +DJsE1Df0H2Df0K3DJsH2Df9OmDZjrrDJjClD?FfoD/B#bs(h[PrbMRPrbifoDJsE1Df0B.D/ +e,TII&c_h/rVcWio[9e2YJn>k_o0Ik_umoo_o2Mk0uh8R_na(*a32Q?^qRCo`m2fH^:qP-b/V95 +_o9X7_S3b$aNM`Ia32fTb/V?8_8=(g_>h4`ak,J/e]5JA`4iq(`4s14da6(O^])+M^gY+#bf[f6 +_9U-7^;7\*`lQ9FbK.Q7^W"FAaiMZNb/1j-`Po^.^VIb0f&5K8`4j%&_SjC1_SO13bg"GTa3N,U +^q@Cr^VS":bK.iMc-"#A^qde*`l,g5_o9X8`Q#s;rkf>daMYR#^UpGDd-g],rr2rsrhTSorj5f:]jlP[gk3(q,kQ'fEkQ'fFkl9fIl0.@+l2TuCklU&4l14$; +kk4-=kj7I4kk"!;kl0`Kl0%6okii$1s60LIs60FGroj4Croj@G!pJn5roj:EroaIKkNV6Nk9K3Q +l07Eql0.?qkih9qkN:sml07Epk2kIOdC-.%meQhZrVcZnJcCf2J,~> +g&M*O!<<&ts8P+Ys8N&tr;?9 +]=Yr"a2G^*_>_=^^Uq.n`Q6->`Q??JaMYgm^Au(K^]1q\a4/r%d_rl8_7[Cs_7dV)d*BYG^&GeH +^0&1hb/h?,^WXU,]=u%s_o9X:aMks,]Y_e5`l6$Ba1o4!_SX("]Y2/%e(rj,_7RFp^VRb%^V7P' +ai_fH`66KI]t(bf]Y;A.aMl6Bb/_B5]tM.r_SEtd^AktI_#M7N^_+K)_7$nh];VaUmJ-YZrr;us +WrN+u#ljo'rVlfrrr2`n%K6>,rV6*:U7AKu]"#s1&*>*k8\f[^irY\%0,`]",>ES\sXarVZTmrr)fp +rr;usJcCo5J,~> +g&M*O'EA(0qu-Norr)iqrVcB4Sr/c,Rf8I5PE_2kO,JjQN/ELNN0'3dP)tchR@Te1OcPH]QCXJ- +NfK9jRZihoOd)/rOH#0[R$j>/QC4A:R$EhqOcfX)G)hNAQ_gphUR.%'PDtNcPDt`oT:_I2O-5Te +OH,HiS!]@pO.M\sOHPiqR[Te>SXYq,P*qo7SXQ(BSrT:_77aQrX"rr)lr +rhoerrWW?$rVQNkrr4>Dr;6\/M +C2 +e,TII+ohN?rVcWio@'b.X2;Zd_o'=.`5KR1_Sa=0_ns:/`5BCi^37<0_nj.']t_M+`PB1#^r!t) +^:qD"`5BF+^VRh*_8*n+aN)36^VIY$_8=%(]tVM7gY:,p^VRh%]>MP#^W+L>_S3e%_ns7+_SjI4 +^q@G$_RmIo]tV;!_o0L0^:h4ra2c$0^r+%&]>2J+_8!e%`5pB]gG%!l^V[h&_o0O3^q[Y#_o'4$ +`5oj.\\>nq^;@k*^r+.0_7mOn]YMP,`5KR2`Q#ps`Q@TmeH_Zrr;usV#UJn +$ig5*rVc`qs8N&urVlX/p\L +g&M*O!<<&ts8NZ0s8N&tr;60;XdlN3_S="*rkCJ/_SO(*_ns:,_8=+*^:V%j]thFt^:h.l_8X=+ +]=Yem^q[Op^;.V%^V.=p^qme"^Ve%0_7mUs^AYfr^:V%rce-pr_S*_#]Xbko]Y28+a2#@$^qmh$ +^VI_)_S*Ln_nWam]"5Me^VI\%^:_%g^;Rt(]"Pqp]"#Gl_S)4s]thM$^:Unb\\5ks^qd[t]t_=t^V@V$s1nZN&&#Ka]XXl?dI-f.rr2rs +ri6"urW)urrW<-!rqZR(rVuorq"3+4S?994\[f6K\Ho^S\%&rY\%0'J\Gj#A\@8uX\*gd+\*ga+ +\,No;\*LO(\*:F%[fa.L\$kqs0r$="LkhJ\@MUJ%(Nm\]=G>B +S]'^brVc`ps8DlpJcCo5J,~> +g&M*O!<;ur)?9^7rr2lpo?O"cP+eA0P`UuiP)tZ[Ll.,hM1(>CNfAsUNffQiOcYT^Nfo]kNJi[R +OcbZ_MiEg]OH,gPF%MqNK0'_QCt4V1S9ehOH5HbP*;#gNK'!] +P)P9^R$!8aO-,NaQ'[YrQ'ISuO,T$WOHl)pPE:ieOH,9XM>i;DMiNm]P*hi3OIODZq#:9ks8N"q +s8W'%s8Muor;HWp0)b_Fq>'mds8;Z]bE7:,I!':>An>OeC2@a*Df0B,Ci!m'CM@KrBk_6pC27R! +rbMOKokXSBnn\8?s(_UNrbMOMlY?T=CMRbbC\hiIC\MW`CM[d&Ci4'+Ci"!,D/O6.D/a?.D/=!( +D/3stC]A/EC]A/KCB/,KCB\NhCMdj$rFcaSA7T=jFaSgfKXBS+rVlfprr2rt!<.QLOT0h~> +f)PdL!<;op(AdjteZG.6]thD#^qR\)_ns7+_Sa7-rP9#[^V7Fq]Y2+t_SO(+`5BFg^Au"I]`Z$c +^qfob#f+3h_8F1-_8-&b!5SQL(r!]#c.1@f_S3n*]t2,!]tVD(_nNe!_o2Pks2+oT_8-&d$GaEl +^V7Ft_Sa:.rkM+=^;Rt)]>)8$]t;,#`PTF,_Sa@:eC;[W_8aC/_o9X6_7mUr^V@@i^r4($]Y_Y+ +^r""(^r441_8!^t^;7e-_o'@/`5T^8`;[Xa_Sa7(]=bhgZ_X\Pn+ZeVrW<-!ri?(trr)d2rr<#t +s8W&nqtp-_hR0Z2f\bWGioB.uk7-S8jlY[cj5].Yj5f@crTN_7!pJn5\`a+ZkigIZ!pJn5`TRco +kih3mkih3mk3)!mkPj]UkN_Bqk3:s_dC-7*mJ-VYq??cmrVuorJcCi3J,~> +f)PdL!<<&t)ZTd9s82Zbf<1L<^;7V&^V%:r^qmh%_8=%)rP/rY]tD%j]">Yk^q[Y#_SO"a]`>_E +]*#a]^:sQ\#emsa^VI\$^V9]\!PcAJ^DOVq^rt3Ub.t[*_Rm=o_7R@r`50*t^;7\c_#M4P^q[V_ +^Au"I^&P]8]t_@u^V.:n]">ep]=>Mh^Ugqh`5BC)^VI\'b0n_[^;%V&^VRh+_SVdZ_aeQn+ZbUrW<-!ri#htrr;`l +s8N?%p[lt2S#j$o\c]LP[^Q(Cs1&?D\[f;]\@1_4s0h4%s0g4^n[AJ*!k5VHo!eY/pp^:3`4,`U +s0r$ +f)PdL!<<&t*WQ-;rqu`cd%cDVT:D:8O,]9cOGepMM2I+FLPUfcMZ&J\O-5TbNf]EdNfB!VNK&mT +Mi*CONfB$YNfT3[N/WdYOH5E]N/WboNYm_4OIN#>R?*;fOc"pUOc,0\P`^l]NKKA$O9^i,NK0'[ +NK!jtAWW%;P`q8mOcYTaPa%8gO-PohNKTQiO,f9_OHQ',U7%"$P`_#gPE_5kN/EOQNJN=MPE1TZ +P*M8nPEh5kQ'ISsOH#6[Ocu#mP*(ccO,]*ULkghDN/imYQ(+;3O.FM^p\k'erW<-!riZ;"rWE,s +r;HQm&cMS$q"t'irV5m*P(/%0F)5LgAd<$cD/F0-CMWi_#AIjbB4kmjB_uMsCB&)8C'&0cC?fR7 +D#S2OCi+"fD>S2SD/X'hKXKY+r;HTn +s8W(Ls,I&/~> +f)PdK&-)Y.rVulqrVQH_fs7!<\Gj +g&M*O"98>urr2j]s8N&tr;6-?Z^IMs_83n!]t_=r^;%J!_8*k$^V7Cp^;%Fr]"#Gj^q[e+_nNds +^VIUt]=bhi]"5Mc]thJ"^](qO^q[Ut^qd_`^3.-'^qI:l`m)cH]Xu"t]=>_p]Xtqo]t(\f_8*e" +^qme!]YDG(]tM8!_8!b#_83q%^;%Ir]"c%n]"c2%^:M"p_8!_!^V7J$b0%T4^W47-^r""+^V7Cp +^:q4j^r!gu^W"71^VRh%^Vn(-^qde%_8*dup:gRA'#;5o]"5VcXJ3&RnbE%\rr)iqrquourV`u# +s8E#ur;Hm"rr)lsrVl`prVlg/rV6*;UR\Hm\%0/a]"5G^[^Q.Dqmla:rj`*?\$tb7s0q=(rjU=c +!4Mm:s0i-@\$rfSqR?L5s0i'>\$tq +g&M*O"98>urr2k@rr;usr;?0:Weu_)T:;..O-5ZdMMR%CLkgb?L51P=Ll@@RMMR4RO,fBfOc>9X +NfT3YMMd@NM2@+IN/j![NJrjVNfK*YO,o<\N/`gUNK/pQN0Tp'PDbi;EM2R@ROd;T.PE;Tfn+chZrr)iq +rquourV`kus8=DHrr)cnrr<#ss8Vujq>C9lrql?5PC\C6Ec,W*B4tsmCM[j'BkhEuCAquOC27Ns +B_uNDBEN!bCMMgD#&7phChmg$ltZ]PMmo)&=^rVlfpr;M9IP5g%~> +f)PdK(B=C5rVulqrVQH_hRoGQ[(sJk]thS(rkJKL?GaOp^q[Us]YD;"_7dIp_nj.-a2>X(^;7_( +^V.@s^V%1j]Y;5!_8*h$_83n$^r""+_8*k$^VRe%]Y;>,ahk^'_Ss7$_o'1$^VIRp]>2>"^:qG# +^qIFtaiD*/qSOJn_8*h%_S +g&M*O"98>urr2irs8N!;r;-'B]:Ye)^qdUq^;%Co]t_@u_8*k$^:h1l^&Gbk]=GSj^V7V)_7[@l +^VR_!]=bkk]",A_]YD7s^:h7q^V.=prkL&!^:q:o^VIOo]Y_b1^q.+m_n)+m]"c2&^Uq1q^V7Fs^V%4o_Sa's^;e%h^]2+L^](qf +^V7J!^qICr`5KI)_8O+'_ns1%^r+%*^V%1l]tXHYs1SNK^AbhG^(7ic]sX`6]\W/Rr;HWnrVlfp +!rr5tYlFb&!<;ur$NL,(s8W&qrVZWmrr3o8q"`R +g&M*O"98>urr2j7rr;urr;6'=[??N=Tq.I1P*D)fMMR%CM2-lbL*_P0N/`gTLl@FUNKTNeMMR.K +O,]$QMN!ILLPL\CNK0!WMibk:rVZWns8W&ts82Tequ?ZpqtJO)KSOqsE,97fB+S`kCM[d#BkhBuCi!s+DJa1c +CB%uMC27U"pM0kGCMRbTCBeNiCi*s'C@#^FC27U!BkhBsC2.HrBkmQ[&Sc#nB4tskBP;-rCMIX# +Ci!nbC]J8MD#J,LCAr#KCAhoJD#.rIC=I&!C'&0eD#8#JD"VTDC'&0eD#S5MC_CJsAn5C\AS,:X +E-QkgJr[P(o)8Ffr;HQlrVhBJP5g%~> +f)PdL!<;urrqmT0o]4#hT<>lD]Y)(u_7mXu^qde%^q[V_]iMk__SX(#^V[^u_o9L+]=l"t_7mRr +_8*^p]">Yk_8!b#_83n!^;.S%_ns4(^;%J#^qIFt`l5^)]YVP$]Y_P"]Y;.p]=bnq^Uq+m_8!Xq +^raX0^&GhH_IC?r^;%Cs^V7J!^q@:o`5]X,^;.Lt^VIXu]Y2+s]t(ns_SEq#^V@Lu_83n%_Sa=. +]Y2/!_7dLt`PK=*^V%1p`5KO-^:qCu_8*k#^VI\&_SEt%^V.:l]Wn-.`8U=`rV?Eos8N"ts8W'' +s8N#rrVlisrr*Q.q>0s^qr4ue`mif%iS`\SjlZR*$0C70k3(pkkND(,kPs]4k5sf/kIK^VkN:q& +k5aZ!k5sf/kJ64(ki_*ik3(skjlGLclg3p#l070Zd(R$CnFuhVqYU3is8DnIs,[21~> +f)PdL!<<&trr<#sEVoCg`M]?1]t_.j^V7@l]Y;.q^q[Xu]tCti]Y;.r]t1nm]Xu"t^q7.h^;7Rs +]"Gel]"#8\]=u%n]tV7r]t1kj^VI\$^:h1m^;.Ip]>);%]t(_h_S*Or^q@7k]tCne]th=l\\5bk +]"5Vr`O`\\^AbnN^V.:n]`,T2^;.Io\\>u"^V%4n]Y(ql^:Utg^;%:h]u.Y"]tD%l]Y;.q]tV:u +_S<[o^VR[t]"c.t^;.Fo\\H"u^V.4i]Y(rV]E>j^^q]i]s1AZM]s+0.`T-RcrV?Eos8N"ps8Dp2 +rVlcorr2rtr:p*AVOO]q\[o>^\Gj#M\@8rT[C3QS\@8rU\$rcS\*^^*[fEr&\,Nl;\*LR([fX+M +\FI-,\Gj#=\G`r<\G!K5[fa1M\$kn;s0r' +f)PdL!<<&trr3Z2rVH-D^RL7MTq7O4Pa%8gMi!5gM#W66L4tA:Ll77QN/dKCh"(:>q>LHqrr0)#rVd$" +r;?Nms8W)t0)PJ@r;Q`pqYA[0Ko(A,F)G`)AnYmnCMRZuBPD3sCi+*0Df9K.BkhBuC2.O"o4eGC +C2.O!C@>s +f)PdL!<;urrqm-#o]ji,SY`j4]=e*W"2;Oc_#;"J^AbfQ^;%M$^V.Cu]tD2!_7dLq^r!n#]Y;1s +]Xk_e]YD4q^;%M#]t;"o_8=(*^qROt^r!n#]thP&^:V%o`4s"&_S3[s^V7Co^r!gs]"Z"q]Y)&# +`k8t!]tV>"_SEn!rk:\3^;.S"]=Yeo`50.#^:q:q_8*as]Y;.n]"c+t^V7Cp]Y2(r^qRS"_o'7$ +]thIu]Xtqq^V7Fp]">bq_na""^AbqJ^]1tK^VRbc_@=>q[_'AgW1C'9kOeTKq>LHqrr/qts8E9' +rr2lprr<#trY>A,qYKp]ijc,*e`#KEhVdDVl07Enro=OMk2kafkN:pik2tddjQkn-jSIs +f)PdL!<<&trr<#s')V=cd&rn5\%fJb]tCth]Y;1rr4ZXR]=bei^VIOp]t_1j^VR[s]"Gbm^:Uth +^:q1g\[f;b]tD"k^V@Ck]Y;.r^q[Ur]Y2%p^:V"k_8*^o]"c+q]>24p]"G_h]=P_l]XYJa^V.4i +^;\%%]"P_g^VIY!]Y"0U6+ahF^V.1g]YMD!]=Y_g]=ktn]=PSd]t1_e^qRLp]=YYd]t_:o]t_D" +]t(bh^V%.g]th=o]XkV`^;7Y"]Xk]R]`#GU]Y;1r^qmk#[_'DhW1C*:kk4cMq>LHqrr/eprVd`6 +rr)fprr<#rp\3FCRAI@*]!o,W]"G_g\$l:D$F[FQ[^EKM[C!?MrjMm9m^N5)!4Vg5!k5VHh7!Qr +\$rlV\+-s3\%&rY\@DOK"h;+R\@B$A\Gs#?\@8rUX1/,;*k/Yg[^EQR\[])T[C +f)PdL!<<&trr3W1rVQ3Kb+t#XSY2=7Q'%,eN/IRireE.\L5:YCNfT-VMiN[ONfT-TLP^qKMhd%C +Mi*:DL5(J?MMR(GMi3CGLl.+MNJi\nM0Xu;MMR(GNfAjLLPq1MLlICNLPUhELkgkHM1pY?Mi!4E +MNX'VLl@7NNfT6\Mi*FOMi*IRO,SpPMia*^Mi3OQM2@.KLkgbAM2-eANJiXLLkg_?M2[=LN/j!] +N/*7MO,SpPNKB-XN/<@INKK?`N/NXSNJrdR'oIg)Mi*FPO-,NaQD:.:N1n5Mo(i7[rW<-!riZ;" +rr2ftrVlisrr*f4q>:-is8Dcfet7VML4XVgC1h0oCM[d"BDuKRB4u!pD/F**CM@EoBPD-nmV)Z7 +p1aPA!,;@Gs(MRMBk_8KC&_iKBkV-kr+Gt?$"[^\AS#LcA7T3KAH?FWrb)7Es(;=DoOeMCB4u!o +C2%EtBk[BX!,0\ms(DFICAqoKC2%DWCB%ukC2%?qC2%?pBkhI"B4PL_An,7aEccVXL5MYIkk"]L +qY:'d"T//srV_ +f)PdL!<<&t!WW/ur=o2'n(P:DT!>u@]tCti^V@S"^V.>V^'VQi^q[Uu]Y)"prkAoX_8*h!]Y2(p +]t:tj^&>\E^]V?b^;'T]s1^%t^qmh#]t_D!^:h4q_SEn$^q[Ut^qd_!^VIUs]t_@t^:qD$_nNgu +]tXK^!5JNI&&5il^VIUu]tM.q_SEq"^&G_H^qor_"MMI^^VBc^(;7Ao^;.Iq]t_D"^:_.o^qRLr +^;%Crrk/NM^r!t']tXK\"MVR_^:sT]'Z%]*_nNFe_mZ;5\(C!?qYpNorVc]o!rr9!YlFb&-ia2F +rVlfrrVcZlrr<#ss8W&pqt]pYjM7k+e)K9Ah;@8Vl0@Ejir%j:jSn6Bk2k\'j6Pb+iqh^9ilC-Z +j8A!;jTOZ+jlGM%j4`Poip>_-j5T(SjSn3>j +f)PdL!<<&t!<<&t-iNu:mb51BS$0H5\[o;]]Y;.q]t:qi]tM(k]tD"k^:q:n]t1eg^AbeT^;%Cq +]=PVf]t:he]"@pRrk8KJ]=biU^Abeq]Y;.p]Xtkl^:_%h^;.Iq^:q:n]=u"m]Y2%m]"5Sh]t:qk +_SNms]XtiU^(\2m]=Ybg]=bhj]=PSd^;%@o]=\'T!PZ>J]EZ!\]=PYg^&GY[]=PVe^:_%h]t_=p +]"5Pf]=PVe]t:oU\cfXY^V@J[],\Dm\[oAa]Y2(r_ns'l\\tnLTt/eApA4dgrr)forW<-!rh]Yp +r<<6"rVZWmrr*T/p[m:JR\$ju\$`TO\\5bk\@&[B[/[Q6Zj +f)PdL!<<#ss8QA +Ae&BaB4kghB4bdhAnG^iBDcH@B*)[VAaa71Abp$=AK#2mA7]=_A7f@^@q9.^A7fFdAS#IdB4bae +AG'L8A7]BOBE)WNB4Y^gAnG[fA^=ugAHug\AnG[hAnLgOs(3]nB4bdiAn>OcBPMRe@Ua8! +FFJjnN3(OrpAOseq>'m_q>L?lrIP!3s*t~> +f)PdK!<<&s2?3[Rr;QZho&@WdR]3g0^qRFl]tqV&^:V%k^V@Iq^V@Lr^;%Iu^:h4q^V7J!^qd_! +^:h5Z^'23a]tV4or4`6Ir4`BK^V@S"r4i9G'u7T!^:q@u^V.@r^q[Rt_8*h"^VIYa^BD9c^q[\^ +^])"X^VIV!^q[Y"^V7Cr^VKi`#f+0g^V@Lt^qTc^#JIjd^V7Cr^](tI^]2"H^AktI^(J,q^VIRt +^V@Lt^qd_"_8*e"rkSHH(V[Sr^;.Lt]t;"kVjj[)hs^=:rVlfor;HQqs8Do#s8W$'s8Doorr2rs +rr2lrs8N#tr>>J/p@ROjYHQ.)gu$uHiT&qYj5K"YjQ#7uis"N*k2kX_m,S9/jQ,@tjSn3#jT"9; +jT"98jSn3>jSS!8jSS$IjQ5I^ioB+\j5f:]j8S->j6G\-j5f:]lfA'*i8jmts5XRLj5T%UioT@e +kN1e(jUpS:iRZc2[C"0@pA"O`rr;rqJcC]/J,~> +f)PdK!<<&ss8W,t2u`dMn`%NaQ_q4$]XtY]]>).r]XbVc]tM%i]tM(j]Y2%m]Xtei]tD%n^:q:n +]Xthi]Y(kh]DfJ@^&PhF]`c!]]tV5Y^&P_[^:h4m]Y2(n]=bhk]t;"n^:h1m^:sT["MDF^]tXEX +!5/ +f)PdK1B7@QrVcZkqu6QfmbP[JM3OX'S=#G!O-#H`Mhm.FMMd4HN/W[QN/`jWN/ELPN/N[Urf%SM +Mi*FOMi3INMMmFON/WaTN/`hqN!,&tN/`hpN"q80NK&mTMiEaUMi3RSN/N[UNJrdSrJ_#?MiK_O,oB`rf@>DMiObo[Bg$SP2rVlfor;HQqs8Do!s8Drr +qucoss8W&s(B"(-s8N#oo%gd8I>*E'GAq;1BP1pgraQOL@:E_WAS#C^@Us"Y@UiqYA+!k8@q9.^ +A7]=_AS#C_rakq<"_D:XARf6L`AS,QRAbp!GARo:\A7]:^AS#EN +AHQISAS1pQs(2OJ@qB4^A7]:]cXd&c#@qFWA7]@aAb]m;AL1r"A7fFa@:E_YBkqHsB5)$mC2n32 +Jqn`4[G:?Lrr2lmqYU-crVhBJP5g%~> +f)PdK!<<&s9`P+ir;QZhoBFc3SYNI%`5B%]t1hh^V@Iq^VIRr]Y;.q^:q@t^V7Ft^V7Is +^:h4o]tM.p^:h7o^;%Fr]t_D!^V7Fq^:sT]"hq[a^V@M]^Dsu&^qRLp^VIRs^VR_"]tV7t^qRIp +^qd[s]YD8\^]2%J^]2"S^V7Fs^V7Cr^q]l^"2DXd^](qT^V7Fs_8![t^q[RqrOr`S^;%Cr^V.7m +^qd[t^Abna^;%Iu]t_D!]Y)"p^VIV"_8*n'^q[Rqrji`N[CjT!XI#?_e*-Asqu-Nnr;?Nl!rr5t +YlFb%#ljl%r;Q]qrr2oqs8W)t)#aI4r;$$Oe[DNodFmI;hqd#>gu.2QjlQC"s5X:DjQ,=ej8e6< +jT"j8%d7j8A!lJqs*pZ2#/s5X:DjQ,@pjT"99j8e67jSe*_jlGO`inrVOjlksmjl>Ibl0.-UaOSS=Z-r"6 +qY^ +f)PdK!<<&ss8W,t+TD?6o'"Q.R\-al^qdOf[_K\o]=>D`]tM%i]tV.j]"J$U#/%X`]tD%mrk8?E +!kZ+Yrk&6ErO`cV^:h1l^;.Ir]tCtj]tV4o]tF?X!PH/G]ck&%^:h.i]t_7m^;%Fr]=bkm^V.7k +^;%@m]=kql]tD"irk/9C$,!m^]Y(kf]Y1uW\cBDB^&P_R]tV.m]t_:n]Y;(l])B;O]Y2%l]Y1th +]Y;+m]"@sT&%fKf]Xkbi]t1be^:h1k]`,SI]Y2"k])K5Q\$irk`2f5o[aXF1p\Xpgrqu]mrZ['d?R +]XY)A\$MHo_rC4[qu-Nnr;HWm"9&5urIP!4s*t~> +f)PdK.KBDHrVcZkqu6Qhn`A)uOH>p&US!d0NKf]hMhm.FMi%=OT1@`OH5HaOH,<^OcYT_Nf]<]NJi^RNJrgUNfApSNJrdPrJVnXN/`dSNf8jR +NfK0[O-,QdO,oB`NKB9bNJrp[NK&mTN;eh:N#.A.Ll..MNL-TBQ%k:!bi8-cqu-Nnr;?Nl!rr5t +Y5eJ"#6"JtrVlisrr*l:rVZTnrr2ifj2@=5IXurqGAh)$?!^uNARf3KA,^!G@UWYQ@:3MQ@q&pE +A,g$ +f)PdL!<<&t!<;ur*r>Ttho2UgUT_GP^pUM_`59=']=Yem^V7Cq^:h1mrk8TO^qd_"^qp#cs1eKG +!l)OcrkA_4^_8*h$_83n#^VI\%^qd[r]".gO&\,9Y\@/l^ +bIO"'VT7QZp%eObrW)olriuM'rW`E%rr)iqs7cNmr;Z^2qY0L:^T"KWf](rLh;$fAhrNnZjQ#4u +huVitro35'%H?F.jQ#:]jQ#=^j5T(lirJ*5ir\6#j8S$@j5f:]j8S$?j5f:]r8Ik>ioB+\ro3k9 +*TH,>jQ#=^j5].\jPo1[jl>@\j5T+ZjQ#7Zj5f:gir\6#j8S$>jPo1sjSRs;jSe*=jSRs:is"H& +j5T(Yro3t +f)PdL!<<&t!<;ur-MmE$hSZ7^TrboE]s4fR_8*ar\@K5c^:_(i]Xt_d]=bei^;%@qr4W-Cr4<$C +]tF?Vr4E'D^AY_F]_fAB]_/u<]GS>r]tD%m^:h1m]tV4o]=bkl]t:ni^:h5Y]`5\F]FMWf]Y2"k +]Y2%m]Xthi^A,AH^V.:n^:h1kqn)pBrk&cR]"Gbk]tD"k^:h1m^:h2Y^&P\F]Y4[/[H5['fS6"LYVDZa9G6 +$a[4HZa@*G['[0H[/@61[JI91Zh:^*[/dT0[K!W6[4&Di[^NNIZF.0P\[8WH[(*ZUY,Sh3Q`/6m +nb;t\rVlcnr;HQls8W%Ks-*J5~> +f)PdL+TME=rr)clqu-Nko]t;ITTG5"U8=?Mi3PmN<#"8NW4t8MuJY< +Mi*CMN;eb6NVnb7NW+n:N<"q9N +s,[/>)2sE.L4tA;Lkg_@N/a!lY+UK$S\Nk@o_JFarW)olriZ;$rs8DZV +dA2;:I"I$"EbT&m@:Nq_A7T7^@q&nX@UNMJra,b8@:3L?@K0^7@fKj@@UW\S@UNU:@K0^;@:E\S +rF-1D@U`bT@q/qW@UW_Tra?(?@UrqV@UNSQrF>b7rF5k;A,'UKAn>LaARf1YAS#=YA7]1Y@pi_U +raYt;(Lpud@q&qX@UinW?t*SR@U`bS@UW\S@JjLL?X[DQ@:E\S@U`_R@:3MQ@: +ci4(Fs8W)s)u9$de\7rLT!H8N[^!?V_83q"]"Gbl^:V"j^&G\E]ahck^V7Iu_8*n&^V@Ls^&,PD +^&GbG^B23c^])"K_>D"J_=YMC_>1kH_>M+K_>_7M_<\o9_=bSN^VR_#^:q@r^:h5Y^AkkM^;.M! +^VBBU,Jh11^q[Xu]XbJY[^WfW[^iu[]YM.TOIa&9k3_sArVccpri,qrrr2lrrW<,urVZ[ErVuor +qY^9gq"3alYH#7biSrePhr3PRk2P4Uio/hQhr*JOhr*JQiSj4a!9iSi_RiV;F3iW%m;iU5_*i +ci4(Fs8W)s)u/m`e%;EBS$0ZCZ`gdK^:q:j\%0/c]=>A^])K8?\dlBd]tD%l]Y2"k]=YYc\biu< +\c02?])oXW]@FOo^"^1,]=beg]"5Mb]",BM])T;E]">Se]=[UG+hPD#^:_%d['R-I[^EQR\[fAf +];(CV][l33q#(*hs8Dqfs8;lrr=Ju+qu-Kkq!m7TS<'2H^:q/W\,WfF\$E0B['R'D[C3QR[^[JmQ5[f3WBZa-pD[C*?HZF%!FZMV!+[/%$/['fn?!k#DBr3QF1 +$FR4GZa@'G['R-Hrj)p:Za@'GZa7$GZi79(Zhq-0[JmQ5Zi7?W['mHP['R*H[^< +e,TCG!<)op)ufg2n`8*+RYclhVP93/NKKEhOc53VN/ijTMu8P;NfB$WN;eeBN/`gUMi3IMM>N21 +M>iD4MZSiqMqX*iNW"h9N<>,tN/mLj!0I2@"H\\+O,a-ts,6f6$B'k%Mi*CMMMd7Ire^uE:rK$u?rJ_hUM2$\8K8#,=MN*a^R\HO;J<7.dip?IN?XR5J?t!MR@:3JM?smDN@:EYS@q&qY@q&pGA,g*bA78hQ@q/qS +@q/kR@:!8K@:E\R?XR>P@:3MP?t!JO?=7/Jra5t?XR8K?t!GN?XEP9rEo>- +s'H1B?XI2J?XR8K?sm;Ipg=&-*FE2]?X[DO?X6uG@:NhZAnbssH\$WpJ;C;Vkk"`Nrr<#urr<#u +rdk*4s*t~> +ci5Kns8W&qr;63Qi6o-,Pbl".]A +\co^W]"GYer4N0H^:pke$baM)U +hUp]FjlGI]hVI#Fq;MA6!9*S0!9i8N\Tj5f7Zrnme8 +rSmh8s5F.>io9"siX+Z)j5].Whr*MRro=%;(?FN7iT'(_iSNMPio/hRiT'"Zio/hRr8A7Ij5JtW +jQ,@[j5JqSiSieVj8S*Cj5T(Wi8FUo"m"e*iSihjiqh^7ir.j9irA!:iW.s3iWeB"i8`qZir7s< +ir.j9i;_gGhU0U'ilnL!][c08q>U?rs8Drrs8N#trrE%Ls-*J5~> +ci5Hms8W&qrVH0NhTiKtOJBA#\?W?I\@]A_\$rlY\@8rW\[],X\@B,^]DfAI\[o>^\@B#W[f3c9 +[KjW]">Pa\a[31\c',> +],S>n]=PSa]=YS][^`cS[C*HN[C3QR\@T8^\@DOL!4hj8qmcjA]Y2%lrj`cU^;.Ck\?r*!R^(,o +lLOfLrVccprLNudrW2uqr;A5Fq=E^lXdGQX\%K;[Yd(OC\?Dg5[(!KO[C!rj2a7[^H+@s0DX1!OT96[KVG[/RH5[/RBNZEL@5Z`g7) +]u[[QQa>#sme-JTrVlcnr;6EjrVhBJPQ-.~> +e,T@F-N3l?rr)`ekM47`ObAjkURI:'NffNgO,T!UNJrdRNJrjXO,f3[rf$u[:ZA?!^iC?=*Ve8@:Iq-O20?XNM5#[LbD?sd;K?srtBs'Yk9"^tbF?=.+=@0L%G?XR8Jra61B@:EYS@UW_U@UW\T +A,^$;@MrQ\@UikS>[:]E? +f)PdL!<<&t!<<#ss8^VBc^)8*Sq^V%7l]"Go!`P8aZTTbhOak#M@q#(*^ +riuM'r +f)PdL!<<&t!<<#ss8]\[oAark/3A"1l+U])K8> +])T;@])B/>](Wc8]`,PC]E#SB]E5^X]`,PC]`5VC]`,PB]`,PC]`,MI]Xthg]=PTC]DoGD]=bfU +]*,dY]=bfU]DK2;\c')?]=RpP!4r0As18*>rji3D]"5NQ]G.re]"Gku`P8aZTTbhOak,SAq#(*^ +riZ:srr['TM4s0D^4rNlO0r3HC1nZr;& +Za9Y:s0M[0r3QF/rj)U3rj2X3s0D^2rj)[5Za9V<)76]SYH=n0[^N9:^W3XIS]'=GoD/@`rr;ur +r<*'!rr.KKP5g%~> +g&M*O!<<&ts8N3#s8N#srVud.q!@%l_ki?MQ(FeCPE(]bOHGY'NtIM9OH5KdP*(igP*(ieNJrjU +rf-f6s,-o:MuAV1NRa$nNK0']OcbarOT:LBOTLT(NV\\6NVnb5MuS_?NK0'[O-5[uOWT[IOcYWb +NK'$_OH5E`PaeAAT9bUtJrH_He)Kikr;H6dY5eP$!WW/urV6@:s8Muss7u6Je@(TmIXZiqD.$XY +B4ta\@:Wq]B4bUY>[:]Cra,Y3rEfV6@:B.E!+G_5s'Yk8qHsJ6?sm>J?MRq1?=.,MqdKM6s'Z+@ +@:rEoe9?t*SR@K'a;@:K4ErF-+B?X-iD@:3JM?X`nB"^tkL@:3IA +@/jXZk-6B5_R'N1,ZLK +bl9Ess8W&ooBYAd`NZ#,W4'@K[^`l[]tCtg]"Gbj]=YYd]=bei^:q:o^;%Cr^V7Fq^%f>A]`>eG +^]2"J]ro*L]b\>s^V7It^:q:p^;%Cq]tV1o^V@Ls^&GbG^%oA\]tV4n]"5AVZa[KY^r!glURIR; +XioARl1FoOrr<#ur;clsrVultrNcJ%rr2lrrWN9#rr<#trVc^Ls8MupqY9XIg;:%mYJJW:e'm%0 +j6,[ijl,+TiSreQiSrkUj5].Zj5JtVj5].XiVDIBiSrkWio9"YioB(YiSsans5O%:!93e4$f^+( +iSWMLi8WbVj8S$O^hqd5MjQ>^be'c:CX1HdBme?\ZrVQNjqtg3grVc_Hs-*J5~> +bl9$hs8W&ooBP8a_l]N#VR3qBZaI9Q]=PP_\@T>b\[f5\\[oAa]Y+6U#J@[\]Xtee](io;\cBAA +]`5SD\ur[F\e_oj]Xthh]=YYd]=bbe]">Pc]Y(kg])K>A](rrV]">Se]=GAVZF.6V^qm^iUR@I9 +XNT>Tl1FoOrr<#ur;clsrVultrN-##rVuosrVum"rr<#trr")@s8Munp[7(h[@WYOWjfF?XKSq8 +[C*?EY-+t4Z*L[AZa-k4Z3@M=ZE^X +Yck:9Za@'EZ*:I9Yd(M5Z2_-0Yp$?WZ*CO:Z*UdBZF$sAXfen4Y-5+9YcY"2['d9HZa@'EriZF. +Z*^n;ZM^s6ZEUO:Z*:I;ZEjJ7#I(D7YHY:;ZMq31Z3ISZ2(^*YnaRLZ*:LYd(OA[C +gA_9Ss8W)pru1k9s8Dilr;-$LhUB68Oc5KrT9k_'Ocu&pPQ$^EP8BCGOcklkPE_;qP*(oiP*(oh +OcYZeOHB@%s,[5CrfR>EOc]R)0T_EZOHGZeOcb`eOcYZeOH>TdOHGZeOcb`fOcY]fOHGZeOHGWd +OcYZeOHGZgOcf-rs,m>E'TnK=Ocb`fOcY]eO-#NeOHP`gOH9C'$BU=0OH5NfPEM)krf[;Dq2uYY +P*2#lP)kN[Ng#m'Tq@[/KS>;Y_pmH*p&+aes8W,t!<<&ss8N)tT)\`f+o:ishoVmXHZXU`F_G5o +AS#LdA78hQ@q9(W?=%#I@:3LB@K0^>@Us"Z@:<[E@K9p;@K^1O@prgD@Kg1L@UWYPq-a;3@Js[D +A7K+Y@:E_V@:3MQrF>t>@Uf=F!af5=ra,V1!+5_5)IHfX@:A,g!B@:3MP@UipIAH--D@UWYR@q0!EA,]pN@q&nU +@U`bS@UinW@q/tX@q9+[raPn;"CY\G@:9(C+^e_f?s[2J@:EbY@piVK>?P3DG'eXqN.d%\_qXGM +rVlfqrVZYGs,[21~> +bl8mds8Mupp[RP,f#tV#Q^OVM[(O;m]=52S[C*[^NTP[C3QQrjVm8s0i'>\$u7Es0ioV\$`TO\$`TN]"Peh\#G[M +Of#M'eD]]^pA=des8W,t!<<&ss8N)tZN'n&rr)lr"TSK#s8W)squ.c;r;?E_mc;g*Tq8O6hr*5@ +gu@GXk2YCXiSieTi8N\Si;2C9i8NYQhr".c%cQ@(iSi_RiS`SMhr*GMr8@V4s547@h;7#EhVd>N +i8O[n%,]puhr*JPio8qTiSa^ms5Jr8@V4"5r(ohYuF4hZ)I^i8 +bl8IXs8N#qp[IG(e]5(lQ'\2DZFdlc]!_LC"gYD>['R(;ZOaIP[C!9H[C3KN['R*GZa9M8!jf2> +rO)[4e$T1_kdCGtppC:4[Bm0FZMq31ZM_$/[/IB4[/RE3Zi[YB[/792Zl6?ZZa@0M[Bd3N]Xtba +WK`4#V6n.ij6Q4.qu$Hns8W#ts8MusrrE#!rser,s8Muqs8W)us8MuqrVdrLZF$sCYHG(5Yd(L>['[-Cr3H@-!3lI-!3c1%!3cC+q6Bt(p9=Y&Z21d+YQ1s,Z3%;8Yl1j, +Z3.A9Z*F;4rNZC.!O8s0Ym%G=D +]"Z"mVj3XQb1l1PqYgEnrr2fp"9/?#rdk*5s*t~> +gA_9Ss8W)ps!dpHs8Dilr;?s,R5? +NK*mqqi(Z9NK*pt!0-uZj#*4e*OH5HanrEd4r/Ui;pl>?5$]L"'N/W[QN/WaSMuJY:Nf]>$ +NrG+>Nr4qOT(CVOcu-$StDO7Is$:.WOpL6kj\?Fr;Q`rs8;rtrr)ls!<&Mhr;I`7q![=t +_Ole7s'c";@/OF5 +@/aL9?t*PR@K'd:@fKs<@K9j8@LQ[Q?t*\X@q&nW@UipHA-6=PA7PRKrF>kLI#[q+L@UNYS@:K4Gs'cpT?XRDXBk:a\?!q/WG__6.G(H6ueE$)orVlfqrVuos +rdk*1s*t~> +ci5Z*CU>Z2V*0[/[H7['dlI2hZ)C6hV[5IrnmY1!SuQ1gBQBeh;7#Gi;MO@ +h;$iBhVR2Khr!ALrn[n;hV[5Khr!AkhZ;ZmrSAsYhV[5Ggu%#Eh;I>QhVI&Ghqd/Ghr!AMhqd)F +i8lC*hZ)F0h?VlnhV[2Hhr+Lk#i=IrhVI#Ehr"@g"5htl +h>Z:2h>c=`hqm5Ihqm/@f\GHGio&\Ni8NG8aht-P[*%1cmI^2NrVcZkqYU0dqY^ +eGfULs8W#r'`J(2rVcWfnE/Z]aKqP,R@KtKXK_]/!3lF*"0f&7YPta:ZEpjAYctF>ZEga>Yd(C8 +r3-:,Yct>0YlV/8d]rkXkd(5npTak,Z*4)0!3c@*riuI.s0;R-s02X2Z*F23s0;U0(pUBS[^NQN +['?X+SX#4tU:JFqg?8##qYTpas8N)uY5eG!$N9u's8W)us8DlnrVccq&c;1dk1[\KQ'eJZ^qI1^ +ZEUP0YlCs0Yd1S5YmReAZ*L[?ZEg^=Z1tR'Ylh27Z*=/2s0)U1ZEgb3Z2h0/ZMq-/ZN%01ZEsM8 +!O/d,Yl:s.YlV/8r364+!4)O-s0;X0rNHm;Yd(I9Y-G77YHkRCYck:9Z2V!-Z2_*7Z*(77ZE^[= +rNQI1Z*CV6Ylh58Ycn&2#.(\BZ*L[>rNZC.s0;U0r3?7,rilU3Z*CU@riuO/rj)R.s02X2Z*OA6 +!4)C)s0D[0s0 +g&M*O!<;fm!<)lo)Z0="k2"M'X-STtLl77TPa%GsOcb`cO-5WfrK@2E$BgO6P)tcfOcGK`rf.5C +O,o<]O,f8"O#W5^O-,TeOcb`fOcY]fOHGZeOHGWdOcYZeOH>TeOHGZeOcb`fOcY]fOH>TdOHGWd +OctoiP*;+!P5g^YOctujOHGZeOcb`fP)tcdNfK1uNrP.?NW+qGO-#NfOcb`fOckihplZPXP*D8u +R$sG1QBI5aJUW9=Yf"`:jRDp@rVuQis8N)uY5eP$!<;los8W#rrr!N0qt'.7f=[K!FF8h!Is,aF +AR]-I@h`HbA78qV@:3MQ@UNYT@q&qX@UW^?@fKm3@fKjQ@UrtY@UW\S@:[1ZKBkM!f@q94eCNk;PH'c"di9U%4rVlfrrVuj#rVulsrr.KK +P5g%~> +bl8jbs8MrorquKYkhsq3^q$S=P`h6"VQ[5,Xfen5YHG%3Y5YX&Yl:m2Yck:7YHIc+s/uC*#dCM: +YHY79Ycst/s0)[3Yct=8Yl:p-YQ_57Yd(F:os+P$'sY!FW1f]DNKggXt*0gYUfCgtgfAgY:N> +hVHuDh;/"co%j?$&Dc-sgYCT=gYL`Ch;7#EgtVh`%bo^lg=k66gY1B:h;-i?rS7G-!8@G-rn[V0 +s4n(1]AfA5B?g"P?Ah;-rFhVA(a"5Vhih>Z40gBZNih;$fAhVS4e +rS@b7gtgiCgtVe]"5DP`g]#n2gY1B7g"P0Zg],t8gYCQ;gtgc?gtLN;rS7D.s4de6gtplCg]$%- +g]?6frn[V0(tmNngYCWAi8 +eGfULs8W#r*<#p:r;HWmp@%5&d`B56X.5B9Od`/LYHFq-Yd").s/lI+YHY50Y5YX(XoYZ-qQ0k$ +Xfef)XoY`/d]WYRkcb#hkcXuhriZX2YHG%1Y-+t2Y5,7?Y-5(7YctC9XJ__[P)bg)\AH;8hWF4s +qu6Qop&>!k!<0/$r;J#@rr2rtrr<#trVZTlr;HWpr:][Ij4D5QSsQ"J[^roQYHP4:Z2Us5Z*:F7 +YHbC[/I +g&M*OJ,fNHr;HWprr2rtrVZTiqu6Qfn)rNQ_mun@NIlP*K8u7aP`h5rQB[StQC!o&Q'R`$Q'RZ! +Q'@GrP`h5oP*;)mP*;&lP`q;qPEV8sPa.MuQ'IT!Q'@Q!Pa%GtPa.JtQ'@MuQ'@Q!Pa.MuQ'IT! +Q'@MuPa%GtPa.Q"Q0X_bQ'R`#Pa.MuQ'IT!Q'@Q!Pa%GtPa.JtQ'IPsP*;)oQBmf$Pa.N"Q'M02 +)jQ_VR@'A1R[91rLOju3R]j??ce@IHo_\Xes7QBkrrE&!s8W''s8Mupr;Q`rr;IlRdAS#LfB4PL_AGp!@@UiqZA,^$=A,g-?A-QUUA7]=^A,'U7@fU'=AbopA +ARo=_A7T3KA-HIRA7B"Xrac%=raI3aA7]:^AS#@]A7T.X?t!JN@:WhT?XR5I?=@DR?=[\X?=.2P +@:9%Bs'l":%V'$[@q&hQ?t!MS@q&nWrac%='4bZbAS5OaAS#@\@q9+[A7T1[AH$*=A-?CO@UipI +A-?CO@q&sIAH-3I@q9+[A7]:^An:mNs'u1BA7YOH"(GePAc6-U@:*GRB4bdlChI?k?t4/+R_6r" +l1=`Lrr*9)rr)cmrVlfrrr.KKP5g%~> +bl@Y@'E.h)q=X7Cj4hr"]!/32TqJ'QU&L\aTFINaSY)LFTUqdJStD[Lrh'OhTV.pLTV%mMr1F"^ +!M?%aT3\+]T:hgLTV%mMT:hjLT:hgKTV%jLT:_dLT:hjLTV.pMTV%mMT:_dKT:hgKTV%jLTV%mM +T:hjLTV.pMTV%jLT:_dKT:hgKTV.pMTV%mMT:hjLTV.pLTV%jLrgs@eStDUGTDkM^T*h0_T:V[J +T:_dKTDbDuT:MRGTqS3UV5C5q]#;kDhs0e,qu6TorVuosrVultrN-%trr2lrrWiK&rr<#trVc`p +,6.W?r;HWnqtTdHiRuAaWM6?!`miete_/^2f\"p6h;$`+rS.>*mFqm"f\5'4g"P0Xg&0J* +g"P-4f_sG$fEBgYg>(K_gBcNdg>(N>gYCT_h&YA.gY1H>gY:Q=g=k<8gYL`>f@\j5g!nI$gtp`9 +rn7A,rnRM-"5MYdg]$".h>Z40h$)TfgYCZBrn[V/!8@G*!8.5&!SH-(f`KgXf_jG&fE^*`g"P07 +gtVh^"PMM_g"?;W"PVP^g=uPY,1tT%f\"m2g=b06h;$`;f@8=%gt^AnY,J;%]#r^bl1FfIrqZ`o +rVZQkquH]ordk*5s*t~> +e,TIIr;Z`p&H2M'qXs@CiS)Vr\Z`!.T:c+V"JDk4iPa.oD\%T;X[^``PZa7'I['I$F[JmQ5[JR?2[/dT* +[K!T7[C6(BrO2a8s0_j8!k,SIrj`!:#e.7N['ds0_m9rjMj6"LbeJ[C6(B +s0`NI\@AlMZaR[JdQ3[K!TS[C:0i +s8Mrrs8N#t!<.QLPQ-.~> +gAh0O$iU#$qu$EmrVlisrVl]pqu6F'p@7J.fZUt5V4Es7NfT9_N;e_;MM[.GrJLc8M2I/gMZ8SH +MMmCMMi3INMi*CMMMd=LMMqFj/;]7AM2I1IMMd7JMM[1IM2@+HM2I.HMMd7JMM[4JM2I1IMMd7I +MM[1IM2D1g3K&cQMi*FNMMmCMMi3IMMi*CMMMd=LMMm@KMMd7JMM[4JM2R:LMMm@LMi*CMMi!7G +M27"GMM[2hM?&S6M?SoqMMm@LrehSOMi*IRO-#KeQC=GDZG4K-h<=D'qu6TorVuosrVultrMBPo +rn>QCM[nfE!:,tD/=$+rbhjXEcM%s+Du%3Ci*p%CM@HpBP1sn +CM@EqCM[]p?t="fAnG[gBkmW_!,VUL%r,fnCi+!*Ci"!-Df0E/DZ+MXDf0H0D/B2h!,_UN)/jD1 +Df0E/DJjB1DJX-,DJa6.DfBW4DJsFkD#eJND#eJQD>S,mCMds,D/F63EH#f4CMRg/G&h2%BQ]'% +\'3Oeo(r:`s8Drr!;uim"T//trV_ +bl@Y@48o$Pqt^!YmcN9MaMl'4]<\E4U7n9RSY)RHStDXHTV%gJSt;UJT:hjLTV.pMTqA!NT:_dK +T:hgKT`(KnStDXHT:_^IT:V[ISt;RGStDUGT:VXHT:V[IStDXHT:_^IT:VXHSt;RGStDUGT:_^I +T:V[IStDXHT:_^HT:VXHSt;RGStDXHT:_^IT:V[IStDXHStDUGT:VXHT:VXHT)>2kStDXHT:_^H +T:VXHSt;RIrgt!uT:_gQWj91M`Q66KfAYuaq#(-krqu]err;uurj)P;rVuorr;?Nmrr;uss8W)r +r;HZqrr)utr;HWm,5:KdhU]o`Xehkt]>DJ'aNMcLbKS;Zcd0n]bg"DVc-=JVrlYDfc-=K)bm;P< +c-4>Sbfe0.bQ#`bbP]K_ao0B^aoBOHbfe2ScHOJRa2uQMc-FYZaiMZMcHae`cd:%ac-+2Nc-FY_ +d*9eXb0/2[aN)][eB5t^dF-Ihbfe/Qc2Q#gcN2;6rltJes3:Peqof#^s3(bnbg"DUb0%fGrl>_q +cHaYVb/qfJb0.rLb/qcKbfp(2s3 +eGfULs8W#r!<<#ss8!H-q=aFHjP%o"`PfR&Z)XUnU7e-Mrh'4^rLa+_!2'7`q4I\[oUjO&!2&JH +s.B%W!2&qUrgsCfT:hjLT:l1U!hQ$Vp7D8S'qV%mW3EeH`Q63If&5`\q#(-krqu]err;uuriZ;! +rX/W'rr<#ts8W&qrVHL/rVZBUjknV0[\K1USYiHfWNNJ0YHG#(Y5bX'Y5bX'X95T-Y-%N's/lI- +Y-+u-XoP[)Xobf0Y5YX)Y5PR'YlD!.YQ1s,YQV/8ZEUP2XU;57YHY11WiW;(YPta.Z*:I9ri7$A +YHbC>Z)t+0Y-bO9WO'1FXfo.>[C3EFY-"n2ricL1Z*1>/Y61r2YHIi+!3H1%s/ZL.Y-+t4Yd(F8 +rN-@/Yd1X@Y-5%3rNHm;Y,ne0Yck45Z*:F9YHP15XSo7%Y-%Z*s0!]PY-+n0Y-"h/YHP+3Yd(F: +XfJ@rV5L5eR['MF[DU;Aj6ua?rVcfqqu6Wqrr.KKP5g%~> +gA_KXs8W#oqu$Els8Drsr#5J1qtKpaqt]sSjk.bo^V..]Vk0OoLREOT(=?O;*h? +P*(ojOckliP*1riP*(liOcbh*O_'W:OcY]fOHGZeOcb`eOcYZeOH>TdOHGZeOcb`fOcY]fOHGZe +OHGWdOcYZeOH>TeOHGZeOcb`fOcY]fOH>TdOHGWdOcYZeOcY]fOHGZeOcb`fOcYZeOH>TdOHGZd +Nf]?`rfI/@s,e[jOcb`eOcYZeOH>TfOcb`eP*2&sSu/^#]u.n8e_fW^q>C3jrVZTdrr;uuri?)! +rWiK&rVZTms8Vuqs8Duss83W-nE8TN\=nk0H$k3sIX$-`G'%hLGQ)giGBS+NFT-F_FT-=`F`qqN +pN?U^G'Ci+'-DfBW3 +C2.O%F)u)1F*MeBCN"03EGfT.C2@eeE;sqdEGoi:EcH,?EH?5DrH%pZrH8ftG'7tKEcH)>F*2\O +GB7kIFEIM)s)\<^F*@M+s*+cmG]n:TF`_a#FoQP1F`__HFEDSFFEMbMFa&(UH$FFMDJsN9EbfQE +Q`7^Cf&5ldqY^ +bl@\Arr!`6rVQHena,Q#g!e6i`kf=#]=PP_[^`oZ\G!k!<0;(0E(qNrVZTlrr2rsrr<#tr;?Nns8N#trVZQirVcTdn)`BWcGI)oW1TBG +Vld20[/RK5[fLL^V.+]W2dDH];hjFeC2.<]#Dn7^pgSO +Yd(RD[^`fPYHb@YHG%4ZaI6N[^<IE['?g +eGfgRs8W)srVlfrrVdc7rr2fkq=3h:in;f,bJh<3]=PVc\@/oY]"#9K\c02?\c0,=\c'#?\[o;[ +pUC77\=^>3\cB;>\cTFR](*Pc\[]5`_8j[?dG3jKmd^&JqtpBmrVcEgs8N)uY5eG!$iU)( +s8W)us8DlorVZX8s8Mrmp@%/#e]PS1VO`m+N0g',U8"?SSt2FETqVIY!hl9[rh'4^"/)?]T]r-M +T_P5\TE:g[U&CbcV>mK(U77L9R@BhBTqIpBQ^XD6T:_dMTqeERPE_H*USk,lUn!X9Vm*+cQ)hd; +X.cGs\[JZ;T:MOETq\9YURmsGSXuCCSt;IAS"-%>S!f\3R%'\?USOZZTq.[AR@9\>Uo'lWrgj+^ +rh'LgSt)@ETq@tTTE(V`TE(V^TE(V_U&LedT`h!]TqJ(WT`LgXrga"X&t52POcGHjWNiqMcJ.UQ +oCr1_rVliq"oS>trr<#trdk*4s*t~> +gA_KXs8W#oqu$Els8Drsr#P\1q>1'hrVcWbmcrc_d`okM]stJWZEUO8YHb=:rNd$>YctC:Yck:: +ZEUU=YHbD4Z2_%FZ*:I;YctC:Yd1R>ZEga@ZE^^@Z*L[?Z*LX>ZE^[?Z*CU?Z*L[?ZEga@ZE^^@ +Z*CU>Z*LX>ZE^[?ZE^^@Z*L[?ZEga@ZE^[?Z*CU>Z*LX>ZEga@ZE^^@Z*L[?ZEga?ZE^[?Z*CU? +Yd"#0s02O/-aBt_Z*CU>Z*LX>ZE^[?Za-mAZ*UpQ_SsRBgZRtno_A:[qu$Ejr:U'hrrE&!s8W'' +s8Mupr;Q`rrVlis'`It-rr)fnp[7%kah=pRQ]6QVp$$(*/F*)MFFEVg*F;K(D +H@1-gH?j^VEcH)>FE`(ZH$+4NF`m\,s)eclFEi.[I!^6fI!g6cH2DpfGli;=HiA= +bl@\As8Dus'`It-rV#jSmcNKaf[ScHXSWc-=JWc-1a`+3`$W +d*9h\cd:%ee_/a9kO8$9q"t!eqtp?krr)lsrMT\orr;p%r;HTorVccrrr)iq*W?!:rVcWjr;?Hh +p@.;*gX=0VZ_s@bU8"EXU84XbV?WrsVPU)aV>[1kV50pRV$*TjUnjj`V#R4iV#R1fU&UhhUSO]^ +rh]jqU7n9TU]$uQUSXidWi;nnV5:,mZ)smtTV80\YHkC4TqSHeVP0QRXgbjI[(aAj]!euNY,J(c +S=Q=KVPpJoWMlbnVPKu_qkaLmUnso`rM'UnV50ucV5L6jV>m7uUna`^UnXWZU8+KZV"peZU]@7j +V#I.hV#R4iU]mNiV4sZYrhL7'V59r]VmXC_cIq4Bo(VtWr;?Nlrr)rurqucurr<#tJcCr6J,~> +eGoLHrVc]o'`J%1rVZWmp[e%Fk2G.Ke'ZLfcHc+-s3:VhrlkDe$-pf?bfn>VcHXRpc2Z&lc-FSZ +cLT3]cHso:bo"aPcdC7og>D)^oC_nUr;?HhrVlfps8W%ms8W$'s8DoorVccrrVld$rVZQjrVuor +rr*N.qtKXFiRuPr\#c6hQ^XD4Rf8ZVQ^3l%pQklIrg3YP!13&>".,CBQhd!OR?s;/QiYH+Y#URd^6 +OHGcpR@=,F#+M'LR$O#'rg4([R$a5+Q^3r(Q^F3=RfAlWS->@LR$X2.rgNkS!LB#LQ2m9JQMHjL +R$X/,rgEMJ"IYXCQ'_K;rg==bQ_(=k_T:0ZjRDm=qu$Hnr;?]or;?Nls8N)uJcCr6J,~> +gAh-N&H2P(r;HZorVuorqtg-bqu-Km%Jf_imcNQeg""Kqc-4?/a9'N+ao0E]aoBEaai_fMrlG5_ +aia4sU!!DW!6Y5]!6Y8^o?%`gb0.rJaN;TKbg+Yfg>V;ep\F^cr!<2pqY^tIXV3ErdP-&JUr?$I!bj?$[mJQI=-KoJqAQ&IK"UFItE,lDf'<.F*N%WEb]?1 +F`;,0CNk>^I!g[+LP(,+H[0[KB4bgoFa8=^I/\NsI!pBhIK"]sJV*fN"+YlLIf=fuJ:W7LJcC6" +IK+cqJ,autHjbCQJUr<$J:W6#It%BI"FkrPIt.EIrdk*!rdb#u#D%JYK7\Z)Jc135KSG27N1I2c +aOT23nFQ8EpA+^e!<)ors8<,tqu-QnrIP!3s*t~> +bQ%VA)uop:r;?Nms8;`ho^M85k2P:Sh;$f>gYCQ;gAK\,g=tB]g&Tn,gl:(gg&Tn,gAfn-g@*c$ +g=tH=g"G-:rne:HkO%a-oCi"XrVliqqY^?kqu6Wq!<0&!s8EB*rr2lqrr;uss8W)t"98B"rVc`o +rVud.qY9[KjP/2.`PK3rZ)t%(VPgEjWrf9!W8afVVuirrVtd1kVl9Qls/,go-)RT=VP^>oY-5"0 +WMlbpX0An9['[-BXK&7uWN)qmT:_dQX0/W)X!":2R\#t0Ngd&SY-"b+Z+%BY\?Da"R?sA:Unac` +WiWB&YQ1s-YU$K[Z*CU:X/`(oVPgDpYHY::YHFt*WN<,"X/`5%X/i>%W2QWiW!0)rW2Zbpr2K^p +ri#stVl0Nms/5mq,,_B=W2Zl#XK/D*[CijQl=-q>L?mr;HWps8N#tr;Hctrr.KKP5g%~> +e,TII!<<#s*rl6=s8N#qrVc`qqtg-\nEoN'inrSJgtUQ;gt^W;r7_;,gY;_]!8IM.s4dS-rS%>- +QJ;Gn#2@kbg>(H:n(S*$gYLW:f\50\h@SZ-lgF96p%\F`rr;rnr;QZlrr;uuri#ksrWiK&rr)iq +s8W)t"TSK!qu$Els8=&>rquZho'>>jd`B8<]!\]@Vk]rZU8"?RT:hgLTqS.[>PV5']TSt2FFT:(t1R%C(MV5'f[SsGS,PDP$WV5gGjUnt)q +[C*6;SsGS&PFA#1S=Q@KUnsudVuEOnVuEV2VPKrYSXuIIU8FlhX/`.sUnXT[Una`]rh]Xj"/;H] +TD>/[T*(a[TqM=Ws.B@crhBFds.TRgU8%X\(o!^tU84Z`V5C5pYdD-_ajJc!k3_d9rr;rrs8Dus +rVQ]nr;HVGs-*J5~> +g&M*O#64]$r;HWpr;IN1qYU6hqu-Kms8Diio^VD:kiC[XhV?i`g&Kb+g&9V+g"P0Zf`9b*g]-"- +fob"dg&KY+g"P-4n_+6$g>(?2f%JjXh$;m#m-jN;q>LL0hs8N)uV>pSp#QOf%r;?Qo +s8N#trVulqr>bh8r;$!PkMOn;`kf?tY,7hYP)k]eP*(oiP*1soOp-u2PE_8pqiq,EpQQMYP`q5k +Ocb`cO-#HaOHGTbOd)3!QB[MnrfI5HR/WL@Q^!SlMMHn>JTl-SEcuhZI=-HjG]7M?De3EsJqo&4 +JV/`;P*(cXH#RS8DgHk]JV/`9NKB?hQBml'R$jD2R$Nnsrf.GLP*MB%R[KP/P`h2oPl?mEPQI&2 +Oo:@KOckliOH>NcP*1t*P5gXJP*;)mOcfX+s,dDIP`q=1PU2ZaR$X/0USOio]u84LjQl:,pA+U] +qYgHmrVlfrrr)`lrr;usJcCo5J,~> +bQ%VA!<<&ts8GV5rVZNeoBk`"gXOQla2>^,]=bei +]tV4qk.Ui/qS)pA!P?#B]goiO^:_(k]t:qi]=bhk^V7Fs^:q@u^qde#^;%It^VI\'`Poa/\?DWo +R@K\9V5UQ&WhZGmZ*'pmPa%Q$Pa.f1P`hE,WNc?-&@/I_>ao(MqYs8W)trr<#t!<;ur!rr9!JcCo5J,~> +e,TII!<<#s"98B"s8N#trrojOMl07L-l2BlOl0@NtlKRR+l2g/7SEU%= +n*0l;!9sLJrojmWlg4$-nFH;KqYU3hs8DosrV?HmrrE%ss8W&us8;lrs8Muts7uZor>#A3rVZNe +oBkc#g="6f`koL(]"5G^rj`$=l+$u-\[f;^\bs#?\[oBG\c9/F\[oDb]"#;^]DfH%]"#5\]Xtbf +\[f;`\[]2^]"5Mb[]ZHoOH>WeQ(=SFWhPuSVQ6VeQ&^idO,f9fQ]@&hS>E9hriZs;XJ_b]QBRJs +SY`Eo\@]Jh]=\!P!4i*="hD4U\@T#._4P\[oA_o"#4> +]"5G_]"#8\\[oEP]FV`n`5p6Qg#2#YnFcYVrr;rrs8Dus!<)ops8DoqJcCr6J,~> +g&M*O!<;ur!<;ur"TA8rrr2oqs8NE)rVZQgp%.bCmJcDVlKRQskiq?qp?DSAMs1N2l07Bokiq

    ZE^\0ZN%0GZEpmEZa7$G[C*BIZ*:C5Y-"h/Yd(I; +rNT#$[Bm3HZE^aAYHG"1Z*UdBXe_>AI<]pSEd;t\K7%ifK8G;0F)5`8FE2JOIs,mXJVfGMOH#6W +Kn+PuH$=I\LQS%"Wirb9Za-n8Yo'^JXf\b0YHG+7ZEga@['R!?Z*L[?Yd1S6ZOjFIYck44YHY:: +Yck43Yd1S6Ym@YA['I!EZa-k4Z3%;:ZMq*MZEppEZEgmK]>;S7f&#QVo(MnVr;?HirVuiprr2rq +rW<-!rdk*4s*t~> +bl7bDs8W)t%fcP-s8Murrr)flq=s^Xr:L$[Jb7gks7?9_$hEo]p%J.Tq"t!frVc^$rVuosrVccp +rMKSsrr<#to`"pjq>^Ko!<<&t&,c>#p$h>3in`;=e'cUhci25fcgB*ZcNDP?cd)40"45HBd/M>t +d*^7ecHXY\d*DX:s3P?)da6=fdEg+bcd:1jdb!(!dEB>9['6L%T;8HaWNWP3Z`9k#XKo7>WLoTG +Q'Rl3S +eGfXMs8W)srrW3"s8N!-s8N#trr)iqrVcTgq"OL[o`+I^o7?Pko`+O_oF(6]o_%qPq"XaarVc]o +#lXf'rr)fqrV`#]!<2forr*W1rr2imq=X:EkMk:Le^MpmcHa\Yqoo,br6>8co?@H_c-=PYc2>ie +c2Q#dc2PrebmMb@bg"J\cd'h\cMc'Tc-4JYbKJ/Sc-anbe'ZIa_mltQVk06BS=lOMW2cr#URn0W +XK\h%R?E\nOHl9#N/WpaQ^aM8SY`KqYc+@lTUl(P$([cfXKf7J_og=)d2^T^ccs\ZcHOPYc-4DT +c-FPWcHjeZbKS2TcHXT4cMl&fc2Goicd'e[o?IB]cMl)gbl5iecMl''cHjkbe(*.,i9'@ooCi"Y +rr)ips8W)ts8W,us8Dus!rr9!JcCo5J,~> +gA_9Ss8W)os8;irrVHNnr3*^;S+8rlZA*a2Gp: +aMu9Aa2Z*#YrQ,/aaiV^(b6,u3b/sY*s2k5^!6bA`!m8X- +rl>Mibg+Yhh;dbfo(DeTrVcZns8N)uJcCW-J,~> +bl7bCrr2oq)?0U5rr;uts8Murrqu]kqYL$`qYBs`qtp5@qr[eUq@0sbqu$Ekrr2lr +rrN-!p\q&is8E#ur;Hj!rr2rtrr)otpAY*jrr*H,qY0XQmcruqi8cf$)F`1['['= +WMlfqVE^oSXg,.7VO<[;VQ6_rWMcDZR[B;"Pb+bKUoLT$YH+LlR?a//Su8p-`Qci\f%Sp9h;-rE +hqm8Ih:pZg@O&#g=tB]h#H+2gtpoCrS7n=hr3VWl0Rp3 +pA+R_q>UEo!<.QLM#Vu~> +e,TII!<<#s!r`,trr!`6rVc`qrr<#trVlfor;6?eq>'m_q>1!cqLSP+qu?L&qtg0bqYL$aqYU0f +rVc`prVulurr;`lU]:An!<;urs8W)t!<;urs8W)t!rr5trr*E+qY0XQmcruqi8(N=gYCW@hqQi: +dE9A9W193AR%:.VY-4n'V50l[TV.pNW3!)"TTkM&Tr"Q[UnjQLQ^*YlPF\PGU8Ipi+Jtg"PED&q +R\R$p_91*Oe(<=.g=tH?h;-rDgtLH8gYDea!o)G_rnIJ,"52D_g\fe)gB?1$drWW?$s8W)tqu6cts8W(Ls-*J5~> +g&M*O!<;ur#QOf&s8W&ts8Ms7s8Dors8N&urr)iqr;?HgqYBs`q>'maqtbm@k552T%f?,!q>0s` +qYL*dr;HTnrqurus8N&mrh0;krW)urrr(H9g"=p0g=k<9g>(H9g"Y<:gYCQ +bl7bCrr2oq'E7t/rr;uts8Murs8DoorVc`prIOsurr;rorWN3"s8N&mrhf_qrW)urrWN9#rr<#t +rW)ulrr2j,rr)ior;-6`o^hP=mHj0(rosIJrojLLl076n!pT"8rojRNlg*p(rosIJ#OC[=k32'o +lMTm,ki_0ol0Id+m,d0S] +e,TII!<<#s!r`,trr!N0rVc`qrr<#trVliqrVZWmrr2kIrmh#JrVQQsrVuoss7cMfs8W&us8;lr +s8Muts8;lrs8Muts8Ms-rr)ior;-6`o^hP=mHj0(rosIJrojLLl076n"mP=;l0.@1lMp2KkXk%* +lfmTrlKRTukj%HtkN:sll0@^)lfI'R]Gq>:*grVHKs +s8N&urr2fp"9/?#rdk*5s*t~> +g&M*O!<;ur#QOf&s8W&ts8Ms1s8Dors8N&urr)irrVcZmrVlfpJc=4!s8Dio!<)lrp\pics8E#u +r;Q`r!ri6"q#:9k(&n12r;?Eep[n(GmHs9+lfm[!lg!a6lMp,8lMKlQm-Es$lK[WulMToGk6gA9 +mHj*#l0@R"li$&lkiLpgjlc!qk2G(R[]h6Mh?b8GB.bKH[L/=HV&jKOHYljM1q"b +Y-P.+TU_F8O,SpOLPL_DNKTWtSXuFCR$X2/S"-.JXL,acg?._el0@QukND'lkNV +bl7bDs8W)t!rr9!rr<#t!<;ur"o\H"s8W(Ls4./Lr;clsrVuoprr;uureLORrW`E%rr)iprr)d" +qt^'^p%@tToDeI^o)eRUoAfKAo*=jVo(;SIp@\FW<;#tXoC;ABoCV\Ho()JJp\=RWn*&ZZb/1Wb +USOKQUo:2eVPTlQQ]mPmMMd@OM2-e>N1$N=VQ@2/Stb1"tshrX4sqY^9dq"aXTo_%kLp%J(WoE"RSrq$*\#4qETo(;SGnaukP$M=#a +o_%nLoCMVHrq-Qkq"adarVlcor;M9IJcC6~> +bl7bDs8W)t!rr9!rr<#t!<;ur"o\H"s8W(Ls4./Lr;clsrVuoprr;uureLORrW`E%rr)iprr)d" +qYBp\p%@tToDeI^o)eRUoAfK@oD\:\oD\C^o*Y'[p%7hFnalAEo`"G0o_%nOq"4";hUBQ_\#,pq +S=?4JUS+?TR?`ttNf/[ILPUY8J:WH>rh(4.Yc*tYVmF:bbJh9/\[SiDUS=ENR$jA6USasgW#M_5 +Tq@mITVJEcZbFT0e_/d=lLO`Hq=aLTo^VnN#P7TZo'u;Bo)A.Zo)/(_o'l5Bo^i%R!;$3^rq$*\ +"7l*VoDA+YoD\C^oa(9dq>1$frr)fnrr)lsrr<#qrW<-!rdk*4s*t~> +cN!V;rr<#t!<;ur"o\H"s8W(Ls7H?kroF+Zr;clsrVuoprr;uureLORrW`E%rr)iprr2j$r;-6a +p\"4Op[\IYoCMDB"7l*WpAXabpAagaoDeC]nH8:OoCDnM"nVNbp@\+XpLO!ioCMYKo_%nHl/UIC +`4W4BQC!_sR@]tsrr2lrrVd!#rr2rsrdk*)s*t~> +_>aW:s8W)os8W&us+10orXJo,rqu`ns8W&srr;usK)YrPs8W&sr;ZWqqYBs=qZ$BkqZZfjq>'ma +rqm-%r;-9eqtg3eqYL3es8-I*q=X(.b.4[PTV/6eY,\:iStDXKSsuIJNerjXMMHtEMh?VBSY;R> +S?B9#UnONlce$k&e'ZOfahb^&['-R0VPBcNQ'Ru:US4NbYd(=/US+9RV6%)>bh2(Lq>0m]q>:*g +rVQHjq>^($bs7uZj!;Z'Zs7mc5qtp6eqtg*`qYL*cqYU3fr;HQlr;?Nls8Doqs8W(L +s+UK'~> +_>aW:s8W)os8W&us+10orXJo,rqu`ns8W&srr;usK)YrPs8W&sr;ZWqqYBs=qZ$BkqZcljp\=R[ +qYp?qqYBs`qYC!as7u]iAb>9AagnOMT:i-dY,\7eS"-">R[B_=N/*FPLP1>9LOaf0R%0M)QDh!b +Tq.a\bL4nhcHOJR`4WXgYH"LqU7[m=P*MN2TqA*[Xf\Y%U7\'NUT1Z6b1G_Ep\=IUp\F[_qt^$d +p](!lqYU-bq"Xj_!VlKiq>g?fq>g?jqZ$Bhq??]kqYBp]rqZTh#5S,kqYL$arqm6(r;HQkrVccp +rVlisrdk*'s*t~> +_>aW:s8W)os8W&us+10orXJo,rqu`ns8W&srr;usK)YrPs8W&sr;ZWqqYBsIqI'-qqu$?gr;?Hi +r;-6bqtp3ap\+CYqY9m`r;HWps8N&urquZjqYL$^p$h(n`3ZG:R?sJ=US+$=PEhArO,8mTG]S.S +F)c;II!'FTL5CP3L7"U#P`h92_p$KRb/hY)a2,0ko(`%Tp\=U^r;HQhq>0p_qu-Nns8MuprVcZkr;HQiq>0p]p\=LXp\+=Up\=U]q>1!fr;ZZo +rVl^2qu$HlrVlfpr;6EirVZTlrVuiprr<#tJcCH(J,~> +_>aW:s8W)jrrW3"s+110rW<-!rql`krW)urrr<#trW<-!rdt.Orr<#prr;rKrr;rrrWW5urVZWm +rqm'#qu$Ejqtp +_>aW:s8W)jrrW3"s+110rW<-!rql`krW)urrr<#trW<-!rdt.Orr<#prr;rKrr;rsrWE,srVcZl +$2sbtqu$?fqY^G\@&Wh>fIQBmu5Wj9(5Q]$ifOG\mTR\>q#NK]K`NL$-0 +VQ6YeSZ9KUioJtLf@JBpaMu*2]",8QW1TNIS=,_5StVsWVl?VlV5']XW3*;5^W+RMhrsY,rVccr +rVufpqu?QurVZWmr;HWorVuiurVlfqrVulrrVZWurVlfpr;?Qm"8i#orr2irr;HTorW)oqrW)ut +rr;uurdk*'s*t~> +_>aW:s8W)jrrW3"s+110rW<-!rql`krW)urrr<#trW<-!rdt.Orr<#prr;rWrW)oprW)urrr;rs +rr;p$r;6Hlr;6BjrW)oprque.p?CD[_mZYCSt)CEU8+9DOH#3YOdMc3 +K78<+OHl6*SX#J8]$]EphqQi;f$MR[^q."_YGe%YOH,E_N/s3jS=cOPUnXWYTVJKgZ+.ThcI^t; +o(r:`rrN-!rquco"onQ"rr<#trr +bl7bDs8W)t!rr9!rr<#t!<;]j!rr9!JcFd1!ri6"q>LHqrr2os!<.QLs8W,u!<;fmrr;rrs8N6$ +s8N&urr*!!rr1sX&cVh1rr2rss8W)trVZTjrVc`orsSi)q!dS/eASo$VksBfA#,s"W25uHOdVu@ +WO'C\]V:LQS!T;$RA[O.X-Ss7P)5C$Vk0HXY,7e_XMEBKm-Ep!jl,+Pg"+X#cHF/:ZE1%&U7[m@ +R%'\BVPpVtUS=QZU8"EZWjB@Wd+RCBn+?ANrV?Kmrr;rlrp]sfrWE3"rr)]m!<<&ts8N)urVlls +JcC<$s8RT~> +bl7bDs8W)t!rr9!rr<#t!<;]j!rr9!JcFd1!ri6"q>LHqrr2os!<.QLs8W,u!<;fmrr;rrs8N6$ +s8N&urr*!!rr1sX&cVh1rr2rss8W)trVZTlr;?Nms8W(j3LiooOcio&VGf[\Erc-48G\Zr68VP9]O +Q^F54U84]gX.uDbUnXTYV5gl7`R*;sl1"??qu6Ekrr2rrq#9d_s8E-#rr2lqrW)utrW)utrr;uu +rr)isrdk*#s8W+L~> +bl7bDs8W)t!rr9!rr<#t!<;]j!rr9!JcFd1!ri6"q>LHqrr2os!<.QLs8W,u!<;fmrr;rrs8N6$ +s8N&urr*!!rr2Ees8E#uqYpKo!<2ut"9/?#rr2p%rVZTlrr;uqrsSf$na#5b_R?J=T:PtOA"B6b +SWendOI;T1WO97=P_4dPMhZqGT!5]"NJE7@HA.cSO-#g'RZj#3\^0:#lfdQqiniG@d*9bT_Rm+R +US+0GQ'.5kPaJ&8USt,cTqnHWTqeHaZFe*&f\bl[o(;bTrVZ]prr2lqrq69qrr<#srVliqrW)ut +rr2j%s8Murrr)fprVZZnrrE%Ls+14Ms*t~> +bl7bDs8W)t!rr9!rr<#t"onT$rVlfqrVuj#rVlfrrr.KKj8TSfs8W)srVlcorr2rsrr2otrdk+L +s8W'%s8N#rrr2oqs8N#t$NC#&rr<#ts8N&urr*!!rr1sX$NC)*rVc`qrr2rtqu2$Bs8W)poBY5W +^U'o6TVA9bYH+LlR[BG.R\-La^Ve(4bIjI-P+S>0Pb5.pbKRGfPF7ktRCKo1SXcCIX0/:oZ-)(p +oC;8;mcrrpiSE,8da67\`l,X$XehYZR$Eu+TVA*QV5UGqWi)YeU8=ch[(j]0g#MDhqYpNorW<-! +rVcWqrVliorp]sfrW)utrr<#qrr;uurqcWprdk*#s8W+L~> +bl7bDs8W)t!rr9!rr<#t"onT$rVlfqrVuj#rVlfrrr.KKj8TSfs8W)srVlcorr2rsrr2otrdk+L +s8W'%s8N#rrr2oqs8N#t$NC#&rr<#ts8N&urr*!!rr1sX$NC)*rVc`qrr2rtqu0(`s8W)ooBY5W +^U'o5T:r']Y,eCkR[BJ1S"Q^e^r445bIjI-P+S>0Pb,%mbK@5`Od25fQF49%R@0YqVmqu6Wprr;ur +rVQ`qrr;lpli..fs8W)ts8N#trrE&prrE%Ls+14Ms*t~> +bl7bDs8W)t!rr9!rr<#t"onT$rVlfqrVuj#rVlfrrr.KKj8TSfs8W)srVlcorr2rsrr2otrdk+L +s8W'%s8N#rrr2oqs8N#t$NC#&rr<#ts8N&urr*!!rr2Ees8EE+rr)cnrVZWns8W)ms8)`ps*+J= +o]k2S]s=T/S"-+KW2#oMP)k]fPaA&E\@T;d_6K5WLm=6`N0gNTa2kTTMN*UDN3'7UOH>`oTqn3K +XN05eo^hVBn*/rmgXt$%c-+,D^qR@aVk0^KoqZ$Tp#ljo&rVuior;HWm"TA?"rr2iq!<.QLJcGcMJ,~> +]Di?>s8W)srVlfprr2rsrdk+0rseu-s8Muqrr)fprr;usrVufps8N)uK)Z#Rs8W)srVQTorR1]E +r<<3!r;6EjrVp[4qXs47e]GM2XJi"pWMQAbVPB]MR@BnHW33YHa3E/edCuHAR%pC@O.N_ue(N?k +WL''GR&%I:^p9c)Q`%-gT:`*sg$\\4p[dqDmHj&ri8EMJf[S?qbJq9*Z`^=+US"'ER$jG7TV8%n +TV8-WUS4H\W3!56_opTcjR)R5r;6L!rquZkr;QZnq>LBmq>UEo!<2uts8N&s"onT$rVlfqrV6Bl +rrW3"s8;its8N"Ks,[21~> +]Di?>s8W)srVlfprr2rsrdk+0rseu-s8Muqrr)fprr;usrVufps8N)uK)Z#Rs8W)srVQTorR1]E +r;lorrqlcpr;T@cp?gnkahG-aWMZVnVPBl]URdg?S"Z[VY.2?icILUr^Sd?bUS='9T=)\ggXjBB +Pa.c(TtA7WZ)!eRV6HnhS>X$Nlh0uCnG_eol/gp_i8<>BeBuRb`P/jgYH+RsT:D@ +]Di?>s8W)srVlfprr2rsrdk+0rseu-s8Muqrr)fprr;usrVufps8N)uK)Z#Rs8W)srVQTorSmhV +r<*&tr;6Ki!W2forVud$rr<#trquZkrVcb4r:faGhU0P*2&uT;/Hn]YV\6 +ccQBdc&R[p%@SJ@`hTq@mJU8+Wf[(aT-fAPr_o_SRdrr39'rVQHgqu$Bjrr2oss8N&u +s8E#urr*9'r;?Nkqtp?hqYL3g!rDfmp&>!k!ri6"r;Hctrr.KKO8j_~> +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)ukl:V\!rr9!rr3'!s8N#ts8N#t +!<2utrVd-'rr2rrrVulrrVlg0r:opMimu2`Yc"1eTr"`kXeq`iRrXpeUoh/A_oL*Qe^iO.`2B#r +Wi)ANS?g8hhr +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)ukl:V\!rr9!rr3'!s8N#ts8N#t +!<2utrVd!#rr2rrrVlcrrVlgjr:opNj4MJeZDjRkU8P#pY,It]R[KP4UTCr=_T1!Qf%8a3`i5H& +X/MPQT!QSmiT/qF[[EJUTV]'Ag"=g$cHF;H +] +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)ukl:V\!rr9!rr3'!s8N#ts8E-# +rr)`nqZ$Hlr;ZWorVc`qrVum2rquQ\k1e1r[&BRaR%0hFW2QDYrfpHHQ_11]]>;P4dF$Cnd_)-4 +R%p@?NgQugeDB0@d']4)T:M[\_oop%T9PV1T:VL=TX<&.pA4OXp@RtImd03$j5A_Gf@\X#bK.Z> +]sXo:T:;13rKA.bR\$1ESXc1:0hs8<-!rVc`prVHNnrso&,s8W#o +qu$?fqY^6eq>U3lq>:-frpg!grr2rtrdk*4s*t~> +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)ukl:V\!rr9!rr3'!s8N#ts8N#t +!<2utrVcfsrr2rr')qk/s8VugkhX\*\ZVd'Uo(&erhNqpR[0/(U8tQ2_oKsHe_&X6j5Sn:Y*kia +X.,NT]?8delKdWja/#<*V4t3AiRZ/f[\K1WTVe]aUTD8dn+lnYq>0p]p@IhCmdBE(jl5.Og"+X! +c-+2G]stANW1]TGrg"LiR[]nDW3!,#US=KZWNEM=_TL<^kO8-@rr<#trXJi*rr)fprVcZmrr;rq +rr3'!rVulrrVm0&r;HQlrr;rqrVlBf!<2uts8ITLP5g%~> +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)ukl:V\!rr9!rr3'!s8N#ts8N#t +!<2utq>UEmG5hI>rr;oil/'n.]Ya_8iXIP`X +]ZSmhm-X&q`hK!!Tq8@3iRZ,d[\K1WTV\T^U8u&`meH\Vq>0p]p@IhCmdBE(jl5.Og=Xs'ccjML +^:CSRWM,fKrg+IhS"-+HWNE>'V5'iaWii\@_opNbkOA6Crr;Zjrr<#trr3'!rVulrs8N0"s8W&s +!<;opo)A^hrr<#tJcCo5J,~> +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)ukl:V\!rr9!rr3'!s8N#t"o\H# +rquZer;ZZnr;Z^(q=3S#c+L6TR[BM4SGf".R[0(rOdr8K[D'Mtc.:V'h;I/B`2A`_Vko]EU:84p +j6>jkhSl.VURmsSbM(7Z]<.Q`OdVl;St2akf^/>/qYC!`p\+4Kn*f]1kN1[Xg"+TtbfRoD^::MO +WM>rJP*(liOcu#rS=udVU7@X?SYN*a[CjH%fAZ&dpA+U_!rDfkrqufn"9&5urVlg%rr)lsr;6Bh +rql`n#lFJoq"X^`rVufpnc&Ugrr<#tJcCo5J,~> +_#OH6!<<&ts8Voo!rr9!JcFd1!ri6"q>LBorr2rt!<.QLs8W,u!<<&ts8W#rrr;rrs8N-!s8)`p +rrE&srs8W(s8Doqs8N&trr<#ur;lotqYgNorqueEqtK[HhU06MXf&%mV5C5kV4O$=R%'\AVm*\G +`mE8eg#(iOkj%NqbHdn5SthjFVnLF3jQuF-mci6)T:qsKV9nG`gXX?SWL]HJV5L)[Uq+n8pAP$h +qu$?eq=s^Xo^VA8kiV!ei8*,@g""Kpa25KuZ`gC+U7I^ +_#OH6!<<&ts8Voo!rr9!JcFd1!ri6"q>LBorr2rt!<.QLs8W,u!<<&ts8W#rrr;rrs8N-!s8)`p +rrE&srs8W(s8Doqs8N&trr<#ur;lotq#:3kIJij1lJL(/\?Dm1W2HSpX/DVYQ^OA9UStE,^W4^N +e_/g=jlbmojNFj(SY2gNR]*sIgZ7eoo^V7sY+D5WR\J*jhqHW%\>c'gSY`6ZStijCjn8TPr;6Eh +q>'g[p@RnClfdKmj5AbIgY16,cH*o:\?iE>Vk]iPQ^3p=S"Z_XV\,f%VQ-\sWi`\GcI^q7m.0lJ +qZ$Qorqulss8Murrr;rrrr;p$rr;utrr)fns7H9orVlfrrr.KKO8j_~> +_#OH6!<<&ts8Voo!rr9!JcFd1!ri6"q>LBorr2rt!<.QLs8W,u!<<&ts8W#rrr;rrs8N-!s8)`p +rrE&srs\o,s8Doqs8N&trVlfmrVulrrVue7rr)cnrV6!Ojk._hYGIeXR$aA6Sskk'NKBEnSYN6l +]"uV_Gfna,GdX.,WLQCl=Zf[S9`Z(dPIQ_0tBQ^tG*iq33L +r;6Ehq>'dXp%.bClf[Eki8*)SXlIS\&HYC +h +JcC<$JcFO*s8E#urVclsrr2oq!WN&srWrK%rr)fprr)fns*4PCrr)clo]OrS_mZ\FUS+ +JcC<$JcFO*s8E#urVclsrr2oq!WN&srWrK%rr)fprr)fls'#F#rVZ?PgX3sKYH"FnUSb#iWi;hf +R[BP9WO9L^cd1"hg>(QGlKdm.n)i$$UT()YPF8Jed+d[Mo_81Tn_LaHQCs_:am80Qi7$#nZD!bX +U8=ZZVQRbjnc&G'rqlWmrVQEcq"OLSoC226l/gp_hVHo9df.QQc,[]7Z`9dkQBdi.U8=caUnt#l +XJhqhUoLW*\%fr.fAc/gp\XmerVlfrrr)fqrqu]ms8Muqrr;ur(]=:3rVlcnrVlfprr2lorr)fp +s8W)us8;g!rr)fqrr.KKP5g%~> +JcC<$JcFO*s8E#urVclsrr2oq"9/8urr2k;r;6Hls8Drss8N&urVZTiq"F.7eB#8'US!pn0NJrsbU9D,Fb0/#Uf@o$?lgF<8o&\,sSY;U:MispKbhD.DnauMEldrP4P+S,.`ouLCgWdjV +XI>?;R[oq9SYs-Rnbi@`rqu]nr:p$\&Gc(no^hV?lK@6ehV-W4d*)F1--*j7\#c +JcC<$JcFO*s8E3%rr)cmrVlcurVQHhrr2oqrr.$iR5NHVP0WVW3!,#TU:q, +Q^a_N\%]\raNrDhgYUlLkjJ$6p%J(Fe$GXAZDEeSX2*3AkjS-:q>'dUiPVCUW1]Hpmdfc,i7l`" +]!%iqR%gRXSY3I@lM(8Uqtp?krr)iprVl`m8GVuOp%7b@lfmTmhqd&Ag!n?ja2Z$3]=5&HVP'?A +PEqZ/UoLT&YcOasTVJ?[W3jIigu@G]oD&.Zs8W)sqtp +JcC<$JcFO*s8E3%rr)cmrVlcurVQHhrr)utrr)iq"9&/rrr2k.rr)]bn*Au__R$29Tqn]kYH+Cd +Q'Ic.Uoq8C_SjRCf%Sm8i8j(fnFH2CoBOc0S>3BdQ(+nle)0BXo_JC]q=NX_Tp;OJQ,DtYmH3?^ +e],5+UR@OFWi)D[\CBg3ZEC1'U8FicWO9[mguIP`o_A7[s8W&rqtp +JcC<$JcFO*s8E3%rr)cmrVlcurVQHhrr-d4qu$BjrVlcorr)cmrVZEZlK-dD\>YsaPa@r6TUh@, +LPUkMRA-jn]=l))dF?h'hVmVanalGIo]si+R%:7JN0L3PcedmRo_8.Up$UVKSW]h?PJQPPlK$gR +cG6ifS'sfs8Doqrr)j;rr)iqr;6Ejrr2rr +rVlisrr<#srVlcor;6Hmrr.KKP5g%~> +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)unc/Xg!rr8ur;Hfsr;?NmrWE,r +qu$?js8@-?r;-Bls8;chn`8*7]!erJWMQAaUSO]\TU_IAU8Y3&_9LEWe_&X5iofUmnFl_Rp\XgQ +d'KFBX/25RZ,=uHkjS-;q>:'bo]OJuR&[!O]ArPUmHs)of?_CDVO +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)unc/Xg!rr8ur;Hfsr;?NmrWE,r +qu$HmFoD==rVc`nqYgHor;69[jO1uY\$`H@Vkp2cVP^2aSXc=IWirqMcI14ng"bKFkN_C&p%\7R +q=j."ZCmtmV4*p[`R +_#OH6!<<&ts8N)uJcF*ss8E#urr2rt!<.QLs8W,u!<<&ts8N)unc/Xg!rr8ur;Hfsr;?NmrW)or +qgSMCrqlQhqYU6hqY^Bmr;$$SiQ]'DYcFRmS=,b4R[KP/P`h9!T;Aa&a3N&ZeC`O5jlu'up%e=S +q"EmpY+2)YSW]8>^sCj#n+?GQr;-6[ilS![VPBNhiUc[.m,d$PbeUQZPEM9&T:M[V^teMXrr)fm +rVlirrr;usrVl[]qY0[SoC;54k2YIYgt:-*dF$:aaMGBjWhc;ZS!]J)PEqT'P`_/qS"-"E0Y +Y0cb;p\+1Dj4_u,_602fRB3]mSts!Mm/$b^r;6HlrVZQirVlisrqlWkqtg0bp@IhDmd'0$inW;A +e^DdfaiVWHahbQnV43a5Ocbp!U8P&rZ`pC$S!otHWNa.^fA5BJn+?>Kqu6Wprr;uss8Mroqu$No +rr<#trr)`ns8Drrs8N)uJcCf2J,~> +JcC<$JcFa0s8EW1rr)cps8Drrs8W)us8;fos82eFs8;forVQKgoBYJne&8MbR@C%UZa6j8V4O-C +S#!='`lcNNdF6XuhrX"bn+65Gqu?]mq=s:'YF_GkWKipXb1GG3n+?ANr;HTlq!HeCS#**YY0cb; +p\+1Dj4_u,_QK>iR]WrrT;B3QmJR"ar;6HlrVZQirVlisrqlWk5l:ESq=aFMnF#W-kMb4Ng"+X! +c-"/MbK7W5ZDO1ZP`q;tStr?fZF.! +JcC<$JcFa0s8EW1rr)cps8Drrs8W)urqu]nrr)`lqJuN2q=s^Sl/C7=^9!ffPanMIW2-&SQ&gog +SZB99`Q60Fd*pS&jQ5UmoC_hSs8Vrio]ODtR@L1KNK^H^dbEsRo_JFarr)chldrA,TV\<_cLUo- +p@@S2g +JcC<$JcFa0s8E3%rr2lrs8Muprd+PBs8MuprVl]jqYgEir;H9KdD*#eV5UJuX/2VgU7@U>Tr5'" +\%]r.d*gM!h;IAZmI0Z>p\=XbrVZQmrp.k9Uo(/gS>!:2fAPl^o_A=^rVlcnp@@=`UnFWaTtBdm +r;$'Wlf[9\cc!8iR[BbJYG[qd^?#1jrVlZrr;HWnrr**"rr)cnrVldXr;-6aq"=:Nn*K?'jl>:U +gY(-*dETeM]XG5SZ)spuSsYe4TqnN^VPgAjUSOieUnjut_pR?,pAY'hrr3?(qtg3frVZTlrr)]m +s8Dus!<<&trr)lr!rr9!JcCf2J,~> +JcC<$JcFa0s8E3%rr2lrs8MuprdOhFs8Muqrr)clqu6WmrVlKOdD3,hVl?f%XJVhkURdgCU8bB) +\A-,0d*gP#h;IAZmI0Z>p\=XbrVZQmrTVJ/USb&eS=m73f\u&`p%\F_rVlcnp[R=]US+QbU:]mn +r;$'Wlf[9\cc!8iS!ftNYc47j^ukRprVQKgqu6QnrWW9"rVZWmrr+5AqYBp]p%7kEm- +JcC<$JcFa0s8E3%rr2lrs8Muqrr)crr;-Eg8GDiOq>0j\q=3Fg]dFHq*hrO(hmdg&Eq>C6kr;6NkjMRpdT;.p@RBFKWh<+5#q>C3j/,f84iP(nQUSXWqn,E7^ +q"3t:iRlGn[%itQS>E-UQCYYGq#1-fr;HWprVc]qrVlZqr;HWor?V=:q"OIRo'br1kMtLWh:^B/ +dE]qT^:1ANXfJ=kR[&qmOHl43RK&WiQC+88R[g(P\]E=]n+ZVOqY^?iqYU3irVuitrVQQks8)fp +q>UBls8E*"rr.KKO8j_~> +JcC<$JcFa0s8E3%rr2lrs8;g$s8Doqrr)cmrVZ[`r:B(*dDNDpV5'lbXKSe)Tq7pLS"$1U\\lP6 +d+-b%gu.8XmIKuDpAFjbqu-Nlqu$?Wb-7hDWhZ)X\BNX_kjeECr;?OOr:fjLc`Wq9V3\@Qs8;`g +q"4(@inDr._loVtSu\rcR\d[Jm/I%aqu$Elrr;rqr;Q]orr2os5Q:W[r;?HgqYBp[o^VD:lK@6c +gtC6-eC)[gbf[o:ZDs[kStD[OVl-DfTqA'XVkTiXVQRA?_ogE[hWOA%r;6L.rVZWmrqu`nrr2rs +rr)iprVuosrr2lnrdk*4s*t~> +JcC<$JcFa0s8E3%rr2lrs8;g$s8Doqrr)cnrqudarUf:.dDNGqVPL&eXg,(.U7e3QS=HCY]#;b: +d+-b%gu.8WmIKuDpAFmcqu-Nlqu$?WaK25;X.u2Y[a!O`kOJrVZ[0rVZWmrqu`nrr2rs +rr)iprVuosrr2lnrdk*4s*t~> +JcC<$JcFa0s8E3%rr2lrs8;hFs8DlorVQHgqYL*frqlEVi7,l\Ybn"^T;&3`WM5iLR[KG,SuK'2 +a3)cYf\>6@jlu4)p\+@Zr;-PFo>5lM^b_')hh/rVuorrVQHhqY^?lrVlirrr"qVqtg0ap\"+F +lg*]ni8*&6dF$:aaiMK9[B$$kQ^!c$R@Ke9QBdZ"S=>h0QC=SLZ+7Zjcdq" +JcC<$JcFa0s8E6&rr)cps8Doq/cYeIrVcZlrr2llqu$'HeASPZOd)K8YIVK\\#J`Za-a2T:;CLZbO] +JcC<$JcFa0s8E6&rr)cps8Doq/cYeIrVcZlrr2lmr;H9Le\nY[Od)K8YIV?VXIG<5R]*R&]Yhh6 +c-OqlgZ.W!n6,AXq=sd`s8Mrprqu]nqW>epTrP/dR&@R)Qr;QWfnEoGtf?q^QVj*F@Y-FstV8hctrqu]kqu6WprVc`qqu-d!rr2lqrr2j^r;6SY,7eYS#!:$akGtLq"jmbrVZNhrr2io +rr*<(r;?Nns8N#rr;?Nkrdk*4s*t~> +JcC<$JcFa0s8E6&rr)cps8Doq/cYeJr;6?er;69^p@n"3be'[2KSl%bV6RG4VNm$rQ(tIg]"uD. +bg=qph<"&'nkSlSqtg3hs8DlorVQHiq;]8^Q_'k:OIrnue(s-Sq"t!hs8N&srr2cdl-Q`-S=G\B +k5G5WrVlcko'bo(f[@pTUl1%qV5U)UU;Z +JcC<$JcFa0s8E#uq>UBk"9&/prVlgCrq,:"^p:&CXfJJ)Za$I!Q^F>=Vl?]"]"uD/dF[11iTKCg +me-ST,5V99qY^?jqu-Nmr;Z]X_PNm&W0rsN^Wb0alga]Fr;HWorr"eUrr)Z]hSZ.\U6VS*nbN._ +s8Dllp[RJ+h:BibX.Z#UW33(hT!Qu?s8;inqtg6hrr2lps8W)trVc]qs8;lrrAjfQqY9gYp%@nG +n*B/qi8*$eZEL=-Vl6Z"\%TZ#dbjHfqu7-)rVZTlrVZWm +r;HWps8DrsrrE%Ls,d82~> +JcC<$JcFa0q>L^#rr2inrVcZlrVlgCrq,@%_6^;IXfJM+ZE^(r;HTl +rVcZmrr<#srr;uurdk*2s*t~> +JcC<$JcFd1p&=sgs8;upqu6Ueq=!7d\u_a(U7\!LVPTiHNKBKuUSXfg\%fo)dFd:4j6>jpnFukX +r;HZpqu-Qmqu-NkqYg9P^Rp^XR?!<#\AlhLkjeBCr;?Qms8FSLrr)TVfY4#JT9H)$o)&Ids8Muo +q"!_0h:Bf]UQq",Su/3JS$:B4s8Drqr;7$$q>1$frr)fprr;uss8N#trrN,trqn_Oq"XUVnaGo2 +jkeeJg=Fd$cca>E]:-i +r;HWps8Drss8N"Ks-!D4~> +JcC<$JcGZJ!ri6"rVlis"TJH#s8Vuq#ljo's8W)us8N#ts8;rsrquirrVpO.p$UqpcG?]VQ^OJ@ +X1#XOZ)*bFN0pWXa2c:*hrVcZlrr)]jrr)irqW,JjUT(/ZP+o_:!]o^_M@md'#pi7c`3eBlF^aiVN:]!J<*QBIAo +RA6sp\[AW@WMcJ`StDma^WY3djlu4*q#1$g#Q=T!rVlcps8Muts8;lqs8N#ts8N#ts8Drss8Drs +s8;lqs8N#trrE%Ls1JA^~> +JcC<$JcGZJ!ri6"rVlis"TJH#s8Vuq"onT$s8W)ts8W&us8Ms!r;HTnrVpO.p$UtrcbZiYR%'bE +XLGmSZDEkGNL6`ZaN;QLdF6Y"i99OsoCVbNq>:*hrVcZlrr)]jrr)iqqrGSkUT12XP+o_;e_]Q^ +q"jmcrVc`or;HWnqt]aDcD[D8T:`jWqu?Wmr;Q[>qtKXIjP&,1aLS.6R\m3bS=Qe'iq!*KrVHEi +s8Dims8W)trVulsrrW2urVld_rVlirrr)ckq"ag_p@RqEnF#W)io&PAf$r*kb0%iG^q-hLSWo4t +PF/,K[C3EDVl-DdTUqdPYeA30i9'=mo_JI]rs/N#rVc`orr;us!<;urrr;uss8W)ts8W&ss8W&s +s8W#rrr;uss8N)uJcEC_J,~> +JcC<$PlLd_!<;ur!rr9!o`#!ls8W&ss8N6$s8N&upAPBurr2rtrr2lprr2irrr)jmq=Eq1eB,>% +R#mGqQ_(1ZY,7YHJqT;_\AQ5'bg4_fg>V>co(;YNq"jpfs8W)squ6QjqYgqY'IFjPAA3_QfYkOe/JFR$anli:?jH +rVH?erVZQirVliprr;osrr2irrr)fqs$$DZr;-6cqY0XPn*fZ.j5JnJda?IeaiDE>_7R+VT9P:j +LPUqWUoLJoTpqL=R$X)(S>Wj7ceIF?lgXTErr)j+rr;urr;HWorVlfrrr2osq#:~> +JcC<$JcGZJ!ri6"rVlis"TJH#s8Vuq$NL,)s8W)us8N&urr2rr;Z-Lns8Mumld<;EUS4?ZYdC[7 +TU_I9Q(+YU[^`rdaN`/bh;[MXl0Rs5p%J4[r;6Eks8Muqrr;rqrr2inpYifZU9LnnOf,t=f&,oh +q=sgbrVekVr;QZnr;-'SfWV$MW1Ks=r;ZZkrVl]kr;H?Xlf?pUc+L9TS"Qpo[A0%lg@>(>r;6Hm +rqu]os8Dlprr<#srr2oqs8G7_rr2lnr;-TUhO@ +S=umbZEg[6VlHl$WhlJgYIi!6m.UDWrsA]&rVcZlqu$BjrVcfsr;Q]qrr2rtrr2rtrVlisrVlis +r;Q]qrr2rt!<.QL]`3K~> +JcC<$JcGZJ!ri6"rVlis"TJH#s8Vuq"onT$s8W)ts8N"?rVZNhqu-NmrVQ?Sd(-0NT:i-e['?U' +S=5b/S>NR"\\#YucdUP&ioT=em.'cApA+[bqu$Hnrr)cos8Doqrqu]gikD.^ZE]s_Vn^I+hsU46 +qY^?lrVlfpr;HWmqtfpOfWV$MW1Ks=r;ZZkrVl]kr;7Z1mcicfe]GD)T9u1M[Bu]pYM&FBs8Dlo +s8Mros8W&qrr2rtrVlfqrVuj]s8N#rqu$ +JcC<$PlLd_!<;ur!rr9!o`#!ls8W&ss8N6$s8N&upAP6qrVccqrVQLErr;usr:fC"[\]OaS"Zd^ +W1K99NerXUS>WNq[CjE!cICV,jQ>^no_8+Rq>LrVZTmrquZkq>0d@\X]7kVN?P(\B!"R +mIpAOqu-NmrVudQqtT^IeubRDVOXO5qYg6dr;?BdqYKgNlJpXI`O2V4Od;fGXdb?Mea3&-q>'pe +s8Murrr;oq<;laorr)iqr;?Nkr;QZnrr)`mrr)fnqtg'WmdBQ0kN(RUf[n[&cH*o=]!erOY,7_T +PE1`dPa\;AUnXHNStVjNSt;[W\B!:do(i7as8;ckr;HTls8Doqs8Vlns8N)uqYpWrs8V<^!rr9! +JcE[gJ,~> +JcC<$LB%;Q!<;op!rr9!rVuosrr<#tqu6`ss8W#rrVcWn/,&)S`k]3kWi)_hTqnTcVkTcRT:_gV +[_p>9dacq%i8a"dnFH5Fq>:$crVld^Hn!rr9!JcE[gJ,~> +JcC<$LB%;Q!<;op!rr9!rVuosrr<#tqu6Zqr;Zfr"TA8rrVl`p/bS2Q`4igdWMZJbTVJB_VkTcR +T:VaU[DU57dF6\$iT01fnFH5Fq>:$brVlfqrVlfqrVuj3rVliphn,ebYH+7^UqG"(iTp.3qu$El +s8W,u&cM_-rVZ?Xhn5YSYH+;Crr)]mrVud:rr;igp$Uu!fZq@>US"6WY,[t`Zc1bos8W&pqu-Kj +rr<#orr2lrrr)itrVZZn-2d`>qtg'\p\".ImHNfrj5A\De^Mpiai_`A[]QL(TqS6XV50jbTG"#s +VPg8aTVJHi\A#btbgYD7r;-Eorr)in#6"Jtrr<#tnc/XgrVuosr;Zcqq>^Hn!rr9!JcE[gJ,~> +JcC<$LB%;Q!<;op!rr9!rVuosrr<#tpAb0l"o\Aqqtg6gs&/LLdDNZ,Xeh_`SXZ.BU7[g;PEhB" +Tru#HbKS;[e_K-El0e-7p%nR^qY^)G6g$/;.rrN,trquco!<2fos8N#t!<.QLU&TW~> +JcC<$L]7JUs8W)prrW3"s8Drss8N#ts82cqs8;lns#'cNp@@V3eA8;[R@^:YZ*LO2TU;%5Su&U! +^Ve+8cd^V'iT07jmdK]>q>:-irr)iqrVc`prr!!"rqu]orr*`1jLh.ZYcXCYUV>%*iU6@2q"t$g +r;?NmrW)usr[e$CoB+5nPcq?_b4tf/s8Doqrr;urr;63Wl/^aRbIk*SPaneXVOaKiddHu2r;Za! +rVlcnr;Q]qrVuits8Mlpqu/5Jrr2lqrr<#rqtg-aq"OIQnaGi/k2bR\g!nU)dEKYM`50$nYbn%^ +R%'_@UT"0n'<6pakZ"DnalGKqtU3Zrr<#srr<#rrr2rprdk*^s*t~> +JcC<$L]7JUs8W)prrW3"s8Drss8N#ts82cqs8;lns#'cNp[de4e%r2YR@U4WYd(@0T9kh2Su&U! +^Ve(6cI:G$i8j1jmdK]>q>:-irr)irrVccqrr")ArqlWnrr2rojh7@^Z*0[]UqY+(i9g10q>C6k +rVccqrr<#sr]gAUo&RrjQ*@QcbPD#3s8Murrr;uqqtg!Sl/^[LaLn^KQ(4nYVOaKje*d)1r;HWo +rVlcnr;HWorVc`ps8Mlpqu0%arr)fprr<#rqtg-aq"OIQnaGi/k2kX[f@&-ud)j8F_S3UgY,@nZ +R%'V=USXumXfSS'W2$#USY`Htb2)4HnalGKqtU3Zrr<#srr<#rrr2rprdk*^s*t~> +JcC<$PlLd_!<;ur#ljo's8W)us8Mlp!ri6"rVlisrr2rtpARGXs8W)ts8;]doC2&'cF^$CPF/&B +X/r7pR?WkuQ_(+Z\@oc!b0SSigu.>\m-X<8q>:*hrVc`pqtp?ir;6Bir;-^-oBk`#gX4!LWL8a1U8FKF +R]t'$pA4U]rVlcoqu-ctr;6Ejqu6NkrVuctrr<#srVdN0s8W&qr;6?eq"OIQna>`*jl>7NrmN=B +a2,R*]="i@SX,G"P*VH'T;/6\Vl$;bSXGe1Su/a0f&,WVmdTlDr;6Kprr;fns8W)t!<;$W!rr9! +JcE[gJ,~> +JcC<$L]7JUs8W)prt#,/s8Dlorr<#trr)lsr;?Nl!<<#r!W;ops"+-;gW-_#USOfhY,eS)Vk'?M +TVA9^XKfCSaNi8dg>1cOlKn$5p%J4Xr;?Qns8W)srVuj'^PkiCLD_ml_=T;ABXTq8$jf^Se: +rr2lqrVZWnrr;rrrqZTnrWE3"rr;rrrr;us!<)op-2[Q6p\"1LnaPo/jlGFXgtC3*ccaDK^U^\R +XK8CuU7@X?SY;t\W=Q,8ZE^L/Uo(2s\]*([oD\Xe!r`#oqu-Qo!<)lqrr!<*s8W)srVlisrr)fp +rr2rprdk*^s*t~> +JcC<$L]7JUs8W)prt#,/s8Dlorr<#trr)lsr;?Qms8Muq!W;ops&K'fgrQn&Unt&mYH=n/Vk0EO +TqeH_XKfCSaNi8dg>1cOlKn$5p%J4Xr;?Qos8N#ts8DorrVl`lrVcWkrr)lngUX/QTq7aEXhN'7 +jQuL4qYgEnrr*'#rr2rtrVenWq"3k&[[sLuS\4+Zr;HWnrVlirrr)`iq=X4?j4_eq[]?*pVP^&] +T;9*PnbiCcrVlfpqu$Elrr)fprqZTnrWE3"rr;rrrr;us!<)op3;`RIp\"1LnaPo0jl>=VgXjs% +cHF8H^q$bRXfA=tTq%UASt`*\WN*))ZE^O0Uo(2s\]*([oDSRd!r`#oqu-Bjs8 +JcC<$PlLd_%fcP,r;HWprr2rtrr<#tqYqN6s8MuprVlisrr2lrs8;fnr;-?ir;6EhqY^?ls&Ss\ +f"nM`SXZ7HVP9f^TpV49S"HFPWNN_F`QQWXf\>?GkN_L+p%S:Yr;?Qns8Drsrr)fprVcZkrr;rp +r;6Kde[(p;R[KD,Vmse!ip-(/qu-QprV?Hmr=T&-qY'4(Ya;,YQ+#]Er;?Qmr;7T4qY9jYn*&`_ +bJ(9YR[Kh@S",n<[F=L:q"agbrVQR8rVl`mrVZNgqu-HkrVlcorr<#ts8N&urr<#ts8Murr&FTM +q=sXTo'u59kiUsch:gE-cHOAK_7I"WWMlbjTUhI8QC48:U7n9VVl6GcS=,k>Vm*hYhX1.:rs&K" +q>1!br;QWqrr;Zjs8Dus"o\Arqu$BkrVl`pr +JcC<$LB%;Q!rr9!qu-Qo!r`&qrr)rss8N#tr!!&sr;HTlrVnVNo^(YldDrbrT:27BV5^MmUo0iN +RA-Xb\\H&&cI:A"i8j%cmIKlAq"jg_rVc`prVlfrr<)usrqu`ns83f7rVuojfc%f +T!6DuoD\dirqu`os8Drr"98>srVHNmrr`9#s8MusrVlisrr2oq4T,*Qq>'g[p%.bCm-3`riniJD +f@A +JcC<$LB%;Q!rr9!qu-Qo!r`&qrr)rss8N!#r;HTlr;QZns"XNFm,ZmKaLS=DS"-4NX0&=uW1fQI +UT(N/^r+4_pI)u +n+?ANrVulrr;Zfr-ia2Es8MifmbYdXUnOBae+*A6rr2lqrr)iqqu$Eho^;)-gXOKbYl1=.VP0HN +ZHVD%rr<#tr;6HlrVlcus8DinqYpKo"9/?#rr)lqrr<#trr2j>r;6?dq=s^Wo^_J:l0%0fh;$]8 +e^Mgb`5''s[B6="St>kR'r7h1Y,e=fS=cINWNj(Scd^\-kO/-@s8W)srVld!rVZWnrqu]prqcTl +rr;uurV?GDs2=qf~> +JcC<$PlLd^#ljl$qu$EmrVc`qs8E*"rr2fn"TJH"r;HWo"TAB"rr)io"oJ,lqYC'gs"4*;lJ^79 +_6K]"OckuuStMXCSsb_+SY`R#^r+4=e([mnalDIq>1!err*#us8N#srrW3"s8N!8rVZTl +r;HWce#f7>VO!(#W5$X/jR2X6qu-Kmq>^Em,5h9(g:ElFR$=Vsn,<4brr)fnqu$Bhr;HKamd&uh +d`]D+rLOOnRZs5@`SBkTqu$ElrVccqrWE3"r;$'g[p%.bCm-3]piSE8@f$r*ka25R'\?i94SXGn7S=>n4R@^(ESs>@tOd)6*W3O%Vcdgk4lh12P +rr`9!r;?Nms8W,us8Vup#lFJqr;6Bhr;6Hk#lOZ"r;HTorV_~> +JcC<$L]@>Prr)fnrr!H/rr2rsrr)iqrVc`qs8N&urr2dEq=Ee"`j_qCUnaccXKAP"Ssbk3TqeHe +\%]i)dFHn)hrEqen+$&Cq"jmer!<9#rVuosrVc`nr?2%;rr<#pqYpNop"-F;UU$qfPGQ(Ag>q_q +q>:-irr)forr^Hn'EA%0 +rr<#trVZZos8Mupr;Q]orVlfrrrrB#rr;usJcE[gJ,~> +JcC<$L]@>Prr)fnrr!?,rr2rsrr)iqrVc`qs8N#trqn8Bo]XlH\>lC%Uo(2qYH=^qS!TV>V5CH+ +^;S4Be_&[7j65junauMLqYU9i$iU)'s8W)ts8W)ts8;lrru:e/rVulhf%R%L4SXKAY.XJ_eaStVs[[D9u>kjnKDqu$Bjq>V60rVliqrVlis +rr)corr;urr;?QnrVc`ps8N9$rr2rsrdk*fs*t~> +JcC<$PlLd_$NL,(r;HWprr2rtrVlfprVZZn"onT$s8Murr\j`Qrr2lorVZKcp@n7Kim>NJUn4-I +SY2aRTUM((N0'HtTW,<2`6?]^g>:fMlL+35oChtUqu6NmrVuosrW)uqrZD1=rr2`gqu-Hae#\n. +Xeq;CU:nh)jR;d;qu-NnrVcNjs8OtTs8Vudi5;@VPaJ/Xk55,VrVuosqtp?js8Diho^hM5i7cSo +ZDjIbSY;^EQCt_6jmr9Is8N!(s8Muqs8D`grVc`n!<)lqrr2utrVllsrr<#trr36&s8W)trVZTm +qagSYp@\%InF#T*k2YCVgXaj#ccjML^:1;FVP0KDN/*1IP*_Z0T:hjLS=#P+R@^4W]#E4ZmIBf@ +q>:*gr;?Qos8N&trr<#trr +JcC<$L]@;O$N9u&rVlfprVZZprVd*$r;-9frVcWmrr4MBl.O7p[B6:"USO]_VPU#XR[KV6U91l8 +]uA1Af%Jm;jQZ%"oChqSqYU6err2rtrVulrrVucorZ1t8r;HZgd^#U?U7e'KWk?[6k3_j;qu$El +rqu]mrr2rt!WN,urYY\7r;#sKe[V0?WhZfYqYU9krVuiorVlfpr?hI=p$_2.i75ubYG.V^US49Q +W3aJ$p&4mgrVlfpr;?QorVZ]qrqZTorW)urrr2rtrr2p!rr<#rr]pG]rr)clqtg*_p@RtHn*TH* +jl57VgtC6*bf7N7]XkMQUR[a@R[p(AStMjSUna]]W2chsX/`A4]Z&=Uk3r-Crt52+qu$EjrVlis +rr2lqs8N#rrVlcn#lal(rVlfrrr.KK`;b>~> +JcC<$L]@;O$N9u&rVlfprVZZprVd*$r;-9frVZQlrr4MClIsIt[]QF%UnsocVl$5]S=?%?UTV)< +^;eCDe_/d:jQZ%"oChqSqYU6erql`qrWE3"qtpBl*W>m5r;ZE:Z([b`Tq7mW^X:m!mIg;Pr;HWo +r;?Nmrr)lqrY#2,q"*e%\Xo=kU9EPPqu-Nns8Mrss8N#tr?_Crr2lor;6?dq"F@OnaGl2l/gp_ +hqZo8dEKVJ^qI=fXe_QfRL>[YSt;UMUnjc\Uo=9ns/ZL2\\?)4hWOD(r;RE/r;6BhrVZWns8W)t +rVlirrr)fprVQs#s8W&srr;usJcE[gJ,~> +JcC<$PlLd_!<;ur"TSK#s8W#r$N9u&rVlfpr;-Blrr+nUrr)`jqu$\?Mj&S=ZCG +TV.jEQ&q&gOd`,M[(4&qcILY,j6#[rnauPMq>1!eq>UBns8FDGrr)iqqtpBkr;6?fqZ$-4XdtrP +S=,hC\]igimIg;Pr;HWor;?Nhrr +JcC<$L]8.gs8W)srr2inrr;urqu-Nmr;Q]or;?Nn0)G2,k2"=tZ)FImTq@sNTq@sKS=5k8U8kK/ +_TU9RfA,9CjQZ%#o(;\Pqu$BjrVcfqrr;oqs8;rtrVccn,Q7W?r;?Ton^Ok>V5TrHR'+?Qf]DPm +q>:*grr;rqr;HZqrqufrr>>P6rV?*Ph85hWZD4>Op%eRbrr2lprr<#tr>bk:rVQm- +JcC<$L]8.gs8W)srr2inrr;urqu-Nmr;Q]or;?Nn0)G2-kM=J"ZDsdsUS4?TU7e0OSXZ( +m- +JcC<$L]8.gs8W)srr2lprr;uqqY^?jrVlcprr)ir0E(Y6ki(.7\Z;BmS!fY3S=Q.Q^"G +JcC<$L]9Xb1GY>p%eL_rVlfor;HZqrr)fprquZl +rVca#rVQNls8W%Ks2+ed~> +JcC<$L]9X(/Vkp5fWiieEbLkkBpA4^crr;uqr;HZqrr)fp +rquZlrVuosrquWirr<#sJcEUeJ,~> +JcC<$PlLd_!<;ur7KrVQNjqYU*TaJko/ +TUh=1V7t@2ipQL7r;HWos8W)js8W)ur>5:shSc(TWLfg+lM1AWr;HWmr;HTnr;?Qm,Q@Z:na,K# +gsjKYVjN^;TV%[>RAdsXnbN%Xr;HWnr;HWnrVlfrr`,k2bLXg=FWqbK7`=]!nuFU7@U;QBRDkOcu&rR@^1MUS"'FR[g"F +WO0RigZ@kqp@nC]rqucprs8W&rVulqs8W)os8W'"s8N"Ks2=qf~> +JcC<$L]7VXs8W&qrVl`lrVucqrr)jLrU]7,begikVPBlZTqeEYTUV43R@TtIXgYp\ajASlgu%2V +lL"-5oC_qVr;?NmrqufdrYte4r;HWorVQQ^b,M)9X.5QLY/8ZEkO8-@r;HWos8N)upAb0l(B+:4 +rVH-Me?c'TVPUr^pAOmcrVlfprr2fn+TMH;o^_J7inMo"[&9OcR[ft@SY`mHlhUS[rVl`nrr;us +n,EIgs8W&ss8W#r!<<&ts8N)urVulr/cG\Jr;6Bfq=s[Wo^hS@mHWinhqm2Df?hdb`koI#[]ug, +SXPt6R@0Sp\k'gs8W$/r;6BhrVc`ps8W&qr;Q`rrIP!cs*t~> +JcC<$L]7VXs8W&qrVl`lrVucqrr)jLrU]4,c,-unVkg)^U84Z_U7I[;R\$1MYID6ab0eeph;@;W +lL"-5oC_qVr;?NmrqufdrYth5r;HWnr;-B[af(l5Wgf?HY/A]EkjS6Ar;HWos8N)upAb0k(B=C3 +r;-'Me[26VVPLl[p&"U`rVlfprr2fn*rl69o^_J7j4r,&[A]agS"61DSu'!IlM:J[r;HTlrVZft +rr2Hf!ri6"rVlisr;H]rrr2rt!<2rsrr+5Brr2imqtg-`p@e.MnF,`/k2P:ThV?c2cHF8G^UgkX +W1ofMR/WNWStW!ZWW&jrWW/n*WN351]Z&4NiTp7:rVZ]qr=Jo(qu$Ekrr2rtrVQKks8W%Ks2+ed~> +JcC<$PlLd_!<;ur$ig5*s8W&ts8DlorVl]nr%e0Gqu$Els8W#fjk%VgZ_sLgS=,e7S!o\,NK09k +S#!*j\\H,,d+-h)iTBFlnb)VMqu-KnrrE&rs7-'grVl[1r;6?cq2T:iaNpAOmcrVlfqr;cior?)(m-<]igtLH4dEBVM_7dCdYcFRjR$Eo"OcblqS=cGOSIV0ZS"HISYI_^!f&H;ur;?TorVucp +rW<&trql`qrW<-!rdk*fs*t~> +JcC<$L]@AQs8Drr"98>urqudJqXj1=hpTBJWMH2\U8"EYUnaQOR@0G6Wj9(Ja3N,`g"kTGk3MI* +o_%tSq>1*g!<)or!<)cn!rr9!qu?Tn)u][3r;Q]qqX)S,T;o#fPantse(j*Tp\Ogerr2lkrqcZn +rY,5'm+T.PU8=`gd.RD8qu6Wqrr)co*<#g5rr2lmq=jCDjP8>1^9+#pR[p+ETqnp3hXpgI"9&5u +s8N#VrrW3"s7lQss8Muss8Muq5Q(EVr;--[p%7eBlfmTniS<,=f@A +JcC<$L]@AQs8Drr"98>urqudJqXj4>hpTELWhlD`USFW]V50fUS!oe1*g!<)or!<)cn!rr9!qu?Tn)u][3r;QZoqr;?QnrVHBbnE]2lf?M(5TUD:@TqS-TYf,Ahrr<#s +qu$EiroF(\rr<#nrWW?$rVuosrV\tYqu$Bgp@\+Nna>`-kiLg[g=b-0e'H7Y^q-kSWMZD]SXQ"; +StDdTW2m#"W2?GgUSY#u]Z/IVip-"(pA4aarrN,trr)utr;HQmJcE[gJ,~> +JcC<$L]@AQs8DusrVHWnrr2p+r:faIjkS1sYGIn^S,AfYS!K6:O;aL`Y-Yj]b0JDbg"bKGl0\!4 +p%\F^qu-Nlr;QZqrVHKps8N#ps8;j7rVQHfr;6EckfBKdUo0`DQE.pOg>q_rqY^?krV6BfrtPG2 +s8MWQe?tsr;Q`pqY9aOkMb(AaL\==PEhN)R[BPA^=_oOrr;uqrVulr +s8W,t#ljl$qu$EmrVc0a!ri6"q#1Hsrr)lsrr)d[r;6EiqY'XUp%%M8kN(UYg"+a(da-+X`4`U` +WhuJ[Q^3i!Q'RZ%S"-(BSXGk3QBdc+VQRPUg#)#\nFcSRq>^6h!rr9!JcE[gJ,~> +JcC<$L]@>P#Q=Z#rr2inrr2pQrUJpu`k&FUV4jZ^WN3%pSX>b1R@U1U[(F5sbgP(shVmV^m-aH; +pA"O^r;HWnrVlcorW)lprVlcts8N#ps8W'Cs8N#rrr2loqtog(WM$5oU6hFVa3rc)nFueVrVulp +rVZZorr)fpqZ$Qo%0-;#n)2MkDiU$::s8W&ss8Door;HWorquot +rV_~> +JcC<$L]@>P#Q=Z#rr2inrVlgPrpo.$a1JUWVP9lbWiW7tSsbt5R\$CY[CjH!bgP(shVmV^m-aH; +pA"O^r;HWnrVlcorW)lprVlcts8N#ps8W'Cs8N#rrr2loqYKU$W1U#kTpD4R`mWZ(nFueVrVulp +rVZZorr)fpqZ$Nn48nsDiQ83jUSjd%mJ?_XrVuosrVlfrrr;rpr;Q]or;QZhp$h)#gsafL +UTCA`TX3)7rVu`hr;-ERrrW3"s8Drqr<*'!s8Drs!<)orrr#IhrVQHfq>'g[o^_M?m-3`rin`>? +f$i!ia2>^*\$E$-SXGb.R$jM?V5UQ&Z)jgsU84]cXL#RXc.CtBp\t3mrVliqrVZTlrr2oq!ri/s +JcE[gJ,~> +JcC<$L]@>P!r`,srV?Nlrr"YKmGQC.[B-7!SXuROVPToPPEM&kQCOeS\%fo)d+$_'hrO"emIKrD +q"ssdrVuiqs8DoqrW)lprVlcts8N#ps8W'Cs8N#rrVZQgp\*jjURIsWS<92@_pR3!nFueVrr;rp +rVZZorr)fpq>V0-rr;uileB7OP+A>;^?kapr;HZqrVe,Crr;rpr;Q]or;HKboBtSkf$;.=V4*X6 +S>2U;Q`\NtqYg9erVc`qs8W$'s8Dlmr;HZorU0[err<#srr)ctrr<#srr2usrr2oq5QC]ZqYL$` +q"OFMn*]K)kMtLUf[\HucH=,A]XP2JUn!g8NK&sYOd29%TVS?SQB@;pS"cg`\%g#4h +JcC<$LB%;P"98Auqu6RNr:ogFhpoi^YbdtbUo:;mV4aEOS=?(DWN`hE`6-BSfA#6EkNV=$oC_kS +qtpC3jrr)Wk +s8N)ur;Zfr5QC]\rr2`ak0p])UT:&uj7rWPrr)irrVZWnr;HWorVlfprVulnq=jCEk2"S4_Qfc$ +S>;sOS>!1.iUm-Lrr2j!s8N&ts8N#ss8Muts7uZor +JcC<$LB%;P"98Auqu6RNrV5pHhq#rbZDO:gV5^MqVP0WSS=H1HWj&tH`6-BSfA#6EkNV=$oC_kS +qtpC3jrr)Wk +s8N)ur;Zfr7fWGcrr2`bkL?o-UT'ipiqE?Lrr)irrVZWnr;HWorVlfprVulnq=jCEk2"S5_m?&( +SYW$MS>!1,i:R!Hrr)cmrVuorrVlfrrr)otq>UEm#lal(rr<#trr;uss8N)urVcWm"TSK#s8Vuq +6N-fYr;HQiq"OLUoC;>LHqrr.KK`;b>~> +JcC<$LB%;P2uimTqtp$V4+gMp&+dfrVlfpr;HWmrVlfprr2lps8D`ep$V&(g="-XXIPN@ +S!]A%R&RsXo)/IdrVZWirW)oprW)uorr;p&rr<#ts8W)ts8N#trrE&srVQQss8N#ts82ddrVQKi +rVZNdp\=FRoC))4k2P@Wh:^E/d*0SJ]skDRW1olNPE1Z]NfoZnQBdf+SY)LEStMm[ZFn6)fAGcX +o(i4^r;Q`rrdk*as*t~> +JcC<$L]@>P0E(eGs8Ml`i6fHOXf/(iSt;^UWi2\_R$s\CW3EkNb0SMef\56Bk3ML,o^qnRqu6Np +qu$Hmr;HWos8Drsq>L["rr2rtrr)fnrr2rr)?0Bg_5a0,YG@P[[`d=^lh'uIqYgEnrVc`ks8W)q +s8Drrr +JcC<$L]@>P0E(eGs8MlaiR5ZSY,S=oT:i!ZX/VncR@BnGWNj(Qb0JGdf\56Ck3ML,o^qnRqu6Np +qu$Hmr;HWos8Drsq>L["rr2rtrr)fnrr*l8r;H?H^oW[E@(Ylh'rHqYgEnrVc`ks8W)q +s8DrrrLL^!rr;uqr;HWnr;HKmq>U*so^_J; +lKI?iiSE5>eGdiDd*0G@[B-0rS=#\3S=ZIPWN3/%Vk]u[U84`jZ*qEfc.D%IqYpNnrVlcts8N"K +s2=qf~> +JcC<$L]@>P3rSsQrVZEUgs3X>W1f`KQC")6U7n'APEq]0Uo_#?aj/;`f@\pLQtrr2rtrr2lqrYPP1qt&RTUme$WSs#SI`mW]-oD&1[s8W&sq>^Koq>^Em +)ZBL&kLd81TW+TfdI$i0rVZWorqlZmr;6Noqu.T6qYBp]oBbMog +JcC<$L]@>Ps84\Os8;63\u_a'U7n?ZVl$8`R[08/Up@_N_oU*Me_&[:jlu1%o(;\Qqu$Bjrr;ur +qu$Knrr2lprr;rrs8W&urVZWts8N#ts8N!>rVlfoqtp'C^SRO'Z(RP_\BN^glLO]GrVlcps8Doq +rVulr!rr9!qu?Tn(&e(,q!mC`UoC]%Y/TT$rVZTls8MrprVultrVc]rrVZWm)u9*qmcWBUcG[)b +Q^O_VYG@hp`SU4bs8Murrqufqrr2otrr)iurr<#srr;uurpTjgrr<#qrr,S"?=LV5L8lX/i1rrhU(,^tJ/P +s8N#rrr2rsrdk*fs*t~> +JcC<$L]@>Ps839's8;64]WJ',USF[bW$J78SrVlfoqtfp?^8.=#Yb.>[\'*LclLO]GrVlcps8Doq +rVulr!rr9!qu?Tn(&e(,q"!OdV5^`#Xi0AurVZTls8MrprVultrVc]rrVZWm*;T3rmcWBUd)NJg +Q'S8PYG@en`81"]rr)fps8Musrr2os!<2rs!ri6"rVlis!<2He!ri6"qu6Wq5Q:]_rr)fprr)cm +rVlfpr;?HgqY9j[p%%V?lKRKkhqm)>f?qjeaMbp0]!\]~> +JcC<$L]@>Prqn;FqWZ;6W1fiSR@0P8Ssu(0O,fHrY.D9]`ll`Yg"bQJkj.X*oCr+[rr2lns8W&u +s8Drss8Drrs8W&urVZWts8N#ts8;j3s82Wen_1RHR&6pQPb>;$f&5c_p\Ojbrr)lrrW<-!rqZTm +rY5;+p$LYPT;/NcW5.HhrVcWls8MrprVultrVc`pr?2%7qtKXLm,csLb.t0LN/X7)Vk0BX_:e;T +s8Murrr;urrrE&srrE&srrW3"s8DrsrrE&errW3"s82fqrrE&ts8N#ts8;j[rVlfpr;?Bcp\"%D +md09(jP\nKf@A3ia2,I$\?i95SX,CtN/j'dR%0\Ur;6Ejrdk*fs*t~> +JcC<$L]9+.s8W&srr)fniOGVUV5BrVS"-">T;/3ZWj0.ScI(+ngtq#NkNq[/p@nCYqu-KmrVc`p +r;cirs8N#ss7uZnreU8+E[^#/YbrVcZlrdk*fs*t~> +JcC<$L]7tcs8W&srr)fniOP_XV5L&YSGo*"Tr"WaX0T@WcdL=qgYUoMkNq[/p@nCYqu-KmrVc`p +r;cirs8N#ss7uZnrlhCAWs8Dop +rr2rsrW)usrW)utrr;uurqHEorr<#qrr +JcC<$L]9+.s8W&srquZihmAuGTq\'AOckooQ^XJb0JDdg>:iNkj@m2p%J.Uqu-Nos8)`p +rVum"rVZTlp\t0j-ia/Drr<#trVlfpr;QZmqXN1HVkTi[T9Q"Y`mj#4nFueWrr;rqs7?6ds8W'8 +rVlfnp[@1dXei)"Up&MGqu-HlrVZWnrVHNns8W#trr2j6qtTsZmH*9ZdDE2_Q^!f+USFBMXNp)( +qu-Bjrr;us!<<#s!<<&ts8N)up\toPEV9!StVdISXuCI\_?cTq>0sbrVuip +JcE[gJ,~> +JcC<$L]941s8W&ts8DlphQ3$5V5KoQQBmo.VQmePair)Ye_&^;kNhR+oC_kQqYU3grVcZmrr2lq +r;Zcqrr;usq#CD2 +rr)]bm+]=UWjJY#eF`Y;rVl]lrVl]os8N#t!<)or*W>p3p[[Y1gt0ii[A&nNV6R"fR'=ZfnGE1a +rr;rorr;ourr)fprr;rqrr;uuroF(`rr<#ts8W)ss8MutrVld$rVlcor;6Ehrq\/?p@\%Kna>]* +jl51Pf[\EtccsSN_S3I\V4X9GQBdf-U8+K]XeVGjebK1DrVultrdk*ds*t~> +JcC<$L]941s8W&ts8DlphQ<-8VPp/VQ^F23Vm="Tb0A;^e_&^;kNhR+oC_kQqYU3grVcZmrr2lq +r;Zcqrr;usq#CD2 +rr)]am+]@VWO&Iue+EP:rVl]lrVl]os8N#t!<)or)#aC.p[[Y0h:Koh[A&nNV6?hbQ`nHbn,!%^ +!WN&prr;ourr)fprr;rqrr;uuroF(`rr<#ts8W)ss8MutrVld$rVlcor;6Ehrq\/?p@\%Kna>]* +jl5.Of[S?sccsSN_S3L_VkK]OR$X54USO]aY,%Ynf(o@FrVultrdk*ds*t~> +JcC<$L]8q)s8W&ts8;`kgo-C'Tq\!=NK0-fT<#E8`5p0JdF[15k3MO.p%S:Yqtg0err)lr"9&6! +s8)]pr;QQrr;HZprql`orW2uqrr*o8rVcWir;?H]fX76CWhPfCU:SRuhLWtrr2lor;6?hq(ML9o^VD=lfdHj +i8*,=e'ZLebK.]@]We6%QBRDiMiO'lS"6:PT:)b.o_nU^qu-KmJcE[gJ,~> +JcC<$L]7JUs8W&rrZ;+!Y`Xm.R@BkGXL,XWa32fXf\PQKkN_L+o_/(Vqu6O$r;HTnrVc`ps8N#q +s8N#ss8N#ns82d9r;-?jrVlcoqtp?_f=%<>Una9DWl!6?j6Q=3qYU0h!rr9!nGiFcs8^U9rA6p&+dfrVlfoqu6Wo +r;HTns8Muqrr;uss8N)ujSoG`s8W)us8Mrrrr2rtq#: +JcC<$L]7JUs8W&rrZ;+!ZBC33R[p.MXgPj[aNW#\g"kZLkN_L+o_/(Vqu6O$r;HTnrVc`ps8N#q +s8N#ss8N#ns82d9r;-?jrVlcoqtp<]f!V*:US='@WPHs:ip-.1qYU0h!rr9!nGiFcs8T:`LBp&G!irVuosJcEUeJ,~> +JcC<$L]9./s8W&srr)cnhlMfmO-Q'$StrNt]u.n5cd^\+ioTFmo(;\Qr;Q]orquZlrr2lrs8N#t +qu-Torqlrsr;HZprqufnrZ1q5r;Q]or;69bqXE"?RZsA6OclNQc.Ch8nFl\TqYop_r;Q`p&cV\" +mbu6`S#`*I_W^^jqu-Kkrql`prr<#tr\+JufZqFFWL8s +JcC<$L]@>Prr!o;r9;5"S=ld^Zb"#rdFHk%gY_&Un+#u@p\F[^r;HTn"9&5us7ZHjs8N#ss8N#s +s8W'*rVuorrr2lmqu$EkrYPP(f!_6FVkBurr)lrrW<-!rqZR3 +rVuorrVufgo'=l,R&ZmN^#A\`qu-Nos8Dlqrr2rt!r`,trquourVlfp(Adarn*/c^d)NMmTq@sP +WMH8k_qae[rr*$"r;6HjrW<&trr2lprp9Xdrr<#trr;uurql`qrW)urrr2rtrqZTmrqu`pr$M:9 +q"OIRo'bu3l/q!^gY(92da6=``P/jfXJ_hfVPgZ +JcC<$L]@>Prr!o;r9;5"SY2m_[(=,tdam()gu%2Wmd]l?p\F[^r;HTn"9&5us7ZHjs8N#ss8N#s +s8W'*rVuorrr2lmqu$EkrYPP&e[;$BVOs*=WP[0Bjm2L4r;?Nls8W)s"98>urr)lrrW<-!rqZR3 +rVuorrVufgo'Fu.Q`6^K]\rM]qu-Nos8Dlqrr2rt!r`,trquourVlfp(Adarn*&Z[cc*;iTV%gN +W2$)h_V=VXrVlio!;uco!r`,trr)fpm/I.ds8W)ts8N)uqu?]q!<;urrr<#tq>^Emr;HZn-MmQ5 +p\"1Ln*TH*k2P7Pg"P',dEp+W^U^\RW2-2cW3F;!o`"jirr.KK_>f#~> +JcC<$L]@>Ps8=#:qtfKnV4!mMWirhDa3E#]f%Aa9kjIs1o(MkRq>L)RDW4gdLq"t$hrVZTlr;Hcrrr2oqrVl0`!ri6"rr2rtrr*9)rr)cnrr;us +s8Vuq!<;ur2#[@MrVZTjqtg3eqYL$_q"FCPo'u29lfdHih:^B,bf\&H^UUSOW2#uWUSP$1ht-dE +rr)iqJcEUeJ,~> +JcC<$LB%5O*rZ$6p[6hZ_8=46air/_g"kWLlgO?8p\FX]r;HWnrr)rsrr)j)rr<#srVuiprr<#t +n,ELgs8W&srr;rsr##D4rr2Q@[@j.oYagu\_p[B(n+6>Qrr2rprW<-!rp]s`rXSl$p$pnCR&$RP +ZdeUGrVc]srVuosrqud#rr<#trVc`orVuj;qt^!Wlf-UHbf-u`Pa\\ZWLfipe`ul-rr<#trVc`p +rVZiurr)fprmUlKrr<#orW`?#rr)cmrr)jDrr)fnqtp3`p@\%HmHWs!jP\hHf@/*jbK@rJ^q.(i +a4TVJqu-NnrVleIs2=qf~> +JcC<$LB%5O*rZ$6p[6hZ_8=45air/_g"kWLlgF97p\FX]r;HWnrr)rsrr)j)rr<#srVuiprr<#t +n,ELgs8W&srr;rsr##D4rr2T@[%EqkYFCcX`73Z,n+6>Qrr2rprW<-!rp]s`rXSl$p%%"EQ_^IO +ZIACCr;HTrrVuosrqud#rr<#trVc`orVuj;qt^!VlJ^@CbJ^c\PFJYZWL]`meEQZ(rr2lpr;HWo +rVZiurr)fprmUlKrr<#orW`?#rr)cmrr)jDrr)fnqtp3`p@\%HmHWs!jPeqKf[S +JcC<$LB%5O)u][/p$CDR^VIe.a3)`WfA#3El0Rm2p\F[]qYp?lr;Q[#rVZQjrVlcoqu6Wq%K6;* +rVZQjr;6Ejs8Doors8T's8DrsrqlQkq>^:+qs`";S!p:VQ]S/\ce7CHnb<"^rr;uslMp\Z&H2Cr +n(Oh)S=Q(McgLW+rr)iqs8N)uqYpd!s8W)srVlco+92?;q=a=Ai7H;q^TX,dP,,+OR%1M0jmi3F +qu$Ejr;Q]or<**!rVc`pj8]/X#ljl$qu$EmrVlWmr;I$#qtp'g[p@\+L +n*K<%j5/J?eBlF\a2Z-;]stSb`n0JIqu-QorVccqrdk*fs*t~> +JcC<$LB%8P,QI`Ar:K@ +JcC<$LB%8P,QI`Ar:K@`4<(DP+](\TUr1$iV!3Is8;or +"8hrmrVc]qrVc`ErrW3"s7lTns8Drps8W'$rVlfpr;QR7q"OIRo'bu3lK@3bh:pW6e'ZLdd+ROJ +o(`.^rVZWnrdk*fs*t~> +JcC<$LB%8P*WQ*:q=3b2g=4U#e_&U4iT04hnalJLqY^0s`q"aXLdBB%-T;%jEV7t4*ip?:1qZ$Tps8N#_s8DrsrVld+ +r:oj@\X]+^USP]gq#16krr;uurqcX!rr<#trVc`orVuj@r;6?ana5Q!f#b\7WgJ[1W2#cKVS:jT +p\=R\qu-Nkqu$EkrW)oqro=%YrAf@A9pcHX_hjR2[9rVulqrVulrJcE[gJ,~> +JcC<$L]8Oss8W&srVuiin*B)ohr!DQkNhX-o_/(Vqu$Bjrr2rsrr2rtrW)uoroX7ZrYth8rVc`p +r;Zfed'9IKX.boNYJo#GipQL8qu-9g!rr9!nGiOe('"71r;QWkrqZ3JcEj4FZ)"hfqZ$QorVc`h +s8W'Bs8N#rrVlfpr;?Hep@I\4f[8$d[$mAWUo:>nWOL:Aqu?]qrWW2qr;Q`rrr)fpf)GgNs8W&s +s8N)ur;Zfrqu?]qrr4GHs8W)srVlfor;6Beq"FCRoC)#/kN(RVgtpiDk3_^3q>C6krVlirrdk*f +s*t~> +JcC<$L]8Oss8W&srVuiin*B)ohr*JRkNq^.o_/(Vqu$Bjrr2rsrr2rtrW)uoroX7ZrYth8rVc`p +rVuogdB]UJWh>ZIY/JfEj6lU9qu-Hls8W)t!rr9!nGiOe('"71r;QWkrqc6Jc*O.FZ(n_cq>^Hn +rVc`hs8W'Bs8N#rrVlfpr;?Bbo^V;.f?qpcZ^I2TV5UDmW4((=qZ$TprWW2qr;Q`rrr)fpj8]/Y +!<;los8N0"s8W&ss8N)ur;Zfrqu?]qrr4GHs8W)srVlfor;6Beq"FCRoC)#/kN(RUgtpiDk3_^3 +q>C6krVlirrdk*fs*t~> +JcC<$PlLd_!<;ur.0';Gs8W)us8DrqrquEVl/^dYh;IAXm-jN;p\=R]r;HTns8MomrVcTj!<)lq +s8N)urr;uss8NH*rVZWmr;HWprr2iqrVdc7rquZiq=sjam)uN)V5BcGQ`IpKf\l/hp\Og^rW<-! +rp]sfr>bk9qu$Knrr;lfj3"KmU8XTdh=gjIrVc`orr2lorql`qrW<-!rr2j7rr)cmqY9aSm,?I= +aht9FOdqr8UnXTgb2i6pqZm*!qtg6is8W)srVkjWs8E<(rr)cnrr;urq>Ld#s8W&rr;HTlrVlir +rr +JcC<$L]87js8W&qr;QZlp[[b +JcC<$L]87js8W&qr;QZlp[[bUEo!ri6"rVlis!<2He!<2ut!<2utrVliq)uTU0q=aIOo'u27l0. +JcC<$PlLd_!<;ur-NF)Es8W&ts8Dlnrr)`go'Yi-l0\$6q>C3irr)fps8W)us8Mrorr)lp"8i#o +rVZZps8)`ps7uWqs8N#qs8Dp8rVZTlqtTm[maJ5)VmNLhOfH@Lh<")!qu$Egrr2its8Docs8W$3 +s8Dfls8N#tr:]@.]pbOiQ))gurr2isrr)io!<)lqqu?]q!<;op-iO&Dr;$$VmcNb_4rVlcnqY'USo()> +JcC<$L]@8N$iU)(r;$*\oCM\Pr;HQqrr<#trW)utrVulsrVHNnrrrE%s8N#trr2rt!<2Eds8^Bls8@s8W&ss8Dus"9&5us8N#qs8W'>s8Muqrr2lpqtp +JcC<$L]@8N$iU)(r;$*\oCM\Pr;HQqrr<#trW)utrVulsrVHNnrrrE%s8N#trr2rt!<2Eds8rr)flq=jIFj4i/4^oaE,USb&lW2I)Omf3=cr;HNl +!<)lqaSuGCs8W)srr2lrrWE,urr;usrr42As8N#trr)fprr)fmqu$~> +JcC<$L]@8N')hh/r;$-\naZ>MrVccqrVlisqu-]rr;6Bjr;HR!rr<#ts8W)tlMpn`*rl3;s8Mol +qY:!akfB]mUopYcTWQ#XhWF>%qY^?mrr2rt!ri6"rr*!!rr2EerVclrqu-Nn%/othji3^TTp21g +lhpb\!WW)sqZQirs8MuprrE&ms8Dp6rVQEan`o#aeBGP(TUVCAU8"6LWQ+)us8MuorW)oqrn7;X +rr<#rqtp +JcC<$h#IER!<<&ts8Vuqs8W)t!<<#s!rr9"rr*'#rr2rtrr)otrr2rtnG`FeqYpKoq#19nqu.0, +rr;uqqtp:0krr)`lrr2oq$ig5*rVlfprVlisrp0UarW)uorr<#srYth8rVccpn'.l&UogM` +T=E+rhW=.uqtpr;Zcoq=sUMk2+_ +JcC<$h#IER!<<&ts8Vuqs8W)t!<<#s!rr9"rr*'#rr2rtrr)otrr2rtnG`FeqYpKoq#19nqu.0, +rr;uqqtp:0krr)`lrr2oq$ig5*rVlfprVlisrosFarr<#trWN9#rr<#srZ;%;rVlfpnBS)* +V6-S_T!unnh<"%tqtpTaqYU6js8Mrus8Doks8W&u +s8;lrr?M=?r;HZqr;$*ZmcN?Vd`fJ*P`_`KZ([\fa5cjks8Vuos8W)s!<;urs8W)t!rr9!mJm4c +!<;los8N0"s8W&ss8N)urVm'#s8W)srr2lrrX/W'rr;uss8N#ts8Dp6rVZWnrr)iqs8W&qqtg-a +qYU-drVlcnrVQQrs8N&urr)otrr2rtrr2rtrVlisrVcfsrr*!!rr.KKkl6/~> +JcC<$h#IER!<<&ts8Vuqs8W)t!<<#s!rr9"rr*'#rr2rtrr)otrr2rtnG`FeqYgKppAP'lqu-Tq +rr*-"qu$?dq"t$h"T8/prr2oq#64Z#rr)cmrr!6(s8N#trr2rsrr<#`rr<#srr;m3qYC$clGfTa +SYi'FRBsu]gZ.Ypqtg6irr<#urW)urrW<-!rp]sfrY5D3rVQNks8MunoBOJhPb"57]&EJarW<,u +qYpBsrVlcps8W)ts8W&us8)^>s8Dors8Mrmq"=%8gXFHh]:t7@S#W?MNLdcLKrrr2rqrWW?$rVlfprqufn!r`0!q>LBorr)otqu-]trr)cmrVufp +rW)oprXf,/rr)]iqt^*dqtg6irVZWkrWE3"s8W)t!<<&ts8W)ts8W&ss8W&s!<<&t!rr9!JcFs6 +J,~> +JcC<$h#IER!<<&ts8Vuqs8W)t!<<#s!rr9"rr*'#rr2rtrr)otrr2rtnG`FeqYpKoq#19nrVcir +r;HTur;6?hrVlfp$NL,(rr;urrVlfrq#1LKrrr2rmrW)orrr2lrrW)oprWiE"r;HTorVcTl"98B#s8Muts8N#t +s8N#ts8Drss8Doss8N!!s8N"Ks60K5~> +JcC<$h#IER!<<&ts8Vuqs8W)t!<<#s!rr9"rr*'#rr2rtrr)otrr2rtnG`FeqYpKoq#19nrVcir +r;HTur;6?hrVlfp$NL,(rr;urrVlfrq#1L>P2qtg!Sf<:jDWi*&OoD8C`s8Muqs8Doks8W&us8;lr +r;QWsrr<#srqd]1nET,mf#th4Ss>bCYH"7eXj6G9rqQBis8;`kqu6Wqrr*!!rr2 +JcC<$h#IER!<<&ts8Vuqs8W)t!<<#s!rr9"rr*'#rr2rtrr)otrr2rtnG`FeqYgKprVclsr;HTn +!<<#s!WDrprX\r(qu$Elrr)fqs8Mrqs8N#r!rr5tq>M!+rr2rsrr;uss8W&qr;HQkrUKmes"+-J +rquWjqtg-P`M8fmT9G/!ZGY&EkO%m;rr2lrs8N&urr2rsrVZWns8N#es8W'Ds8Muor;HZprVZ?S +d&<;#TqJI8o)8Res8Dfkr;?NkrVlisrr2rtrW)uprW<-!rr2p?rVlfpp[IJ1hUBNWX-JU'S"H(/ +Of-Fms8Mikrr;omr;6Kns8DrsrrE&prrW3"s7uWrs8N#tr;Hm"rr)cmrVl`pqZ?`rs7uWos8Mut +s82cqs7ZHlrrrB#s8Mrprr*E+r;Q]nrVcZkqu-Hirr;oq"98B#s8Muts8N#ts8N#ts8Drss8Dos +s8N!!s8N"Ks60K5~> +JcC<$ci=%ErVZ`or;HZprr3'!rVcWkrVccqrr<#t!<)ops8<3%s8W)trVZTir<)urrVl`ps8N&s% +K?>*rVQNlrqcNhr;HTnrr;rsrW)oqrr2lqrW<-!rqZTmroX7XrYPM.s8V<"V4jrlTTu(SaO]>9o +ChtWrr)fnqY^TqrVccprUBjer>,G3rVZWnrr)fnp[R%PWN!5"S]C3rs8Muprq6 +JcC<$ci=%ErVZ`or;HZprr3'!rVcWkrVccqrr<#t!<)ops8<3%s8W)trVZTir<)urrVl`ps8N&s% +K?>*rVQNlrqcNhr;HTnrr;rsrW)oqrr2lqrW<-!rqZTmrosFarr<#qrYGG.s8V?$VP:/pTp;1Ra +49,5o(MkVrqu`orWE3"s8W)t!rr9!nGiLes8Nl5rr2lorVZE[hS6%hZ_X,2mJ6_YrVcZnp&G'ks +8W)t!<)fo-iNr?r;$!QkMY"?aL@t4R\HXUTUr$og@YFFr;6Birr)lsrr<#trr2p"rr<#tmf3=c' +`\.1r;HTlrVccrrVuosrVc`qs8MZjs8E#urr2rt"oeQ%rr2rsrW)oqrr2lrrW)oprWN2trVlior +WN9#rr;uprrE&is8W)orr`9#s8ITLl2Q8~> +JcC<$ci=%ErVZ`or;HZprr3'!rVcWkrVccqrr<#t!<)ops8<3%s8W)trVZTir?;+9r;QZmqu$El +rVZWnrVlcmr;Q]lqtpT;nHL_sI:"rVcZkr;HQkqu$Ems8DTi"TJH$rVcZn)ZBO*n*&][cGZlRNK03f +QB[`2]@cZRs8;`jrr)ls"TJH$rr2lr"TJH$rr23_s8<*#rVZQirVZ]m"8r3!rU9adrq?BkrrUQrs8W(Ls69Q6~> +JcC<$h#IER!<<&ts8W#roDegho)J^gq#CBnnc/Odr;Qcqrr36&rVlfrs8N#srVuiss8Munrr2it +rr)fnrW<-!rpBacrW)uorr2rtrVuj8qt]HnU7/$aURIpgbL>G:oD&4\rr)`lrr2lmrWW9"rr;us +nGiLerquotrVc`p%/KMVc**nJVOG6^qZ$Qms8N)tmf3=d"TSK#r;?Qn)Z9L2rVH-Tm,d*UbeL6M +Q^jnOVOX-[dI-l/r;Q`rrr2rtrr**$rr2rsrmLfJrr<#krquforW)orrWN9#s8W)tr<)urr;HWo +"o\H!rVlcorWE3"s8W)t!<;Zis8Voo!rr9!JcFs6J,~> +JcC<$h#IER!<<&ts8W#roDegho)J^gq#CBnnc/Odr;Qcqrr36&rVlfrs8N#srVuiss8Munrr2it +rr)fnrW<-!rpBa]rW<-!rr2rtrVuj8r;,ZrURS6eUmn*jajT,5o(`+[rr)`ms8W)Ys8W&us7lR% +q=E^oYbSM$RD%_Xs8MrrrrE#arrW3"s8;j7r;6HkqXj4@jPJJ3^TF&nR\ZmZS=Hk4n+ut[rr<#t +rr<#trW<-!rpBacrX8c*rr)iqrVlfrs8MZj!ri6"o)A[hs8E6&rr2lqrr)iq"TSK$s8N#r"8r,q +rVld"rVlcorr)fp"98B#s8Muts7?6is7uWqs8N"Ks60K5~> +JcC<$h#IER!<<&ts8W#roDegho)J^gq#CBnnc/Xfs82lqr;Qcqrr36&rVlfrs8N#qr;ccpqu-Eo +rVlirr;uusrVZWrs8N#qrtbV6s8DlnrVZTlrr2lqrr<#ts8W)us8DourVlcpr$V:4jM.:OUT'fJ +S@->]gun5&qu$HlrVlisrr<#trr;urr;HWprr2Ees8E6&rVZWnrr)iq&,G_Qa/GN.T9d(Lq>^Ek +qu$Brr;HWps8MZjrr2rrs8Muq)uoj.n*B#gd`/bkPDkNhSt)%2X39c%qYL-hs8N!#s8N#ts8N#s +rrE&prrW3"s7uWos8;j$s8N#trr)cmrVcco"9&9"rq69mrr<#trW)ulrr<#trr +JcC<$h#IER!<<&ts8N-!rVc`grrE&trU^$lrr)fnrqcWrrVZWbrs/Q%rr2lprr2os#5nK#s8Mrq +rVlrsqu-Kmrr)lss8E)urr2oq$NC#'rr;rqrr;usmJm4c!rr9!r;?`ss8W)tr>5J5jh%=^Vl62Q +Tt&:ti9Tt/qY^]FTrP)gVRbFSs8Vuprr<#srVlirr;?NmrW<-!rmLfJrr<#krqufo +rWrK%rr;uss8W&qrr;rsrXSl)rr)fprVlisrr;uts8Muts8)]prVld,rVZWos8Muqrr2lprr;us +JcFs6J,~> +JcC<$h#IER!<<&ts8N-!rVc`grrE&trU^$lrr)fnrqcWrrVZWbrs/Q%rr2lprr2os#5nK#s8Mrq +rVlrsqu-Kmrr)lss8E)urr2oq$NC#'rr;rqrr;usmJm"]"onT$s8W)tr>Yb9jLV(ZW2ZDUU:ACu +i9Kn.qY^ +JcC<$h#IER!<<&ts8N-!rVc`grrE&trU^$lrr)fnrqcWrrVZWbrrE&tr<)urrr2os#5nK#s8Mrq +rVm#uqu-Qor;HZprqulss8Ms(rr)iqs8Doqs8N#qrs8W(s8DrrrVZTmrVud$rr<#ts8W)us8Dp8 +rVZQhq>C-J[\'+cUR@77ZcUbRkjeEEr;HZprrqt^3i +rX8c)rr<#sr;?Qos8Mlp$i^2+rVZTlr;?Nms8;ius8N#tpAY*l!<2Zk!ri6"rr)otpAY*lrr*'# +rr2rtrr)iqrVZ`nrr!3%rr)irs8N&ts8W)t!<;op!<)or&,lG)s8W)srVlfprVlirrdk+5s*t~> +JcC<$h#IEQ!<<&ss8QC'r;HWnr:T70hV[5IhVdGZo`"mjrqPm@i8kh9rTM"gSu8EUQ_Ch.fAPo`p\Xmerr2lprr<#ti;`iV +!<<&t'*%t1rUoX?\<`hkYHZ1>rVZWmr;QBhs8N&u"9/?#rqucsrr;usrr!]3q=aCFj4r,+]rmuq +S>3![USY?BkPG5Yrquiprr)fm"oS>trr)fUrrW3"s8DrsrrE&Zrs8T's8Muqrr)fprr;rqrr;p$ +rqucor;?Torr;orrVulrrVc`qs8N#trseu+r;HWnr;HTns8DlorVhBJl2Q8~> +JcC<$h#IEQ!<<&ss8QC'r;HWnr:T70hV[5IhVdGZo`"mjrqPm@i8<*] +U8>6Ak5#&Vr;?Nkq>L +JcC<$h#IEQ!<<&ss8QL*r;HWnr:T70hV[5IhVdGZo`"mjrqPm@i8(rVlcnrVc`qrVZWmrdk+6s*t~> +JcC<$h#IER!<<&ts8NN,rVlippu/f^WiN/!riK#-dcpT,qrl81WMl\iVPpJpWOCUVr;QKOb-Rb4 +Vmab,p\aI0];ha,WN3%tWiW,&cKb9*rr;ude\TJmp>!$no`+$d^"N&Wrr;llrVlcprquotrVlfp +#lal'rVZWms8W&s!rr9!nGiId*rZ$7rVlfprVZWnr;>cnU7eBXQ^4G[bLGM8n+Z_Xrr2lps8E#s +p\k6orr2Ees8E#urr2rt')hk/s8MfakJX6lVl$9&kPG/WrquourVc6cs8E#ur;JGNrr)lsrr)co +rVQB^mcWKYbeU`kT9P\;YHFXr]A<,VrVl`ms8DllrVcWjrVlirrlkEBrW)utrr;uurqufrrWE-! +s8DrrrVc`p!;uip!;uiq&HDb-rVlfprVQKjrr<#trVc`p"9&5us8Dp)s8N#trqu]os8Drrrr)ls +!<.QLl2Q8~> +JcC<$h#IER!<<&ts8NN,rVlippu/f^WiN/!riK#-dcpT,qrl81WMl\iVPpJpWOCUVr;QKOb-Rb4 +Vmab,p\aI0];ha,WN3%tWiW,&cKb9*rr;ude\TJmp>!$no`+$d^"N&Wrr;llrVlcprquotrVlfp +#lal'rVZWms8W&s!rr9!nGiOf!<<&ts8O#9rr2lorVuipkJ![_V4j6AUqFn#iT]h*qu-NnrVc`p +j8]/Yrr3`4s8W&trVullo&muiUSt)e^$#7js8Mrus8DoarrW3"s8N!Ms8Muss8Muprr)`ho^:o" +f$(q?YFh)IUp$qrUq>FRqY^?kr;Z`or;Q]orVuosrp]sfrW)uorr;uurp0UarW)utrr +JcC<$h#IER!<<&ts8NN,rVlippu/f^WiN/!riK)/dcpT,qrl81WMl\iVPpJpWOCUVr;QKOb-Rb4 +Vmab,p\aI0];ha,WN3%tWiW,&cKb9*rVulce\TJmp>!$no`+$d^"N&Wrr;llrVlcprVZZn!<2ur +#lal'rVZWms8W&s#QOf&s8W)us8N!!rVZTkr<)urrr;oq"98>tqu6F*q"NdXSXZ=EQ'A#Sb1,D8 +n+Z_Xrr2oqrVliss8E#ur;Hctrr2Ees8E#urr2rt(B+:4s8Mc^jh[X^US=EljnS]Ps8Dorr;Q`r +!<2Wj!ri6"rr,1_rr2rtrr)corVQB^mcWKYbeU]eP_P!ZU8"'F[Fk!Dr;HTlrr2imrr2ckrr2rs +rr;uss8W)us8DlnrVZTlrr)orrr*$"rr2rkrr;uuroX7\rWE-!s8DrrrVc`p!;uip!;uco%fH;) +rr)fmqu-Nos8Muqrr*#urr2rrrX8c*rr;uqr;Zfqrr2oqs8N)uJcG!7J,~> +JcC<$h#IER!<<&ts8QI*rVlipo$'SAXRgrr)`krVZNjr;ZZor;Z`p +rr)cqs8;its8N#es8Dp"rVZWnrr2j4r;HZnikD.\XJM;LUU\M#jQl@1r;HTomf!:frr2Ees8E#u +rr2rt')hk/rr2cfld2o0TV@pZg%>7CrquourVc6cs8E#ur;Hj!rr2rtrVdu?rr)Zcna,Amd`TA/ +T9u"AXfeIlX2a?#s8;`lrVlcps8Dous8N#As8W&us8N#trrE&rs8W'#rVuorr;I-'r;HWorVZTl +rVlfpr;Q`p"9/8trr2p%rr)fprr)fprWN2squ-QjrW2uqrr*#us8W(Ls69Q6~> +JcC<$h#IER!<<&ts8QI*rVlipo$'SAXRgrr)`krVZNjr;ZZor;Z`p +rr)cqs8;its8N#es8W&us8N#ts8N!7rVZWor8PD`TrXuUQ)(q5g#VJhp\b!gs7lTRs8W&us8N#t +rt>;1rVlfmp$:#2TqS9PYhA[Is8Mrus8DoarrW3"s8N!#s8N#ts8Dp;s8Mump$qD1gsXB]YFh2L +UogeqT;olmr;Z`krVc`p"TSK#s8W)tnGiOf!<;los8N)uli7"a!<<&ts8NK+s8W)ts8N#rs8W&q +rXAc'rVlfpr;?Nlrr2lorr;p!rr)fprr33%rVc`prVc`p"TA5prVu]m!WDrqrWE-!s8ITLl2Q8~> +JcC<$h#IER!<<&ts8QI*rVlipo$'SAXRgrr)`krVZNjr;ZZor;Z`p +rr)cqs8;j$s8N#ts8N&uoDSairVdc9rr)clqYC'`hRK)GVkB9 +JcC<$h#IER!<<&ts8W&s<;Z(%OarXgVPU5aO+W+O^#\S-UkshhS"QIISY)FPfDGR%YEb$1Uo^>T +L5M\LldMo-SXYgkFH*#gS#!p^q>LO$sjSSlT!r`&rq>UHorr)fp#64Z$ +rr<#tmf3=c!<<&s*<,p8rr2lorqG9]US"QgSsQ:bbLPV?o(MtZrr)iqh#IEQ!<<&ss8W)ts8 +JcC<$h#IER!<<&ts8W&s<;Z(%OarXgVPU5aO+W+O^#\S-UkshhS"QIISY)FPfDGR%YEb$1Uo^>T +L5M\LldMo-SXYgkFH*#gS#!p^q>LO$sjSSlT!r`&rq>UHorr)fp#64Z$ +rr<#tmf3=d+TME=rr2lprr2lorq>0ZU7S?cS<]q_bLPV?o(MtZrr)iqh#IEQ!<<&ss8W)ts8 +JcC<$h#IER!<<&ts8W&s<;Z(%OarXgVPU5aO+W+O^#\S-UkshhS"QIISY)FPfDGR%YEb$1Uo^>T +L5M\LldMo-SXYgkFH*#gS#!p^q>LO$sjSSlT!r`&rq>UHorr)fp#64Z$ +rr<#tli6t`*<6!8rVZQhqXW=JSXH=QR$+5Sajf>>bj>9-rr)fpkl1_`s8W)ts8N)trr+#;q=jOMl/:.:^9=/kNgQW;R[L"be)p?#rVc`prVc`p +rrE&gs8W'(s8Mrnr;HZorRLrCrW;unqu-KnquQfsrr!3's8Mupr;Q]or;HTn%/p2(r;?Nkr;HNi +rVlfp#6+Z&rr2lnrr*#us8W(Ls69Q6~> +JcC<$h#IER!<<&ts8R* +JcC<$h#IER!<<&ts8R*]s8W&srr;rsrYPM0qY0RIjPJM7_6BW$RA-gg +WLp--j7iQO"TSGuqu-Hl^An64(]XI4s8Doorr;rorVulrs8W)us8N#rrV?F*r;HWnrVlcnrr2rs +qtg +JcC<$h#IER!<<&ts8R*oCr+[rr2lp +s8Vrpj8]/Y!<<&ts8W)trqm6$n);3VP+/)B_;k@irVlfWrr`9#s8Drrs8Dus/H#DAp[db3gsa?T +W0rd1R\d'\R\RUQo(`(Zr;HNirVlfprr2rsrr<#ts8Vuqs8<6&rVcZmrr;usfDkmM(]XI4s8Doo +rr;rorVulrs8W)us8N#rrV?F*r;HWnrVlcnrr2rsqtg +JcC<$h#IER!<<&ts8Qd3rVlinm)"a>\)m8On+?1nR>7-HkgZ,VT$H`rp%.eIoCDVTpq2H?YhepI +p#X2hPI^A`n*ff,_2*9ClL"*4pA=mhrVcQIX+lq`o&[[0p]&QpL:6:Bn(cCIm.gGKiQfBZaO&o= +rr)uts8W)t#Q=Surr2lqrp]sdrYkh7qu-Hkrqu03[%O4qU6q@H^=(ftnFZGNr;Q]qrVuooro=%S +rYGP4rVZTlqXa%%WgB?XXgZsXqu-NorT*t[rr<#srr;p?s8Mupr;69]mcrrjd`B&"Q]n)EX.Gl^ +\^0I5rVlcnrVcZn!rr9!_>jQ7"98>urr2lhs8W#trr)fjs8W#srW)oqrs&Durr<#tr;HZqrVuit +s8N#rrVhBJl2Q8~> +JcC<$h#IER!<<&ts8Qd3rVlinm)"a>\)m8On+?1nR>7-HkgZ,VT$H`rp%.eIoCDVTpq2H?YhepI +p#X2hPI^A`n*ff,_2*9ClL"*4pA=mhrVcQIX+lq`o&[[0p]&QpL:6:Bn(cCIm.gGKiQfBZaO&o= +rr)uts8W)t#Q=Surr2lqrpKgdrYkh7qu$?hrVPs/Z_+"mTpV7I^=(ftnFZGNr;Q]qrVuooro=%S +rYGP4rVZTlqXX"'X-fQ\Xgd*[qu-QprT*t[rr<#srr;p=s8Mupr;69]mHWfgdDrkuQB\&EX.>f] +\^'@2r;QZmrr)fp^An64"98>urr2lhs8W#trr)fjs8W#srW)oqrs&Durr<#tr;HZqrVuits8N#r +rVhBJl2Q8~> +JcC<$h#IER!<<&ts8Qd3rVlinm)"a>\)m8On+?1nR>7-HkgZ,VT$H`rp%.eIoCDVTpq2H?YhepI +p#X2hPI^A`n*ff,_2*9ClL"*4pA=mhrVcQIX+lq`o&[[0p]&QpL:6:Bn(cCIm.gGKiQfBZaO&o= +rr)uts8W)t#Q=Surr2lqrquctrr<#nrr<#trYbY2rVQHgqWZ;/S"HRKPa/#Ud+[LJo_/.Zrr2rr +s8Vrpj8\iP&cMY+qXNdqVN[LGWO(4KqYU6iroX4^rr<#srr;pCs8Mupr;6?_mHEQ^bJCT]O,KC& +Um@=A[*%@tqYU0frVlcor;HTns8N0"s8W&ss8W,t#lOZ"r;HWprr1OLs8E-#rVc`prUp3jr;ciq +rV6Emr;Z`rrVca#r;6Kns8Mrps8W&trW3&urr)fpJcG!7J,~> +JcC<$huE`U"98>urr2lor]C/WlbSR>^@;1&r;ZcDRYR0Ck0ocQU=Jr8r;6EhrVucop:lTDWRC,, +qt]F!]$L3Prr<#jb):Ybqu6Tp1B.7Nr;?BFWJ?ncm*hc9mJkLdK=9q0d'K[`h!j[`\tGFXR\@:J +pAb0krr2lprr)cnr;Q3cr;Q`n')qq0qX)_:UoCMpR$FSadG*aNrqQ]prr2rrrVlfp!rr5thuE`U +!rr5trr2rr&,uIun(b=@SZSunch.)4rVc`Qs8W#trqu^@r;$$VmcNEZd(l]PR%9nCVlHSp`SL"Y +s8W)srr;uts8N&urr0h8s8Drr1]@=PrVZB[naGo7mdBZ>q#(-krr2rtrV5sLkNVL.q>L +JcC<$huE`U"98>urr2lor]C/WlbSR>^@;1&r;ZcDRYR0Ck0ocQU=Jr8r;6EhrVucop:lTDWRC,, +qt]F!]$L3Prr<#jb):Ybqu6Tp1B.7Nr;?BFWJ?ncm*hc9mJkLdK=9q0d'K[`h!j[`\tGFXR\@:J +pAb0krr2lprr)cnr;Q3cr;Q`n')hh-qmQBeDbdbEjOrqQ]prr2rrrVlfp!rr5thuE`U +!rr5trr2rr%fZ@snD1ODT!#2rdId;6r;PURs8;rsr;@W5q=X=GjkeV8^T*cjSY;^SWhc]6h!Xt: +rr)cnr;Q`rs8Kq9s8Drr1]@=PrVZB[naGo7mdBZ>q#(-krr2rtrV5sLkNVL.q>L +JcC<$huE`U"98>urr2lor]C/WlbSR>^@;1&r;ZcDRYR0Ck0ocQU=Jr8r;6EhrVucop:lTDWRC,, +qt]F!]$L3Prr<#jb):Ybqu6Tp1B.7Nr;?BFWJ?ncm*hc9mJkLdK=9q0d'K[`h!j[`\tGFXR\@:J +pAb0krr2lprr)cnr;Q6dqu6Wms8q#(-krr2rtrV5sLkNVL. +q>L +JcC<$huE`U"98>urr2lorYbb5lG/F:Z.J:-ki^^,MhRhJl-GfRS%[>*rn0rpgZnS5pW8tgPbbq7 +g#hS\h<+S6rr)lha,5>br;HWos8;clrVlTEW/@4mjhQ_BhuD)ZL:5g_Wg9$_h<<@tRu`o,Q][`I +j8],Vr;uusrVQT`s8Dp:r;6Kls7ts*YbS5)WL0'P_q*Z&meH\Ur;HZps8;lqrqYBF'b1uOc +r;-?kq;B0:nGW@br;HWnrVliqrIP"4s*t~> +JcC<$huE`U"98>urr2lorYbb5lG/F:Z.J:-ki^^,MhRhJl-GfRS%[>*rn0rpgZnS5pW8tgPbbq7 +g#hS\h<+S6rr)lha,5>br;HWos8;clrVlTEW/@4mjhQ_BhuD)ZL:5g_Wg9$_h<<@tRu`o,Q][`I +j8],Vr;uusrVQT`s8W&trr;m7rqucjl-6E+WNrIhQDqgSh;Resqtg6hs8N&rrr2its8DoRs8W&u +s8;lrr=Ar+p$q(\V4+E`TuH?orVc]ohuE`T!<2rq*<,p7qY9[Plf$IAaLe@ +JcC<$huE`U"98>urr2lorYbb5lG/F:Z.J:-ki^^,MhRhJl-GfRS%[>*rn0rpgZnS5pW8tgPbbq7 +g#hS\h<+S6rr)lha,5>br;HWos8;clrVlTEW/@4mjhQ_BhuD)ZL:5g_Wg9$_h<<@tRu`o,Q][`I +j8],Vr;uusrVQTas8;j9r;6Ehr:]9pX.H/jUm$t<^XCfmm.^ARr;HZps8;lqrLh!t@@qY^Bhi5 +JcC<$h#IER!<<&ts8W)tB`Ito^lX2:XhDWd[]5OENO.O/bF=`7\o_n^ar;Q6*Mh/hBqu$Hns8N#ts81NNNM+PR\V?C&s4*$`XMCp"P,cpsiOYG;T"E.XUQ:_^ +q>^Hms8E*"rr2Wk!ri6"qu6Tps8E#urr!T2r;#X$Xe;PmVOO'X`7r;?Ndijt;RjSSuV +rVulrrVleIs69Q6~> +JcC<$h#IER!<<&ts8W)tB`Ito^lX2:XhDWd[]5OENO.O/bF=`7\o_n^ar;Q6*Mh/hBqu$Hns8N#ts81NNNM+PR\V?C&s4*$`XMCp"P,cpsiOYG;T"E.XUQ:_^ +q>^Hms8E*"rr2Wk!ri6"qu6TprVlfp'`.Uhb,h53X/28RXM`THjm;[;qu$Bk"TA?!s8W)t!rr9! +irAoTrr)ls)ZK^7rV6!JdB8k4V4G-QpAY!grr)fqs8N&urr*!!rr2?c!ri6"rr)otrVcfsrr*c4 +q"OCGjPJS;_69N#R%C:VTqJI'g@"n=rr)lr#QOf&s8W)us8N!&s8N#ts8N&urr*!!rr1OLs8=qW +rVcZos7tTWPE_8oQ'dr/Vn_!Tqu6Qdj2e +JcC<$h#IER!<<&ts8W)tB`Ito^lX2:XhDWd[]5OENO.O/bF=`7\o_n^ar;Q6*Mh/hBqu$Hns8N#ts81NNNM+PR\V?C&s4*$`XMCp"P,cpsiOYG;T"E.XUQ:_^ +q>^Hms8E*"rr2cos8N&u!ri6"qu6Tps86Ze=sJqu-NorrW3"s8N!!s8N#crrW3"s8Muts8Dos +s8N!X-Vn,*+_o]+#oTULn!P+Ar,kOncKh6 +JcC<$huE`U!<;fmC&S).lGJg9LP_+ZOGAUJPH*%"nB7>UK85JLOctlcR(VV]s7Y3VS;rD_NKBL- +aQNL"q>L<^`/B2aq#(-hq"*tBn+,u#Y)T!qhn+`4gAfcaMO^6!OK6atpXQ'rO06jed^>0gYjD>^ +rW<-!rql`qrql`qrZ(t;rr;rqs8McUc)mY7W1]HHYfG>Ok3_g:r;?Qnr;lrtrr)ls"o\H"s8N#U +rrrE%s8Muqrr*T0r;HTjp$CG?Q(=\BXj6J9r;HTnrn[VSrrgMjh*-o`"RB]pjk; +QC+&'L5MnKj8&Z2X,E.Hg\LmEik^t1W9='Vrr2lprr2los8W(Ls69Q6~> +JcC<$huE`U!<;fmC&S).lGJg9LP_+ZOGAUJPH*%"nB7>UK85JLOctlcR(VV]s7Y3VS;rD_NKBL- +aQNL"q>L<^`/B2aq#(-hq"*tBn+,u#Y)T!qhn+`4gAfcaMO^6!OK6atpXQ'rO06jed^>0gYjD>^ +rW<-!rql`qrql`qrW)usrYPP4rV#BtXIl8cT9YnL`mrr.mI^5Pr;Q]o!WW/urVum$rVlfrrr1jU +"oeQ%rr)fprY,8.rVcTcm+f%8Str$^cgq,6rr)iqh>dNSs8OPIrVc`pr;$'Yn`o)feB5G*Q]R`4 +T:DLP]$fm:;i4YV: +N0]iuPD4sm`oHmnhlDZuZJ53Tpu9,VI]2H,rVlfprVlfpr;ZfrJcG!7J,~> +JcC<$huE`U!<;fmC&S).lGJg9LP_+ZOGAUJPH*%"nB7>UK85JLOctlcR(VV]s7Y3VS;rD_NKBL- +aQNL"q>L<^`/B2aq#(-hq"*tBn+,u#Y)T!qhn+`4gAfcaMO^6!OK6atpXQ'rO06jed^>0gYjD>^ +rW<-!rql`qrql`mrYYV3qt]gBaJbT#URRC4X2<:;i4YV: +N0]iuPD4sm`oHmnhlDZuZJ53Tpu9,VI]2H,rVlfprVlfpr;ZfrJcG!7J,~> +JcC<$huE`U!<;fmE;fh5lG]$?M27%GHusn$Y0ue8oZ`kTIu05LQ'RSpS%\(cs8VlRag7Y(MM?hF +T#C4"r;Q]a_hiiZq>UBdim>`c`Q6KNXc/aoj10])h>c)eMN3=@R`=ano#6lHOJo_)\>t^@Uu(nH +rVc`pr;HTn!rr9!qu?]qqu?]q!<<&t)#a@1q<5u(StrEYOdri&e_]Q]p%S@^rr2oq!WW/urVum$ +rVlfrrr1jU"oeQ%rr)fprr;orr=Af!nDq6JS"ugU_!CpqrVc`ph>dNSs8N<&r;?Qorquck+8"mY +gt:,u[\/nLQ_:4RVlmqooDS[dr;HWorVlirrr2p#rr<#trm(QArr2jSq:LpWPc1gp\$)H^J<@S2 +q<,__I>FN'`lkuZI#+N:lMp@kR"pjU9jrVcZnrWE-!s8ITLl2Q8~> +JcC<$huE`U!<;fmE;fh5lG]$?M27%GHusn$Y0ue8oZ`kTIu05LQ'RSpS%\(cs8VlRag7Y(MM?hF +T#C4"r;Q]a_hiiZq>UBdim>`c`Q6KNXc/aoj10])h>c)eMN3=@R`=ano#6lHOJo_)\>t^@Uu(nH +rVc`pr;HTn!rr9!qu?]qqu?]q!<<&t)#a=/q<,o&SYN3UOINW"eD9B[p%S@^rr2oq!WW/urVum$ +rVlfrrr1jU"oeQ%rr)fprr;orr=Af!nE%?MS>E$Y_dNSs8N<&r;?Qorquck(%ghO +h:U,r[%ESGQCk"NVQI_joD\dhrVum#rVlirrr2p#rr<#trm(QArr2jSq:LpWPc1gp\$)H^J<@S2 +q<,__I>FN'`lkuZI#+N:lMp@kR"pjU9jrVcZnrWE-!s8ITLl2Q8~> +JcC<$huE`U!<;fmE;fh5lG]$?M27%GHusn$Y0ue8oZ`kTIu05LQ'RSpS%\(cs8VlRag7Y(MM?hF +T#C4"r;Q]a_hiiZq>UBdim>`c`Q6KNXc/aoj10])h>c)eMN3=@R`=ano#6lHOJo_)\>t^@Uu(nH +rVc`pr;HTn!rr9!qu?]qqu?Wo)ZTg6q"aRB`Mo8tVO&DkOA-_mNKK[& +TqSI!f^AS3q"jmdrr<#srr2rqrr;p&s8MuprVlirrn%2Jrr2jSq:LpWPc1gp\$)H^J<@S2q<,__ +I>FN'`lkuZI#+N:lMp@kR"pjU9jrVcZnrWE-!s8ITLl2Q8~> +JcC<$huE`U"onT$rVlfprVle/qWl"WK;?3&]pjS,Qau)Prq"@(JWI.Yc-FVZc-bJAs8;?Qp@.+p +cbZ]JKn6,[r;QZpn\g64_>+$0m(f<_S!onQ\Z1XYcK)WhPMQ8jN.6;"JtBpJs6[O^I"@Ccgrr2rr"8i#prV?Hms!IaFs8Doqrr)irs8Muqrr;ojji"0nUo1#VS@$Jmi90Y*qYL-hs8Drs +s8N#ts8N!!s8N#Ts8W'&s8N#trr2lqrXJi%o]X;hS"lpV[H%&Yrr**"s8W)us8N!!s8N#_s8W&u +s7ZHkr#,>%m-!Bbf#kS)S!'&4YH4Io[F".3r;ZcprVliss8<-#s8N#ts7lTDs#p>\s8;flpY)!c +W6=&Zk2F[eL4QA[maS.cL9fClmdfYeTRqs#fD,:*[>]^2b2:LDLQ94 +JcC<$huE`U"onT$rVlfprVle/qWl"WK;?3&]pjS,Qau)Prq"@(JWI.Yc-FVZc-bJAs8;?Qp@.+p +cbZ]JKn6,[r;QZpn\g64_>+$0m(f<_S!onQ\Z1XYcK)WhPMQ8jN.6;"JtBpJs6[O^I"@Ccgrr2rr"8i#prVZZms!IaFs8Doqrr)irs8Muqrr;lgik_RdU8OcRS$U;jhraJ(qYL-hs8Drs +s8N#ts8N!!s8N#Ts8W'&s8N#trr2lqrYGJ.o]X;iS><-Z[cI8]s8N#rs8W)us8N!!s8N#_s8W&u +s7ZHkr#,>%m-!B`f#kP'RZWi0Y,e:l[*\(4rVulqrVliss8<-#s8N#ts7lTDs#p>\s8;flpY)!c +W6=&Zk2F[eL4QA[maS.cL9fClmdfYeTRqs#fD,:*[>]^2b2:LDLQ94 +JcC<$huE`U"onT$rVlfprVle/qWl"WK;?3&]pjS,Qau)Prq"@(JWI.Yc-FVZc-bJAs8;?Qp@.+p +cbZ]JKn6,[r;QZpn\g64_>+$0m(f<_S!onQ\Z1XYcK)WhPMQ8jN.6;"JtBpJs6[O^I"@Ccgrr2rr!W2fkr=Ar-rr<#ts8W&rrr2lqs8W)ts8<`/oA@9YS=ZIIPa8Jme_K6Sp%\C^rr;rr +s8W)ts8W)t!rr9!irB&X!rr9!qu?]p)#sR3p[[C]SX,kBS[%)Ep\k-krr<#ts8W)t!rr9!lMpn` +!<;urs8Drr!;uin+SbNnjPJV>`jVe2N/sR0V44$Yb2`'fr;6?grr)irs8Mrrs8E0$rVZQjrVk@I +4oPE\r;?Hdg6dGibMM@CiR"TZJZ@Mne>IkPZI\.*o'4GlJqpGZq#'6]N.RbGhp/3VNkt,]rqufq +rVZWlrdk+5s*t~> +JcC<$gA`;ps8W)srVlfps82)qKnd>2s7k*GP)cHbnGVq$S:dHhq#:NsnB&H'pAY(Wqr58QJ!S:L +s8Dug_h`fXpAFsU\!E);P*`5VWKEgtik0u2g],l_GCtm5O0710mD>$2JjT;eZVS"mI;f\Yi]p\Ogdrr**"rr2rsrmh#Qrr<#t +s8W)srt#,/s8;TUd^GgCX.ZQHo)&=`!r`0!rquourVbXRs8Drr)ZBR0p[[Y1gsscn[\/nUWN;qg +Ts)Din,34crr)utrr2oq#QF]#rr2lrs8Mrus8DoHs8N#tr +JcC<$gA`;ps8W)srVlfps82)qKnd>2s7k*GP)cHbnGVq$S:dHhq#:NsnB&H'pAY(Wqr58QJ!S:L +s8Dug_h`fXpAFsU\!E);P*`5VWKEgtik0u2g],l_GCtm5O0710mD>$2J +JcC<$gA`;ps8W)srVlfps82)qKnd>2s7k*GP)cHbnGVq$S:dHhq#:NsnB&H'pAY(Wqr58QJ!S:L +s8Dug_h`fXpAFsU\!E);P*`5VWKEgtik0u2g],l_GCtm5O0710mD>$2JNrVuiqrVlfrrr1IJ +!<2forVd9)qXipqZ(%;]S#Fj)p\XpkrVuosrRu`l1 +V4Es@W4pmKp\t$kr;6Hgrr;rsrW`>tqu-QnrRLrIrr;p%qtJd4KsKY6rr4A +JcC<$gA`;ps8W)trVlfps82&oN/b[Ds8VoRVM'l,eb&O\S:7!`q>U]uq;8-6Z/#0Ss$ce>P6rVHEbj2\9pX07hIUUn\%iT]k*r;HTmrWW6!rr;usec,jQs8W)u +s8Mus&,uV/r:]O8a/>]7TVKTmqYU6nrVuosrj4r,-_mH/( +Q_UXcW26lJkkP2VqYpHnrr;p%r;HQlr;Q`rrquourVb:Hr;JYRpXkdbZf1`YrVZ0*Q\D9]bb^#U +_Y4$/s8N&ul`lA/Z/, +JcC<$gA`;ps8W)trVlfps82&oN/b[Ds8VoRVM'l,eb&O\S:7!`q>U]uq;8-6Z/#0Ss$ce>P6rVQH`iPMO`VlQ#>U:JJ!iT]k*r;HTmrWW6!rr;usec,jQs8W)u +s8Mus&cVh1r:]R;aJbo;Tqofqqu6QmrW<&us8Mrus8DoUs8W'Bs8Doqs8N#rrVZK_mci`bdEBD5 +Tp:t>XKSS"[F+77s8;`mrVulsrL9inAglLV9[;] +Kos7Gs8N&ts8VDiMiY.!qu?0/SV;iaObfd_q>^EmrVQQns8Ms!s8DoqJcG!7J,~> +JcC<$gA`;ps8W)trVlfps82&oN/b[Ds8VoRVM'l,eb&O\S:7!`q>U]uq;8-6Z/#0Ss%rRGWJZhL +lMpk`n\Ks/^@qO*n^YC]ZF%Or;HZorqucps8N#J +rrE&os8;j*qX`t+_kN^#S"IX\p\k$h!r`0!rquourVbaUs8FtWrVQKjrr2lpr;#sPl/LFFbJ:p+UnF?abN/ +JcC<$huE`U4obN\s8N#ts8N&tr;QQW^Q4JklhgPYq8\VENk"'>e"),_ea`;(naZ8GqYU3NS8sIq +hXC16o[g1$P/-Mbs#KVhML`S>rVcQ`lf6sbl06[!NLnAP\qZR+s4E]c/S!OimFc]KWj%N +Sqs)iqY^3gr;6H``KQ"PeFie +JcC<$huE`U4obN\s8N#ts8N&tr;QQW^Q4JklhgPYq8\VENk"'>e"),_ea`;(naZ8GqYU3NS8sIq +hXC16o[g1$P/-Mbs$?1pML`S>rVcQ`lf6sbl06[!NLnAP\qZR+s4UEo +rr*!!rr1^Qs8E#uqYh6-q=dki1!iLP2k` +b+=E_eGB+>rVZQko#6fHV:>2:r9V(\K7S`Db4GT/r;HTkr;HTkrdk+5s*t~> +JcC<$huE`U4obN\s8N#ts8N&tr;QQW^Q4JklhgPYq8\VENk"'>e"),_ea`;(naZ8GqYU3NS8sIq +hXC16o[g1$P/-Mbs#KVhML`S>rVcQ`lf6sbl06[!NLnAP\qZR+s4pr;-Biqu-*)PD,j_p&4gT]Te&"Kp^$SrVQNkrVQNk +rVQSFs60K5~> +JcC<$gA_6Rs8W#r62gfZm(eI7^$Parqt]KaLP259j3XBRQatDidETq_dbh[X/hVKX2`K:i9g44r;QZsrVlforrE&> +rtGA2rr2igmb"S-U7n-Ye+NY:rr;uss8N)uf`1mK)u]d8rVZNdn`f#cd`oY6TpV1:U7e$J[+=dG +s8;g&rr;rqrr;rpr;Q`prn%2Mr]L5Zr;?Tnp!f7SQ)_@2_RH=uJ<@b3cCKong\LjJrVliro$*DI +T?m'*s8:9AN.-MZhuE]Pqu$HmrVQNlrWE-!s8ITLl2Q8~> +JcC<$gA_6Rs8W#r62gfZm(eI7^$Parqt]KaLP259j3XBRQatDidETq_db2gLT=!5@rr;rq +rr)fps8Doqs8Dlnrr;rrfDkmM4TGBXr;Z`ge,SW'Q&q>UBlrr;ugc'3XK +cggr5r6_C#IYOcXs8Mllr;Q]oqu$Hm"9&9"rdk+6s*t~> +JcC<$gA_6Rs8W#r62gfZm(eI7^$Parqt]KaLP259j3XBRQatDidETq_db's]gpruEUSX03Vo-a.hWsh/r;Q`rrr2rsd/X.E +#ljl$qu$EmrVcZn%fH1nlI;_rSt2:IcLUo3r;Q`r!<1gSs8FhSrr)]iqu-NnrVccqr;#sLhq$)n +]W.B[N0Bd%Q^Fr'mJ6YUqYU0frr;rqrr;rpr;Q`prn%2Mr]L5Zr;?Tnp!f7SQ)_@2_RH=uJ<@b3 +cCKong\LjJrVliro$*DIT?m'*s8:9AN.-MZhuE]Pqu$HmrVQNlrWE-!s8ITLl2Q8~> +JcC<$gA_UsC3pY<6NTWPAfPbZ+HguIbnq"t$irr2lprr2otrlG*QrVulq +qXsF9\"B=lUnYouqu$Hnrr2rt!<1XNrVcirr;Q[ArVQNgo'GMsgX=-PW1&p=Wj&:kYK5i's8)Wj +rr;urr;?Nlrr)`nfDkmM!<<&s1B7:GfUI5@L51_FJUE$9\Dm#"PD?*lqYpBhrVuljeX:o\cgUf3 +qp)"!KnuGUs8Mrprr2oqrr*#us8W(Ls69Q6~> +JcC<$gA_&KU0dC]ml*srmcjVZ/tl:P]r4ue&\>UP\5qYg-A[\'+iX.5BJ_:@<#m.C)MrVulrrVc`prrE&>rtGA2rr)]d +o&$sMTrFlaaRK*)rr;uss8N)uf`1pL.fK;Es8Mrmqt]gKjknb=`ODe6PFASXV4b'7k5G>Vr;?Qo +rr)cmrVc`oqu54Is8E#urr"VPr:\d4H\@-/N/E16JXEt,nB$lLW8.7Kqtp?lrq=m1J"b3Wr;ZZ> +Ul^:dU"TJFr;HWorr)iq"9&9"rdk+6s*t~> +JcC<$gA_U=S=HCJT#C'nrVZZprrE&Ss8W'&s8MunqYU3hr;clsrZM+0m,d'Sc+pTW +OGf@#X.Gc[_r:Cfp@nF]rVcWjr;HTirn%2MrW)utrA+ENp=Pj]KSG8@MLg/+R(2/FachLYh"q$I +qu-Qop=5R\U!N3*s81*;OG/Lag&M'LrVlfqrVlcurVuosJcG!7J,~> +JcC<$h>[QUs8W)t"98B"rVldWr:A7)R`Fpts8DusnBIl!Y0GA#Q@sgEO-5N[LjXlckP5&B_kE-G +L4tABVp+N-rqlTmo[94hbl%G=rW)lqq^MI],,s8W)srVlfprVZWlq"=4D +jPAD3^9+#qU9Cr$Q_(bAn+Zh]s8DlorVZWns8W)s!rr5tec5XJ$2sl#p=c$bMis8&PU`*%alE0j +a,bbFf_YUDqu$ElpX>L\Usnr7qrbPQJ:iZA_XRU)r;Q]nrVlisrVlcrrIP"5s*t~> +JcC<$h>[QUs8W)t"98B"rVldWr:A7)R`Fpts8DusnBIl!Y0GA#Q@sgEO-5N[LjXlckP5&B_kE-G +L4tABVp+N-rqlTmo[94hbl%G=rW)lqq^MIL\Usnr7qrbPQJ:iZA_XRU)r;Q]nrVlisrVlcrrIP"5s*t~> +JcC<$h>[QUs8W)t"98B"rVldWr:A7)R`Fpts8DusnBIl!Y0GA#Q@sgEO-5N[LjXlckP5&B_kE-G +L4tABVp+N-rqlTmo[94hbl%G=rW)lqq^MIa8Orfen#X3'DspW&>FU=f>AqYU3hrqFm/JY^cdrqkliOar(?PJZhhrqucpr;HWps8Drr +!<%KKl2Q8~> +JcC<$h>[QUs8W)t"98B"rVld$r;5m1eEZl0rr*B(r:Aake`H,ScGRN<`r3kN_ogj,r;ZW`i6B!F +]>i=Zp\t-hr;HZnnCPtNrr)irs8Dilr;Q]fj3ucRqWQ8XpAaU4g$8;/qXN@gg[4b.k0h,U\]Nk* +rr2ilr;HNlrr)lr.K08Fs8W)srVlcnr;QZpqqnu\X1#7'QE8'Rg"trdr;-9grr2lprr)lrrVuiu +s8N#>rtt_6s8DfdkL[8;Vl#ldg%G@Crr2lps8W&MrrW3"s8;irrVc^CrVQ?\mci``c,RDqQ'\e] +QBI` +JcC<$h>[QUs8W)t"98B"rVld$r;5m1eEZl0rr*B(r:Aake`H,ScGRN<`r3kN_ogj,r;ZW`i6B!F +]>i=Zp\t-hr;HZnnCPtNrr)irs8Dilr;Q]fj3ucRqWQ8XpAaU4g$8;/qXN@gg[4b.k0h,U\]Nk* +rr2ilr;H?gqu?]p+o_Hrtt_6 +s8Dfdkh*J?W2H&fg%G@Crr2lps8W&MrrW3"s8;jIrVlfprr)`goBtl&g!7XOWg9$YZBpcFXNTi& +rr)cmrr<#trVliqr;HZorRLrJr]'rVrVQ<@Q@GUDcI(1si9L%5rqk'1J="LTrqlZlqYp*(O+aOe +q>T^#Tn[rOO,p3eq>U6hrqcTms8W&srW)nJs69Q6~> +JcC<$h>[QUs8W)t"98B"rVld$r;5m1eEZl0rr*B(r:Aake`H,ScGRN<`r3kN_ogj,r;ZW`i6B!F +]>i=Zp\t-hr;HZnnCPtNrr)irs8Dilr;Q]fj3ucRqWQ8XpAaU4g$8;/qXN@gg[4b.k0h,U\]Nk* +rr2ilr;HNls8<-!rVlirrr2rtr@.dFr;?Nis7k?VTVeupR$";]c.:\4p&+[`rr<#srVlcqrVZQj +rr;usfDkmM$NL,(r;HWprr2rtrr*]3qt]dBd^>U>UR/.9p&G!irr)fqs8CdRs8E<(rquZkrVlco +qu.T8rquN\m-!9UahkQ`OHQ`IOc>[(`SpC`q=j[^rVc`ps8<$!rr1IJs8G"XrVcWefTq#\^s:?X +gYhAjqu6K>R=LXJq#:0hr;-Ea_iKJNgA1a6a.\68M3!^qdeWn=rVlZlrr<#srr)orJcG!7J,~> +JcC<$g&M*N!<<#r!<<&t(]="%qu-NorVZQlrV6!Vq"sjXnF?)>nG_kgnb)\Ts8N#tqt'7AlgXZI +s8W#q#64Vpo_\[frqu`ns8O8?p[e+WrV?*[rVl]gq>C0hrVu`fq"t$hqtBLDlLOlQrr2itr;HQm +rVulqr<<3!rr2rtrr*`6rr)fprq"mWXK\t/S=-=ke(s-Po_\XcrVHKnrVZZ;s8N!5rVQEamc)$M +QC+#Eg%G@BrVl`os8W)Ss8W&us8N#trrE&ss82d:rVQEao'PSqeBPe2T:_dNXfS1l]%$0Gs8Dlm +r;Q]prVZZHs8DpTrVZZnpstUUWRpY5q"jshs8N&ti3/#o[IX@oqtU'gmAPYu[c7/Ze"VheW3iIb +LT'A7qY^9jr +JcC<$g&M*N!<<#r!<<&t(]="%qu-NorVZQlrV6!Vq"sjXnF?)>nG_kgnb)\Ts8N#tqt'7AlgXZI +s8W#q#64Vpo_\[frqu`ns8O8?p[e+WrV?*[rVl]gq>C0hrVu`fq"t$hqtBLDlLOlQrr2itr;HQm +rVulsr +JcC<$g&M*N!<<#r!<<&t(]="%qu-NorVZQlrV6!Vq"sjXnF?)>nG_kgnb)\Ts8N#tqt'7AlgXZI +s8W#q#64Vpo_\[frqu`ns8O8?p[e+WrV?*[rVl]gq>C0hrVu`fq"t$hqtBLDlLOlQrr2itr;HQm +rVuj%rVZQjrVuiprr;oqrqmE!f!hQXXJ;,JUq=n'ip613rVcNj#Q=Psr;HZorR_)LrZqOCrVZWn +s8N#ts8DutrVQ?\le]:>OHc!6f_#1@rVl`os8W)Ss8W#ts8Muqrr)lprZhC!C;l1k,Nq=sgcrr)fqrr1FIrVe_Rr;QZierkE[fC8M/qYgHorr;uUYDS.Do)JR`q"t*Y +W.U/>iqiK"U5bG:[&9%AW94*Ur;?Qm#Q+K!rr)lsrdk+6s*t~> +JcC<$h>[QUs8W)t!<;ins8W,us8<<%r;QZlr;Q`rrr)Kh!<2rq!<2rs$i^2(r;HWorVc`orVc^! +r;6Eks8W&ss8Dus%fH;*s8Muss8Murs8Mrprr3'!qtphYsrVcZmrVZTkrW)utrr;uurr2rrrW<-!rn%/Orr<#rrY#2, +q=jFDbbq&+WPmijr;HWor;QZsrVuosrW)usrr2rsrW)utrr<#trr<#trW)usrW)uqrr;uurVZZp +r?_LBrVZTjqY0UMkMFh=aL.\/V6dY6TV&I2iqNKQr;-Bkrqu]oq#1?prr1gTs8 +JcC<$h>[QUs8W)t!<;ins8W,us8<<%r;QZlr;Q`rrr)Kh!<2rq!<2rs$i^2(r;HWorVc`orVc^! +r;6Eks8W&ss8Dus%fH;*s8Muss8Murs8Mrprr3'!qtpaL7e2VR3k:TqJ[6j7rZSr;-Bkrqu]oq#1?prr1gTs8 +JcC<$h>[QUs8W)t!<;ins8W,us8<<%r;QZlr;Q`rrr)Kh!<2rq!<2rs$i^2(r;HWorVc`orVc^! +r;6Eks8W&ss8Dus%fH;*s8Muss8Murs8Mrprr3'!qtp"A&S=QXQOHQEPbgt\_rTWYPuS!pCrh"(CAq>(!hrr2rtq>LHqrr1gTs8 +JcC<$h>[QUs8W)t!<;op(B=C4rVuorqYU6ks8Drrs8W&qrr;usr;RZ6s8N#rrVl`nrr)fqs8N&u +rr)fqrr)iqs8;lrrrVZWos8D&lSWoJ-S$0]Uh<"%rqZ$NjrVcZlrVc]qs8N#trrE&ts8Dou +s8N#LrrW3"s8)^+r:ojNho`jUbhVRYqu-Nnr;QZsrVuosrW)usrr2rsrW)utrr<#trr<#trW)us +rW)uqrr;uurVc`pr?VFBrqu`nr;--Yn*8uhd`B50TUDU^YGJ(m[b(-MrVQQmrVQKdrW<-!rnmbU +rAjoVr;HZmp">jlZetTYrr)fprqufro[g7'K;$cjs8Vu;QA(C-huEAeQ].?OoDRjcNd[8Ds8Vrn +rr)rrrVc_Hs60K5~> +JcC<$h>[QUs8W)t!<;op(B=C4rVuorqYU6ks8Drrs8W&qrr;usr;RZ6s8N#rrVl`nrr)fqs8N&u +rr)fqrr)iqs8;lrr +JcC<$h>[QUs8W)t!<;op(B=C4rVuorqYU6ks8Drrs8W&qrr;usr;RZ6s8N#rrVl`nrr)fqs8N&u +rr)fqrr)iqs8;lrr^9g?SD/rVlforr)uts8W)t!<<#srr;us!<<&ts8W)ts8W)t +!<<#s!<;fm"o\Asqu$BhrZM1:q=a@FjP%qu]<.TdS?/Z\T:`=8n+uqXrVlcorr<#orW<-!rnmbU +rAjoVr;HZmp">jlZetTYrr)fprqufro[g7'K;$cjs8Vu;QA(C-huEAeQ].?OoDRjcNd[8Ds8Vrn +rr)rrrVc_Hs60K5~> +JcC<$h>[QTs8W)s"onQ"rr2rsrVl^&rquZjrVlcorr2lpq"t0lrVl^'qu$ElrVZWmqu$Ejr;?Nl +rr;otr;HWo!r`,srr*6%rVlfprVlfor;QX+rr)cnrr2lpr;6BhrVlfnr;?Nnr\XQOrVQNls8Dlp +rr)cnrVZWms8W)us8DoqrVZNZc)R/$U92Gch<=:tq>L9ir;HTlr;Q]prVlcts8N#GrrW3"s8N#t +rrW3"s8N#tr=f2-p$q>)f\5^Hnrr2utrr<#trr<#trr2utrVllsq>UWt +s8W)trVlfqrVuj6r;6?dp%%J3i7cZ"[&0LhU8kN"U8biYo)A[hr;QWrs8N#Ls8W&trXSl*rqc9< +PBj%[q>U?jr;HRArql'.XH%ghV747GM0>#ef^e=CP(B"6jS]&QgpMuZQIPU+r;HWorr)fpJcG!7 +J,~> +JcC<$h>[QTs8W)s"onQ"rr2rsrVl^&rquZjrVlcorr2lpq"t0lrVl^'qu$ElrVZWmqu$Ejr;?Nl +rr;otr;HWo!r`,srr*6%rVlfprVlfor;QX+rr)cnrr2lpr;6BhrVlfnr;?NnrX8Z&rVQNls8Dlp +s8W)t-3*uDs8W)us8DoqrVZNYbGghtTrc5_h!"1sq>L9irr2lprr;usr +JcC<$h>[QTs8W)s"onQ"rr2rsrVl^&rquZjrVlcorr2lpq"t0lrVl^'qu$ElrVZWmqu$Ejr;?Nl +rr;otr;HWo!r`,srr*6%rVlfprVlfor;QX+rr)cnrr2lpr;6BhrVlfnr;?NnrXA`'rVQNls8Dlp +s8W)prtbV6s8Doqr;$-Pa/"laS#F-Kg#hYjq#:6krWE,us8N#r#laf#qu$Hnrr1OLs8<<(rVZQj +rVuips8W)trr!K*o'beuf%AmBm.L5Ss8Muqs8W)tq>^Hnrr2utrr<#trr<#trr2utrVllsqu?]p +!rr5srql]ms8*r;s8W)srVQE`n)`EWcbZfXR@9V>X/)8]\('mGs8W#qqu54Is8Dus%fH>*qXi@& +H)B?lrr)cmrV\,Cqs;Y1Ne!%a\%o;+G*0)_o'4#RJXF.3r;ZQI[>ApieFie +JcC<$h>[QUs8W)t!<<#s)?9^8rVc`qrqlTls8Mrps8W)sr;HWnrVlirrr;rsrr;m$rr;uss8N#t +rr!!!rVc`qrr*3'rr)fps8W&rrVcp!rr2rsr;lotqu6Qo,6%Q>rr<#squ-KkrVlfpr;?Nnrr;up +qu6Tnrr;usrVlfprVcfqrr2rt'E%\$o\dNeZFe**hrsY(p\b'irVlfprVHNnrVlcrs8Dous8N#L +s8W'7s8N#rs8W&prVcQ`mHETjkj.a3qu-Nmr;Q`rq>UBnrr)otq>UEorr)otrVcfsqu6Hl#6+Z& +rr)fprr"&=rVcTeo^M82gXONeYF1`SZa- +JcC<$h>[QUs8W)t!<<#s)?9^8rVc`qrqlTls8Mrps8W)sr;HWnrVlirrr;rsrr;m$rr;uss8N#t +rr!!!rVc`qrr*3'rr)fps8W&rrVcp!rr2rsr;lotqu6Qo+9)6;rr<#squ-KkrVlfpr;?Nnrr;up +qu6Tnrr;uss8N#ts82fqrtG>+q"*CYXg5OVe)'9Yp%SCarVcWm!<)lqrr)co!<<#s!rr9!fDkmM +(]XL6rVuorqu-KhoBkc%j65gupA=gfrVZZps7uZns8Muts7uZos8Muts8Doss82flrrrE%s8Muq +rVe#>rr2fio^M;4h:9ijYaUrW['QNoRBY'&pAP!js8Drrs8W#r!rr9!huE`U&HDb.rVl]hgREht +hu*KPrr)iq0DteKqs2e?OEGSoLk0r5[+FpIfqaLdZf1fZrVc +JcC<$h>[QUs8W)t!<<#s)?9^8rVc`qrqlTls8Mrps8W)sr;HWnrVlirrr;rsrr;m$rr;uss8N#t +rr!!!rVc`qrr*3'rr)fps8W&rrVcp!rr2rsr;lotqu6Qo+9)6;rr<#squ-KkrVlfpr;?Nnrr;up +qu6Tnrr;uss8N#ts82fqrtbM,p@6qNWNN\FcJ.LNoC`"\rVc`prVlcrrVc^$rVZTlrVuips8Dou +s8N#Ts8W'$s8MuprVQR.rVuoqqu-Hena#>riTKLopA=gfrVZZps7uZns8Muts7uZos8Muts8Dos +s7cKorVZTmr<)upqu-Km+ohQ?qtBLDjOqr&^T*N\T<,,bOcuijkk+cOs8W&rrr<#rrW<-!rnmbU +rXf,/rVc`mptM9jXl''UrVlcpr\+3Js82-4[?,NOJ;Ac(NO7=/r7Rm'O0dgBr;HTbgT5dT\F0Cr +rr)cos8Muss8ITLl2Q8~> +JcC<$h>[QUs8W)t!<<#s!<;ur!<<&ts8W)ts8Voo!<;fm#64]%s8N#tqYgKprr)otrVlisqu-]t +rr2rrrW)uqrr)lqrr<#tr;cimrVuotrW`?#rr)fps8;j"rVuosrqucps8N]0qtTgKf>ttVf\bo` +q"jpes8N!$rVlfpr;HNlrr)iq!<<#s!rr9!fDkjL!r`&prr*?)r;Z`gnF?#9n+$)Jrqm$"s8Mup +rVuorrWE,sr;Q]qs8E6$rr)cmrr2oqs8W)t#ljo&rVlirr;HWoqYpWrs8W&ss8Drr./j)BqtK^N +l/UOH`O;hBS=QCPV4sluf'`J9rr)iqs8W)srVlfrrr1gTs8EE+rr)iqrVZ'']@ZTPrVZZpr?VFA +p[[=_Z)OLlVmXY)nbiFQbe:mIp&G!hs8DN>[^k&]rr2rsr<<6#rVuosJcG!7J,~> +JcC<$h>[QUs8W)t!<<#s!<;ur!<<&ts8W)ts8Voo!<;fm#64]%s8N#tqYgKprr)otrVlisqu-]t +rr2rrrW)uqrr)lqrr<#tr;cimrVuotrX&Q&rr)fps8N#trr2rts8E#srr2rt&cMV%oBFlJ`m*/n +kjnNFr;HZlrr;rqrr;osr;?Nos8Dous8N#Ls8N!!rVZTmrXAc's8DW[naPu8nb)eYr!33#rr)cn +s8W&s"9&/qrr2rtrW`?#rVZTmrr2lrs8N!'s8Muqrr;uqrVlfmrrW3"s7lTmr?_@8o^D&)gsa9P +XJDDYUSt&aVn(CHr;Zcprr2rtrr)fprr;ushuE`U$ig5)rr2lomDlijnc&Lbrr;pBs8D]_il/1% +US4Tnal)^es6InB_V4\_rVccpo%(7[f^f%@s8Ms#s8Muss8ITLl2Q8~> +JcC<$h>[QUs8W)t!<<#s!<;ur!<<&ts8W)ts8Voo!<;fm#64]%s8N#tqYgKprr)otrVlisqu-]t +rr2rrrW)uqrr)lqrr<#tr;cimrVuotrX&Q&rr)fps8N#trr2rts8E#srr2rt&cMV%o&nQC_opTb +k48 +JcC<$bl7\BrVllsrr<#tq>UHop\tHss8W)us8Mlp!<2ut!<2rss8Moq"9/?#rr)isrql`orW)us +rr;rprr;rrrXf&-rr)cns8Muqrr)cmrr<#srr)cqs8N!,rVH3RinE#?jlu7.qY^3h"TA?!rVc`p +#64]%rVlfrp\s(Mr;H]prqufqs8;uts8N#sr;cZmpBpQ`p\k-lrr)iprr)fqr;Z^!s8MuprVcZn +rr!*$s8W)trVZTmrVulsrVuj-rVQQns8Dutrr<#trr;usrVufprr"/Br;$$Vm,d'SbeC6QR@U4R +Un=Bgb2Mmgrr;rsrr2lprr2rsrnmbRrXf&.rr;iZk4JWOrVZZos8MurrZ_==qtKL?hpp0/kOSHH +rVl]bl0@m +JcC<$bl7\BrVllsrr<#tq>UHop\tHss8W)us8Mlp!<2ut!<2rss8Moq"9/?#rr)isrql`orW)us +rr;rprr;rrrXo,.rr)cns8Muqrr)cmrr<#srr2lp!<<&t%K6.rmGcjOh +JcC<$bl7\BrVllsrr<#tq>UHop\tHss8W)us8Mlp!<2ut!<2rss8Moq"9/?#rr)isrql`orW)us +rr;rprr;rrrXo,.rr)cns8Muqrr)cmrr<#srr2lp!<<&t%K61rm,?XKguRYep\OgarWN3!rr)fp +rW`E%rr)iqs7cNKrr`9#s8N#qs8N&s!WN,urXo,.rqcBap[n%NrVuosrVlcprVccos8<-$rr)cn +rVZZor +JcC<$h>[QUs8W)t!<<#s!<;ur!<<#s!<<&ts8Voo"98B"s8)^!s8N#trr2rorW)utrW)usrr<#q +rWE3"rr;rr!<;rqrVmB,rVccpr;?TprVlfrs8Drr/,fJHr;?Nlrr<#rqu$Elrr)cmrVccprVuio +r;HThn)rfql0Rs6qYU6js8Musrri?"rVulrr<<3!rVulrdf1 +JcC<$h>[QUs8W)t!<<#s!<;ur!<<#s!<<&ts8Voo"98B"s8)^!s8N#trr2rorW)utrW)usrr<#q +rWE3"rr;rr!<;rqrVmB,rVccpr;?TprVlfrs8Drr/,fJHr;?Nlrr<#rqu$Elrr)cmrVccprVuio +r;HThn)rfql0Rs6qYU6js8Musrri?"rVulrr<*&trVulre,LEes8W#oqu6Wor;?Qos8N#trVZZo +rVQEbqu6Qmrr<#t#Q=]%qtp +JcC<$h>[QUs8W)t!<<#s!<;ur!<<#s!<<&ts8Voo"98B"s8)^!s8N#trr2rorW)utrW)usrr<#q +rWE3"rr;rr!<;rqrVmB,rVccpr;?TprVlfrs8Drr/,fJHr;?Nlrr<#rqu$Elrr)cmrVccprVuio +r;HThn*&lrl0S!7qYU6js8Musrri?"rVulrr<<3!rVulrdf1 +JcC<$h>[QUs8W)t!<<#s!<;ur!<<#s!<<&ts8Voo"98B"s8)^!s8N#trr2rorW)utrW)usrr<#q +rWE3"rr;rr!<;rqrVm!!rVccqrVum%rVlfrs8DoprZqOBrVZWms8W&rrr)iqrVZQjrVuips8Mrn +rVcTco(2MDnb;q[rVuosrVum"rr)fprVZp!rVccqrmLfLrr<#srVlg]p[RbDpAOpcr;Q]orr2in +qtBLHnFQGRs8Mrqs8Doqrr)]fq"t$hrVlisrVH6]p%._Fp\Xsis8Muprr2rtrr)fpqYpWrs8W&s +s8W,u!<;rq)uTU/p@@S3h:0T_Z_j4\Tr4]XU:]Ias8Drsrn.8NrYkh8rVlfprVlfrs8Murrr)fq +rr2iorr<#srr)j"rr<#trqu^$rr;usrVlcnqu-Nos8E#srVd$$rVc`qs8ITLl2Q8~> +JcC<$h>[QUs8W)t!<<#s!<;ur!<<#s!<<&ts8Voo"98B"s8)^!s8N#trr2rorW)utrW)usrr<#q +rWE3"rr;rr!<;rqrVm!!rVccqrVum%rVlfrs8DoprZqOBrVZWms8W&rrr)iqrVZQjrVuips8Mrn +rVcTco(2MDnb;q[rVuosrVum"rr)fprVZitrVccqrmUlMrr<#srVlg]p[RbDpAOpcr;Q]orr2in +qtBLHnFQGRs8Mrqs8Doqrr)]fq"t$hrVlisrVH6]p%._Fp\Xsis8Muprr2rtrr)fpqYpWrs8W&s +s8W,u!<;rq)uTU/p@@S3gsjK^Z_j4\Tr4]XU:]Ias8Drsrn.8NrYkh8rVlfprVlfrs8Murrr)fq +rr2iorr<#srr)j"rr<#trqu^$rr;usrVlcnqu-Nos8E#srVd$$rVc`qs8ITLl2Q8~> +JcC<$h>[QUs8W)t!<<#s!<;ur!<<#s!<<&ts8Voo"98B"s8)^!s8N#trr2rorW)utrW)usrr<#q +rWE3"rr;rr!<;rqrVm!!rVccqrVum%rVlfrs8DoprZqOBrVZWms8W&rrr)iqrVZQjrVuips8Mrn +rVcTco(2MDnb;t\rVuosrVum"rr)fprVZp!rVccqrmLfLrr<#srVlg]p[RbDpAOpcr;Q]orr2in +qtBLHnFQGRs8Mrqs8Doqrr)]fq"t$hrVlisrVH6]p%._Fp\Xsis8Muprr2rtrr)`n!<;cls8W,u +!<<#s)>sC.q=jONlJpXJahG$UR@'VCU7@meiV``Tr;ciLs8W':s8Doqrr)fprr<#trVlfprVulr +r;HWps8Drqrri?$s8N#qr<`K'rr2lqrVZQkrr<#t!<)lq#64Z#rr<#tJcG!7J,~> +JcC<$JcGWIs8E'!rVc]qrVc`qrVuitrVZZos8Drr!r`0!rVclsr;HQmrV['#qtg*`q=j[]rVlfr +s7uWorVc]qrVlfrrVuorrr;uurn[VSrW)utrZD19mG#at]t_YBlM(;Xr;?Qoo&A9D_8!e,e`QW+ +rr)iq&c_duh9jd8p&=sgrql-=c,Ra$`WaT=kk=rRrr)co!rr9!o)Jahs8N3#rVccor>GP/p[mq< +iRcJu\Yl$jU7dmCZeYHWr;HZorVclurr1aRrVl`n"oeK!rr2rsrqZNmrW<&trqlZorWN/rrVlco +rW<&rr;?Krrr<#srVlcurVuosJcG!7J,~> +JcC<$JcGWIs8E'!rVc]qrVc`qrVuitrVZZos8Drr!r`0!rVclsr;HQmrV['#qtg*`q=j[]rVlfr +s7uWorVc]qrVlfrrVuorrr;uurn[VSrW)utrZD19mG#at]t_YBlM(;Xr;?Qoo&A9D_8!e,e`QW+ +rr)iq&c_duh9jd8p&=sgrql-=c,Ra$`WaT=kk=rRrr)co!rr9!o)Jahs8N3#rVccor>GP/p[mq< +iRcJu\Yl$jU7dmCZeYHWr;HZorVclurr1aRrVl`n"oeK!rr2rsrqZNmrW<&trqlZorWN/rrVlco +rW<&rr;?Krrr<#srVlcurVuosJcG!7J,~> +JcC<$JcGWIs8E'!rVc]qrVc`qrVuitrVZZos8Drr!r`0!rVclsr;HQmrV['#qtg*`q=j[]rVlfr +s7uWorVc]qrVlfrrVuorrr;uurn[VSrW)utrZD19mG#at]t_YBlM(;Xr;?Qoo&A9D_8!e,e`QW+ +rr)iq&c_duh9jd8p&=sgrql-=c,Ra$`WaT=kk=rRrr)co!rr9!o)Jahs8O;BrVccpqtg3eqY0[Q +mH39Ucc3DiS=H7DQC+r2q#:3jrr)fp!rr9!h>dHQr;?furVc`ps8N#nrVuiurVlfnrVuj"r;6Hl +rVc]srVZTkr<3-"s8DoqrWE-!s8ITLl2Q8~> +JcC<$JcGQGrVliq(&n74rVc`qrr)clrVlfprVulqrVlfqrVld7s8Musrqu]ns8MuprVQHfrVulq +s8Murrr)fprW)omrr<#ur<*'!rr;urr;PURs8Dus6N$fVj27[UN/ERXV8VKkrVQQlo%(7BQBdSp +QDD+CoD\^drVZ]mfWh!C_rUXnqu6 +JcC<$JcGQGrVliq(&n74rVc`qrr)clrVlfprVulqrVlfqrVld7s8Musrqu]ns8MuprVQHfrVulq +s8Murrr)fprW)omrr<#ur<*'!rr;urr;PURs8Dus6N$fVj27[UN/ERXV8VKkrVQQlo%(7BQBdSp +QDD+CoD\^drVZ]mfWh!C_rUXnqu6 +JcC<$JcGQGrVliq(&n74rVc`qrr)clrVlfprVulqrVlfqrVld7s8Musrqu]ns8MuprVQHfrVulq +s8Murrr)fprW)omrr<#ur<*'!rr;urr;PURs8Dus6N$fVj27[UN/ERXV8VKkrVQQlo%(7BQBdSp +QDD+CoD\^drVZ]mfWh!C_rUXnqu6A,Vk'$7TY97Ur;HWprn.8Nr\FHPs8Doqs8Mupqu6TnrVulqrr2rtrVZWn +rVcZmrVlcorr2rsrr<#trr<#trr)irrr2fsrVliprr;uurdk+3s*t~> +JcC<$JcGQGrr2oqs8Mrp!;lcnrr)lprVlfp!rVrmrr)lp"TJAurr;uss83?)qtpBlrVccqr;HTl +r;QZpr;QX)rr)cnrr2iorVlfrrVZTkrnmbUrVuj_r;,WsSqr2bOH>E[S%IVPrVuH4YFCQ2Ockf` +LQ8:^p&=pdqu6E.Ob&:cdI[D9rqFX,J:WQ9Octl[IZV%rq#:6j#64Z$rr<#tnc/Xg"98B"s82d4 +rVZQiq"*t +JcC<$JcGQGrr2oqs8Mrp!;lcnrr)lprVlfp!rVrmrr)lp"TJAurr;uss83?)qtpBlrVccqr;HTl +r;QZpr;QX)rr)cnrr2iorVlfrrVZTkrnmbUrVuj_r;,WsSqr2bOH>E[S%IVPrVuH4YFCQ2Ockf` +LQ8:^p&=pdqu6E.Ob&:cdI[D9rqFX,J:WQ9Octl[IZV%rq#:6j#64Z$rr<#tnc/Xg"98B"s82d4 +rVZQiq"*t +JcC<$JcGQGrr2oqs8Mrp!;lcnrr)lprVlfp!rVrmrr)lp"TJAurr;uss83?)qtpBlrVccqr;HTl +r;QZpr;QX)rr)cnrr2iorVlfrrVZTkrnmbUrVuj_r;,WsSqr2bOH>E[S%IVPrVuH4YFCQ2Ockf` +LQ8:^p&=pdqu6E.Ob&:cdI[D9rqFX,J:WQ9Octl[IZV%rq#:6j#64Z$rr<#tnc/Xg"98B"s8N#t +r>GV4qtg3aoBtf"f?hXPW1'6^dHUB&rVlirf`2!N&cMb0r;HWprr)cnrr)fns8MurrW<-!rVHKn +s8Dp.s8Murs8Doqrr)`krVlfprVlfqs8N#trrE%Ls5s?3~> +JcC<$JcGQG%fZM.rVc`qrVZWns8W&srVllsrr)lr#64]&s8Muqrr39's8W)ts8Murr;Qp!rVcZm +rr2rts8N#ts8N&urr!*"rr<#sr;Q`qrr;rsrW<-!rnmbUr_WRnrUeR:M3"j^aMY9LL7-3Ss8C`L +O-?*:]u@agQ%+Ifh>I\]WgupA=gff)PaKrr!6(rVZTms8Muqs8MurrqufrrW)ur +rr;p4s8Muqr;?Nns8Dilr;HWorVlcos8N#ss8N#trrE%Ls69Q6~> +JcC<$JcGQG%fZM.rVc`qrVZWns8W&srVllsrr)lr#64]&s8Muqrr39's8W)ts8Murr;Qp!rVcZm +rr2rts8N#ts8N&urr!*"rr<#sr;Q`qrr;rsrW<-!rnmbUr_WRnrUeR:M3"j^aMY9LL7-3Ss8C`L +O-?*:]u@agQ%+Ifh>I\]WgupA=gff)PaKrr!6(rVZTms8Muqs8MurrqufrrW)ur +rr;p4s8Muqr;?Nns8Dilr;HWorVlcos8N#ss8N#trrE%Ls69Q6~> +JcC<$JcGQG%fZM.rVc`qrVZWns8W&srVllsrr)lr#64]&s8Muqrr39's8W)ts8Murr;Qp!rVcZm +rr2rts8N#ts8N&urr!*"rr<#sr;Q`qrr;rsrW<-!rnmbUr_WRnrUeR:M3"j^aMY9LL7-3Ss8C`L +O-?*:]u@agQ%+Ifh>I +JcC<$JcGQG$i^2+rr)fqrVZTms8N#ts8W'(rVlfor;HZprr2p!rr<#trY,>1rr2lorVccrrr)fn +rVc`orVlcqrr2oss8EH*rr2lprr2lps8N#trVclurr1gTs8Gjns8MH'P(KI_r;63F\RSmIBQ.hR/#fXkijQrVZWnrr)corr)iq +mf+7*s8W)srVulrr;HTlq=s[RlJgRMf%T$En+QYWrmq,JrW<&rrVl^'rVlfprr;urrr2rtrr2rt +rW<-!rqu`prt>>/qY^ +JcC<$JcGQG$i^2+rr)fqrVZTms8N#ts8W'(rVlfor;HZprr2p!rr<#trY,>1rr2lorVccrrr)fn +rVc`orVlcqrr2oss8EH*rr2lprr2lps8N#trVclurr1gTs8Gjns8MH'P(KI_r;63F\RSmIBQ.hR/#fXkijQrVZWnrr)corr)iq +mf+7*s8W)srVulrr;HTlq=s[RlJgRMf%T$En+QYWrmq,JrW<&rrVl^'rVlfprr;urrr2rtrr2rt +rW<-!rqu`prt>>/qY^ +JcC<$JcGQG$i^2+rr)fqrVZTms8N#ts8W'(rVlfor;HZprr2p!rr<#trY,>1rr2lorVccrrr)fn +rVc`orVlcqrr2oss8EH*rr2lprr2lps8N#trVclurr1gTs8Gjns8MH'P(KI_r;63F\RSmIBQ.hR/#fXkijQrVZWnrr)corr)iq +mf*@fs8W)t('":4r;HWmq=s[RlJgRMf%T$En+Z_Xrmq,JrW<&rrVl^'rVlfprr;urrr2rtrr2rt +rW<-!rqu`prt>>/qY^ +JcC<$JcGWIs8E#uqYh-+qtKaSp%.bIo^qqVs8MurrV?Eb!V>m]o*"UUqYgEmr=Ji"o^VMGqu6Qo +s8)E[o_%kUo)J=moCVkWs8Vf`p\t3krVuosrVm*$s8W)us8M'Ys8UCEpu8fDI%fKqrr2?$LlA=)NLRiOrVlE0QA2 +JcC<$JcGWIs8E#uqYh-+qtKaSp%.bIo^qqVs8MurrV?Eb!V>m]o*"UUqYgEmr=Ji"o^VMGqu6Qo +s8)E[o_%kUo)J=moCVkWs8Vf`p\t3krVuosrVm*$s8W)us8M'Ys8UCEpu8fDI%fKqrr2?$LlA=)NLRiOrVlE0QA2 +JcC<$JcGWIs8E#uqYh-+qtKaSp%.bIo^qqVs8MurrV?Eb!V>m]o*"UUqYgEmr=Ji"o^VMGqu6Qo +s8)E[o_%kUo)J=moCVkWs8Vf`p\t3krVuosrVm*$s8W)us8M'Ys8UCEpu8fDI%fKqrr2?$LlA=)NLRiOrVlE0QA2 +JcC<$JcGWIrr2rrs8N&s2#mOIjk%u3eC3(%e_B6Xqu?ZileU.Bf$r-tf%/=%kk>&Vqt&q&e'ZY! +kOJEJqX!%eda\6E%b9(Xg#r&,qrZVqpAY$hqu5@Ms8GIcs8ME)R"^g9e(j0WmF]\@q!u1]MPS\s +s8)Wjr:AC5JWnCNs8UoQKV$&_OHd!(qu?6,Q\VBgq>9m]q:1RUVqLnDs7ZH[rrW0!s8Mrts8Drr +)#aI5rVHBdp@7M6lL4E@qYgElrr2rtrr2Tjs8Muss8N#ts8N#trr2fps8Duss8;oss8EE)s8Mrn +rr2lps8N#srVc`qrVum#rr;uts8Ms$rr<#tr;6Ekrr;rsrW)orrX&Q$qu$Hns8N&urr2oss8N#t +!ri6!o`"pjqu?]q!rr9!O8j_~> +JcC<$JcGWIrr2rrs8N&s2#mOIjk%u3eC3(%e_B6Xqu?ZileU.Bf$r-tf%/=%kk>&Vqt&q&e'ZY! +kOJEJqX!%eda\6E%b9(Xg#r&,qrZVqpAY$hqu5@Ms8GIcs8ME)R"^g9e(j0WmF]\@q!u1]MPS\s +s8)Wjr:AC5JWnCNs8UoQKV$&_OHd!(qu?6,Q\VBgq>9m]q:1RUVqLnDs7ZH[rrW0!s8Mrts8Drr +)#aI5rVHBdp@7M6lL4E@qYgElrr2rtrr2Tjs8Muss8N#ts8N#trr2fps8Duss8;oss8EE)s8Mrn +rr2lps8N#srVc`qrVum#rr;uts8Ms$rr<#tr;6Ekrr;rsrW)orrX&Q$qu$Hns8N&urr2oss8N#t +!ri6!o`"pjqu?]q!rr9!O8j_~> +JcC<$JcGWIrr2rrs8N&s2#mOIjk%u3eC3(%e_B6Xqu?ZileU.Bf$r-tf%/=%kk>&Vqt&q&e'ZY! +kOJEJqX!%eda\6E%b9(Xg#r&,qrZVqpAY$hqu5@Ms8GIcs8ME)R"^g9e(j0WmF]\@q!u1]MPS\s +s8)Wjr:AC5JWnCNs8UoQKV$&_OHd!(qu?6,Q\VBgq>9m]q:1RUVqLnDs7ZH[rrW0!s8Mrts8Drr +)#aI5rVHBdp@7M6lL4E@qYgElrr2rtrr2Tjs8Muss8N#ts8N#trr2fps8Duss8;oss8EE)s8Mrn +rr2lps8N#srVc`qrVum#rr;uts8Ms$rr<#tr;6Ekrr;rsrW)orrX&Q$qu$Hns8N&urr2oss8N#t +!ri6!o`"pjqu?]q!rr9!O8j_~> +JcC<$JcGWIrr2rrs8G^irVucYaKDA?XKAh5WNHCs8Dins8(ZYL5it4rr:9,LU5^NS!0Gap&=O&Q@tgJi997Zf!L6gYi,BUs8Dots8Dlpmf*Oj +s8W#prVuiqrW)lpr=f)(q"XUXp@e=ZrVccprVlisrr2Tjs8Muss8N#ts8N#trr2fps8Duss8Dut +!ri,qqu6Wo!<;cls8N)urr3#urVQTorVZZnrVlfpr<<6#rr)lsrr2oss8N#t!ri6!o`"pjqu?]q +!rr9!O8j_~> +JcC<$JcGWIrr2rrs8G^irVucYaKDA?XKAh5WNHCs8Dins8(ZYL5it4rr:9,LU5^NS!0Gap&=O&Q@tgJi997Zf!L6gYi,BUs8Dots8Dlpmf*Oj +s8W#prVuiqrW)lpr=f)(q"XUXp@e=ZrVccprVlisrr2Tjs8Muss8N#ts8N#trr2fps8Duss8Dut +!ri,qqu6Wo!<;cls8N)urr3#urVQTorVZZnrVlfpr<<6#rr)lsrr2oss8N#t!ri6!o`"pjqu?]q +!rr9!O8j_~> +JcC<$JcGWIrr2rrs8G^irVucYaKDA?XKAh5WNHCs8Dins8(ZYL5it4rr:9,LU5^NS!0Gap&=O&Q@tgJi997Zf!L6gYi,BUs8Dots8Dlpmf*Oj +s8W#prVuiqrW)lpr=f)(q"XUXp@e=ZrVccprVlisrr2Tjs8Muss8N#ts8N#trr2fps8Duss8Dut +!ri,qqu6Wo!<;cls8N)urr3#urVQTorVZZnrVlfpr<<6#rr)lsrr2oss8N#t!ri6!o`"pjqu?]q +!rr9!O8j_~> +JcC<$JcGQGr;Q`p:&O\5g\seP6Ll.1NNK8sYZK2&YcDHVZNKB-YOf6Lc +i52.EJ:i`>NJi[LL7,^'gs2pfYKPkip&=shr;HZnrr;uuro*nVr^?VKd&W"RLQ@^hVnV!Zs6m:R +S@d_Urqu]ms8;&nO,:.&s7a-]Oi$20XHAROkPt1rR"LR%\%TJ_U5+5da6NR#rr)fmrW<-!rpKdn +rr<#srVlirs8N#srVuisrVl`pr<<,rr;HWnrVcotrr<#krr +JcC<$JcGQGr;Q`p:&O\5g\seP6Ll.1NNK8sYZK2&YcDHVZNKB-YOf6Lc +i52.EJ:i`>NJi[LL7,^'gs2pfYKPkip&=shr;HZnrr;uuro*nVr^?VKd&W"RLQ@^hVnV!Zs6m:R +S@d_Urqu]ms8;&nO,:.&s7a-]Oi$20XHAROkPt1rR"LR%\%TJ_U5+5da6NR#rr)fmrW<-!rpKdn +rr<#srVlirs8N#srVuisrVl`pr<<,rr;HWnrVcotrr<#krr +JcC<$JcGQGr;Q`p:&O\5g\seP6Ll.1NNK8sYZK2&YcDHVZNKB-YOf6Lc +i52.EJ:i`>NJi[LL7,^'gs2pfYKPkip&=shr;HZnrr;uuro*nVr^?VKd&W"RLQ@^hVnV!Zs6m:R +S@d_Urqu]ms8;&nO,:.&s7a-]Oi$20XHAROkPt1rR"LR%\%TJ_U5+5da6NR#rr)fmrW<-!rpKdn +rr<#srVlirs8N#srVuisrVl`pr<<,rr;HWnrVcotrr<#krr +JcC<$JcGWIs8H1$rr2lrrVl]ad@tu;Tr=Z_Tok.bOK$h*hPlKfN0Ts+SXc=?T=sOhi2MBaR%gRT +P_Y6td,<'JS +JcC<$JcGWIs8H1$rr2lrrVl]ad@tu;Tr=Z_Tok.bOK$h*hPlKfN0Ts+SXc=?T=sOhi2MBaR%gRT +P_Y6td,<'JS +JcC<$JcGWIs8H1$rr2lrrVl]ad@tu;Tr=Z_Tok.bOK$h*hPlKfN0Ts+SXc=?T=sOhi2MBaR%gRT +P_Y6td,<'JS +JcC<$JcGWIs8E#urVfdorVc93T6H4=m-*Kjho;=FOM^AI'QakoJrr)fnqt]HkNet79p;3#NQ`RX(U5=Pm_=$s;RY-6KLPh4\R&.g_p&+ggrVZWo +rr)cok5PG\oDeji%fcM*r;QZmrVZTlrr)fprr)lrs8;rqrr!T2s8Drrs8Dooqu-NnrVZZorVc`p +s8N#trrN)rrVcZns8;orrr!r:rVc`prVZWorqu`orqucor;?Qor;6Els8;fnrr)forr;rsr!WK& +rr;rpr;HNirVlco(]=1.rr2lprr)cmrVcZmrr)iprquZiqu$GSs*t~> +JcC<$JcGWIs8E#urVfdorVc93T6H4=m-*Kjho;=FOM^AI'QakoJrr)fnqt]HkNet79p;3#NQ`RX(U5=Pm_=$s;RY-6KLPh4\R&.g_p&+ggrVZWo +rr)cok5PG\oDeji%fcM*r;QZmrVZTlrr)fprr)lrs8;rqrr!T2s8Drrs8Dooqu-NnrVZZorVc`p +s8N#trrN)rrVcZns8;orrr!r:rVc`prVZWorqu`orqucor;?Qor;6Els8;fnrr)forr;rsr!WK& +rr;rpr;HNirVlco(]=1.rr2lprr)cmrVcZmrr)iprquZiqu$GSs*t~> +JcC<$JcGWIs8E#urVfdorVc93T6H4=m-*Kjho;=FOM^AI'QakoJrr)fnqt]HkNet79p;3#NQ`RX(U5=Pm_=$s;RY-6KLPh4\R&.g_p&+ggrVZWo +rr)cok5PG\oDeji%fcM*r;QZmrVZTlrr)fprr)lrs8;rqrr!T2s8Drrs8Dooqu-NnrVZZorVc`p +s8N#trrN)rrVcZns8;orrr!r:rVc`prVZWorqu`orqucor;?Qor;6Els8;fnrr)forr;rsr!WK& +rr;rpr;HNirVlco(]=1.rr2lprr)cmrVcZmrr)iprquZiqu$GSs*t~> +JcC<$JcGWIr;Q`p#lFW#o$="[S)sSJ$h_2gKsfjmY`t9XnG*"eosB@/^$Yh!"o6?9T>9akrs&Jl +abt_]nGWA$l,9'GJ:WlkiV*0JrVlfpr;?Tpro!hVrVuj_qXEIoiqrcMlJ'UrOF3T +r;HTlpYrZ;N5PDWYD@g`Mia!SIY!T`jnQubKT`LQ_SjXEh=1:>s8N#rrVlfp!rr9!mf*@fs8W)t +!rr9"nbrXjrr)iqr +JcC<$JcGWIr;Q`p#lFW#o$="[S)sSJ$h_2gKsfjmY`t9XnG*"eosB@/^$Yh!"o6?9T>9akrs&Jl +abt_]nGWA$l,9'GJ:WlkiV*0JrVlfpr;?Tpro!hVrVuj_qXEIoiqrcMlJ'UrOF3T +r;HTlpYrZ;N5PDWYD@g`Mia!SIY!T`jnQubKT`LQ_SjXEh=1:>s8N#rrVlfp!rr9!mf*@fs8W)t +!rr9"nbrXjrr)iqr +JcC<$JcGWIr;Q`p#lFW#o$="[S)sSJ$h_2gKsfjmY`t9XnG*"eosB@/^$Yh!"o6?9T>9akrs&Jl +abt_]nGWA$l,9'GJ:WlkiV*0JrVlfpr;?Tpro!hVrVuj_qXEIoiqrcMlJ'UrOF3T +r;HTlpYrZ;N5PDWYD@g`Mia!SIY!T`jnQubKT`LQ_SjXEh=1:>s8N#rrVlfp!rr9!mf*@fs8W)t +!rr9"nbrXjrr)iqr +JcC<$JcGQG!ri6"rr#XlrUS=0K:_'$r;HTimCIn'[GBTCP)QX,rV-$[q=sa^rq +JcC<$JcGQG!ri6"rr#XlrUS=0K:_'$r;HTimCIn'[GBTCP)QX,rV-$[q=sa^rq +JcC<$JcGQG!ri6"rr#XlrUS=0K:_'$r;HTimCIn'[GBTCP)QX,rV-$[q=sa^rq +JcC<$JcGQGI^d_\i8^Knqtp +JcC<$JcGQGI^d_\i8^Knqtp +JcC<$JcGQGI^d_\i8^Knqtp +JcC<$JcGWIs8F/@rr2lqrVl]cd@l/LXi/5r`OqUfLT0&&g8BseQ)Cgcri$O&ZKD/alGAg4H&%WX +\'F(/s8W)t)uAd9ObgO2rr2lpq;fu`leL+Pp\asfrr;utrr2its8DoUs8W'HrVu]JWe5kq`SBD3 +h8>4pT$m-"b)q+5Z-_FjjOL\sG`pAFk+ZXQhu*KcpqDT8V8pE@LS`Vuqt^*cqu6L!rVlisrr2lp +rr2its8DoJs8;lpr=T&/r9;bN\[AucdGj]ns8N#trr!9)rVc`nr;HTorVQHgrVcZn-iO)Frq,'l +e*m>9rVcZkr;Q`qrr)cmrUf'pcK>0,r;HTnrqu]mrr2isr;HWo"o\AsrVZWnrr;pHs8Mlks82*8 +beUd#_9:X)rVulor;Zc[d_WAt[Cs`9l1b5XqX<:ge*Hr1rf@)0~> +JcC<$JcGWIs8F/@rr2lqrVl]cd@l/LXi/5r`OqUfLT0&&g8BseQ)Cgcri$O&ZKD/alGAg4H&%WX +\'F(/s8W)t)uAd9ObgO2rr2lpq;fu`leL+Pp\asfrr;utrr2its8DoUs8W'HrVu]JWe5kq`SBD3 +h8>4pT$m-"b)q+5Z-_FjjOL\sG`pAFk+ZXQhu*KcpqDT8V8pE@LS`Vuqt^*cqu6L!rVlisrr2lp +rr2its8DoJs8;lpr=T&/r9;bN\[AucdGj]ns8N#trr!9)rVc`nr;HTorVQHgrVcZn-iO)Frq,'l +e*m>9rVcZkr;Q`qrr)cmrUf'pcK>0,r;HTnrqu]mrr2isr;HWo"o\AsrVZWnrr;pHs8Mlks82*8 +beUd#_9:X)rVulor;Zc[d_WAt[Cs`9l1b5XqX<:ge*Hr1rf@)0~> +JcC<$JcGWIs8F/@rr2lqrVl]cd@l/LXi/5r`OqUfLT0&&g8BseQ)Cgcri$O&ZKD/alGAg4H&%WX +\'F(/s8W)t)uAd9ObgO2rr2lpq;fu`leL+Pp\asfrr;utrr2its8DoUs8W'HrVu]JWe5kq`SBD3 +h8>4pT$m-"b)q+5Z-_FjjOL\sG`pAFk+ZXQhu*KcpqDT8V8pE@LS`Vuqt^*cqu6L!rVlisrr2lp +rr2its8DoJs8;lpr=T&/r9;bN\[AucdGj]ns8N#trr!9)rVc`nr;HTorVQHgrVcZn-iO)Frq,'l +e*m>9rVcZkr;Q`qrr)cmrUf'pcK>0,r;HTnrqu]mrr2isr;HWo"o\AsrVZWnrr;pHs8Mlks82*8 +beUd#_9:X)rVulor;Zc[d_WAt[Cs`9l1b5XqX<:ge*Hr1rf@)0~> +JcC<$JcGWIs8FAFrr)`lrVlcec_6MXG(u31JrP>8W6k5:gS^!bLkUM9K7e_pNS=C2)=l1NLjjDc +J<6YKkkkDZs8(uuNeP(0s8W#pr=&W#rVcQfqu-Qorr<#tr@6V`f#5Kn,NCdrVuZ;T8oJN\X8#Fg&:pJrVZWnrr)fps8W)trVlfo +r;HZorRLrJrYGJ4rqu`pq;8N@Is6$XI#kJ]nG`Ierr2j*rr)fnqYC'frr)fprVc`ns8;rsrr)lr +*WP9%JsG$grqlWlrVZZorVcZmrqbT]O,V'Xs82`nrVud*rVlfrr;?Nmrr)iqr;6HlrsSf&r;Zco +rr(ojS;R;t,(kiLaR9*.qu6WX[?,]PCMe3FRDIt]s7Y*HMN,s]rqucpO8j_~> +JcC<$JcGWIs8FAFrr)`lrVlcec_6MXG(u31JrP>8W6k5:gS^!bLkUM9K7e_pNS=C2)=l1NLjjDc +J<6YKkkkDZs8(uuNeP(0s8W#pr=&W#rVcQfqu-Qorr<#tr@6V`f#5Kn,NCdrVuZ;T8oJN\X8#Fg&:pJrVZWnrr)fps8W)trVlfo +r;HZorRLrJrYGJ4rqu`pq;8N@Is6$XI#kJ]nG`Ierr2j*rr)fnqYC'frr)fprVc`ns8;rsrr)lr +*WP9%JsG$grqlWlrVZZorVcZmrqbT]O,V'Xs82`nrVud*rVlfrr;?Nmrr)iqr;6HlrsSf&r;Zco +rr(ojS;R;t,(kiLaR9*.qu6WX[?,]PCMe3FRDIt]s7Y*HMN,s]rqucpO8j_~> +JcC<$JcGWIs8FAFrr)`lrVlcec_6MXG(u31JrP>8W6k5:gS^!bLkUM9K7e_pNS=C2)=l1NLjjDc +J<6YKkkkDZs8(uuNeP(0s8W#pr=&W#rVcQfqu-Qorr<#tr@6V`f#5Kn,NCdrVuZ;T8oJN\X8#Fg&:pJrVZWnrr)fps8W)trVlfo +r;HZorRLrJrYGJ4rqu`pq;8N@Is6$XI#kJ]nG`Ierr2j*rr)fnqYC'frr)fprVc`ns8;rsrr)lr +*WP9%JsG$grqlWlrVZZorVcZmrqbT]O,V'Xs82`nrVud*rVlfrr;?Nmrr)iqr;6HlrsSf&r;Zco +rr(ojS;R;t,(kiLaR9*.qu6WX[?,]PCMe3FRDIt]s7Y*HMN,s]rqucpO8j_~> +JcC<$JcGWIs8E#urV[ri(s8W#rr<<3#rr)fprr)`n!rr9!ec5XJ +(B+.-s7aa(H$kgMVk0$)MPnehrVc`nr;R$#r;?NmrVc`nrrW/rr;HX#rVZWRVg4'Irr3]2qu$Ek +rr<#trr;u\^n.+Brr2]kr;Zcps8;os!ri6!rr<#srVS;Hrr)fpqqJE +JcC<$JcGWIs8E#urV[ri(s8W#rr<<3#rr)fprr)`n!rr9!ec5XJ +(B+.-s7aa(H$kgMVk0$)MPnehrVc`nr;R$#r;?NmrVc`nrrW/rr;HX#rVZWRVg4'Irr3]2qu$Ek +rr<#trr;u\^n.+Brr2]kr;Zcps8;os!ri6!rr<#srVS;Hrr)fpqqJE +JcC<$JcGWIs8E#urV[ri(s8W#rr<<3#rr)fprr)`n!rr9!ec5XJ +(B+.-s7aa(H$kgMVk0$)MPnehrVc`nr;R$#r;?NmrVc`nrrW/rr;HX#rVZWRVg4'Irr3]2qu$Ek +rr<#trr;u\^n.+Brr2]kr;Zcps8;os!ri6!rr<#srVS;Hrr)fpqqJE +JcC<$JcGQGrVliq9`G"[c(K?Ac0!d0W.Br8g\(UHhlVoqW8."3nF?&Xq>^Kor:p!ZqYpNprr)`krVQ?`q>1*jrqcEb +qYpNnjKj]+f_kF7qu$Hns8Dup(&7Y$o&.mBl2L_]s8D]bpA+XdrquZmrAjfPp\"C_s8MomrVulp +r;Z/hMhdM'f'2DGWeG\`c1M%sWH`QQ`o?IThQr&iPeQS]f<1'odJj.CNW4M~> +JcC<$JcGQGrVliq9`G"[c(K?Ac0!d0W.Br8g\(UHhlVoqW8."3nF?&Xq>^Kor:p!ZqYpNprr)`krVQ?`q>1*jrqcEb +qYpNnjKj]+f_kF7qu$Hns8Dup(&7Y$o&.mBl2L_]s8D]bpA+XdrquZmrAjfPp\"C_s8MomrVulp +r;Z/hMhdM'f'2DGWeG\`c1M%sWH`QQ`o?IThQr&iPeQS]f<1'odJj.CNW4M~> +JcC<$JcGQGrVliq9`G"[c(K?Ac0!d0W.Br8g\(UHhlVoqW8."3nF?&Xq>^Kor:p!ZqYpNprr)`krVQ?`q>1*jrqcEb +qYpNnjKj]+f_kF7qu$Hns8Dup(&7Y$o&.mBl2L_]s8D]bpA+XdrquZmrAjfPp\"C_s8MomrVulp +r;Z/hMhdM'f'2DGWeG\`c1M%sWH`QQ`o?IThQr&iPeQS]f<1'odJj.CNW4M~> +JcC<$JcGQGs8GgorVZWnr:/13Kq.#sq=`:3KTE\%qu>T\QBAK9rV?3_qu-Hgrog_hc0P9*qYTj( +R>R3]^5[uqtp?jqYC$fs8Dins8W)srVlcurVuosj8]/Y&-)V,s8Mrjn`f/ph;7Df +q>LqYpEmrr;p.s8Muqrr;uss8Dim +rr2rsrn%2MrXAc*rr)fmm`1B +JcC<$JcGQGs8GgorVZWnr:/13Kq.#sq=`:3KTE\%qu>T\QBAK9rV?3_qu-Hgrog_hc0P9*qYTj( +R>R3]^5[uqtp?jqYC$fs8Dins8W)srVlcurVuosj8]/Y&-)V,s8Mrjn`f/ph;7Df +q>LqYpEmrr;p.s8Muqrr;uss8Dim +rr2rsrn%2MrXAc*rr)fmm`1B +JcC<$JcGQGs8GgorVZWnr:/13Kq.#sq=`:3KTE\%qu>T\QBAK9rV?3_qu-Hgrog_hc0P9*qYTj( +R>R3]^5[uqtp?jqYC$fs8Dins8W)srVlcurVuosj8]/Y&-)V,s8Mrjn`f/ph;7Df +q>LqYpEmrr;p.s8Muqrr;uss8Dim +rr2rsrn%2MrXAc*rr)fmm`1B +JcC<$JcGWIrVd3'r;HQnrUS=1KqIE)rseYFNd-r+kks>@Pa&cNq#:NZR!kdYp\k+8i2Mcu[-mtm +q<>k^N4nTXs82ZlrquZkrVlcnrVlfprr2oqs8N0!rr1pWrr)rsrr2lrrr)j(rr;rorr2fnrr)iq +s8Dm#s8Muqs8N#ss8W'"rVZWnrqQNkrVlcrrVld(rVZWnrr)corr;usec5RHE;SFfI?MtNrr2lr +ro_8-_VatTg:cI +]XHPornFfQR?s54[a4=?lb9O-[B#d^RBkQ>s8Mupqu-N[]8;?Kg\1XH,6%/`\?aKPj/70ae+EP9 +qu?]ki4cG6lhAr/L5X@Ws8;lqO8j_~> +JcC<$JcGWIrVd3'r;HQnrUS=1KqIE)rseYFNd-r+kks>@Pa&cNq#:NZR!kdYp\k+8i2Mcu[-mtm +q<>k^N4nTXs82ZlrquZkrVlcnrVlfprr2oqs8N0!rr1pWrr)rsrr2lrrr)j(rr;rorr2fnrr)iq +s8Dm#s8Muqs8N#ss8W'"rVZWnrqQNkrVlcrrVld(rVZWnrr)corr;usec5RHE;SFfI?MtNrr2lr +ro_8-_VatTg:cI +]XHPornFfQR?s54[a4=?lb9O-[B#d^RBkQ>s8Mupqu-N[]8;?Kg\1XH,6%/`\?aKPj/70ae+EP9 +qu?]ki4cG6lhAr/L5X@Ws8;lqO8j_~> +JcC<$JcGWIrVd3'r;HQnrUS=1KqIE)rseYFNd-r+kks>@Pa&cNq#:NZR!kdYp\k+8i2Mcu[-mtm +q<>k^N4nTXs82ZlrquZkrVlcnrVlfprr2oqs8N0!rr1pWrr)rsrr2lrrr)j(rr;rorr2fnrr)iq +s8Dm#s8Muqs8N#ss8W'"rVZWnrqQNkrVlcrrVld(rVZWnrr)corr;usec5RHE;SFfI?MtNrr2lr +ro_8-_VatTg:cI +]XHPornFfQR?s54[a4=?lb9O-[B#d^RBkQ>s8Mupqu-N[]8;?Kg\1XH,6%/`\?aKPj/70ae+EP9 +qu?]ki4cG6lhAr/L5X@Ws8;lqO8j_~> +JcC<$JcGWIs8=&>rVZWorVlcccCTHPi;WWOs6Hh?L763PgSp3mXkiOHmiq2emI0r>UO%p(ea)_o +kerpHR)JRprqkrsOGLI4s8W#prr2rsrr2rtrW)omrr;uuro=%YrYkh9rr)iprVZTiqu-Kkr;Q]n +qu-NlrVcTjrr2lrqu?Wprr;our;QZlrr;osr;HToquZiss8N#ts8N!'s8MrorVlisrmLiHrW)ut +rHb`?t@jSo)Ur;HWhl/_7*maJ=pI?0hZJUO*Ks66P8M3jTiK7])MQ]HlPI$;Y@jJ[imK8>hP +JW@+lj1UG&L5_(XX/V>C`r,,%I"%6EOb\gfder$pK8,JMM1Tu)XPWsVqu$Bls4X<'O1XTQrV[u= +rVQ0Jjmr#fP^97prV?Hls8W)klJq1-psQ'pMpMG'r;Q\Vs*t~> +JcC<$JcGWIs8=&>rVZWorVlcccCTHPi;WWOs6Hh?L763PgSp3mXkiOHmiq2emI0r>UO%p(ea)_o +kerpHR)JRprqkrsOGLI4s8W#prr2rsrr2rtrW)omrr;uuro=%YrYkh9rr)iprVZTiqu-Kkr;Q]n +qu-NlrVcTjrr2lrqu?Wprr;our;QZlrr;osr;HToquZiss8N#ts8N!'s8MrorVlisrmLiHrW)ut +rHb`?t@jSo)Ur;HWhl/_7*maJ=pI?0hZJUO*Ks66P8M3jTiK7])MQ]HlPI$;Y@jJ[imK8>hP +JW@+lj1UG&L5_(XX/V>C`r,,%I"%6EOb\gfder$pK8,JMM1Tu)XPWsVqu$Bls4X<'O1XTQrV[u= +rVQ0Jjmr#fP^97prV?Hls8W)klJq1-psQ'pMpMG'r;Q\Vs*t~> +JcC<$JcGWIs8=&>rVZWorVlcccCTHPi;WWOs6Hh?L763PgSp3mXkiOHmiq2emI0r>UO%p(ea)_o +kerpHR)JRprqkrsOGLI4s8W#prr2rsrr2rtrW)omrr;uuro=%YrYkh9rr)iprVZTiqu-Kkr;Q]n +qu-NlrVcTjrr2lrqu?Wprr;our;QZlrr;osr;HToquZiss8N#ts8N!'s8MrorVlisrmLiHrW)ut +rHb`?t@jSo)Ur;HWhl/_7*maJ=pI?0hZJUO*Ks66P8M3jTiK7])MQ]HlPI$;Y@jJ[imK8>hP +JW@+lj1UG&L5_(XX/V>C`r,,%I"%6EOb\gfder$pK8,JMM1Tu)XPWsVqu$Bls4X<'O1XTQrV[u= +rVQ0Jjmr#fP^97prV?Hls8W)klJq1-psQ'pMpMG'r;Q\Vs*t~> +JcC<$JcGWIs8;rtrr#._rVl]bd\MG^i;WZQs7t6AKS$>]fWL +JcC<$JcGWIs8;rtrr#._rVl]bd\MG^i;WZQs7t6AKS$>]fWL +JcC<$JcGWIs8;rtrr#._rVl]bd\MG^i;WZQs7t6AKS$>]fWL +JcC<$JcGWIqu/n[rr2feeuak)ir8lQrVc0'R"_6Xe@1WlK8YhNMiEj\O.Y)'jhIRHJV]GJJq/oa +eFEJ8s8D<)R#o#Irr2lrs8N#ss8N#BrrN-!qu-Zsrr2fp!WN,srquforqZTirW<-!rr2rtrr2ot +rqufrrWW?$rr;usfDkgKs8<6$oYcZ=YjVMgrV_*Bs8N&um)u`Fe*-#C[=NM>rTL2.MmVC3b)h.8 +ZJb&kS;EffkH9)]ZfU`IacD1WagR.^SAF4MeZOsrbk9A_Y1<+,e#nOZXQA0.KT37mn(YF2_TmaS4hLs>u"r;Q\Vs*t~> +JcC<$JcGWIqu/n[rr2feeuak)ir8lQrVc0'R"_6Xe@1WlK8YhNMiEj\O.Y)'jhIRHJV]GJJq/oa +eFEJ8s8D<)R#o#Irr2lrs8N#ss8N#BrrN-!qu-Zsrr2fp!WN,srquforqZTirW<-!rr2rtrr2ot +rqufrrWW?$rr;usfDkgKs8<6$oYcZ=YjVMgrV_*Bs8N&um)u`Fe*-#C[=NM>rTL2.MmVC3b)h.8 +ZJb&kS;EffkH9)]ZfU`IacD1WagR.^SAF4MeZOsrbk9A_Y1<+,e#nOZXQA0.KT37mn(YF2_TmaS4hLs>u"r;Q\Vs*t~> +JcC<$JcGWIqu/n[rr2feeuak)ir8lQrVc0'R"_6Xe@1WlK8YhNMiEj\O.Y)'jhIRHJV]GJJq/oa +eFEJ8s8D<)R#o#Irr2lrs8N#ss8N#BrrN-!qu-Zsrr2fp!WN,srquforqZTirW<-!rr2rtrr2ot +rqufrrWW?$rr;usfDkgKs8<6$oYcZ=YjVMgrV_*Bs8N&um)u`Fe*-#C[=NM>rTL2.MmVC3b)h.8 +ZJb&kS;EffkH9)]ZfU`IacD1WagR.^SAF4MeZOsrbk9A_Y1<+,e#nOZXQA0.KT37mn(YF2_TmaS4hLs>u"r;Q\Vs*t~> +JcC<$JcGQG7K*8drVZWorqG'm_m+^(@dDiVlKR^o:l)93*b4>Sc +RY7*InbUh0L6g +JcC<$JcGQG7K*8drVZWorqG'm_m+^(@dDiVlKR^o:l)93*b4>Sc +RY7*InbUh0L6g +JcC<$JcGQG7K*8drVZWorqG'm_m+^(@dDiVlKR^o:l)93*b4>Sc +RY7*InbUh0L6g +JcC<$JcGQG2uWdVrr)fqrql3CdG"?prVQKlrq56qdGX6Hd`02E`kfL/`PojCkl:\Ym+KS$^:M,. +jmr9Is8Ms(q]6> +L7ZZbr7Im'P0iKuJXYEprr;>`LRGTTP*367s8Cu^LPj:To?"/1Un=':N/t4%e=;8^bkD))aI.La +rr;ilqYpNESr0&Wli$bYqu$@7p$1N"mDF^$XS;_lq:)L8S<\SIO1jE#X+H8Vs8W#rrf@)0~> +JcC<$JcGQG2uWdVrr)fqrql3CdG"?prVQKlrq56qdGX6Hd`02E`kfL/`PojCkl:\Ym+KS$^:M,. +jmr9Is8Ms(q]6> +L7ZZbr7Im'P0iKuJXYEprr;>`LRGTTP*367s8Cu^LPj:To?"/1Un=':N/t4%e=;8^bkD))aI.La +rr;ilqYpNESr0&Wli$bYqu$@7p$1N"mDF^$XS;_lq:)L8S<\SIO1jE#X+H8Vs8W#rrf@)0~> +JcC<$JcGQG2uWdVrr)fqrql3CdG"?prVQKlrq56qdGX6Hd`02E`kfL/`PojCkl:\Ym+KS$^:M,. +jmr9Is8Ms(q]6> +L7ZZbr7Im'P0iKuJXYEprr;>`LRGTTP*367s8Cu^LPj:To?"/1Un=':N/t4%e=;8^bkD))aI.La +rr;ilqYpNESr0&Wli$bYqu$@7p$1N"mDF^$XS;_lq:)L8S<\SIO1jE#X+H8Vs8W#rrf@)0~> +JcC<$JcGWIr;H]prr2rr"oJ&ao)8Rer;Zas8ViARrOYOrr2rss8VT;^rG'cc)Qn^M3k!8L47/@je@:$ +e+imqS;Eucp\EC=Ng8#VYC`;%s8DrcXG`UYZ'(9[l2LP +JcC<$JcGWIr;H]prr2rr"oJ&ao)8Rer;Zas8ViARrOYOrr2rss8VT;^rG'cc)Qn^M3k!8L47/@je@:$ +e+imqS;Eucp\EC=Ng8#VYC`;%s8DrcXG`UYZ'(9[l2LP +JcC<$JcGWIr;H]prr2rr"oJ&ao)8Rer;Zas8ViARrOYOrr2rss8VT;^rG'cc)Qn^M3k!8L47/@je@:$ +e+imqS;Eucp\EC=Ng8#VYC`;%s8DrcXG`UYZ'(9[l2LP +JcC<$JcGHD"9/?#rVld%s8Muqr;HWprr2irs8N#trr`8urVlcqrr*!!rVc`pr;Zcq"9&/rrVlcu +s8;fnrVhBJc2[bAs8<6&q;/9#LU;!mmO1FZWpti04Q-89rLl.k6]YUY*LToX`SVs2eoDe:#RY%p@s8Drq +rqu3$NJ4Lfp\k$hrp@b!P-jE8)R"IEbjbN/qt^-hkc]f,^uEnDK9":Xs8;lqO8j_~> +JcC<$JcGHD"9/?#rVld%s8Muqr;HWprr2irs8N#trr`8urVlcqrr*!!rVc`pr;Zcq"9&/rrVlcu +s8;fnrVhBJc2[bAs8<6&q;/9#LU;!mmO1FZWpti04Q-89rLl.k6]YUY*LToX`SVs2eoDe:#RY%p@s8Drq +rqu3$NJ4Lfp\k$hrp@b!P-jE8)R"IEbjbN/qt^-hkc]f,^uEnDK9":Xs8;lqO8j_~> +JcC<$JcGHD"9/?#rVld%s8Muqr;HWprr2irs8N#trr`8urVlcqrr*!!rVc`pr;Zcq"9&/rrVlcu +s8;fnrVhBJc2[bAs8<6&q;/9#LU;!mmO1FZWpti04Q-89rLl.k6]YUY*LToX`SVs2eoDe:#RY%p@s8Drq +rqu3$NJ4Lfp\k$hrp@b!P-jE8)R"IEbjbN/qt^-hkc]f,^uEnDK9":Xs8;lqO8j_~> +JcC<$JcGHD"9/?#rVc`qrs\l(rVlirrr)fqs8N#hs8MuurVl`ps8N&ss8E#srVcp!rr)fprdk*o +s8;lrrHS5.abtG=c0+]lo&IBIL8Du+Q[b16h<*+gKS%)9l(NL'fCo6tRu*ocpA3=;O-n5TYBtu< +nbDh,R#7o_ZAagUn,N4AZB19jgnK(T]Ai)-YDIn4hU7sPU%mcM`cKU'O +JcC<$JcGHD"9/?#rVc`qrs\l(rVlirrr)fqs8N#hs8MuurVl`ps8N&ss8E#srVcp!rr)fprdk*o +s8;lrrHS5.abtG=c0+]lo&IBIL8Du+Q[b16h<*+gKS%)9l(NL'fCo6tRu*ocpA3=;O-n5TYBtu< +nbDh,R#7o_ZAagUn,N4AZB19jgnK(T]Ai)-YDIn4hU7sPU%mcM`cKU'O +JcC<$JcGHD"9/?#rVc`qrs\l(rVlirrr)fqs8N#hs8MuurVl`ps8N&ss8E#srVcp!rr)fprdk*o +s8;lrrHS5.abtG=c0+]lo&IBIL8Du+Q[b16h<*+gKS%)9l(NL'fCo6tRu*ocpA3=;O-n5TYBtu< +nbDh,R#7o_ZAagUn,N4AZB19jgnK(T]Ai)-YDIn4hU7sPU%mcM`cKU'O +JcC<$JcGWIq#1U"rr)cmrr2lqrVc`prVud!rr)fprr)cm!WE#prVl]qqu-Nl!r`0!rVd'#rr)cm +s8W%Ks3(HBrbMQ4rVZQQVL=,l^sCQT[[;i0[b8ZcH]PhjgVTJ+J@k:4TR*Kbp\rg1KV?`dq:2@% +Pg&9mGBot.f[?pYOLifHN/bC7rqYKZOc@96TmDm6h;68IJUFI +s6[=ZLm,$cf[I[6MhI_JoDddLK7]Al_9:!;ZCQl,T$QZMV1FWRs8Vuqrf@)0~> +JcC<$JcGWIq#1U"rr)cmrr2lqrVc`prVud!rr)fprr)cm!WE#prVl]qqu-Nl!r`0!rVd'#rr)cm +s8W%Ks3(HBrbMQ4rVZQQVL=,l^sCQT[[;i0[b8ZcH]PhjgVTJ+J@k:4TR*Kbp\rg1KV?`dq:2@% +Pg&9mGBot.f[?pYOLifHN/bC7rqYKZOc@96TmDm6h;68IJUFI +s6[=ZLm,$cf[I[6MhI_JoDddLK7]Al_9:!;ZCQl,T$QZMV1FWRs8Vuqrf@)0~> +JcC<$JcGWIq#1U"rr)cmrr2lqrVc`prVud!rr)fprr)cm!WE#prVl]qqu-Nl!r`0!rVd'#rr)cm +s8W%Ks3(HBrbMQ4rVZQQVL=,l^sCQT[[;i0[b8ZcH]PhjgVTJ+J@k:4TR*Kbp\rg1KV?`dq:2@% +Pg&9mGBot.f[?pYOLifHN/bC7rqYKZOc@96TmDm6h;68IJUFI +s6[=ZLm,$cf[I[6MhI_JoDddLK7]Al_9:!;ZCQl,T$QZMV1FWRs8Vuqrf@)0~> +JcC<$JcGWIo_o-prr2rrr;HWorr3'!rVZZos8N)urVR0(rr2lor;HZqrr)fps8N#rs8W)t#ljo( +rr)fqs8@NKbQ%S@BDqi-s7OO)L5MFpVO`d'OJgOpg8Tm`R\d'[Q%"=mkiJXlWn-qDfpISle+`Xj +X-&n"kco\iO//hMO,U*ehnG><\`j%fi4,,:`oF=\NhEGNVjN$bVqogoMk\VlrTVIqI'NYLqYgCE +s7t +JcC<$JcGWIo_o-prr2rrr;HWorr3'!rVZZos8N)urVR0(rr2lor;HZqrr)fps8N#rs8W)t#ljo( +rr)fqs8@NKbQ%S@BDqi-s7OO)L5MFpVO`d'OJgOpg8Tm`R\d'[Q%"=mkiJXlWn-qDfpISle+`Xj +X-&n"kco\iO//hMO,U*ehnG><\`j%fi4,,:`oF=\NhEGNVjN$bVqogoMk\VlrTVIqI'NYLqYgCE +s7t +JcC<$JcGWIo_o-prr2rrr;HWorr3'!rVZZos8N)urVR0(rr2lor;HZqrr)fps8N#rs8W)t#ljo( +rr)fqs8@NKbQ%S@BDqi-s7OO)L5MFpVO`d'OJgOpg8Tm`R\d'[Q%"=mkiJXlWn-qDfpISle+`Xj +X-&n"kco\iO//hMO,U*ehnG><\`j%fi4,,:`oF=\NhEGNVjN$bVqogoMk\VlrTVIqI'NYLqYgCE +s7t +JcC<$JcGWIs8E#urr2rt%K65's8W)sr;HWnrVlfprVld(rVlisrVc`orVlisrVclsqu$Hms8Dio +rr)lr!<)lq!<%KKc2[hCD#aJ4rr2fnrU%k1QB7)`L52&!bj5/ma.eKHN09[1S<(#9kcg/YhY@-0 +WgU*Dq>9-YSZ:E0]UG:QOckW^VT\2ibG_;XmJctD_PO!Rn^4%eLQ7LiUR@IThUns"YM&^NnC4Lu +]);U*rr2oq/,o1nZ^Hf3NJi^XU:oUcs82T_fW^a(Mhd"@MO(HeiUup#[@*fCs8W#rrf@)0~> +JcC<$JcGWIs8E#urr2rt%K65's8W)sr;HWnrVlfprVld(rVlisrVc`orVlisrVclsqu$Hms8Dio +rr)lr!<)lq!<%KKc2[hCD#aJ4rr2fnrU%k1QB7)`L52&!bj5/ma.eKHN09[1S<(#9kcg/YhY@-0 +WgU*Dq>9-YSZ:E0]UG:QOckW^VT\2ibG_;XmJctD_PO!Rn^4%eLQ7LiUR@IThUns"YM&^NnC4Lu +]);U*rr2oq/,o1nZ^Hf3NJi^XU:oUcs82T_fW^a(Mhd"@MO(HeiUup#[@*fCs8W#rrf@)0~> +JcC<$JcGWIs8E#urr2rt%K65's8W)sr;HWnrVlfprVld(rVlisrVc`orVlisrVclsqu$Hms8Dio +rr)lr!<)lq!<%KKc2[hCD#aJ4rr2fnrU%k1QB7)`L52&!bj5/ma.eKHN09[1S<(#9kcg/YhY@-0 +WgU*Dq>9-YSZ:E0]UG:QOckW^VT\2ibG_;XmJctD_PO!Rn^4%eLQ7LiUR@IThUns"YM&^NnC4Lu +]);U*rr2oq/,o1nZ^Hf3NJi^XU:oUcs82T_fW^a(Mhd"@MO(HeiUup#[@*fCs8W#rrf@)0~> +JcC<$JcGQG#lal(rVlfpr;HTn%fH;)rVccrrVZQkrr2lprVlcqrr*E+rr2loqY^O9?htR0KnCu+,jSSAgXJDl'_op-@dd$#A`R*oHrqYd'][m#[ +qu%uCs7Y?k[]Z[2YJ/EHp\t0gq>^6JageIOVQ-u@g$S\:qruMEam&j*rJgi-~> +JcC<$JcGQG#lal(rVlfpr;HTn%fH;)rVccrrVZQkrr2lprVlcqrr*E+rr2loqY^O9?htR0KnCu+,jSSAgXJDl'_op-@dd$#A`R*oHrqYd'][m#[ +qu%uCs7Y?k[]Z[2YJ/EHp\t0gq>^6JageIOVQ-u@g$S\:qruMEam&j*rJgi-~> +JcC<$JcGQG#lal(rVlfpr;HTn%fH;)rVccrrVZQkrr2lprVlcqrr*E+rr2loqY^O9?htR0KnCu+,jSSAgXJDl'_op-@dd$#A`R*oHrqYd'][m#[ +qu%uCs7Y?k[]Z[2YJ/EHp\t0gq>^6JageIOVQ-u@g$S\:qruMEam&j*rJgi-~> +JcC<$JcGQG$i^2+r;?QnrVlfprVc^'r;HZqrr2lprr)cnrVcs"rr<#tqu-Qos8;rtrr)ls!r`#o +r;?j"rVc`qs8ITLc2[_@s82lqrVdf6p$V,/lL4HDrVuoqqYB[Fk3i!>p@\1XrV6*^rr!*!q=j[] +rr)`npb_mHq=aOVn`fE4qYgBlqY0^ZrVuinq=s[[s8D`^l0%F*q=s^[qtg*^q>C*drVZHaqYgEm +r;Z`prX/W$p[[Y5kNqg8r;Q[5rVlirqt]jLk32:+p\OmgrVZQgp@nF`s8@rWJ,~> +JcC<$JcGQG$i^2+r;?QnrVlfprVc^'r;HZqrr2lprr)cnrVcs"rr<#tqu-Qos8;rtrr)ls!r`#o +r;?j"rVc`qs8ITLc2[_@s82lqrVdf6p$V,/lL4HDrVuoqqYB[Fk3i!>p@\1XrV6*^rr!*!q=j[] +rr)`npb_mHq=aOVn`fE4qYgBlqY0^ZrVuinq=s[[s8D`^l0%F*q=s^[qtg*^q>C*drVZHaqYgEm +r;Z`prX/W$p[[Y5kNqg8r;Q[5rVlirqt]jLk32:+p\OmgrVZQgp@nF`s8@rWJ,~> +JcC<$JcGQG$i^2+r;?QnrVlfprVc^'r;HZqrr2lprr)cnrVcs"rr<#tqu-Qos8;rtrr)ls!r`#o +r;?j"rVc`qs8ITLc2[_@s82lqrVdf6p$V,/lL4HDrVuoqqYB[Fk3i!>p@\1XrV6*^rr!*!q=j[] +rr)`npb_mHq=aOVn`fE4qYgBlqY0^ZrVuinq=s[[s8D`^l0%F*q=s^[qtg*^q>C*drVZHaqYgEm +r;Z`prX/W$p[[Y5kNqg8r;Q[5rVlirqt]jLk32:+p\OmgrVZQgp@nF`s8@rWJ,~> +JcC<$JcGWIr;Q`p#6+Z%s8Muqrr3Q/rVc`ps8W)ts8Doqs8N#tr;Q`p"oeK!rr<#orr2lorW<-! +rdk*irs8W(s8Doqs8Muis8W)frrN,tqu6Zqnc&Ugqu?]qlMgqar;QZps8N#rs8E-#rr)iis8W)u +s8W)lrrW2urqcZorf@)0~> +JcC<$JcGWIr;Q`p#6+Z%s8Muqrr3Q/rVc`ps8W)ts8Doqs8N#tr;Q`p"oeK!rr<#orr2lorW<-! +rdk*irs8W(s8Doqs8Muis8W)frrN,tqu6Zqnc&Ugqu?]qlMgqar;QZps8N#rs8E-#rr)iis8W)u +s8W)lrrW2urqcZorf@)0~> +JcC<$JcGWIr;Q`p#6+Z%s8Muqrr3Q/rVc`ps8W)ts8Doqs8N#tr;Q`p"oeK!rr<#orr2lorW<-! +rdk*irs8W(s8Doqs8Muis8W)frrN,tqu6Zqnc&Ugqu?]qlMgqar;QZps8N#rs8E-#rr)iis8W)u +s8W)lrrW2urqcZorf@)0~> +JcC<$JcG?A!ri6!rr;usr;Zfrs8N)urr3*"s8W)ls8W)drr`9#s8ITLc2[hC!rr9!rr3*"s8W)n +rVuius8N#sr;ciorVulrrVuits8N#rs8E'!rr2lrrqQHjrr;rsrr<#urr;rrrqHBkrr2j!rr<#t +rr2lmrri?$s8N#nrVulss8;lnr +JcC<$JcG?A!ri6!rr;usr;Zfrs8N)urr3*"s8W)ls8W)drr`9#s8ITLc2[hC!rr9!rr3*"s8W)n +rVuius8N#sr;ciorVulrrVuits8N#rs8E'!rr2lrrqQHjrr;rsrr<#urr;rrrqHBkrr2j!rr<#t +rr2lmrri?$s8N#nrVulss8;lnr +JcC<$JcG?A!ri6!rr;usr;Zfrs8N)urr3*"s8W)ls8W)drr`9#s8ITLc2[hC!rr9!rr3*"s8W)n +rVuius8N#sr;ciorVulrrVuits8N#rs8E'!rr2lrrqQHjrr;rsrr<#urr;rrrqHBkrr2j!rr<#t +rr2lmrri?$s8N#nrVulss8;lnr +JcC<$JcG?A!ri6!rr;usr;Zfrs8N)urr3*"s8W)ls8W)drr`9#s8ITLc2[hC!rr9!rr3'!s8W&s +s8Vuqs8W)ts8Vcks8Vuq!<;cl!<;clrr;cms8Vflrr;rrqYpQprr;usrr;oqrr;lprr;oqrr;oq +MZ82~> +JcC<$JcG?A!ri6!rr;usr;Zfrs8N)urr3*"s8W)ls8W)drr`9#s8ITLc2[hC!rr9!rr3'!s8W&s +s8Vuqs8W)ts8Vcks8Vuq!<;cl!<;clrr;cms8Vflrr;rrqYpQprr;usrr;oqrr;lprr;oqrr;oq +MZ82~> +JcC<$JcG?A!ri6!rr;usr;Zfrs8N)urr3*"s8W)ls8W)drr`9#s8ITLc2[hC!rr9!rr3'!s8W&s +s8Vuqs8W)ts8Vcks8Vuq!<;cl!<;clrr;cms8Vflrr;rrqYpQprr;usrr;oqrr;lprr;oqrr;oq +MZ82~> +JcC<$JcGQG!ri6"rr*!!rr;usrr;usrVuos!<<&t#QOf&s8W)us8)`ps8W&us8N#ts7uWqs8N"K +s2Y-@rr<#trWN9#rr<#prr)lsrW)usrW)usrr<#trW)utrW)utrW)utrWE3"rr;us!<<#ss8N-! +s8;irs82fqs82cqs8)`ps8N!"s8N#tqYgKpo_njjrr2rts8E#uq>LBorVcfsrr2rt!<.uXJ,~> +JcC<$JcGQG!ri6"rr*!!rr;usrr;usrVuos!<<&t#QOf&s8W)us8)`ps8W&us8N#ts7uWqs8N"K +s2Y-@rr<#trWN9#rr<#prr)lsrW)usrW)usrr<#trW)utrW)utrW)utrWE3"rr;us!<<#ss8N-! +s8;irs82fqs82cqs8)`ps8N!"s8N#tqYgKpo_njjrr2rts8E#uq>LBorVcfsrr2rt!<.uXJ,~> +JcC<$JcGQG!ri6"rr*!!rr;usrr;usrVuos!<<&t#QOf&s8W)us8)`ps8W&us8N#ts7uWqs8N"K +s2Y-@rr<#trWN9#rr<#prr)lsrW)usrW)usrr<#trW)utrW)utrW)utrWE3"rr;us!<<#ss8N-! +s8;irs82fqs82cqs8)`ps8N!"s8N#tqYgKpo_njjrr2rts8E#uq>LBorVcfsrr2rt!<.uXJ,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +JcC<$JcC<$JcC<$JcG9?J,~> +%%EndData +showpage +%%Trailer +end +%%EOF diff --git a/lessons/misc/REST/REST.eps b/lessons/misc/REST/REST.eps new file mode 100644 index 000000000..d9ac75d6c --- /dev/null +++ b/lessons/misc/REST/REST.eps @@ -0,0 +1,7679 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner +%%Title: REST.eps +%%CreationDate: Thu Nov 5 00:32:19 2015 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 14 14 615 360 +%%EndComments +%%BeginProlog +% Use own dictionary to avoid conflicts +10 dict begin +%%EndProlog +%%Page: 1 1 +% Translate for offset +14.173228346456694 14.173228346456694 translate +% Translate to begin of first scanline +0 345 translate +600 -345 scale +% Image geometry +600 345 8 +% Transformation matrix +[ 600 0 0 345 0 0 ] +% Strings to hold RGB-samples per scanline +/rstr 600 string def +/gstr 600 string def +/bstr 600 string def +{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} +true 3 +%%BeginData: 545463 ASCII Bytes +colorimage +q>^Koqu?]qqu6fus8W)urr2rt"TJH#s8Mrr"TJH$rr2lr"oeQ$s8W)qs8W'!s8N#t!<2lq#QFc& +s8N&urr)lsrr2otrqcWsrr<#trr<#t"98B#rqZQrrr<#tpAb0lrVm'#s8W)urql]qrq69krqcX& +rr<#ts8W)urr;usp&>0os8W)tnc&[is8Mlp!<2]l!<2ips8E?)rr<#ts8N&trq69orr<#trpg!i +rr;uorrE&lrrE&ps8W')s8N&urr;utrr2Tj"TJH$rr2Hf!ri6!rVm!!s8W)srr`9#rr2os"oeQ% +rr;usrrrE%rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!ri6!rVm!!s8W)srr`9#rr2os"oeQ%rr;us +rrrE%rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!ri6!rVm!!s8W)srr`9#rr2os"oeQ%rr;usrrrE% +rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!<.K~> +q>^Koqu?]qqu6fus8W)urr2rt"TJH#s8Mrr"TJH$rr2lr"oeQ$s8W)qs8W'!s8N#t!<2lq#QFc& +s8N&urr)lsrr2otrqcWsrr<#trr<#t"98B#rqZQrrr<#tpAb0lrVm'#s8W)urql]qrq69krqcX& +rr<#ts8W)urr;usp&>0os8W)tnc&[is8Mlp!<2]l!<2ips8E?)rr<#ts8N&trq69orr<#trpg!i +rr;uorrE&lrrE&ps8W')s8N&urr;utrr2Tj"TJH$rr2Hf!ri6!rVm!!s8W)srr`9#rr2os"oeQ% +rr;usrrrE%rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!ri6!rVm!!s8W)srr`9#rr2os"oeQ%rr;us +rrrE%rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!ri6!rVm!!s8W)srr`9#rr2os"oeQ%rr;usrrrE% +rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!<.K~> +q>^Koqu?]qqu6fus8W)urr2rt"TJH#s8Mrr"TJH$rr2lr"oeQ$s8W)qs8W'!s8N#t!<2lq#QFc& +s8N&urr)lsrr2otrqcWsrr<#trr<#t"98B#rqZQrrr<#tpAb0lrVm'#s8W)urql]qrq69krqcX& +rr<#ts8W)urr;usp&>0os8W)tnc&[is8Mlp!<2]l!<2ips8E?)rr<#ts8N&trq69orr<#trpg!i +rr;uorrE&lrrE&ps8W')s8N&urr;utrr2Tj"TJH$rr2Hf!ri6!rVm!!s8W)srr`9#rr2os"oeQ% +rr;usrrrE%rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!ri6!rVm!!s8W)srr`9#rr2os"oeQ%rr;us +rrrE%rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!ri6!rVm!!s8W)srr`9#rr2os"oeQ%rr;usrrrE% +rr<#tq#:?nqYpQpqYpQprVlrus8Mrr!<.K~> +"TSK$rr2fp!<2lq!<2utrr2os!ri6!pAY-lqYpQprVllsrVllsq#:?nq>UHorVulrrr3-#s8W)t +qu?]qrr2utqu6`ss8Mus!ri6!rr2utrr2utqYp`us8W)urql`qrW3&urr3*"s8W)trrE&ts8W)q +s8W)trrE&trrE&lrsJc*rr<#ts8N&urr2p!rr;uprrrE%rr<#tq#:Hqs8W)mrri?$rr2rsrr2ot +rq?@!rr;uts8N&ts8W)trrW3"rql^!rr;uts8Mfn"9/?#rqHEqrr;uss8N#srrE&lrsJc*rr<#t +s8N&urr2p!rr;ukrrE&prrW3"rr2p"rr<#tpAb-krr3'!s8M]k"TJH#s8Mus!<2ut!<2]l!<2ip +!ri6!rr3*"s8W)ls8N#srrW3"rq69orr;utrr)isrr2otrq??lrqcWrrr;usrr`9#s8M`lrr2os +!ri6!p&>0os8N&trVllsrr2utpA]X~> +"TSK$rr2fp!<2lq!<2utrr2os!ri6!pAY-lqYpQprVllsrVllsq#:?nq>UHorVulrrr3-#s8W)t +qu?]qrr2utqu6`ss8Mus!ri6!rr2utrr2utqYp`us8W)urql`qrW3&urr3*"s8W)trrE&ts8W)q +s8W)trrE&trrE&lrsJc*rr<#ts8N&urr2p!rr;uprrrE%rr<#tq#:Hqs8W)mrri?$rr2rsrr2ot +rq?@!rr;uts8N&ts8W)trrW3"rql^!rr;uts8Mfn"9/?#rqHEqrr;uss8N#srrE&lrsJc*rr<#t +s8N&urr2p!rr;ukrrE&prrW3"rr2p"rr<#tpAb-krr3'!s8M]k"TJH#s8Mus!<2ut!<2]l!<2ip +!ri6!rr3*"s8W)ls8N#srrW3"rq69orr;utrr)isrr2otrq??lrqcWrrr;usrr`9#s8M`lrr2os +!ri6!p&>0os8N&trVllsrr2utpA]X~> +"TSK$rr2fp!<2lq!<2utrr2os!ri6!pAY-lqYpQprVllsrVllsq#:?nq>UHorVulrrr3-#s8W)t +qu?]qrr2utqu6`ss8Mus!ri6!rr2utrr2utqYp`us8W)urql`qrW3&urr3*"s8W)trrE&ts8W)q +s8W)trrE&trrE&lrsJc*rr<#ts8N&urr2p!rr;uprrrE%rr<#tq#:Hqs8W)mrri?$rr2rsrr2ot +rq?@!rr;uts8N&ts8W)trrW3"rql^!rr;uts8Mfn"9/?#rqHEqrr;uss8N#srrE&lrsJc*rr<#t +s8N&urr2p!rr;ukrrE&prrW3"rr2p"rr<#tpAb-krr3'!s8M]k"TJH#s8Mus!<2ut!<2]l!<2ip +!ri6!rr3*"s8W)ls8N#srrW3"rq69orr;utrr)isrr2otrq??lrqcWrrr;usrr`9#s8M`lrr2os +!ri6!p&>0os8N&trVllsrr2utpA]X~> +pAb0lrr<#trr2uto`+sj!<<&tqu?]qs8NQ-s8W)us8N&trr;utrqcX#rr;uss8W)urr2rrrW3&u +r;QcrmJd1crr2utq#:?nrr3*"s8W)rrrE&trr`9#s8N#trr2lr"9/?#rqucrrq-6jrp'Lfrr<#t +s8W)nrrE&srrW3"rr2p!rr;urrrE&grrE&`rs&K&s8N&urqQKnrr)iurr;usrrW3"rr)isrpg!g +rp'Lfrr<#ts8W)trrE&rrrE&ts8W'!s8N#t!<2lq!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)n +rrE&ts8W'!s8N#t!<2lq!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)nrrE&ts8W'!s8N#t!<2lq +!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)ns*t~> +pAb0lrr<#trr2uto`+sj!<<&tqu?]qs8NQ-s8W)us8N&trr;utrqcX#rr;uss8W)urr2rrrW3&u +r;QcrmJd1crr2utq#:?nrr3*"s8W)rrrE&trr`9#s8N#trr2lr"9/?#rqucrrq-6jrp'Lfrr<#t +s8W)nrrE&srrW3"rr2p!rr;urrrE&grrE&`rs&K&s8N&urqQKnrr)iurr;usrrW3"rr)isrpg!g +rp'Lfrr<#ts8W)trrE&rrrE&ts8W'!s8N#t!<2lq!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)n +rrE&ts8W'!s8N#t!<2lq!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)nrrE&ts8W'!s8N#t!<2lq +!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)ns*t~> +pAb0lrr<#trr2uto`+sj!<<&tqu?]qs8NQ-s8W)us8N&trr;utrqcX#rr;uss8W)urr2rrrW3&u +r;QcrmJd1crr2utq#:?nrr3*"s8W)rrrE&trr`9#s8N#trr2lr"9/?#rqucrrq-6jrp'Lfrr<#t +s8W)nrrE&srrW3"rr2p!rr;urrrE&grrE&`rs&K&s8N&urqQKnrr)iurr;usrrW3"rr)isrpg!g +rp'Lfrr<#ts8W)trrE&rrrE&ts8W'!s8N#t!<2lq!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)n +rrE&ts8W'!s8N#t!<2lq!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)nrrE&ts8W'!s8N#t!<2lq +!<2lq"9/?#rql]qrqQKnrq-3prr<#ts8W)ns*t~> +rVuos"98B#rq?Blrr)isrr)lsrqZQorr)lsrW3&uqu?]qrVllsrVlrus8Mio!WN,urqcZprr)j# +rr;utrr2]mrr2cos8N#t!<2orrr2co!<2`m!<2or!<2rss8Mrr"oeQ$s8N#mrr`9#rr2fps8Mio +rVlZn!ri6!p\t6mrr2utrr;usq#CBnqu6m"s8W)urr2fps8MiorVlZn!ri6!p\t6mrr2utrr;us +q#CBnqu6m"s8W)urr2fps8MiorVlZn!<2Ng!<2ut!<2cnrr2rt!<2lqrr2fp!<2Zk!ri6!l2Lb_ +rr2utq#C?ms8N)uqu?Zpqu6Zqp&>*ms8M9_!<2ut!<2cnrr2rt!<2lqrr2fp!<2Zk!ri6!oDa=~> +rVuos"98B#rq?Blrr)isrr)lsrqZQorr)lsrW3&uqu?]qrVllsrVlrus8Mio!WN,urqcZprr)j# +rr;utrr2]mrr2cos8N#t!<2orrr2co!<2`m!<2or!<2rss8Mrr"oeQ$s8N#mrr`9#rr2fps8Mio +rVlZn!ri6!p\t6mrr2utrr;usq#CBnqu6m"s8W)urr2fps8MiorVlZn!ri6!p\t6mrr2utrr;us +q#CBnqu6m"s8W)urr2fps8MiorVlZn!<2Ng!<2ut!<2cnrr2rt!<2lqrr2fp!<2Zk!ri6!l2Lb_ +rr2utq#C?ms8N)uqu?Zpqu6Zqp&>*ms8M9_!<2ut!<2cnrr2rt!<2lqrr2fp!<2Zk!ri6!oDa=~> +rVuos"98B#rq?Blrr)isrr)lsrqZQorr)lsrW3&uqu?]qrVllsrVlrus8Mio!WN,urqcZprr)j# +rr;utrr2]mrr2cos8N#t!<2orrr2co!<2`m!<2or!<2rss8Mrr"oeQ$s8N#mrr`9#rr2fps8Mio +rVlZn!ri6!p\t6mrr2utrr;usq#CBnqu6m"s8W)urr2fps8MiorVlZn!ri6!p\t6mrr2utrr;us +q#CBnqu6m"s8W)urr2fps8MiorVlZn!<2Ng!<2ut!<2cnrr2rt!<2lqrr2fp!<2Zk!ri6!l2Lb_ +rr2utq#C?ms8N)uqu?Zpqu6Zqp&>*ms8M9_!<2ut!<2cnrr2rt!<2lqrr2fp!<2Zk!ri6!oDa=~> +rVllsrVllsqu6Zqr;Qits8Mus!<2rs%0$;,rr2rtrr;uts8N#ts8E*"rr2lr!<2lq!<2ip#QFc' +rr<#trqHEmrq-3lrr;usrrW3"rqcWprqucrrq$-irq?BkrW3&um/I@js8N&urr2rsr;Qits8Mrr +#QFc'rr2rtrq??lrr2rsrWW?$s8W)tp&>$kq>Ua"s8N#trr2rsr;Qits8Mrr#QFc'rr2rtrq??l +rr2rsrWW?$s8W)tp&>$kq>Ua"s8N#trr2rsr;Qits8Mrr#QFc'rr2rtrq??lrr2otrr2otrr2ot +rq69nrr<#tr;R!#s8N&ts8Mlp"TJH#s8N#t#lal(rr;uts8Moq!<2ut!<2ut!<2ut!<2ut!<2Zk +"9/?#rqud#rr;utrr;uorri?$rr;usrs8W(s8N&ts8W)qrrE&trrE&trrE&trrE&trrE&krr`9# +s8Mrr#6+Z%s8N&tqYp]ts8N&trr39's8W)urr<#tqu6Zqrr3'!s8RT~> +rVllsrVllsqu6Zqr;Qits8Mus!<2rs%0$;,rr2rtrr;uts8N#ts8E*"rr2lr!<2lq!<2ip#QFc' +rr<#trqHEmrq-3lrr;usrrW3"rqcWprqucrrq$-irq?BkrW3&um/I@js8N&urr2rsr;Qits8Mrr +#QFc'rr2rtrq??lrr2rsrWW?$s8W)tp&>$kq>Ua"s8N#trr2rsr;Qits8Mrr#QFc'rr2rtrq??l +rr2rsrWW?$s8W)tp&>$kq>Ua"s8N#trr2rsr;Qits8Mrr#QFc'rr2rtrq??lrr2otrr2otrr2ot +rq69nrr<#tr;R!#s8N&ts8Mlp"TJH#s8N#t#lal(rr;uts8Moq!<2ut!<2ut!<2ut!<2ut!<2Zk +"9/?#rqud#rr;utrr;uorri?$rr;usrs8W(s8N&ts8W)qrrE&trrE&trrE&trrE&trrE&krr`9# +s8Mrr#6+Z%s8N&tqYp]ts8N&trr39's8W)urr<#tqu6Zqrr3'!s8RT~> +rVllsrVllsqu6Zqr;Qits8Mus!<2rs%0$;,rr2rtrr;uts8N#ts8E*"rr2lr!<2lq!<2ip#QFc' +rr<#trqHEmrq-3lrr;usrrW3"rqcWprqucrrq$-irq?BkrW3&um/I@js8N&urr2rsr;Qits8Mrr +#QFc'rr2rtrq??lrr2rsrWW?$s8W)tp&>$kq>Ua"s8N#trr2rsr;Qits8Mrr#QFc'rr2rtrq??l +rr2rsrWW?$s8W)tp&>$kq>Ua"s8N#trr2rsr;Qits8Mrr#QFc'rr2rtrq??lrr2otrr2otrr2ot +rq69nrr<#tr;R!#s8N&ts8Mlp"TJH#s8N#t#lal(rr;uts8Moq!<2ut!<2ut!<2ut!<2ut!<2Zk +"9/?#rqud#rr;utrr;uorri?$rr;usrs8W(s8N&ts8W)qrrE&trrE&trrE&trrE&trrE&krr`9# +s8Mrr#6+Z%s8N&tqYp]ts8N&trr39's8W)urr<#tqu6Zqrr3'!s8RT~> +s8W,u#64]&s8N&tqYpQpqu6Zqrr2utp\t6mrr30$s8W)urr2otrqcWprpp'hrqucrrp9Xbrqucr +rqQKnrqufrrr<#urr2otrqufrrr)isrquctrr;u_rrE&rrrW3"s8N#srrE&ss8W'!s8Mlp!<2fo +!<2]ls8N#ts8Mrr!<2cn!<2rs"TJH#s8W)trr2utrVuos!WW/qrrE&orrE&ls8W)ts8W)rrrE&n +rrE&srri?$rr<#trr2otrr)lsrW3&uqYpQpq#:?np\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)s +rrW3"rr)isrqQKqrr<#tp\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)srrW3"rr)isrqQKqrr<#t +p\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)srrW3"rr)isrqQKqrr<#trr7K~> +s8W,u#64]&s8N&tqYpQpqu6Zqrr2utp\t6mrr30$s8W)urr2otrqcWprpp'hrqucrrp9Xbrqucr +rqQKnrqufrrr<#urr2otrqufrrr)isrquctrr;u_rrE&rrrW3"s8N#srrE&ss8W'!s8Mlp!<2fo +!<2]ls8N#ts8Mrr!<2cn!<2rs"TJH#s8W)trr2utrVuos!WW/qrrE&orrE&ls8W)ts8W)rrrE&n +rrE&srri?$rr<#trr2otrr)lsrW3&uqYpQpq#:?np\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)s +rrW3"rr)isrqQKqrr<#tp\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)srrW3"rr)isrqQKqrr<#t +p\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)srrW3"rr)isrqQKqrr<#trr7K~> +s8W,u#64]&s8N&tqYpQpqu6Zqrr2utp\t6mrr30$s8W)urr2otrqcWprpp'hrqucrrp9Xbrqucr +rqQKnrqufrrr<#urr2otrqufrrr)isrquctrr;u_rrE&rrrW3"s8N#srrE&ss8W'!s8Mlp!<2fo +!<2]ls8N#ts8Mrr!<2cn!<2rs"TJH#s8W)trr2utrVuos!WW/qrrE&orrE&ls8W)ts8W)rrrE&n +rrE&srri?$rr<#trr2otrr)lsrW3&uqYpQpq#:?np\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)s +rrW3"rr)isrqQKqrr<#tp\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)srrW3"rr)isrqQKqrr<#t +p\t6mrVllsqu6ZqoD\pls8W)trrE&ts8W)srrW3"rr)isrqQKqrr<#trr7K~> +!<<&trr33%s8N#trr;us%0->+s8W)us8N&urr2os"9/?#rr)j#rr;uts8N#t"9/?"s8N#qrr`9# +rr;rrrVuosrr;oq!WW/trs/Q's8N&ts8N#trr2rt#lal'rr;utrr2lr!ri6!rVllsrVuos!WW/u +s8W)us8N!!s8N#rrs8W(s8N&ts8W)ts8W)urri?$rr;uss8N#trs/Q'rr2rss8Mlp"oeQ%rr;ur +s8W'#s8N&urr*0&rr2rsrr;ups8W'2s8N&urr;uss8N&urr;utrr<#srr +!<<&trr33%s8N#trr;us%0->+s8W)us8N&urr2os"9/?#rr)j#rr;uts8N#t"9/?"s8N#qrr`9# +rr;rrrVuosrr;oq!WW/trs/Q's8N&ts8N#trr2rt#lal'rr;utrr2lr!ri6!rVllsrVuos!WW/u +s8W)us8N!!s8N#rrs8W(s8N&ts8W)ts8W)urri?$rr;uss8N#trs/Q'rr2rss8Mlp"oeQ%rr;ur +s8W'#s8N&urr*0&rr2rsrr;ups8W'2s8N&urr;uss8N&urr;utrr<#srr +!<<&trr33%s8N#trr;us%0->+s8W)us8N&urr2os"9/?#rr)j#rr;uts8N#t"9/?"s8N#qrr`9# +rr;rrrVuosrr;oq!WW/trs/Q's8N&ts8N#trr2rt#lal'rr;utrr2lr!ri6!rVllsrVuos!WW/u +s8W)us8N!!s8N#rrs8W(s8N&ts8W)ts8W)urri?$rr;uss8N#trs/Q'rr2rss8Mlp"oeQ%rr;ur +s8W'#s8N&urr*0&rr2rsrr;ups8W'2s8N&urr;uss8N&urr;utrr<#srr +$3'u(rr<#ts8W)trr`9#rr2co"9/?"rr)lsrr2rtrr)iurr<#trr)j#rr<#ts8N#ts8Mlps8Mrr +!ri6!rVuos#64]%s8N&tr;R3)s8N#trr;utrr<#trr<#trVuos&-)Y.s8W)us8N&trr<#trqZR" +rr<#ts8N&urr2rtrWiK&rr;uss8Mrr#lal'rr;utrr;rrs8N0"s8N#trr*H.rr;utrr;uts8N#t +rr;usrrE&trri?$rr;urrs8W(rr<#ts8N&trql^$rr<#trr;utrr2rtrr +$3'u(rr<#ts8W)trr`9#rr2co"9/?"rr)lsrr2rtrr)iurr<#trr)j#rr<#ts8N#ts8Mlps8Mrr +!ri6!rVuos#64]%s8N&tr;R3)s8N#trr;utrr<#trr<#trVuos&-)Y.s8W)us8N&trr<#trqZR" +rr<#ts8N&urr2rtrWiK&rr;uss8Mrr#lal'rr;utrr;rrs8N0"s8N#trr*H.rr;utrr;uts8N#t +rr;usrrE&trri?$rr;urrs8W(rr<#ts8N&trql^$rr<#trr;utrr2rtrr +$3'u(rr<#ts8W)trr`9#rr2co"9/?"rr)lsrr2rtrr)iurr<#trr)j#rr<#ts8N#ts8Mlps8Mrr +!ri6!rVuos#64]%s8N&tr;R3)s8N#trr;utrr<#trr<#trVuos&-)Y.s8W)us8N&trr<#trqZR" +rr<#ts8N&urr2rtrWiK&rr;uss8Mrr#lal'rr;utrr;rrs8N0"s8N#trr*H.rr;utrr;uts8N#t +rr;usrrE&trri?$rr;urrs8W(rr<#ts8N&trql^$rr<#trr;utrr2rtrr +rVm$"s8W)tr;QcrnG`LfrVuosrr3W1s8N&urr;utrr;uss8W)us8Muss8Mcm')qq1s8W)urr2rt +rr2rss8N&tqu6]rs8DrlrrE&ss8N#ss8W)rrrE&qs8W)us82fks8)]ss8N&tqu6]rs8Dous8N#s +rs&K&s8N&ts8Dp$s8N&trr;uqrrE&srrW3"s8N!$s8N#ts8Mus!WN,prW<-!rql]srr<#qrr2p% +rr<#ts8N&srW`E%s8N#trqucrrr)iurr<#trWW?$rr<#trVlots7uWqs8N#prrW3"s82fprs&K& +s8N&ts8Dp$s8N&trr;uqrrE&srrE&qs8W)ts8N!!s8N&srr2p"rr;usqu?]q!<<#s!<<&trVlru +s8Musrr**$rr2rsrr2rtrr2rsrqufrrr2rsrW<-!s8Drrrr`9#rr2fps8E#urVcfsrr2lr!ri6! +rVulr"onT$s8N#ss8W)ts8N#qs8W)ts8N!!s8N&srr2p"rr;usqu?]q!<<#s!<<&trVlrus8Mus +rr**$rr2rsrr2rtrr2rsrqucrrdX~> +rVm$"s8W)tr;QcrnG`LfrVuosrr3W1s8N&urr;utrr;uss8W)us8Muss8Mcm')qq1s8W)urr2rt +rr2rss8N&tqu6]rs8DrlrrE&ss8N#ss8W)rrrE&qs8W)us82fks8)]ss8N&tqu6]rs8Dous8N#s +rs&K&s8N&ts8Dp$s8N&trr;uqrrE&srrW3"s8N!$s8N#ts8Mus!WN,prW<-!rql]srr<#qrr2p% +rr<#ts8N&srW`E%s8N#trqucrrr)iurr<#trWW?$rr<#trVlots7uWqs8N#prrW3"s82fprs&K& +s8N&ts8Dp$s8N&trr;uqrrE&srrE&qs8W)ts8N!!s8N&srr2p"rr;usqu?]q!<<#s!<<&trVlru +s8Musrr**$rr2rsrr2rtrr2rsrqufrrr2rsrW<-!s8Drrrr`9#rr2fps8E#urVcfsrr2lr!ri6! +rVulr"onT$s8N#ss8W)ts8N#qs8W)ts8N!!s8N&srr2p"rr;usqu?]q!<<#s!<<&trVlrus8Mus +rr**$rr2rsrr2rtrr2rsrqucrrdX~> +rVm$"s8W)tr;QcrnG`LfrVuosrr3W1s8N&urr;utrr;uss8W)us8Muss8Mcm')qq1s8W)urr2rt +rr2rss8N&tqu6]rs8DrlrrE&ss8N#ss8W)rrrE&qs8W)us82fks8)]ss8N&tqu6]rs8Dous8N#s +rs&K&s8N&ts8Dp$s8N&trr;uqrrE&srrW3"s8N!$s8N#ts8Mus!WN,prW<-!rql]srr<#qrr2p% +rr<#ts8N&srW`E%s8N#trqucrrr)iurr<#trWW?$rr<#trVlots7uWqs8N#prrW3"s82fprs&K& +s8N&ts8Dp$s8N&trr;uqrrE&srrE&qs8W)ts8N!!s8N&srr2p"rr;usqu?]q!<<#s!<<&trVlru +s8Musrr**$rr2rsrr2rtrr2rsrqufrrr2rsrW<-!s8Drrrr`9#rr2fps8E#urVcfsrr2lr!ri6! +rVulr"onT$s8N#ss8W)ts8N#qs8W)ts8N!!s8N&srr2p"rr;usqu?]q!<<#s!<<&trVlrus8Mus +rr**$rr2rsrr2rtrr2rsrqucrrdX~> +!WW/trr`9#s8Moq$3'u)rr<#trr;usrrE&srr`9#rr2oss8MZj!WN,urW)usrqucrrr)isrpTme +rWN9#s8N#orrE&qrrE&frs&K&s8N&urqZQqrr;uds8W'$s8N&trq69krqHEmrql]srr;uhrrN-! +rr2os!<2Wj!<2rs!<2ip!<2rs!<2`m!<2lq!ri6!oD\jjs8N#srrE&jrrE&srrE&prrE&srrE&m +rrE&qrrW3"rq69prr;utrr2Tjs8Mus!<2ut!<2ut!<2ip!<2Bc!<2ip!<2or"oeQ$s8N#js8W)s +rrE&trrE&trrE&prrE&crrE&prrE&rrrrE%rr;usp&G'krVllsrr2utrr2utqYpQpmJd1cqYpQp +r;Qits8IN~> +!WW/trr`9#s8Moq$3'u)rr<#trr;usrrE&srr`9#rr2oss8MZj!WN,urW)usrqucrrr)isrpTme +rWN9#s8N#orrE&qrrE&frs&K&s8N&urqZQqrr;uds8W'$s8N&trq69krqHEmrql]srr;uhrrN-! +rr2os!<2Wj!<2rs!<2ip!<2rs!<2`m!<2lq!ri6!oD\jjs8N#srrE&jrrE&srrE&prrE&srrE&m +rrE&qrrW3"rq69prr;utrr2Tjs8Mus!<2ut!<2ut!<2ip!<2Bc!<2ip!<2or"oeQ$s8N#js8W)s +rrE&trrE&trrE&prrE&crrE&prrE&rrrrE%rr;usp&G'krVllsrr2utrr2utqYpQpmJd1cqYpQp +r;Qits8IN~> +!WW/trr`9#s8Moq$3'u)rr<#trr;usrrE&srr`9#rr2oss8MZj!WN,urW)usrqucrrr)isrpTme +rWN9#s8N#orrE&qrrE&frs&K&s8N&urqZQqrr;uds8W'$s8N&trq69krqHEmrql]srr;uhrrN-! +rr2os!<2Wj!<2rs!<2ip!<2rs!<2`m!<2lq!ri6!oD\jjs8N#srrE&jrrE&srrE&prrE&srrE&m +rrE&qrrW3"rq69prr;utrr2Tjs8Mus!<2ut!<2ut!<2ip!<2Bc!<2ip!<2or"oeQ$s8N#js8W)s +rrE&trrE&trrE&prrE&crrE&prrE&rrrrE%rr;usp&G'krVllsrr2utrr2utqYpQpmJd1cqYpQp +r;Qits8IN~> +rr39's8N&urr<#tqYp`us8N&urqcWprr2p!rr;usrrE&^rr`9#s8M`l!<2`m"9/?#rr)isrr)is +rr)isrr)isrr)j%rr;uts8N&urr2rt)#jR7s8W)us8N&ts8W)us8N&urr;uts8Mus#lal(rr;ut +s8Mus!<2rs"oeQ$s8W)srs8W(s8N&ts8W)hs8W)irrE&ss8W)trrE&qrseu-s8N&ts8W)urr<#t +rVm0&s8W)urr<#to)JahoD\girVuosrr2utqu7-)s8W)urr<#ts8N&urr)j&rr<#ts8N&urpp*h +rr)isrq$-irr)isrq$-irqQKnrr)isrqQKnrqQKnrr)isrq$-irr)isrq$-irqQKnrr)isrqQKn +rqQKnrr)isrq$-irr)isrq$-irqQKnrr)isrqQKnrqQKnrr)iurr<"K~> +rr39's8N&urr<#tqYp`us8N&urqcWprr2p!rr;usrrE&^rr`9#s8M`l!<2`m"9/?#rr)isrr)is +rr)isrr)isrr)j%rr;uts8N&urr2rt)#jR7s8W)us8N&ts8W)us8N&urr;uts8Mus#lal(rr;ut +s8Mus!<2rs"oeQ$s8W)srs8W(s8N&ts8W)hs8W)irrE&ss8W)trrE&qrseu-s8N&ts8W)urr<#t +rVm0&s8W)urr<#to)JahoD\girVuosrr2utqu7-)s8W)urr<#ts8N&urr)j&rr<#ts8N&urpp*h +rr)isrq$-irr)isrq$-irqQKnrr)isrqQKnrqQKnrr)isrq$-irr)isrq$-irqQKnrr)isrqQKn +rqQKnrr)isrq$-irr)isrq$-irqQKnrr)isrqQKnrqQKnrr)iurr<"K~> +rr39's8N&urr<#tqYp`us8N&urqcWprr2p!rr;usrrE&^rr`9#s8M`l!<2`m"9/?#rr)isrr)is +rr)isrr)isrr)j%rr;uts8N&urr2rt)#jR7s8W)us8N&ts8W)us8N&urr;uts8Mus#lal(rr;ut +s8Mus!<2rs"oeQ$s8W)srs8W(s8N&ts8W)hs8W)irrE&ss8W)trrE&qrseu-s8N&ts8W)urr<#t +rVm0&s8W)urr<#to)JahoD\girVuosrr2utqu7-)s8W)urr<#ts8N&urr)j&rr<#ts8N&urpp*h +rr)isrq$-irr)isrq$-irqQKnrr)isrqQKnrqQKnrr)isrq$-irr)isrq$-irqQKnrr)isrqQKn +rqQKnrr)isrq$-irr)isrq$-irqQKnrr)isrqQKnrqQKnrr)iurr<"K~> +s8N6$s8N&trr3K-s8W)ts8W)ts8W)ts8N#ts8E9'rr;uts8N#rs8W)us8W)srrE&srrW3"rr)ls +rr<#srr^Kos8N)ur;Zfrs8N)urVulrs8N)urr3*"s8W)srsA])s8N&t +rr<#trVllsrr;oqnc/Xgs8N)ur;Zfrs8N)urVulrs8N)urr3*"s8W)srsA])s8N&trr<#trVlls +rr;oqnc/Xgs8N)ur;Zfrs8N)urVulrs8N)urr3-#s8W)trr39's8W)urr<#tq#C9krr2utrr2ut +qu6m"s8N#ts8Mus!<2rs!<2uts8N#ts8Mus"9/?"rr2p'rr<#ts8N&urqQNkrr2otrr2otrql^" +rr;uss8W)srrE&srrE&ts8W)ts8W)srr`9#rr2os#lal(rr;uts8Mfnr;Q]q!<2ut!<2lq#6+Z% +rr<#trVllsrVllsrr<#trr<#trVm!!s8N#srrE%K~> +s8N6$s8N&trr3K-s8W)ts8W)ts8W)ts8N#ts8E9'rr;uts8N#rs8W)us8W)srrE&srrW3"rr)ls +rr<#srr^Kos8N)ur;Zfrs8N)urVulrs8N)urr3*"s8W)srsA])s8N&t +rr<#trVllsrr;oqnc/Xgs8N)ur;Zfrs8N)urVulrs8N)urr3*"s8W)srsA])s8N&trr<#trVlls +rr;oqnc/Xgs8N)ur;Zfrs8N)urVulrs8N)urr3-#s8W)trr39's8W)urr<#tq#C9krr2utrr2ut +qu6m"s8N#ts8Mus!<2rs!<2uts8N#ts8Mus"9/?"rr2p'rr<#ts8N&urqQNkrr2otrr2otrql^" +rr;uss8W)srrE&srrE&ts8W)ts8W)srr`9#rr2os#lal(rr;uts8Mfnr;Q]q!<2ut!<2lq#6+Z% +rr<#trVllsrVllsrr<#trr<#trVm!!s8N#srrE%K~> +s8N6$s8N&trr3K-s8W)ts8W)ts8W)ts8N#ts8E9'rr;uts8N#rs8W)us8W)srrE&srrW3"rr)ls +rr<#srr^Kos8N)ur;Zfrs8N)urVulrs8N)urr3*"s8W)srsA])s8N&t +rr<#trVllsrr;oqnc/Xgs8N)ur;Zfrs8N)urVulrs8N)urr3*"s8W)srsA])s8N&trr<#trVlls +rr;oqnc/Xgs8N)ur;Zfrs8N)urVulrs8N)urr3-#s8W)trr39's8W)urr<#tq#C9krr2utrr2ut +qu6m"s8N#ts8Mus!<2rs!<2uts8N#ts8Mus"9/?"rr2p'rr<#ts8N&urqQNkrr2otrr2otrql^" +rr;uss8W)srrE&srrE&ts8W)ts8W)srr`9#rr2os#lal(rr;uts8Mfnr;Q]q!<2ut!<2lq#6+Z% +rr<#trVllsrVllsrr<#trr<#trVm!!s8N#srrE%K~> +s8N)urVuosqYpQprVmH.s8N&trr<#trr;uts8N&urr*]5rr2rss8W)urr;utrr2rtrr<#ts8Mrr +!<2fos8N&u!<2ut$i^2*s8W)urr2rtrqcX%rr<#ts8W)ts8N&qrW`E%s8N&ts8N!4s8N&urr;ut +rr;utrr<#trr;uss8N#t&,uV.rr<#ts8W)urr2rtrqcWsrr<#trr2utrVuosrVuos!WW/ss8W)s +rrW3"rr2otrqufrrqud(rr;uss8W)us8N&trr3'!s8N#t!ri6!qu6ZqrVuosrVuos!WW/ss8W)s +rrW3"rr2otrqufrrqud(rr;uss8W)us8N&trr3'!s8N#t!ri6!qu6ZqrVuosrVuos!WW/ss8W)s +rrW3"rr2rtrr)lsrr)lsrWW?$rr<#trVllsrr3*"s8N#rrrE&trrE&trrE&ts8W)us8W)trrE&p +rrE&trs/Q'rr;uss8Muss8Muss8E3%rr2rtrr)isrr2p"rr;usrVllsrr2utrr2utrr<#ts8W,u +rr2utqYpQprr36&s8N&trr;urs8W)ss8W'%s8N#ts8Mus!<2ut"9/?"rr)isrr2otrr2otrr2rt +rr<#urr2otrqcWprr2p&rr;utrr2rsrVqB~> +s8N)urVuosqYpQprVmH.s8N&trr<#trr;uts8N&urr*]5rr2rss8W)urr;utrr2rtrr<#ts8Mrr +!<2fos8N&u!<2ut$i^2*s8W)urr2rtrqcX%rr<#ts8W)ts8N&qrW`E%s8N&ts8N!4s8N&urr;ut +rr;utrr<#trr;uss8N#t&,uV.rr<#ts8W)urr2rtrqcWsrr<#trr2utrVuosrVuos!WW/ss8W)s +rrW3"rr2otrqufrrqud(rr;uss8W)us8N&trr3'!s8N#t!ri6!qu6ZqrVuosrVuos!WW/ss8W)s +rrW3"rr2otrqufrrqud(rr;uss8W)us8N&trr3'!s8N#t!ri6!qu6ZqrVuosrVuos!WW/ss8W)s +rrW3"rr2rtrr)lsrr)lsrWW?$rr<#trVllsrr3*"s8N#rrrE&trrE&trrE&ts8W)us8W)trrE&p +rrE&trs/Q'rr;uss8Muss8Muss8E3%rr2rtrr)isrr2p"rr;usrVllsrr2utrr2utrr<#ts8W,u +rr2utqYpQprr36&s8N&trr;urs8W)ss8W'%s8N#ts8Mus!<2ut"9/?"rr)isrr2otrr2otrr2rt +rr<#urr2otrqcWprr2p&rr;utrr2rsrVqB~> +s8N)urVuosqYpQprVmH.s8N&trr<#trr;uts8N&urr*]5rr2rss8W)urr;utrr2rtrr<#ts8Mrr +!<2fos8N&u!<2ut$i^2*s8W)urr2rtrqcX%rr<#ts8W)ts8N&qrW`E%s8N&ts8N!4s8N&urr;ut +rr;utrr<#trr;uss8N#t&,uV.rr<#ts8W)urr2rtrqcWsrr<#trr2utrVuosrVuos!WW/ss8W)s +rrW3"rr2otrqufrrqud(rr;uss8W)us8N&trr3'!s8N#t!ri6!qu6ZqrVuosrVuos!WW/ss8W)s +rrW3"rr2otrqufrrqud(rr;uss8W)us8N&trr3'!s8N#t!ri6!qu6ZqrVuosrVuos!WW/ss8W)s +rrW3"rr2rtrr)lsrr)lsrWW?$rr<#trVllsrr3*"s8N#rrrE&trrE&trrE&ts8W)us8W)trrE&p +rrE&trs/Q'rr;uss8Muss8Muss8E3%rr2rtrr)isrr2p"rr;usrVllsrr2utrr2utrr<#ts8W,u +rr2utqYpQprr36&s8N&trr;urs8W)ss8W'%s8N#ts8Mus!<2ut"9/?"rr)isrr2otrr2otrr2rt +rr<#urr2otrqcWprr2p&rr;utrr2rsrVqB~> +!WW/qrrE&krrE&prrE&rs8W)srrE&trrE&rrrE&lrrE&es8W)us8W)urrE&trrE&fs8W)krrE&q +s8W')s8N&urr<#ts8Mcm#QFc'rr;utrql]qrp'L`rql]qrqud!rr;utrqZQorq??lrr2p!rr;up +rrE&`rrE&qrrE&rrri?$rr;unrrE&lrrE&trrW3"rql]qrp'L`rql]qrqud!rr;utrpg!grqcWp +rqZQorq-3jrqQKnrql]qrpg!grqQKnrqcWprqZQorq-3jrqQKnrql]qrpg!grqQKnrqcWprqZQo +rq-3jrqQKnrql]qrpg!grql_G~> +!WW/qrrE&krrE&prrE&rs8W)srrE&trrE&rrrE&lrrE&es8W)us8W)urrE&trrE&fs8W)krrE&q +s8W')s8N&urr<#ts8Mcm#QFc'rr;utrql]qrp'L`rql]qrqud!rr;utrqZQorq??lrr2p!rr;up +rrE&`rrE&qrrE&rrri?$rr;unrrE&lrrE&trrW3"rql]qrp'L`rql]qrqud!rr;utrpg!grqcWp +rqZQorq-3jrqQKnrql]qrpg!grqQKnrqcWprqZQorq-3jrqQKnrql]qrpg!grqQKnrqcWprqZQo +rq-3jrqQKnrql]qrpg!grql_G~> +!WW/qrrE&krrE&prrE&rs8W)srrE&trrE&rrrE&lrrE&es8W)us8W)urrE&trrE&fs8W)krrE&q +s8W')s8N&urr<#ts8Mcm#QFc'rr;utrql]qrp'L`rql]qrqud!rr;utrqZQorq??lrr2p!rr;up +rrE&`rrE&qrrE&rrri?$rr;unrrE&lrrE&trrW3"rql]qrp'L`rql]qrqud!rr;utrpg!grqcWp +rqZQorq-3jrqQKnrql]qrpg!grqQKnrqcWprqZQorq-3jrqQKnrql]qrpg!grqQKnrqcWprqZQo +rq-3jrqQKnrql]qrpg!grql_G~> +o)A^hpAY3ns8MQg!<2or"9/?#rpKddrqZQorr)lsrr)j'rr<#ts8W)us8Moq!<2ut"oeQ$s8W)q +rs/Q'rr2rtrr2co!<2Ng!<2or!<2rs$3'u)rr<#ts8W)rrrE&trr`9#rr2Kgs8MHd!<2ut!<2rs +!ri6!p\t6mqu6`ss8N#t"9/?"rpp*hrpKddrr2otrr)iurr;ulrrE&qrrW3"rr2p"rr;uso)Jah +nG`Lfr;QcrnG`Lfqu6`ss8Mrrs8N#t!<2`m"9/?#rqucrrqHEmrqucrrp]pfrql]srr;uqs8W)t +rrE&mrr`9#s8Mrr!<2`m!<2or!<2Kf!<2lq!ri6!r;Zfrrr2utp\t?ps8W)rrrE&os*t~> +o)A^hpAY3ns8MQg!<2or"9/?#rpKddrqZQorr)lsrr)j'rr<#ts8W)us8Moq!<2ut"oeQ$s8W)q +rs/Q'rr2rtrr2co!<2Ng!<2or!<2rs$3'u)rr<#ts8W)rrrE&trr`9#rr2Kgs8MHd!<2ut!<2rs +!ri6!p\t6mqu6`ss8N#t"9/?"rpp*hrpKddrr2otrr)iurr;ulrrE&qrrW3"rr2p"rr;uso)Jah +nG`Lfr;QcrnG`Lfqu6`ss8Mrrs8N#t!<2`m"9/?#rqucrrqHEmrqucrrp]pfrql]srr;uqs8W)t +rrE&mrr`9#s8Mrr!<2`m!<2or!<2Kf!<2lq!ri6!r;Zfrrr2utp\t?ps8W)rrrE&os*t~> +o)A^hpAY3ns8MQg!<2or"9/?#rpKddrqZQorr)lsrr)j'rr<#ts8W)us8Moq!<2ut"oeQ$s8W)q +rs/Q'rr2rtrr2co!<2Ng!<2or!<2rs$3'u)rr<#ts8W)rrrE&trr`9#rr2Kgs8MHd!<2ut!<2rs +!ri6!p\t6mqu6`ss8N#t"9/?"rpp*hrpKddrr2otrr)iurr;ulrrE&qrrW3"rr2p"rr;uso)Jah +nG`Lfr;QcrnG`Lfqu6`ss8Mrrs8N#t!<2`m"9/?#rqucrrqHEmrqucrrp]pfrql]srr;uqs8W)t +rrE&mrr`9#s8Mrr!<2`m!<2or!<2Kf!<2lq!ri6!r;Zfrrr2utp\t?ps8W)rrrE&os*t~> +q>UHoqu?]qs8NZ0s8N&urr;uts8N&urr<#trr<#tp\tU"s8N&urr2rss8N#t"oeQ%rr2rqrrUQrs8W)trrE&ts8W)srrrE%rr;usrr3K-s8W)us8N&urr;uss8N#trVlis"TJH# +s8W&s!rr9"r;Q`rs8N&urr2rt$3'u)rr2rss8N#rrrrE%rr;usrr3K-s8W)us8N&urr;uss8N#t +rVlis"TJH#s8W&s!rr9"r;Q`rs8N&urr2rt$3'u)rr2rss8N#rrrrE%rr;usrr3K-s8W)us8N&u +rr;uss8N#ts8EQ/rr2rss8N#trr;uss8N&trW<-!s8N#ts8Dp0s8N#trr2rss8N#trr<#ts8N&t +rr +q>UHoqu?]qs8NZ0s8N&urr;uts8N&urr<#trr<#tp\tU"s8N&urr2rss8N#t"oeQ%rr2rqrrUQrs8W)trrE&ts8W)srrrE%rr;usrr3K-s8W)us8N&urr;uss8N#trVlis"TJH# +s8W&s!rr9"r;Q`rs8N&urr2rt$3'u)rr2rss8N#rrrrE%rr;usrr3K-s8W)us8N&urr;uss8N#t +rVlis"TJH#s8W&s!rr9"r;Q`rs8N&urr2rt$3'u)rr2rss8N#rrrrE%rr;usrr3K-s8W)us8N&u +rr;uss8N#ts8EQ/rr2rss8N#trr;uss8N&trW<-!s8N#ts8Dp0s8N#trr2rss8N#trr<#ts8N&t +rr +q>UHoqu?]qs8NZ0s8N&urr;uts8N&urr<#trr<#tp\tU"s8N&urr2rss8N#t"oeQ%rr2rqrrUQrs8W)trrE&ts8W)srrrE%rr;usrr3K-s8W)us8N&urr;uss8N#trVlis"TJH# +s8W&s!rr9"r;Q`rs8N&urr2rt$3'u)rr2rss8N#rrrrE%rr;usrr3K-s8W)us8N&urr;uss8N#t +rVlis"TJH#s8W&s!rr9"r;Q`rs8N&urr2rt$3'u)rr2rss8N#rrrrE%rr;usrr3K-s8W)us8N&u +rr;uss8N#ts8EQ/rr2rss8N#trr;uss8N&trW<-!s8N#ts8Dp0s8N#trr2rss8N#trr<#ts8N&t +rr +s8N)uoD\pls8N#prs\o,rr2rss8W)us8N#rrrE&rs8N#orrE&srrE&nrrW3"rq??lrp]phrr;ur +s8W)urr`9#s8N#t!<2rss8M9_"oeQ%rr;ubrrE&trsJc*rr;uts8N&urr)isrr)isrqQKnrql]q +rr2rtrqud!rr;utrq$-lrr;utrr*<*rr;utrr<#ts8W)srrE&srrE&nrrE&qrrE&ts8W)rrri?$ +rr;uhrr`9#rr;us$ig5+rr;uts8N&urr)isrr)isrqQKnrr)iurr;uqrs\o,rr<#ts8N&urr;uo +s8N#srr`9#rr2]m#lal's8W)urr2`n!<2`m!ri6!r;R3)s8N&urr;uts8N&tqZ$Qorr3*"s8N#m +rs8W(rr<#ts8N#nrrE&mrrW3"rqud)rr;uts8N&ts8W)urqcZorr2p"rr;usq#:X!s8N&urr;us +q>UHop\t?ps8N%K~> +s8N)uoD\pls8N#prs\o,rr2rss8W)us8N#rrrE&rs8N#orrE&srrE&nrrW3"rq??lrp]phrr;ur +s8W)urr`9#s8N#t!<2rss8M9_"oeQ%rr;ubrrE&trsJc*rr;uts8N&urr)isrr)isrqQKnrql]q +rr2rtrqud!rr;utrq$-lrr;utrr*<*rr;utrr<#ts8W)srrE&srrE&nrrE&qrrE&ts8W)rrri?$ +rr;uhrr`9#rr;us$ig5+rr;uts8N&urr)isrr)isrqQKnrr)iurr;uqrs\o,rr<#ts8N&urr;uo +s8N#srr`9#rr2]m#lal's8W)urr2`n!<2`m!ri6!r;R3)s8N&urr;uts8N&tqZ$Qorr3*"s8N#m +rs8W(rr<#ts8N#nrrE&mrrW3"rqud)rr;uts8N&ts8W)urqcZorr2p"rr;usq#:X!s8N&urr;us +q>UHop\t?ps8N%K~> +s8N)uoD\pls8N#prs\o,rr2rss8W)us8N#rrrE&rs8N#orrE&srrE&nrrW3"rq??lrp]phrr;ur +s8W)urr`9#s8N#t!<2rss8M9_"oeQ%rr;ubrrE&trsJc*rr;uts8N&urr)isrr)isrqQKnrql]q +rr2rtrqud!rr;utrq$-lrr;utrr*<*rr;utrr<#ts8W)srrE&srrE&nrrE&qrrE&ts8W)rrri?$ +rr;uhrr`9#rr;us$ig5+rr;uts8N&urr)isrr)isrqQKnrr)iurr;uqrs\o,rr<#ts8N&urr;uo +s8N#srr`9#rr2]m#lal's8W)urr2`n!<2`m!ri6!r;R3)s8N&urr;uts8N&tqZ$Qorr3*"s8N#m +rs8W(rr<#ts8N#nrrE&mrrW3"rqud)rr;uts8N&ts8W)urqcZorr2p"rr;usq#:X!s8N&urr;us +q>UHop\t?ps8N%K~> +rVm!!s8W)srrrE%s8N#trr)rurqZTnrrUHorVlots8Drfs8N#hrrrE% +rr<#trVllsqZ$Qos8N0"s8N#t"9/?#rql`orpp*grq$-nrr;uts8Mus!<2iprr2rt!ri6!rr3*" +s8W)qs8Drfs8N#hrrrE%rr<#trVllsqZ$Qos8N0"s8N#t"9/?#rql`orW)tK~> +rVm!!s8W)srrrE%s8N#trr)rurqZTnrrUHorVlots8Drfs8N#hrrrE% +rr<#trVllsqZ$Qos8N0"s8N#t"9/?#rql`orpp*grq$-nrr;uts8Mus!<2iprr2rt!ri6!rr3*" +s8W)qs8Drfs8N#hrrrE%rr<#trVllsqZ$Qos8N0"s8N#t"9/?#rql`orW)tK~> +rVm!!s8W)srrrE%s8N#trr)rurqZTnrrUHorVlots8Drfs8N#hrrrE% +rr<#trVllsqZ$Qos8N0"s8N#t"9/?#rql`orpp*grq$-nrr;uts8Mus!<2iprr2rt!ri6!rr3*" +s8W)qs8Drfs8N#hrrrE%rr<#trVllsqZ$Qos8N0"s8N#t"9/?#rql`orW)tK~> +"98B#rqZQorr)itrr;usrVllsrr3<(s8W)urr;utrpp'orr;uts8N&tqu7''s8N&urr;utrr;uk +rri?$rr;ukrrW3"rr2otrqQKnrqucrrr2rtrql^"rr;utrr<#rrWE3"s8Mfn"TJH#s8M`l#lal' +rr<#ts8MZj!<2ut!<2cn!<2utrr2lr!ri6!r;Zfrs8W)t"98B#rq?Blrr +"98B#rqZQorr)itrr;usrVllsrr3<(s8W)urr;utrpp'orr;uts8N&tqu7''s8N&urr;utrr;uk +rri?$rr;ukrrW3"rr2otrqQKnrqucrrr2rtrql^"rr;utrr<#rrWE3"s8Mfn"TJH#s8M`l#lal' +rr<#ts8MZj!<2ut!<2cn!<2utrr2lr!ri6!r;Zfrs8W)t"98B#rq?Blrr +"98B#rqZQorr)itrr;usrVllsrr3<(s8W)urr;utrpp'orr;uts8N&tqu7''s8N&urr;utrr;uk +rri?$rr;ukrrW3"rr2otrqQKnrqucrrr2rtrql^"rr;utrr<#rrWE3"s8Mfn"TJH#s8M`l#lal' +rr<#ts8MZj!<2ut!<2cn!<2utrr2lr!ri6!r;Zfrs8W)t"98B#rq?Blrr +(B=C5s8N&trr;uss8N&trr;uts8N&tp\t?ps8W)rrrE&ts8W)urri?$rr;uorrW3"rp'O_rr-ns8W)ss8N#ts8W)orr`9#s8Mfn"9/?#rqQL"rr<#trr;uts8N#t!<2Zk"9/?#rr)lr +rr<#urqZQrrr<#tq#:Hqs8W)nrsA])s8N#trr<#trr2utp&>-ns8W)ss8N#trr`9#s8Moq"9/?# +rqQNnrr;uurql^(rr<#ts8N#trr<#ts8N#qs8N#rrs/Q's8N&ts8W)ts8N3#s8W)qrr`9#s8Mfn +s8N&u!<2lq%0$;,rr;uss8N&urr;usr;ZcqrVm-%s8W)urr<#trr +(B=C5s8N&trr;uss8N&trr;uts8N&tp\t?ps8W)rrrE&ts8W)urri?$rr;uorrW3"rp'O_rr-ns8W)ss8N#ts8W)orr`9#s8Mfn"9/?#rqQL"rr<#trr;uts8N#t!<2Zk"9/?#rr)lr +rr<#urqZQrrr<#tq#:Hqs8W)nrsA])s8N#trr<#trr2utp&>-ns8W)ss8N#trr`9#s8Moq"9/?# +rqQNnrr;uurql^(rr<#ts8N#trr<#ts8N#qs8N#rrs/Q's8N&ts8W)ts8N3#s8W)qrr`9#s8Mfn +s8N&u!<2lq%0$;,rr;uss8N&urr;usr;ZcqrVm-%s8W)urr<#trr +(B=C5s8N&trr;uss8N&trr;uts8N&tp\t?ps8W)rrrE&ts8W)urri?$rr;uorrW3"rp'O_rr-ns8W)ss8N#ts8W)orr`9#s8Mfn"9/?#rqQL"rr<#trr;uts8N#t!<2Zk"9/?#rr)lr +rr<#urqZQrrr<#tq#:Hqs8W)nrsA])s8N#trr<#trr2utp&>-ns8W)ss8N#trr`9#s8Moq"9/?# +rqQNnrr;uurql^(rr<#ts8N#trr<#ts8N#qs8N#rrs/Q's8N&ts8W)ts8N3#s8W)qrr`9#s8Mfn +s8N&u!<2lq%0$;,rr;uss8N&urr;usr;ZcqrVm-%s8W)urr<#trr +rr3'!s8Mrr#QFc'rr;uts8N#trrW3"rqQNnrWiK&s8W)us8Mcm!<2ut"9/?#rqZQurr;uss8N#s +rrE&trrE&qrrE&ss8N#os8W''s8N#trr;uso`"pjrr3-#s8N&tqu?Zps8W)trr<#tq#:?nrVulr +qYp]ts8W)trVm!!s8W)srrE&rrrE&prrE&prrE&srrE&ss8W)rrrE&trrW3"rr2otrqQKqrr;us +rVm!!s8W)srrE&rrrE&prrE&prrE&srrE&ss8W)rrrE&trrW3"rr2otrqQKqrr;usrVm!!s8W)s +rrE&rrrE&prrE&srr`9#s8Mfn!<2`m!ri6!rVm!!s8W)nrrE&trrE&grrE&srrE&prrE&nrrE&m +rrW3"rr)j!rr<#tq#:?nrr2utnc&UgrVllsqYpQpq#:?np\t +rr3'!s8Mrr#QFc'rr;uts8N#trrW3"rqQNnrWiK&s8W)us8Mcm!<2ut"9/?#rqZQurr;uss8N#s +rrE&trrE&qrrE&ss8N#os8W''s8N#trr;uso`"pjrr3-#s8N&tqu?Zps8W)trr<#tq#:?nrVulr +qYp]ts8W)trVm!!s8W)srrE&rrrE&prrE&prrE&srrE&ss8W)rrrE&trrW3"rr2otrqQKqrr;us +rVm!!s8W)srrE&rrrE&prrE&prrE&srrE&ss8W)rrrE&trrW3"rr2otrqQKqrr;usrVm!!s8W)s +rrE&rrrE&prrE&srr`9#s8Mfn!<2`m!ri6!rVm!!s8W)nrrE&trrE&grrE&srrE&prrE&nrrE&m +rrW3"rr)j!rr<#tq#:?nrr2utnc&UgrVllsqYpQpq#:?np\t +rr3'!s8Mrr#QFc'rr;uts8N#trrW3"rqQNnrWiK&s8W)us8Mcm!<2ut"9/?#rqZQurr;uss8N#s +rrE&trrE&qrrE&ss8N#os8W''s8N#trr;uso`"pjrr3-#s8N&tqu?Zps8W)trr<#tq#:?nrVulr +qYp]ts8W)trVm!!s8W)srrE&rrrE&prrE&prrE&srrE&ss8W)rrrE&trrW3"rr2otrqQKqrr;us +rVm!!s8W)srrE&rrrE&prrE&prrE&srrE&ss8W)rrrE&trrW3"rr2otrqQKqrr;usrVm!!s8W)s +rrE&rrrE&prrE&srr`9#s8Mfn!<2`m!ri6!rVm!!s8W)nrrE&trrE&grrE&srrE&prrE&nrrE&m +rrW3"rr)j!rr<#tq#:?nrr2utnc&UgrVllsqYpQpq#:?np\t +!rr9!rr30$s8N#ts8N#ts8W)urrE&qrs8W(s8N&ts8W)ts8W'"s8N#rrrE&trri?$s8N#rrrrE% +rr<#trr<#tqYpd!s8N#ts8Moqs8N#t%K?D-rr;uss8N&ts8W)ts8W'#s8N&urr2rtrr2rt!ri6! +rVm!!s8W)ss8N#rrr`9#rr;us!WW/trr`9#rr2os%K?D-rr;uss8N&ts8N#rrri?$rr<#trr+s8W)urr;uss8Mlp!<2ut$i^2+rr<#ts8N&urqufrrr+s8W)urr;uss8Mlp!<2ut$i^2+rr<#ts8N&urqufrrr +!rr9!rr30$s8N#ts8N#ts8W)urrE&qrs8W(s8N&ts8W)ts8W'"s8N#rrrE&trri?$s8N#rrrrE% +rr<#trr<#tqYpd!s8N#ts8Moqs8N#t%K?D-rr;uss8N&ts8W)ts8W'#s8N&urr2rtrr2rt!ri6! +rVm!!s8W)ss8N#rrr`9#rr;us!WW/trr`9#rr2os%K?D-rr;uss8N&ts8N#rrri?$rr<#trr+s8W)urr;uss8Mlp!<2ut$i^2+rr<#ts8N&urqufrrr+s8W)urr;uss8Mlp!<2ut$i^2+rr<#ts8N&urqufrrr +!rr9!rr30$s8N#ts8N#ts8W)urrE&qrs8W(s8N&ts8W)ts8W'"s8N#rrrE&trri?$s8N#rrrrE% +rr<#trr<#tqYpd!s8N#ts8Moqs8N#t%K?D-rr;uss8N&ts8W)ts8W'#s8N&urr2rtrr2rt!ri6! +rVm!!s8W)ss8N#rrr`9#rr;us!WW/trr`9#rr2os%K?D-rr;uss8N&ts8N#rrri?$rr<#trr+s8W)urr;uss8Mlp!<2ut$i^2+rr<#ts8N&urqufrrr+s8W)urr;uss8Mlp!<2ut$i^2+rr<#ts8N&urqufrrr +q>UHoo)Agks8N&orr2p"rr<#tq>UHoqZ$Tps8N0"s8W)t!<<&tr;Zfr!WW/rrrE&trrE&^rrE&r +s8W)srri?$rr;usrrW3"rr)lrrr)isrqQNnrWE3"s8M6^!ri6!rVuoss8N)urVm$"s8W)tq>UHo +rr2uto`"pjqYpQpqu6Zqrr2utq>UNqs8Muss8N&u!<2rs"TJH$rr2`n!<2ut!<2Wj!<2ip!<2lq +!<2ut!<2fo!ri6!rVuoss8N)urVm$"s8W)tp&>$kp&G$jqu6Zqqu6ZqrVllsqYpQpqYpZss8W)r +rr`9#rr2lr!<2ip!<2Zkrr2fp!<2lq!<2rs!<2ip!<2ip"9/?#rqucurr;usrVllsqYpQpp&G$j +qu6Zqqu6ZqrVllsqYpQpqYpZss8W)rrr`9#rr2lr!<2lqJ,~> +q>UHoo)Agks8N&orr2p"rr<#tq>UHoqZ$Tps8N0"s8W)t!<<&tr;Zfr!WW/rrrE&trrE&^rrE&r +s8W)srri?$rr;usrrW3"rr)lrrr)isrqQNnrWE3"s8M6^!ri6!rVuoss8N)urVm$"s8W)tq>UHo +rr2uto`"pjqYpQpqu6Zqrr2utq>UNqs8Muss8N&u!<2rs"TJH$rr2`n!<2ut!<2Wj!<2ip!<2lq +!<2ut!<2fo!ri6!rVuoss8N)urVm$"s8W)tp&>$kp&G$jqu6Zqqu6ZqrVllsqYpQpqYpZss8W)r +rr`9#rr2lr!<2ip!<2Zkrr2fp!<2lq!<2rs!<2ip!<2ip"9/?#rqucurr;usrVllsqYpQpp&G$j +qu6Zqqu6ZqrVllsqYpQpqYpZss8W)rrr`9#rr2lr!<2lqJ,~> +q>UHoo)Agks8N&orr2p"rr<#tq>UHoqZ$Tps8N0"s8W)t!<<&tr;Zfr!WW/rrrE&trrE&^rrE&r +s8W)srri?$rr;usrrW3"rr)lrrr)isrqQNnrWE3"s8M6^!ri6!rVuoss8N)urVm$"s8W)tq>UHo +rr2uto`"pjqYpQpqu6Zqrr2utq>UNqs8Muss8N&u!<2rs"TJH$rr2`n!<2ut!<2Wj!<2ip!<2lq +!<2ut!<2fo!ri6!rVuoss8N)urVm$"s8W)tp&>$kp&G$jqu6Zqqu6ZqrVllsqYpQpqYpZss8W)r +rr`9#rr2lr!<2ip!<2Zkrr2fp!<2lq!<2rs!<2ip!<2ip"9/?#rqucurr;usrVllsqYpQpp&G$j +qu6Zqqu6ZqrVllsqYpQpqYpZss8W)rrr`9#rr2lr!<2lqJ,~> +$ig5+rr<#ts8N&urr)lsrql^!rr<#ts8Mrr$NC))s8N&urr2rsrVllsrVllsqYpQprVllsqu6os +oBGB%o(r@brs&K&s8N&trqZQorql]qrqud"rr;uts8N#t!<2fo!ri6!f`(sNqu6ZqpAY6os8W)t +rrE&qrrW3"rql]srr;uerrE&srrE&prrE&trrE&irr`9#s8N#t!<2lq!ri6!qu6`ss8MNf!<2rs +!<2ip!<2ut!<2Ti"9/?#rr2otrql]srr;uprrE&drr`9#s8Mlp!<2or!<2or!<2Qh!<2rs!<2$Y +"9/?#rqcWprqucrrqucrrpp'hrr)isro="\rr<#tqYpQpr;Qcrr;Qcro)A^hrVllsnGe"~> +$ig5+rr<#ts8N&urr)lsrql^!rr<#ts8Mrr$NC))s8N&urr2rsrVllsrVllsqYpQprVllsqu6os +oBGB&o(r@brs&K&s8N&trqZQorql]qrqud"rr;uts8N#t!<2fo!ri6!f`(sNqu6ZqpAY6os8W)t +rrE&qrrW3"rql]srr;uerrE&srrE&prrE&trrE&irr`9#s8N#t!<2lq!ri6!qu6`ss8MNf!<2rs +!<2ip!<2ut!<2Ti"9/?#rr2otrql]srr;uprrE&drr`9#s8Mlp!<2or!<2or!<2Qh!<2rs!<2$Y +"9/?#rqcWprqucrrqucrrpp'hrr)isro="\rr<#tqYpQpr;Qcrr;Qcro)A^hrVllsnGe"~> +$ig5+rr<#ts8N&urr)lsrql^!rr<#ts8Mrr$NC))s8N&urr2rsrVllsrVllsqYpQprVllsqu6ot +oBPN*oD8Icrs&K&s8N&trqZQorql]qrqud"rr;uts8N#t!<2fo!ri6!f`(sNqu6ZqpAY6os8W)t +rrE&qrrW3"rql]srr;uerrE&srrE&prrE&trrE&irr`9#s8N#t!<2lq!ri6!qu6`ss8MNf!<2rs +!<2ip!<2ut!<2Ti"9/?#rr2otrql]srr;uprrE&drr`9#s8Mlp!<2or!<2or!<2Qh!<2rs!<2$Y +"9/?#rqcWprqucrrqucrrpp'hrr)isro="\rr<#tqYpQpr;Qcrr;Qcro)A^hrVllsnGe"~> +rr;usqZ$TprVllsr;Qp!s8N&trr3'!s8Moqs8N&us8Mcm!<2]l&H27ZcD-;GBO>S'N2kn7s8W)t +!WW/urrE&os8W'!s8N#ts8N#ts8E'!rq??nrr;uirrE&prrE&trrE&ts8W)rrrE&os8W'!s8N#t +s8Mus!<2Qh!<2?b!<2lq!<2]l!<2ip!<2uts8Mus!<2Qh!<2?b!<2lq!<2]l!<2ip!<2uts8Mus +!<2Qh!<2*[!<2]l!ri6!r;Qcrq#:?nrVllsmJd1cn,ECepAY3ns8Mrr!<2cn!<2rs!<2Bc!<2He +!<2]l!ri6!r;Qcrq#:?nrVllsmJd1cqu;0~> +rr;usqZ$TprVllsr;Qp!s8N&trr3'!s8Moqs8N&us8Mcm!<2]l&H27[d&E1^EG9NJPHX$Ds8W)t +!WW/urrE&os8W'!s8N#ts8N#ts8E'!rq??nrr;uirrE&prrE&trrE&ts8W)rrrE&os8W'!s8N#t +s8Mus!<2Qh!<2?b!<2lq!<2]l!<2ip!<2uts8Mus!<2Qh!<2?b!<2lq!<2]l!<2ip!<2uts8Mus +!<2Qh!<2*[!<2]l!ri6!r;Qcrq#:?nrVllsmJd1cn,ECepAY3ns8Mrr!<2cn!<2rs!<2Bc!<2He +!<2]l!ri6!r;Qcrq#:?nrVllsmJd1cqu;0~> +rr;usqZ$TprVllsr;Qp!s8N&trr3'!s8Moqs8N&us8Mcm!<2]l&H27\d]f4$HZOXqS@%ASs8W)t +!WW/urrE&os8W'!s8N#ts8N#ts8E'!rq??nrr;uirrE&prrE&trrE&ts8W)rrrE&os8W'!s8N#t +s8Mus!<2Qh!<2?b!<2lq!<2]l!<2ip!<2uts8Mus!<2Qh!<2?b!<2lq!<2]l!<2ip!<2uts8Mus +!<2Qh!<2*[!<2]l!ri6!r;Qcrq#:?nrVllsmJd1cn,ECepAY3ns8Mrr!<2cn!<2rs!<2Bc!<2He +!<2]l!ri6!r;Qcrq#:?nrVllsmJd1cqu;0~> +s8E0$rr;usrr;usrr<#t!WW/trrE&ns8W'$s8N&trr)j!rr<#trr<#ts8O8As8W)us8Mrmp@?qW +V/fjE<_@:mZcp.ME)9YdbjkT1rqufqrWN9#s8W)ps8W'Fs8N#trr2rtrr;uss8N&trr;uss8W)u +s8N#ts8N&trr<#ts8W)trrE&ts8W'!s8Mrr!ri6"rr*'#rr<#tqZ$Tp"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr2rsrr2otrr2p%rr<#ts8N&trqucurr;usrVulrr;Zfr"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr2rsrr2otrr2p%rr<#ts8N&trqucurr;usrVulrr;Zfr"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j" +rr;utrr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j"rr;ut +rr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j"rr;utrr)ls +rr2qJ~> +s8E0$rr;usrr;usrr<#t!WW/trrE&ns8W'$s8N&trr)j!rr<#trr<#ts8O8As8W)us8Mrmp[[([ +W-N&d?r_?7[a2d[G$8C1cLUl4rqufqrWN9#s8W)ps8W'Fs8N#trr2rtrr;uss8N&trr;uss8W)u +s8N#ts8N&trr<#ts8W)trrE&ts8W'!s8Mrr!ri6"rr*'#rr<#tqZ$Tp"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr2rsrr2otrr2p%rr<#ts8N&trqucurr;usrVulrr;Zfr"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr2rsrr2otrr2p%rr<#ts8N&trqucurr;usrVulrr;Zfr"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j" +rr;utrr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j"rr;ut +rr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j"rr;utrr)ls +rr2qJ~> +s8E0$rr;usrr;usrr<#t!WW/trrE&ns8W'$s8N&trr)j!rr<#trr<#ts8O8As8W)us8Munp[d4a +Xb1_7D.7p^]$eTlIV3SZd.7)6rqufqrWN9#s8W)ps8W'Fs8N#trr2rtrr;uss8N&trr;uss8W)u +s8N#ts8N&trr<#ts8W)trrE&ts8W'!s8Mrr!ri6"rr*'#rr<#tqZ$Tp"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr2rsrr2otrr2p%rr<#ts8N&trqucurr;usrVulrr;Zfr"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr2rsrr2otrr2p%rr<#ts8N&trqucurr;usrVulrr;Zfr"onT$s8W)ts8N#ss8N#r +rs&K&rr;utrr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j" +rr;utrr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j"rr;ut +rr)lsrr2otrr2rtrWN9#s8N&trqucurr;usrVlrus8M]k!ri6"rr2lrrr)rurr)j"rr;utrr)ls +rr2qJ~> +"onT$s8W)lrrE&ts8W'!s8Mlp!<2ut!<2ip!<2lq"TJH#s8N#t&+nc2[A8h"85*E0Jtp?LqYL*q +o!<[?=-h2%rqQNnrr;uurr)j$rr;utrr;usrrE&orrrE%rr<#tqZ$Qonc&Ugqu6ZqqZ$Tps8N)u +rVuosr;Qcrrr2utqYpQprVm$"s8N&tq>UNqs8Mus!<2ors8MZjrr2rt!<2or!<2or!<2ut!<2ip +!<2rs"TJH#s8Mio!ri6!rVllsr;Zfro`+pis8N)ur;Qcrr;Qcrrr2utqYpQprVm$"s8N&tqYpZs +s8N#nrr`9#rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWN9#s8N#n +rr`9#rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWN9#s8N#nrr`9# +rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWW?$s8N#tJ,~> +"onT$s8W)lrrE&ts8W'!s8Mlp!<2ut!<2ip!<2lq"TJH#s8N#t&+nf5\Z1m9;HIUXMPnMYqYL*q +o!O'R@@Ya7rqQNnrr;uurr)j$rr;utrr;usrrE&orrrE%rr<#tqZ$Qonc&Ugqu6ZqqZ$Tps8N)u +rVuosr;Qcrrr2utqYpQprVm$"s8N&tq>UNqs8Mus!<2ors8MZjrr2rt!<2or!<2or!<2ut!<2ip +!<2rs"TJH#s8Mio!ri6!rVllsr;Zfro`+pis8N)ur;Qcrr;Qcrrr2utqYpQprVm$"s8N&tqYpZs +s8N#nrr`9#rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWN9#s8N#n +rr`9#rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWN9#s8N#nrr`9# +rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWW?$s8N#tJ,~> +"onT$s8W)lrrE&ts8W'!s8Mlp!<2ut!<2ip!<2lq"TJH#s8N#t&,"o8^Ta2U?Xn52PH2jkqtg6s +oXTonCnfGLrqQNnrr;uurr)j$rr;utrr;usrrE&orrrE%rr<#tqZ$Qonc&Ugqu6ZqqZ$Tps8N)u +rVuosr;Qcrrr2utqYpQprVm$"s8N&tq>UNqs8Mus!<2ors8MZjrr2rt!<2or!<2or!<2ut!<2ip +!<2rs"TJH#s8Mio!ri6!rVllsr;Zfro`+pis8N)ur;Qcrr;Qcrrr2utqYpQprVm$"s8N&tqYpZs +s8N#nrr`9#rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWN9#s8N#n +rr`9#rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWN9#s8N#nrr`9# +rr2iq!<2ip"9/?#rql^#rr<#ts8W)tqu6j!s8N&urr)isrr2otrr)lsrWW?$s8N#tJ,~> +%fZM.rr2rss8N&ts8W)trr<#tqu6Zqq>UHoqu6Zqr;Qlus8W)rrs\hOH=Z0M;drr`9#s8Moqs8MNf!<2Ng!<2`m!ri6!qYpQpqYpZss8W)qs8W)rrrW3"rqQKnro="Y +rq$-irqcWrrr;uprrW3"rqQKnro="Yrq$-irqcWrrr;uprrW3"rqQKnrpB^crpp'krr<#tr;Qcr +r;Qp!s8N&tq>UHoq#:?nq#:?nr;QcrrVllso)Agks8W)rrrE&rrri?$rr;unrrE&nrrE&nrrE&r +rrE&srrE&hrr`9#s8Mrr!<2or"TJH#s8Mio!<2cn!<2cn!<2or!<2rs!ri6"J,~> +%fZM.rr2rss8N&ts8W)trr<#tqu6Zqq>UHoqu6Zqr;Qlus8W)rrsenQK4\I`Bo&_"cJnBkrVQZm +r;6s"r;6-7W,Ga][-IVgrr`9#s8Moqs8MNf!<2Ng!<2`m!ri6!qYpQpqYpZss8W)qs8W)rrrW3" +rqQKnro="Yrq$-irqcWrrr;uprrW3"rqQKnro="Yrq$-irqcWrrr;uprrW3"rqQKnrpB^crpp'k +rr<#tr;Qcrr;Qp!s8N&tq>UHoq#:?nq#:?nr;QcrrVllso)Agks8W)rrrE&rrri?$rr;unrrE&n +rrE&nrrE&rrrE&srrE&hrr`9#s8Mrr!<2or"TJH#s8Mio!<2cn!<2cn!<2or!<2rs!ri6"J,~> +%fZM.rr2rss8N&ts8W)trr<#tqu6Zqq>UHoqu6Zqr;Qlus8W)rrs\hRN,i]9F-!N?d,X]gr!;uF +Y'=K/\Ej+lrr`9#s8Moqs8MNf!<2Ng!<2`m!ri6!qYpQpqYpZss8W)qs8W)rrrW3"rqQKnro="Y +rq$-irqcWrrr;uprrW3"rqQKnro="Yrq$-irqcWrrr;uprrW3"rqQKnrpB^crpp'krr<#tr;Qcr +r;Qp!s8N&tq>UHoq#:?nq#:?nr;QcrrVllso)Agks8W)rrrE&rrri?$rr;unrrE&nrrE&nrrE&r +rrE&srrE&hrr`9#s8Mrr!<2or"TJH#s8Mio!<2cn!<2cn!<2or!<2rs!ri6"J,~> +rr2utrVllsq>UHorr2utqYpQpr;Qp!s8N&trr3'!s8W&ss8NQ-s8W)tb$8/Qf'2Vop[.bap[?Ld +>Z--ml1tAYrr<#tnc&Ugli6t`!WW/trr`9#rr2Ee!<2uts8Moq!<2Kf!<2cn!<2lq!<2ut"9/?# +rq??lrqud"rr<#ts8W)tl2Lb_q#:?nqu6Zqrr3*"s8W)lrrE&rrrrE%s8N&urr20^!<2cn!<2lq +!<2ut"9/?#rr)isrql`qrWiK&s8N#ts8M`ls8MQg!<2iprr2iq!<2rs"9/?#rr)isrql`qrWiK& +s8N#ts8M`ls8MQg!<2iprr2iq!<2rs"9/?#rr)isrql`qrWiK&s8N#ts8M`ls8MQg!<2iprr2iq +!<2rs!WN+L~> +rr2utrVllsq>UHorr2utqYpQpr;Qp!s8N&trr3'!s8W&ss8NQ-s8W)tb[kCjf^&"uq!Incq!cdo +AmL26lMCP[rr<#tnc&Ugli6t`!WW/trr`9#rr2Ee!<2uts8Moq!<2Kf!<2cn!<2lq!<2ut"9/?# +rq??lrqud"rr<#ts8W)tl2Lb_q#:?nqu6Zqrr3*"s8W)lrrE&rrrrE%s8N&urr20^!<2cn!<2lq +!<2ut"9/?#rr)isrql`qrWiK&s8N#ts8M`ls8MQg!<2iprr2iq!<2rs"9/?#rr)isrql`qrWiK& +s8N#ts8M`ls8MQg!<2iprr2iq!<2rs"9/?#rr)isrql`qrWiK&s8N#ts8M`ls8MQg!<2iprr2iq +!<2rs!WN+L~> +rr2utrVllsq>UHorr2utqYpQpr;Qp!s8N&trr3'!s8W&ss8NQ-s8W)tc>dj2g[4P(q +s8N0"s8M`l!ri6!rr2utqYpQprVllsrr2utoD]!ns8$A-e`6E4jfO#0A!GI8rr<#trVm0&s8N#t +s8N&trVllsp\tU"s8N&trr<#ts8Mus!<2`m!<2ut!<2ut"TJH#s8Mlp!<2rs#QFc&rr<#trqucr +rr)isrqcX#rr;uts8N#trquctrr;uss8W)rs8W)rrrW3"rqufqrr)isrqufrrqucrrr)isrqcX# +rr;uts8N#trquctrr;uss8W)rs8W)rrrW3"rqufqrr)isrqufrrqucrrr)isrqcX#rr;uts8N#t +rr)lsrW3&urr;usrr;uso`"pjrVm-%s8N&urr;uorrW3"rqHHlrr<#urW<-!s8;iss8N#trr2os +rr2Qi!<2rs#QFc&s8W)urqcWrrr;uls8N#ts8W'"s8N&rrW3&urr;usrr;uso`"pjrVm-%s8N&u +rr;uorrW3"rqHHlrr<#urW<-!s8;its8N%K~> +s8N0"s8M`l!ri6!rr2utqYpQprVllsrr2utoD]!ns8$Y@f]2c8k-9YECmrlHrr<#trVm0&s8N#t +s8N&trVllsp\tU"s8N&trr<#ts8Mus!<2`m!<2ut!<2ut"TJH#s8Mlp!<2rs#QFc&rr<#trqucr +rr)isrqcX#rr;uts8N#trquctrr;uss8W)rs8W)rrrW3"rqufqrr)isrqufrrqucrrr)isrqcX# +rr;uts8N#trquctrr;uss8W)rs8W)rrrW3"rqufqrr)isrqufrrqucrrr)isrqcX#rr;uts8N#t +rr)lsrW3&urr;usrr;uso`"pjrVm-%s8N&urr;uorrW3"rqHHlrr<#urW<-!s8;iss8N#trr2os +rr2Qi!<2rs#QFc&s8W)urqcWrrr;uls8N#ts8W'"s8N&rrW3&urr;usrr;uso`"pjrVm-%s8N&u +rr;uorrW3"rqHHlrr<#urW<-!s8;its8N%K~> +s8N0"s8M`l!ri6!rr2utqYpQprVllsrr2utoD]!ns8$tUg>i#;kdHOaGG<[]rr<#trVm0&s8N#t +s8N&trVllsp\tU"s8N&trr<#ts8Mus!<2`m!<2ut!<2ut"TJH#s8Mlp!<2rs#QFc&rr<#trqucr +rr)isrqcX#rr;uts8N#trquctrr;uss8W)rs8W)rrrW3"rqufqrr)isrqufrrqucrrr)isrqcX# +rr;uts8N#trquctrr;uss8W)rs8W)rrrW3"rqufqrr)isrqufrrqucrrr)isrqcX#rr;uts8N#t +rr)lsrW3&urr;usrr;uso`"pjrVm-%s8N&urr;uorrW3"rqHHlrr<#urW<-!s8;iss8N#trr2os +rr2Qi!<2rs#QFc&s8W)urqcWrrr;uls8N#ts8W'"s8N&rrW3&urr;usrr;uso`"pjrVm-%s8N&u +rr;uorrW3"rqHHlrr<#urW<-!s8;its8N%K~> +"98B#rqcWprqcWrrr;uos8W)qrr`9#rr2lr!<2rs!<2or"6r1Lp#5WSma7h8;JEf2r;Q`qs8Mus +"TJH$rr2iqrr2lr!ri6"rVcfsrr2co&cVh1rr<#ts8W)urr<#ts8N#mrrE&rrrW3"rqcZprqcWp +rr)isrr)lsrW<-!rr2otrr)lsrql`qrWW?$s8W)urr2iq"9/?#rqufqrqcZprqcWprr)isrr)ls +rW<-!rr2otrr)lsrql`qrWW?$s8W)urr2iq"9/?#rqufqrqcZprqcWprr)isrr)lsrW<-!rr2ot +rr)lsrqZTnrW<-!s8N#trs&K&s8N&urr)j!rr;usrr;rroD\gir;Qcrqu6Zqrr;usq>^Hn!rr9" +rr2rt#6+Z&rr<#trVm!!s8N#ss8DrgrrE&rrrE&qrrE&ts8N#ns8N!!s8N&trr +"98B#rqcWprqcWrrr;uos8W)qrr`9#rr2lr!<2rs!<2or"7&[^p>PcUn'e4G?#m^Ir;Q`qs8Mus +"TJH$rr2iqrr2lr!ri6"rVcfsrr2co&cVh1rr<#ts8W)urr<#ts8N#mrrE&rrrW3"rqcZprqcWp +rr)isrr)lsrW<-!rr2otrr)lsrql`qrWW?$s8W)urr2iq"9/?#rqufqrqcZprqcWprr)isrr)ls +rW<-!rr2otrr)lsrql`qrWW?$s8W)urr2iq"9/?#rqufqrqcZprqcWprr)isrr)lsrW<-!rr2ot +rr)lsrqZTnrW<-!s8N#trs&K&s8N&urr)j!rr;usrr;rroD\gir;Qcrqu6Zqrr;usq>^Hn!rr9" +rr2rt#6+Z&rr<#trVm!!s8N#ss8DrgrrE&rrrE&qrrE&ts8N#ns8N!!s8N&trr +"98B#rqcWprqcWrrr;uos8W)qrr`9#rr2lr!<2rs!<2or"703qpYkoWnCFd]C4*ndr;Q`qs8Mus +"TJH$rr2iqrr2lr!ri6"rVcfsrr2co&cVh1rr<#ts8W)urr<#ts8N#mrrE&rrrW3"rqcZprqcWp +rr)isrr)lsrW<-!rr2otrr)lsrql`qrWW?$s8W)urr2iq"9/?#rqufqrqcZprqcWprr)isrr)ls +rW<-!rr2otrr)lsrql`qrWW?$s8W)urr2iq"9/?#rqufqrqcZprqcWprr)isrr)lsrW<-!rr2ot +rr)lsrqZTnrW<-!s8N#trs&K&s8N&urr)j!rr;usrr;rroD\gir;Qcrqu6Zqrr;usq>^Hn!rr9" +rr2rt#6+Z&rr<#trVm!!s8N#ss8DrgrrE&rrrE&qrrE&ts8N#ns8N!!s8N&trr +"oeQ%rr;usrri?$s8N#prrE&srsA])rr<#ts8N&tr;Zcqqu6Zqqu6`L:X%Yg$2)Z(>Yp'hkPP;Y +rr +"oeQ%rr;usrri?$s8N#prrE&srsA])rr<#ts8N&tr;Zcqqu6Zqqu6`N>0d*A#l",gq"XUYq"O^] +!;HKf#P\#gp\=LXp\sprp\=OWdZJ-EMT"]Ts8N#trrrE%s8N&urVlBf!<2lqs8Mrrs8E6&rr2rs +s8Mrr!ri6!rVllsqu?]q!<<&trr3'!s8N#ts8N&u!<2rs!<2rs!<2uts8Mcm"9/?"rr)iurr;uq +rrW3"rr)j!rr<#trr2utrr<#trr3'!s8N#ts8N&u!<2rs!<2rs!<2uts8Mcm"9/?"rr)iurr;uq +rrW3"rr)j!rr<#trr2utrr<#trr3'!s8N#ts8N&u!<2rs!<2rs!<2uts8Mlp%K?D,s8W)ts8N#t +s8N#qrrE&srso&.rr<#ts8N&urr<#trr2p!rr;uss8W)urrE&srrE&srrE&srrE&qs8W',s8N&u +rr2rsrr<#trqucrrr)j,rr;uts8N&ts8W)us8N#srrW3"rr2rtrr;uurr)isrr)isrr)isrql`q +rXAi+s8W)ts8N#ts8N#qrrE&srso&.rr<#ts8N&urr<#trr2p!rr;uss8W)urrE&srrE&srrE&s +rrE&qs8W'$s8N&urdX~> +"oeQ%rr;usrri?$s8N#prrE&srsA])rr<#ts8N&tr;Zcqqu6Zqqu6`OB@6\R#l+5kq"a^\q=sj_ +$MaGmq"a^\q=sd\qtUQmegOichas8N#trrrE%s8N&urVlBf!<2lqs8Mrrs8E6&rr2rss8Mrr +!ri6!rVllsqu?]q!<<&trr3'!s8N#ts8N&u!<2rs!<2rs!<2uts8Mcm"9/?"rr)iurr;uqrrW3" +rr)j!rr<#trr2utrr<#trr3'!s8N#ts8N&u!<2rs!<2rs!<2uts8Mcm"9/?"rr)iurr;uqrrW3" +rr)j!rr<#trr2utrr<#trr3'!s8N#ts8N&u!<2rs!<2rs!<2uts8Mlp%K?D,s8W)ts8N#ts8N#q +rrE&srso&.rr<#ts8N&urr<#trr2p!rr;uss8W)urrE&srrE&srrE&srrE&qs8W',s8N&urr2rs +rr<#trqucrrr)j,rr;uts8N&ts8W)us8N#srrW3"rr2rtrr;uurr)isrr)isrr)isrql`qrXAi+ +s8W)ts8N#ts8N#qrrE&srso&.rr<#ts8N&urr<#trr2p!rr;uss8W)urrE&srrE&srrE&srrE&q +s8W'$s8N&urdX~> +s8N)ur;Zfrrr3*"s8W)rrrE&grr`9#s8N#t!<2cn!nU;og[u'Kg96'#B9C3pqu?Zqrr2iqs8N#t +!ri6!q>UHoq#:?nqu6`ss8Mus!<2ut!ri6!r;Qcrrr2utr;Qcrrr3*"s8W)rs8W)trrE&qrrE&t +rrE&prrW3"rql`qrr +s8N)ur;Zfrrr3*"s8W)rrrE&grr`9#s8N#t!<2cn!ngi*g\23Oh6i&=E0nZ,qu?Zqrr2iqs8N#t +!ri6!q>UHoq#:?nqu6`ss8Mus!<2ut!ri6!r;Qcrrr2utr;Qcrrr3*"s8W)rs8W)trrE&qrrE&t +rrE&prrW3"rql`qrr +s8N)ur;Zfrrr3*"s8W)rrrE&grr`9#s8N#t!<2cn!nq>9g\;9Qhn"nXH_/CAqu?Zqrr2iqs8N#t +!ri6!q>UHoq#:?nqu6`ss8Mus!<2ut!ri6!r;Qcrrr2utr;Qcrrr3*"s8W)rs8W)trrE&qrrE&t +rrE&prrW3"rql`qrr +$NL,*rr;uts8N&trVuosrr;usr;Zfrs8N9%s8N&urqHEmrqcWrf20]GoEt3ZleodE>2rr<#ts8W)us8N&urr2rtrr2p"rr;utrr*6(rr2rsrr;uss8DrprrW3"rr2rtrW3&urr3?) +s8N#ts8N#ts8Mrr&H;_0rr<#ts8W)us8N#ts8N#t"9/?"s8N!(s8N#trr2rsrr;rrr;Qits8N#t +s8E'!rr2p)rr;uss8W)ts8W)rrt,20s8N&urr<#ts8W)ts8W)trr`9#rr;us$31#(s8N#trr2rr +rWN9#rr<#trr2rtrr2p+rr;utrr2rss8N&trr)lsrr<#urW`E%s8W)urr)isrr2p(rr;uts8N#t +rr2lrs8E#urVcs"rr2rtrr2oss8N#t%0$;+s8N#trr;utrr2lrs8N&us8E6&rr<#ts8Mus!<2ut +$3'u(s8W)ts8N#rs8W&us8Dp"s8N#ts8N#ss8W)trs\o,rr;uss8N&ts8N#rs8W)us8W'&s8N&u +rr;urrrE&trsA])rr<#trr;usrVuos!rr9!J,~> +$NL,*rr;uts8N&trVuosrr;usr;Zfrs8N9%s8N&urqHEmrqcWrfiueWp'UK`mc;QZ@96HroD\b$ +rr<#trr;utrr2rtrr2rtrr)lsrW)utrW<-!rqucsrr;rrs8N)urVm!!s8W)trrE&ns8W)urrE&t +rt>>2rr<#ts8W)us8N&urr2rtrr2p"rr;utrr*6(rr2rsrr;uss8DrprrW3"rr2rtrW3&urr3?) +s8N#ts8N#ts8Mrr&H;_0rr<#ts8W)us8N#ts8N#t"9/?"s8N!(s8N#trr2rsrr;rrr;Qits8N#t +s8E'!rr2p)rr;uss8W)ts8W)rrt,20s8N&urr<#ts8W)ts8W)trr`9#rr;us$31#(s8N#trr2rr +rWN9#rr<#trr2rtrr2p+rr;utrr2rss8N&trr)lsrr<#urW`E%s8W)urr)isrr2p(rr;uts8N#t +rr2lrs8E#urVcs"rr2rtrr2oss8N#t%0$;+s8N#trr;utrr2lrs8N&us8E6&rr<#ts8Mus!<2ut +$3'u(s8W)ts8N#rs8W&us8Dp"s8N#ts8N#ss8W)trs\o,rr;uss8N&ts8N#rs8W)us8W'&s8N&u +rr;urrrE&trsA])rr<#trr;usrVuos!rr9!J,~> +$NL,*rr;uts8N&trVuosrr;usr;Zfrs8N9%s8N&urqHEmrqcWrg1\mgpBpWdn`\AqE+WUPoD\b$ +rr<#trr;utrr2rtrr2rtrr)lsrW)utrW<-!rqucsrr;rrs8N)urVm!!s8W)trrE&ns8W)urrE&t +rt>>2rr<#ts8W)us8N&urr2rtrr2p"rr;utrr*6(rr2rsrr;uss8DrprrW3"rr2rtrW3&urr3?) +s8N#ts8N#ts8Mrr&H;_0rr<#ts8W)us8N#ts8N#t"9/?"s8N!(s8N#trr2rsrr;rrr;Qits8N#t +s8E'!rr2p)rr;uss8W)ts8W)rrt,20s8N&urr<#ts8W)ts8W)trr`9#rr;us$31#(s8N#trr2rr +rWN9#rr<#trr2rtrr2p+rr;utrr2rss8N&trr)lsrr<#urW`E%s8W)urr)isrr2p(rr;uts8N#t +rr2lrs8E#urVcs"rr2rtrr2oss8N#t%0$;+s8N#trr;utrr2lrs8N&us8E6&rr<#ts8Mus!<2ut +$3'u(s8W)ts8N#rs8W&us8Dp"s8N#ts8N#ss8W)trs\o,rr;uss8N&ts8N#rs8W)us8W'&s8N&u +rr;urrrE&trsA])rr<#trr;usrVuos!rr9!J,~> +rr2utrr33%s8N#trr;us"onT%rr;uqrrrE%rr2rtrr2iqrr2fp!<2rs!nU8lht%]Skhjk5_mc\D +WiD1e6b**prr<#trr<#trr<#trr2utrVuosr;Zcqs8N)urr3W1s8W)urr;uss8W)urr<#ts8Mus +(B4@6rr<#ts8N&urr;uss8N&ts8N&trVllsqu6cts8W)rs8W)qrri?$rr;urrrrE%rr<#trVlru +s8Mrr'E8%3rr;uts8N&ts8W)urr;utrr)isrql]trr<#tr;Zfrqu6fus8N&trVm'#s8N&urr)iu +rr;uqrtGD3s8N&ts8W)urr<#ts8N&ts8Mus!<2lq"9/?#rqufrrqufrrWW?$s8N&tqYpQprr3'! +s8Moq!<2rs#QFc'rr;uts8N!)s8N&ts8W)urr;urrrE&srrE&ts8W)rs8W'%s8N&ts8Mlp!<2ut +!ri6!qu6ZqrVm-%s8W)urr<#trX/])s8N&urr;utrr)isrr)isrr2rtrqufrrWW?$s8N&tqYpQp +rr3'!s8Moq!<2rs#QFc'rr;uts8N!)s8N&ts8W)urr;urrrE&srrE&ts8W)rs8W'"s8N%K~> +rr2utrr33%s8N#trr;us"onT%rr;uqrrrE%rr2rtrr2iqrr2fp!<2rs!ngf'ht7iWlf?gMc,7*" +\@A,F:V?Z+rr<#trr<#trr<#trr2utrVuosr;Zcqs8N)urr3W1s8W)urr;uss8W)urr<#ts8Mus +(B4@6rr<#ts8N&urr;uss8N&ts8N&trVllsqu6cts8W)rs8W)qrri?$rr;urrrrE%rr<#trVlru +s8Mrr'E8%3rr;uts8N&ts8W)urr;utrr)isrql]trr<#tr;Zfrqu6fus8N&trVm'#s8N&urr)iu +rr;uqrtGD3s8N&ts8W)urr<#ts8N&ts8Mus!<2lq"9/?#rqufrrqufrrWW?$s8N&tqYpQprr3'! +s8Moq!<2rs#QFc'rr;uts8N!)s8N&ts8W)urr;urrrE&srrE&ts8W)rs8W'%s8N&ts8Mlp!<2ut +!ri6!qu6ZqrVm-%s8W)urr<#trX/])s8N&urr;utrr)isrr)isrr2rtrqufrrWW?$s8N&tqYpQp +rr3'!s8Moq!<2rs#QFc'rr;uts8N!)s8N&ts8W)urr;urrrE&srrE&ts8W)rs8W'"s8N%K~> +rr2utrr33%s8N#trr;us"onT%rr;uqrrrE%rr2rtrr2iqrr2fp!<2rs!nq>8ht@oZmcicgf[7j_ +b/pc2?,-@ +!<2lq#QFc&s8N&urqucrrq?BlrpBacrW:\Jb2`%#m,64&[^<9@Xfen5rNc^(9T&QDs8Mrr!<2ut +"9/?#rr)iurr<#trr2otrr2otrqQKnrr2otrr2rtrWE3"s8N#t!<2ors8E'!rql`qrW3&urr2ut +q>^Ko!<;op!rr9!o`"pjrVlrus8W)ts8N)uqu6fus8W)tqu6j!s8N#trr2otrqZTorW)uprW<-! +rq-3jrr)iurr<#trr;uurql]urr<#trql^!rr;uss8N#t!<2fos8E#uqYgQrrr2iq"9/?#rql]s +rr;uss8DrsrrE&rrrE&ss8N#srsA])s8N&urr<#trr3<(s8W)urr2rsrql`qrr2p$rr;uts8Moq +!ri6!rr;rrs8N)ur;QcrrVulrrr3<(s8W)us8N&urr2p(rr<#ts8N#trr2fps8N#t"oeQ$s8W)q +rrW3"rr2rrrr;uurqucrrr)lrrr2p(rr<#ts8W)us8N#t$3'u)rr;uss8N#ps8W)trs/Q'rr<#t +s8RT~> +!<2lq#QFc&s8N&urqucrrq?BlrpBacrW:bWc/\F3n)W'?_SNsu]=bhl^q[\#Z!!1^s8W)rrrE&t +rr`9#s8Mus!ri6"rr2os!<2ut!<2cn!<2ut!<2uts8E-#rr;usrrE&rs8W'!s8Moqs8E'!rr2ot +rqZTorW)uprW<-!rq-3jrr)iurr<#trr;uurql]urr<#trql^!rr;uss8N#t!<2fos8E#uqYgQr +rr2Qi!<2rs!ri6"rr2rt!<2lq"TJH$rr2fp"oeQ$rr;usrrE&os8W&us8)]rs8N#qrr`9#s8Moq +!ri6!rr;rrs8N)ur;QcrrVulrrr3<(s8W)us8N&urr2p(rr<#ts8N#trr2fps8N#t"oeQ$s8W)q +rrW3"rr2rrrr;uurqucrrr)lrrr2p(rr<#ts8W)us8N#t$3'u)rr;uss8N#ps8W)trrrE%rr<#t +qu6`ss8N#trVlis!<2or!<2rsrr2os$3'u)rr<#ts8W)trsA])s8N&trr;usqu?]qrr36&s8N&u +rr<"K~> +!<2lq#QFc&s8N&urqucrrq?BlrpBacrW:edd,Xd7n`er]dEp.^bg"GZd*L(c_.T//s8W)rrrE&t +rr`9#s8Mus!ri6"rr2os!<2ut!<2cn!<2ut!<2uts8E-#rr;usrrE&rs8W'!s8Moqs8E'!rr2ot +rqZTorW)uprW<-!rq-3jrr)iurr<#trr;uurql]urr<#trql^!rr;uss8N#t!<2fos8E#uqYgQr +rr2Qi!<2rs!ri6"rr2rt!<2lq"TJH$rr2fp"oeQ$rr;usrrE&os8W&us8)]rs8N#qrr`9#s8Moq +!ri6!rr;rrs8N)ur;QcrrVulrrr3<(s8W)us8N&urr2p(rr<#ts8N#trr2fps8N#t"oeQ$s8W)q +rrW3"rr2rrrr;uurqucrrr)lrrr2p(rr<#ts8W)us8N#t$3'u)rr;uss8N#ps8W)trrrE%rr<#t +qu6`ss8N#trVlis!<2or!<2rsrr2os$3'u)rr<#ts8W)trsA])s8N&trr;usqu?]qrr36&s8N&u +rr<"K~> +r;Qp!s8W)toD\gip\t6mmJd7>:s%tk$1Hs,b.F^OX/rQ(ZMq09ZEpjCZa+S#oDJUlrr<#ts8Mlp +!<2fo#6+Z&rr2rtrVcs"rr<#tpAY-lq>UHorVllsqu6ZqrVm'#s8W)urql]qrq69krr)iurr;ur +rrE&grrE&orrE&lrrrE%s8N&tqu6Zqp&>$krVlrus8Mus!<2Ng!<2fo!<2]l"oeQ%rr;uprrE&k +rrE&qrrE&srrE&lrrE&jrrE&prrE&trs8W(s8N&ts8W)trrE&qrrE&rrrE&qrrE&srrE&lrrE&j +rrE&prrE&trs8W(s8N&ts8W)trrE&qrrE&rrrE&qrrE&srrE&lrrE&jrrE&prrE&trs8W(s8N&t +s8W)trrE&qrrE&rrrE&qrrE&ts*t~> +r;Qp!s8W)toD\gip\t6mmJd7@>Kl@'$1[68d`/f)\[oKQ^\knI^BD?eIYRLmrrrE%s8N&tqYpQp +q>UZus8W)ts8W&s"TSK$s8M`l!<2fo!<2rs!<2lq!<2rs"oeQ%rr;uprrE&krrE&srrW3"rr)is +rpg!grqZQorq??qrr<#ts8Moq!<2Zk!<2rs!ri6!rVllsnc&Ugq>UHopAY +r;Qp!s8W)toD\gip\t6mmJd7AB@#i7$1mNEgsaBcb0/*/chu/icNMV@N/mQ.rrrE%s8N&tqYpQp +q>UZus8W)ts8W&s"TSK$s8M`l!<2fo!<2rs!<2lq!<2rs"oeQ%rr;uprrE&krrE&srrW3"rr)is +rpg!grqZQorq??qrr<#ts8Moq!<2Zk!<2rs!ri6!rVllsnc&Ugq>UHopAY +"TJH#s8N#t!ri6!qYpQpr;Zcq"98B#rqucurr<#trr2utrVllsqu6ctf20QRmg/@3[Ap@3Z*L\4 +ZN.UHopAb*j +!WW/ps8DrrrrE&ts8W'"s8N#orri?$rr;uqrrE&trr`9#rr2`n!<2]lrVcitrqZTmrr2otrr2rt +rW<-!rqcWtrr;utrqucrrr2p"rr;usq>UHopAb*j!WW/ps8W'!s8N#t!<2lqs8Mrr!<2ut!ri6! +rr3'!s8N#t"9/?"rqZQrrr;usp\tUQrs8N#lrrW3"rqQNnrW3&urr2utqu?]qr;Qcrrr3'!s8N#t!ri6!rr3*"s8N#nrr`9# +rr2Zl!ri6!q#CBn!rr9"J,~> +"TJH#s8N#t!ri6!qYpQpr;Zcq"98B#rqucurr<#trr2utrVllsqu6ctfilVbnd"^?_RR4j^;'W^ +s1eTLrkJBH!elC$n,ECerVulrp\t6mr;Zfr"98B#rr2otrqcWprqufrrql]trr<#tq>UHopAb*j +!WW/ps8DrrrrE&ts8W'"s8N#orri?$rr;uqrrE&trr`9#rr2`n!<2]lrVcitrqZTmrr2otrr2rt +rW<-!rqcWtrr;utrqucrrr2p"rr;usq>UHopAb*j!WW/ps8W'!s8N#t!<2lqs8Mrr!<2ut!ri6! +rr3'!s8N#t"9/?"rqZQrrr;usp\tUQrs8N#lrrW3"rqQNnrW3&urr2utqu?]qr;Qcrrr3'!s8N#t!ri6!rr3*"s8N#nrr`9# +rr2Zl!ri6!q#CBn!rr9"J,~> +"TJH#s8N#t!ri6!qYpQpr;Zcq"98B#rqucurr<#trr2utrVllsqu6ctg1S^ro*=jHd)sSWcHl:4 +rm1Sj"4*0ko^De[rr)lrrqHEmrqufrrWE3"s8N#t!<2ip!<2ors8Moq"9/?#rqZQorq?BjrW3&u +q>^Emrr2utrr<#t!rr9!qYp]ts8N&tr;Qcrrr3*"s8N#nrrE&ls8Dots8MiorVlfr!<2uts8E*" +rr2co"TJH#s8Mrr!<2ut"9/?"rqZQorq?BjrW3&uq>^Ko!WW/urrE&qs8W)rrrE&trrW3"rr2p! +rr;usrr`9#rr2`n"9/?"rqHEorr;ums8W'!s8N#t!<2lqs8Mrr!<2ut!ri6!rr3'!s8N#t"9/?" +rqZQrrr;usp\tUQrs8N#l +rrW3"rqQNnrW<-!s*t~> +q>^Kos8N)urr2utrVllsr;ZcqrVuos!WW/srrE&ts8W)srrrE%s4:&elg>,Ie??-_Za6sCZa050 +$*nf*oDeghs8N#irri?$rr;urrs/Q's8N#ts8Mcm$3'u(s8N&urr;unrrE&irrW3"rr)isrquct +rr;uorrE&srr`9#s8Mio!ri6!qYpQprVllsq#:?nr;Qcrrr3'!s8Mus!<2or!ri6!qYpQprVm!! +s8W)orrW3"rqcWprr)isrqQKnrqucrrr2p!rr;urrrE&rrrW3"rqcWprr)j#rr<#ts8MKe!<2]l +!<2lq!<2Zks8N&u"oeQ$s8W)irrE&errE&lrrE&qrrE&ks8W)urrrE%rr<#toD\gin,ECepAY-l +qu6Zqp&G'ks8N9%s8N&urq$-irr2qJ~> +q>^Kos8N)urr2utrVllsr;ZcqrVuos!WW/srrE&ts8W)srrrE%s4LT!lgY/JgUt88_#1tE_#M1H +^^,XKo`+pis8N#irri?$rr;urrs/Q's8N#ts8Mcm$3'u(s8N&urr;unrrE&irrW3"rr)isrquct +rr;uorrE&srr`9#s8Mio!ri6!qYpQprVllsq#:?nr;Qcrrr3'!s8Mus!<2or!ri6!qYpQprVm!! +s8W)orrW3"rqcWprr)isrqQKnrqucrrr2p!rr;urrrE&rrrW3"rqcWprr)j#rr<#ts8MKe!<2]l +!<2lq!<2Zks8N&u"oeQ$s8W)irrE&errE&lrrE&qrrE&ks8W)urrrE%rr<#toD\gin,ECepAY-l +qu6Zqp&G'ks8N9%s8N&urq$-irr2qJ~> +q>^Kos8N)urr2utrVllsr;ZcqrVuos!WW/srrE&ts8W)srrrE%s4V,1lLG8?bg+P\d*L%bci)5i +chbuoPE,;8rr2rsrq-3nrr;utrr)j%rr<#trr<#tp\tR!s8N&ts8W)urqZQorq$-krr;urrrE&r +rrW3"rqcWprr)j!rr<#tq>UNqs8Mlp!<2rs!<2cn!<2or!<2ut!ri6!rVllsr;Qits8Mlp!<2rs +"9/?#rqZQqrr;uorrE&srrE&nrrE&rrrE&trrW3"rr)isrquctrr;uorrE&srrrE%s8N&tn,ECe +pAY-lqu6Zqp&G'ks8N9%s8N&urq$-irpTjerq??lrql]qrq6 +s8Mlp!ri6!rr2utr;Qcrr;ZcqrVm!!s8W)srrN-!qYpNp"oeQ%f2'EPliZFUZEsP9s0Dg5Za6t: +Zi791ZO!kCZEe_)oDeghrrW3"s8Dp!s8N#trVlis!<2rss8N#t!<2Ng"TJH$rr2Qis8E'!rqZQo +rr2rrrWE3"rr;oqs8N)urVllsmJd7es8W)tp&G'k!WW/trrE&trrE&ts8Dp!s8N#tr;Q`r!<2rs +!<2Bc!ri6"rr2Tjs8E'!rr)isrr2otrr2rrrWE3"rr;oqs8N)urVllsq>UHoq>UWts8W)us8N#b +s8Drqs8Drps8Drqs8W'!s8N#t"oeQ$s8W)orrrE%s8N&urr2 +s8Mlp!ri6!rr2utr;Qcrr;ZcqrVm!!s8W)srrN-!qYpNp#lal(filPfn*g2D!:TpVs6gEdn*fc7 +n*oi4^;%Iu^])"K^\Y_G^])"S^VIV"Knf7"rr2p!rr<#srWE3"rr;rrs8N)urVuosrr2utnc&ak +s8W)to`+sj!WW/prrE&ts8Dp!s8N#tr;Q`r!<2rs!<2Bc!ri6"rr2Tjs8E'!rr)isrr2otrr2rr +rWE3"rr;oqs8N)urVllsmJd7es8W)tp&G'k!WW/trrE&trrE&ts8Dp!s8N#tr;Q`r!<2rs!<2fo +!<2fo"oeQ%rr<#trpBaarr)lqrqufprr)lsrW3&urr30$s8N&urqZQtrr<#ts8W)tmJm.arVuiq +r;Z`prVuos!WW/urrrE%rr<#tq>UWts8W)us8N#bs8Drqs8Drps8Drqs8W'!s8N#t"oeQ$s8W)t +s*t~> +s8Mlp!ri6!rr2utr;Qcrr;ZcqrVm!!s8W)srrN-!qYpNp*rc3>g1SY!naZ,hr6PGirQkPjrQk\2NqEANrr3'!s8W&s"98B"s8DrsrrE&ss8W)trrE&grri?$ +s8N#is8W'!s8Mio!<2utrVcp!rr2rqrr;uurr)isrpB^err<#trq6UWts8W)us8N#bs8Drqs8Drp +s8Drqs8W'!s8N#t"oeQ$s8W)orrrE%s8N&urr2 +qu6fus8N#trr2rt#6+Z&rr<#tr;Qp!s8N&trr2utq>UNqs8Mio"4p>fli-5Vlg4!(lg3s(li$/T +lg3s(m+SYKpTjk*pp1+/ZZpukrr2utq#CBnqYpQprVllsrr2utrr;us!WW/ss8W)qrrE&ss8W)k +rrE&rrrE&ns8N#rrrE&js8W'!s8Mio"9/?#rr2p!rr;usrrE&krrE&rrrE&ns8N#rrrE&js8W'! +s8Mio"9/?#rr2p!rr;usrrE&krrE&rrrE&ns8N#rrrE&jrrE&mrrE&prri?$rr;uhrrE&qrrE&q +rri?$s8N#rrri?$s8N#brrE&prri?$rr;uhrrE&qrrE&qrri?$s8N#rrri?$s8N#brrE&prri?$ +rr;uhrrE&qrrE&qrri?$s8N#rrri?$s8N#fs*t~> +qu6fus8N#trr2rt#6+Z&rr<#tr;Qp!s8N&trr2utq>UNqs8Mio!ngc!lgFl4]`#VI^VIVZ^];.H +^]K4Eo`"jjrqQNnrqcWprr)isrr2otrr2rsrW3&ur;Zfrqu6ZqrVuosp&>$kr;Qcrq#C?mrVlls +o`+sj!WW/prr`9#s8N#t!ri6!rr2utp&>$kr;Qcrq#C?mrVllso`+sj!WW/prr`9#s8N#t!ri6! +rr2utp&>$kr;Qcrq#C?mrVllso`"pjp\t6mqYp]ts8N&toD\giqu6Zqqu6fus8W)trVm$"s8W)t +mJd1cqYp]ts8N&toD\giqu6Zqqu6fus8W)trVm$"s8W)tmJd1cqYp]ts8N&toD\giqu6Zqqu6fu +s8W)trVm$"s8W)tnc++~> +qu6fus8N#trr2rt#6+Z&rr<#tr;Qp!s8N&trr2utq>UNqs8Mio!nq;2lgOu;c-Q:6!71Jf!71Yk +"jbQBPE,;7rrE&ns8W)prrE&srrE&trrE&ts8Muus8Mrrs8Moq!<2rss8M]k!<2or!<2cnrr2lr +!<2Wjs8E'!rqZQrrr<#trr3'!s8N#t!<2Zk!<2or!<2cnrr2lr!<2Wjs8E'!rqZQrrr<#trr3'! +s8N#t!<2Zk!<2or!<2cnrr2lr!<2Wj!<2`m!<2ip"TJH#s8MWi!<2lq!<2lq"TJH$rr2lr"TJH$ +rr2 +s8NH*s8W)urr2rss8Muss8N&u!<2iprr2fps8N#ts8E3%rr<#trr2p#rr:SG`;Ag+l/g^J_lT?& +b2N6_!mRmRq6L(,rj)U1qm-I5Za4n+oDS^frr<#urW)utrql`orql]urr;utrql]srr;uqs8N#r +rrN-!rr2`nrr2rt#6+Z&rr;usr;Zfrq>^Hnqu6`ss8Mfn!<2orrVlcq!<2ut!<2ip%0$;+rr<#t +s8W)urr2iqs8Miorr2fp!ri6!q#:?nr;Z`prVllsrr2utqYq!'s8N#ts8N&urr;usr;Zfrq>^Hn +qu6`ss8Mfns8MusrVcp!rr;urrrE&srrE&ss8W)srrE&trrE&rs8W'!s8Mlp!<2cn!<2cns8Mus +rVcp!rr;urrrE&srrE&ss8W)srrE&trrE&rs8W'!s8Mlp!<2cn!<2cns8MusrVcp!rr;urrrE&s +rrE&ss8W)srrE&trrE&rs8W'!s8Mlp!<2cn!<2lqJ,~> +s8NH*s8W)urr2rss8Muss8N&u!<2iprr2fps8N#ts8E3%rr<#trr2p#rr:YTantK4mHNQZag.Y@ +cfP&l"4k*"^\ttJ^]2+L^Au(J^])"P_8*j?L@kHErVliss8E#urr2fprVl]o"TJH#s8Moq!ri6! +r;ZcqrVlots8N#ns8N#trs&K&s8N&trqufrrqZTnrql]srr;umrrE&rs8DrqrrE&trrE&prs\o, +rr2rtrr<#ts8N#qs8W)os8N#prrW3"rqQKnrqufprr)isrr2otrqcX'rr;uss8W)us8N&trqufr +rqZTnrql]srr;ums8W)ss8Dp!s8N&trVllsrVllsrVuosrVllsrr2utr;Zfr!WW/qrrE&nrrE&n +s8W)ss8Dp!s8N&trVllsrVllsrVuosrVllsrr2utr;Zfr!WW/qrrE&nrrE&ns8W)ss8Dp!s8N&t +rVllsrVllsrVuosrVllsrr2utr;Zfr!WW/qrrE&nrrE&qs*t~> +s8NH*s8W)urr2rss8Muss8N&u!<2iprr2fps8N#ts8E3%rr<#trr2p#rr:\bbPU`7mcrc_c*sUS +dc^Mr"Q%ALcd2U;#LCcDcd:"bchPigPE,;6s8Drss8W&us8N#ps8Drorri?$rr;uprrW3"rqufq +rr)itrr;usq>^Hns8N<&s8W)urr2iqs8Miorr2fp!ri6!q#:?nr;Z`prVllsrr2utqYq!'s8N#t +s8N&urr;usr;Zfrq>^Hnqu6`ss8Mfn!<2orrVlcq!<2ut!<2ip%0$;+rr<#ts8W)urr2iqs8Mio +rr2fp!ri6!q#CBnrVuiq"98B#rr)isrr)isrr)lsrr)isrr2otrqufrrW3&uqYpQpq#:?nq#CBn +rVuiq"98B#rr)isrr)isrr)lsrr)isrr2otrqufrrW3&uqYpQpq#:?nq#CBnrVuiq"98B#rr)is +rr)isrr)lsrr)isrr2otrqufrrW3&uqYpQpq#:?nqu;0~> +!rr9!rr<#tr;Qcrrr3*"s8N#rs8W'3s8N#ts8N&urr2rss8N&trr<#tqu7E1s8U\H_s-FLfuUFY +JSeCL;INO!PPaSFbH:WI!4)I-$FRFW^r44)[!7)lrVm$"s8W)trVllsrr3'!s8Mio!<2rs!<2`m +s8Mrr!<2or!<2ut!<2`ms8N&us8Muss8EK-rr;uss8N&ts8N&urqucrrqucrrr2otrr)isrr2p# +rr;utrqud&rr;utrr<#ts8Mrrs8N&us8Muss8EK-rr;uss8N&ts8N&urqucrrqucrrr2otrr)is +rr2p#rr;utrqud&rr;utrr<#ts8Mrrs8N&us8Muss8EK-rr;uss8N&ts8N&urqucrrqucrrq??q +rr<#ts8Mus!<2rs"oeQ%rr;uqs8W)trtPJ4rr2rsrr;utrr;uts8N&ts8W)rrrE&srrW3"rqHEr +rr<#ts8Mus!<2rs"oeQ%rr;uqs8W)trtPJ4rr2rsrr;utrr;uts8N&ts8W)rrrE&srrW3"rqHEr +rr<#ts8Mus!<2rs"oeQ%rr;uqs8W)trtPJ4rr2rsrr;utrr;uts8N&ts8W)rrrE&srrW3"rqueH~> +!rr9!rr<#tr;Qcrrr3*"s8N#rs8W'3s8N#ts8N&urr2rss8N&trr<#tqu7E1s8UbUaR/B]h9<u?#UHo +rVllsp](9mr;Qcrr;Qcrrr2utp](9ms8W,urVuos%KHG-rr2rss8N&ts8W)rrrE&rrrE&trrE&s +rrE&trri?$rr;uqrsA])rr;uts8N&tr;Zfrs8W,urVuos%KHG-rr2rss8N&ts8W)rrrE&rrrE&t +rrE&srrE&trri?$rr;uqrsA])rr;uts8N&tr;Zfrs8W,urVuos%KHG-rr2rss8N&ts8W)rrrE&r +rrE&lrrrE%s8N&trVllsrVm'#s8W)urqufrrr2p3rr;uss8N#trr;utrr<#ts8N&urqucrrr)iu +rr;ulrrrE%s8N&trVllsrVm'#s8W)urqufrrr2p3rr;uss8N#trr;utrr<#ts8N&urqucrrr)iu +rr;ulrrrE%s8N&trVllsrVm'#s8W)urqufrrr2p3rr;uss8N#trr;utrr<#ts8N&urqucrrr)iu +rr;uqs*t~> +!rr9!rr<#tr;Qcrrr3*"s8N#rs8W'3s8N#ts8N&urr2rss8N&trr<#tqu7E1s8Uebb3n]bhTrd) +PCRCLC3j`.TDS$Wgs#cE!71Yk!71Jf$.IGVg=k*(PE,;6rri?$s8N#rrrE&trrW3"rqZQorr)is +rqHHmrqucrrqucrrr2otrqHHmrr<#urr)lsrXJo,s8N#trr;utrr<#tr;Qcrr;Qcrrr2utrVlls +rr3-#s8N&tr;R*&s8N&ts8W)urqufrrr<#urr)lsrXJo,s8N#trr;utrr<#tr;Qcrr;Qcrrr2ut +rVllsrr3-#s8N&tr;R*&s8N&ts8W)urqufrrr<#urr)lsrXJo,s8N#trr;utrr<#tr;Qcrr;Qcr +pAY +$3'u(rr;uts8N&trW)utrWE3"s8Mlps8N&u!<2rs!<2rs!<2rs)ufm:s8W)tr;"`4VQPM[=&MX] +AV$/@YdgrV@/K-kb,qtUZEsP9s0E!<[CO#haNVoTrm;,!]6Jhss8W)urr2rsrW)utrWW?$rr;ut +rr2rt"TJH#s8W)ts8W,u"TSK$s8N#t#6+Z%rr<#tqYpQprr<#trr<#trVm-%s8W)urr<#trr<#u +rWN9#s8N#srs\o,s8N&urr;uss8N&trX]&.s8N#trr<#ts8W)ts8Mrrs8N&u')qq2rr;uss8N&u +rr<#ts8N&urr2rts8E0$rr;usrr3E+s8W)us8N&trr;utrr*H.rr;uss8N&urr<#trr;uqs8W)u +rt>>2s8N&trr;uts8N&urr;uts8N#ts8W'$s8N&trr2p+rr<#ts8W)urr2rss8N!&s8N&trr;ut +rr*'#rr2rsrr3W1s8W)us8N&ts8N&ts8N&urr;rrs8W)ts8N<&s8N#trr2os%0$;+rr<#ts8N#t +rr;us#QOf'rr2rss8N!#s8N#trr2p1rr<#ts8W)urr;utrr;uts8N&srr<#trr +$3'u(rr;uts8N&trW)utrWE3"s8Mlps8N&u!<2rs!<2rs!<2rs)ufm:s8W)tr;"cAX0d_#@U<)7 +DiCBi[CihiB`%,se%>Ro%DT]n^qde&`6$>2s8N&urr;utrr;utrr<#ts8Drss8N#trs&K&rr2rsrr2p+rr;uss8W)urr2rs +s8N!&s8N&trr;utrr*'#rr2rsrr3W1s8W)us8N&ts8N&ts8N&urr;rrs8W)ts8N<&s8N#trr2os% +0$;+rr<#ts8N#trr;us#QOf'rr2rss8N!#s8N#trr2p1rr<#ts8W)urr;utrr;uts8N&srr<#tr +r +$3'u(rr;uts8N&trW)utrWE3"s8Mlps8N&u!<2rs!<2rs!<2rs)ufm:s8W)tr;+oQYdfa=Deiil +HBtS;]"b\)Er550gs"-kd*L%bci28rdF6\#h;@/Lro+=Ee<>pbs8W)urr2rsrW)utrWW?$rr;ut +rr2rt"TJH#s8W)ts8W,u"TSK$s8N#t#6+Z%rr<#tqYpQprr<#trr<#trVm-%s8W)urr<#trr<#u +rWN9#s8N#srs\o,s8N&urr;uss8N&trX]&.s8N#trr<#ts8W)ts8Mrrs8N&u')qq2rr;uss8N&u +rr<#ts8N&urr2rts8E0$rr;usrr3E+s8W)us8N&trr;utrr*H.rr;uss8N&urr<#trr;uqs8W)u +rt>>2s8N&trr;uts8N&urr;uts8N#ts8W'$s8N&trr2p+rr<#ts8W)urr2rss8N!&s8N&trr;ut +rr*'#rr2rsrr3W1s8W)us8N&ts8N&ts8N&urr;rrs8W)ts8N<&s8N#trr2os%0$;+rr<#ts8N#t +rr;us#QOf'rr2rss8N!#s8N#trr2p1rr<#ts8W)urr;utrr;uts8N&srr<#trr +qYpWrs8Mlp"oeQ%rr;uqrs/Q'rr;uss8N#ts8Mrr*<-!;r:/jm\"\L[3(d4ZDN1U'`Q?EQf&Q&a +Q!ri6!rr2utrr3'!s8MWirr2os!<2lq!<2]l +s8Mfn!<2lqs8E<(rr;uts8N&ur;QQms8Mlp"9/?#rqZQorquctrr;uqrr`9#s8Mcms8EE+rr<#t +s8N&urr<#rrqcZprqcWsrr<#tq>UHor;Qits8Mrr"9/?#rqHHmrX8c*s8W)urr<#ts8W#rqZ$Tp +qYpZss8W)orri?$s8N#srrE&rrrE&krri?$rr;uls8W)srrE&rrrE&ss8W)urr`9#s8Mio"TJH$ +rr2os!<2or!<2Zk"TJH#s8Mcms8Mus!<2or!<2rss8N&u"9/?#rqZQsrr<#trr2otrqucrrq69o +rr;utrqHHmrr)isrqucrrr)lsrr +qYpWrs8Mlp"oeQ%rr;uqrs/Q'rr;uss8N#ts8Mrr*<-!;r:/mp];LKr7TX)9Ga5GEb082ZfAl/b +S7h`b!ReUY^]q]raNW#\f_X;,g""R)d"R5Hrr3'!s8N#t!<2ut!ri6!oDeghrr2utqu6ZqpAb0l +q#:?nqu?]q#ljo(rr<#ts8W#rqZ$TpqYpZss8W)orrE&rrrW3"rqucurr<#tp](9m$ig5+s8N&t +s8W)us8;lms8W)prr`9#s8Mio!<2or!ri6!r;Qlus8W)ms8W'+s8N&urr;uts8N&ur;QQms8Mlp +"9/?#rqZQsrr<#trr2otrqucrrq69orr;utrqHHmrr)isrqucrrr)lsrrUTss8W)t +rr2utr;Qcrp&>0os8N&tp](9mrVllsr;QcrrVuoss8N3#s8W)orri?$s8N#srrE&rrrE&krri?$ +rr;uls8W)srrE&rrrE&ss8W)urr`9#s8MlpJ,~> +qYpWrs8Mlp"oeQ%rr;uqrs/Q'rr;uss8N#ts8Mrr*<-!;r:/ps^o`]9h;[1QNqE>N!ri6!rr2utrr3'!s8MWirr2os!<2lq!<2]l +s8Mfn!<2lqs8E<(rr;uts8N&ur;QQms8Mlp"9/?#rqZQorquctrr;uqrr`9#s8Mcms8EE+rr<#t +s8N&urr<#rrqcZprqcWsrr<#tq>UHor;Qits8Mrr"9/?#rqHHmrX8c*s8W)urr<#ts8W#rqZ$Tp +qYpZss8W)orri?$s8N#srrE&rrrE&krri?$rr;uls8W)srrE&rrrE&ss8W)urr`9#s8Mio"TJH$ +rr2os!<2or!<2Zk"TJH#s8Mcms8Mus!<2or!<2rss8N&u"9/?#rqZQsrr<#trr2otrqucrrq69o +rr;utrqHHmrr)isrqucrrr)lsrr +pAY6os8W)trrE&srri?$rr;urrrE&rrrW3"rr2p=rqPZuVg`So8OQp1L6JOA]u\XUhW3qhnac8@ +n!7;Wjp9)2Za7*YbKeN7dK%\odL4IEZ_2M6T$YW)J+NX=!<2ut"9/?#rr)iurr;uerrE&drrE&n +rrE&trrE&qrrE&rrrE&irrE&irrE&rrrE&lrr`9#rr2os!<2`m"9/?#rqucrrq$-irq$-irqucr +rq??orr;usrr2utp\t?ps8W)rrrE&irrE&jrrE&ns8W)prr`9#s8N#t"oeQ$s8N#qrri?$s8N#r +rrE&[rrE&ns8W)prr`9#s8N#t"oeQ$s8N#qrri?$s8N#rrrE&[rrE&ns8W)prr`9#s8N#t"oeQ$ +s8N#qrri?$s8N#rrrE&[rrE&ts*t~> +pAY6os8W)trrE&srri?$rr;urrrE&rrrW3"rr2p=rqP["WePe8<)@:]Oe&V`_9:?_hW3qhnac8@ +n!n%fl3GbL^qdh4eCX]Qs4Rt9g=k6-]Vp6PVqBIPL@kHE!<2ut"9/?#rr)iurr;uerrE&drrE&n +rrE&trrE&qrrE&rrrE&irrE&irrE&rrrE&lrr`9#rr2os!<2`m"9/?#rqucrrq$-irq$-irqucr +rq??orr;usrr2utp\t?ps8W)rrrE&irrE&jrrE&ns8W)prr`9#s8N#t"oeQ$s8N#qrri?$s8N#r +rrE&[rrE&ns8W)prr`9#s8N#t"oeQ$s8N#qrri?$s8N#rrrE&[rrE&ns8W)prr`9#s8N#t"oeQ$ +s8N#qrri?$s8N#rrrE&[rrE&ts*t~> +pAY6os8W)trrE&srri?$rr;urrrE&rrrW3"rr2p=rqP^%Y)n9[@9n#9S>EO'`6QofhW3qhnac8@ +n"Xk$ljN.Gm+]b2d*^S)iSsgr%cZO/inMJYKM\u6hNNulrVllsrr3*"s8W)srrW3"rp]pfrpKdd +rqQKnrr2otrql]qrqucrrq$-irq$-irqucrrq??orr;usrr2utp\t?ps8W)rrrE&irrE&irrE&r +rrE&lrr`9#rr2os!<2`m"9/?#rqucrrq$-irq-3jrqQNnrqcWsrr<#trr30$s8N&trqud!rr<#t +rr)isroO.[rqQNnrqcWsrr<#trr30$s8N&trqud!rr<#trr)isroO.[rqQNnrqcWsrr<#trr30$ +s8N&trqud!rr<#trr)isroO.[rr2qJ~> +rr36&s8N&urr;urrrE&qrrE&iru:n1mc)[+S8Lts;c@(WT!5lD`lcfgkO%^+naZPJ"S)'OQ +rr36&s8N&urr;urrrE&qrrE&iru:n1mc;p3TQX@A?XIT.VROC\a33#kkO%^+naZPJ"S)'OS7h`` +)pu:4_U[>ng"G!)bJ0s>F]0(f%0cfsf[GP/o_ndirql]qrr)j#rr;uts8Mio!<2ip!<2rss8Mus +!<2uts8E'!rr2p"rr<#to`"pjq#:Hqs8W)prrE&srrW3"rql]qrqHEmrqcWprql]qrq??nrr;um +rr`9#s8Mlp!<2rs!ri6!qu6Zqp\t6mqYpQpqu6ZqpAY3ns8Mfn"9/?#rqcWprr)iurr;uqrrE&o +rrW3"rqQKprr;usrrE&qrrE&rrrE&trrE&arrW3"rr2p!rr;unrrW3"rqQKprr;usrrE&qrrE&r +rrE&trrE&arrW3"rr2p!rr;unrrW3"rqQKprr;usrrE&qrrE&rrrE&trrE&arrW3"rr2p!rr;ur +s*t~> +rr36&s8N&urr;urrrE&qrrE&iru:n1n)`3okO%^,naZPJ"S)'OUN$+r +)qrN^dGNsDio8qNeB"h_Hs%=!%L3!*iSKcYo_ndirql]qrr)j#rr;uts8Mio!<2ip!<2rss8Mus +!<2uts8E'!rr2p"rr<#to`"pjq#:Hqs8W)prrE&srrW3"rql]qrqHEmrqcWprql]qrq??nrr;um +rr`9#s8Mlp!<2rs!ri6!qu6Zqp\t6mqYpQpqu6ZqpAY3ns8Mfn"9/?#rqcWprr)iurr;uqrrE&o +rrW3"rqQKprr;usrrE&qrrE&rrrE&trrE&arrW3"rr2p!rr;unrrW3"rqQKprr;usrrE&qrrE&r +rrE&trrE&arrW3"rr2p!rr;unrrW3"rqQKprr;usrrE&qrrE&rrrE&trrE&arrW3"rr2p!rr;ur +s*t~> +!WW/prri?$rr;urrrE&mru:t;s7kj-[@)ki:./6#Fbl`t_9:6Vf\kr\naZVL!:g$Y!:g$Y"7biG +?Miaka/u\cdEB;+Q>Tbo-iF#V#:qr4?EDMrG^o>brr;utrqud$rr;utrr2rsr;QcrqYpQprVuos +o)A^hrr2utqu6Zqp&>$kq#:a$s8N&urr<#trr;uorrE&trrE&rrr`9#s8Mlp!<2lq"9/?#rq$-i +rqQL$rr;uts8N&urr2rsqYpQprr2utr;Qlus8W)prrE&qrr`9#s8MWi!<2cn$i^2*s8W)us8N#t +rqcWprqucrrr2otrqHEorr;uss8W)urrE&lrrE&rrrE&lrr`9#s8Mrr!<2rss8Mus!<2ut!<2`m +!ri6!rr<#ts8N)upAY-lr;QcrpAY6os8W)rrrE&ss8W)srrE&trrE&mrrW3"rr2rtrr;uurq??l +rqucrrq??orr<#tr;QcrrVuosrVlrus8RT~> +!WW/prri?$rr;urrrE&mru:t;s7km/\=eq-=AWOOJ<-V<`m<,af\kr\naZVL!:g$Y!:g$Y"7biM +B)Cd#dC[3=g!e!KSTJ+0.fB>Y#VSD@@C=b:Knf7"rr;utrqud$rr;utrr2rsr;QcrqYpQprVuos +o)A^hrr2utqu6Zqp&>$kq#:a$s8N&urr<#trr;uorrE&trrE&rrr`9#s8Mlp!<2lq"9/?#rq$-i +rqQL$rr;uts8N&urr2rsqYpQprr2utr;Qlus8W)prrE&qrr`9#s8MWi!<2cn$i^2*s8W)us8N#t +rqcWprqucrrr2otrqHEorr;uss8W)urrE&lrrE&rrrE&lrr`9#s8Mrr!<2rss8Mus!<2ut!<2`m +!ri6!rr<#ts8N)upAY-lr;QcrpAY6os8W)rrrE&ss8W)srrE&trrE&mrrW3"rr2rtrr;uurq??l +rqucrrq??orr<#tr;QcrrVuosrVlrus8RT~> +!WW/prri?$rr;urrrE&mru:t;s7ts2]Vh-JA6j2,MjUTZb0ebjf\kr\naZVL!:g$Y!:g$Y"7biT +E;So/g<@ptin`"pVKlTH/c>Y\#r=tOB#!?^PE,;8rr;utrqud$rr;utrr2rsr;QcrqYpQprVuos +o)A^hrr2utqu6Zqp&>$kq#:a$s8N&urr<#trr;uorrE&trrE&rrr`9#s8Mlp!<2lq"9/?#rq$-i +rqQL$rr;uts8N&urr2rsqYpQprr2utr;Qlus8W)prrE&qrr`9#s8MWi!<2cn$i^2*s8W)us8N#t +rqcWprqucrrr2otrqHEorr;uss8W)urrE&lrrE&rrrE&lrr`9#s8Mrr!<2rss8Mus!<2ut!<2`m +!ri6!rr<#ts8N)upAY-lr;QcrpAY6os8W)rrrE&ss8W)srrE&trrE&mrrW3"rr2rtrr;uurq??l +rqucrrq??orr<#tr;QcrrVuosrVlrus8RT~> +"onT%rr;uqrrE&rrrE&qs8W'>u=!fG)r8r[_0W-g>_8ZmI9];nc&(jnac5@naZ,; +mG#[\nac.7?Mi^r`iZYjc[IAe'a"L>"UTss8N&trr2utrr33%s8N&ts8M]k#6+Z&rr2rsrr3*" +s8W)trrE&trrE&trrE&ts8W)urrE&qs8W)urs8W(rr;utrr;usrs&K&rr;utrq69qrr<#trr;us +rr`9#s8N#t!<2ut!<2ut!<2uts8N&u!<2lqs8N&u#lal's8N&ts8N#t#6+Z%s8N&tp&>6qs8W)t +s8N#t!WN,urr +"onT%rr;uqrrE&rrrE&qs8W'J!d1>]"Z86gZ%A[mI9];nc&(jnac5@naZ,; +mbQ$gnac.=B)Ca=d(@0Cf7be$(BX^@"UTss8N&trr2utrr33%s8N&ts8M]k#6+Z&rr2rsrr3*" +s8W)trrE&trrE&trrE&ts8W)urrE&qs8W)urs8W(rr;utrr;usrs&K&rr;utrq69qrr<#trr;us +rr`9#s8N#t!<2ut!<2ut!<2uts8N&u!<2lqs8N&u#lal's8N&ts8N#t#6+Z%s8N&tp&>6qs8W)t +s8N#t!WN,urr +"onT%rr;uqrrE&rrrE&qs8W'UTss8N&trr2utrr33%s8N&ts8M]k#6+Z&rr2rsrr3*" +s8W)trrE&trrE&trrE&ts8W)urrE&qs8W)urs8W(rr;utrr;usrs&K&rr;utrq69qrr<#trr;us +rr`9#s8N#t!<2ut!<2ut!<2uts8N&u!<2lqs8N&u#lal's8N&ts8N#t#6+Z%s8N&tp&>6qs8W)t +s8N#t!WN,urr +s8N9%s8N&urq?BlrZ(b&hTN@<#R\&ck@cI:Y4n+-#>nac5Lnc84Xndk!Be?u$+Cd9m: +.e<0!QUHorVllsrVuosr;R*&s8W)us8N&urqZQorqucrrqZQrrr<#tr;R!# +s8W)us8Mrrs8N&u!<2rs!<2rss8Mrr$3'u)rr<#ts8W)orrE&rrrE&orr`9#s8Mrr#6+Z&rr<#t +r;Zfrs8N)urVllsrVuosr;R*&s8W)us8N&urqZQorquctrr;uks8W)urrE&trrW3"rqufrrqcWr +rr;umrrE&trrrE%rr<#tq>UHoqYpQppAb0ls8N)urr3'!s8Mrrs8Mlp!ri6!q#:?nrr30$s8N&u +rqZQorqcWprq?Blrr;uurr2p!rr;uqs8W)prrW3"rqQKnrr2p$rr;uts8Mio!<2ip!<2rsJ,~> +s8N9%s8N&urq?BlrZ(b&hp&^,J6#BKB5EF#]ZedNcdUb5n+-#>nac5Lnc84Xndk$De\/,MH<=*F +9(MQAS7_Z\)pc.6eCT$m003[.X2iiHgt^T:g=b*-dE@5uo`"mjrqZQorqucrrq6UHorVllsrVuosr;R*&s8W)us8N&urqZQorqucrrqZQrrr<#tr;R!# +s8W)us8Mrrs8N&u!<2rs!<2rss8Mrr$3'u)rr<#ts8W)orrE&rrrE&orr`9#s8Mrr#6+Z&rr<#t +r;Zfrs8N)urVllsrVuosr;R*&s8W)us8N&urqZQorquctrr;uks8W)urrE&trrW3"rqufrrqcWr +rr;umrrE&trrrE%rr<#tq>UHoqYpQppAb0ls8N)urr3'!s8Mrrs8Mlp!ri6!q#:?nrr30$s8N&u +rqZQorqcWprq?Blrr;uurr2p!rr;uqs8W)prrW3"rqQKnrr2p$rr;uts8Mio!<2ip!<2rsJ,~> +s8N9%s8N&urq?BlrZ(b'i6f9nac5Lnc84Xndk$Gg;pq(OEl(q +Eq8eiUN$+o%GAqQhV`u51-KEC[aF%4j9jo,j5T%Sgt7gNo`"mjrqZQorqucrrq6UHorVllsrVuosr;R*&s8W)us8N&urqZQorqucrrqZQrrr<#tr;R!# +s8W)us8Mrrs8N&u!<2rs!<2rss8Mrr$3'u)rr<#ts8W)orrE&rrrE&orr`9#s8Mrr#6+Z&rr<#t +r;Zfrs8N)urVllsrVuosr;R*&s8W)us8N&urqZQorquctrr;uks8W)urrE&trrW3"rqufrrqcWr +rr;umrrE&trrrE%rr<#tq>UHoqYpQppAb0ls8N)urr3'!s8Mrrs8Mlp!ri6!q#:?nrr30$s8N&u +rqZQorqcWprq?Blrr;uurr2p!rr;uqs8W)prrW3"rqQKnrr2p$rr;uts8Mio!<2ip!<2rsJ,~> +%fZM.rr<#trr<#ts8W)urr*])_j,dn>=25)J<->-]u\[TgYh2[nF?GI!:g$Y(\.(enD_csKkXaa +8PWN+I>rh=o()78?2NM#`3$Mkd'g$eaO/Gde'cXld`f_E[C!HS\p/_rs8W)frrE&prsJc*rr2rt +rr2rtrr)j!rr<#tq#:Qts8N#ts8Mus"9/?#rpg!grr)isrqQNnrWiK&s8N#trr2fps8E'!rql]t +rr<#tr;R$$s8N&urr;uqrrE&lrrE&srrE&ns8W''s8N&trr;usqu?]q!WW/rrr`9#s8Mrr#QFc& +s8W)urqucrrq??lrr)isrqQNnrX&W(s8N#trr<#tr;Qcrq>UHoq>Ua"s8N&urr;usnc&dls8N&u +rr)isrquctrr;uorrE&rrrE&orrE&ors8W(rr<#ts8N#frrrE%rr<#trVllsr;Qits8Mlp!<2or +!<2fo!<2fo#lal's8W)urr2Hf"oeQ$s8W)srrE&rrrW3"rqcWrrr<"K~> +%fZM.rr<#trr<#ts8W)urr*]*`LD^2A56?RMO10I^WY-[gu.;\nF?GI!:g$Y(\.(enDhs'P^[U] +?>"A3O.MM8o()7>B)CZtcb%*EfY4].d+R..r7VV1ccO&?`5T`ML@kNGrp]pfrqcX%rr;uss8W)t +s8W)srr`9#s8Mfn#6+Z%rr<#trVm!!s8W)grrE&srrE&ns8W''s8N&trr;usqu?]q!WW/rrr`9# +s8Mrr#QFc&s8W)urqucrrq??lrr)isrqQNnrWiK&s8N#trr2fps8E'!rql]trr<#tr;R$$s8N&u +rr;uqrrE&lrrE&srrE&ns8W')s8N&trr;uts8Mrr!<2fo!<2fo#lal's8W)urr2Hf"oeQ$s8W)s +rrE&rrrW3"rqcWprqucrrqZQorqZR"rr;uts8N&trpg!lrr;uts8Mus!<2or!ri6!qYpQpr;Qcr +q>UHoq>Ua"s8N&urr;usnc&dls8N&urr)isrquctrr;uorrW3"s*t~> +%fZM.rr<#trr<#ts8W)urr*]*a.e`NDd6t-Pb>(g_p6iegu7D^nF?GI!:g$Y(\.(enDr06W0iQq +IYNuTV6HhCo()7EE;Sf>fZV_"iQ/[Tg#D&Rj5T+Yj58VBdEp=je<>pbs8W)frrE&prsJc*rr2rt +rr2rtrr)j!rr<#tq#:Qts8N#ts8Mus"9/?#rpg!grr)isrqQNnrWiK&s8N#trr2fps8E'!rql]t +rr<#tr;R$$s8N&urr;uqrrE&lrrE&srrE&ns8W''s8N&trr;usqu?]q!WW/rrr`9#s8Mrr#QFc& +s8W)urqucrrq??lrr)isrqQNnrX&W(s8N#trr<#tr;Qcrq>UHoq>Ua"s8N&urr;usnc&dls8N&u +rr)isrquctrr;uorrE&rrrE&orrE&ors8W(rr<#ts8N#frrrE%rr<#trVllsr;Qits8Mlp!<2or +!<2fo!<2fo#lal's8W)urr2Hf"oeQ$s8W)srrE&rrrW3"rqcWrrr<"K~> +s8N)urVuoss8N)urVuos&^Wp>F-3Q7_8XFAg>_DamdTcGnc84ZneL]cnaZ#2i7#K9MFKot7U0e[ +M3O?rrga7M3Uu\/QLm(rr2rtrr2rss8W)us8Mus$i^2+rr;uss8N&ts8Dous8N&rrW3&uqu?]q!<<&tq>UKps7uX( +s8N#ts8N#trr<#ts8W)srsSi+s8N&trr;utrr;rr!rr9"r;H`srql`qrW)utrqZQprr;fn#ljo' +s8W)ts8IN~> +s8N)urVuoss8N)urVuos&^sNWH^D%P`Q#sGgZ%MbmdTcGnc84ZneL]cnaZ#2iRl/MP@7a%?Z1IX +S><*ariHBm=7PkMS7_ZZ"jX`teCiLRg(`2ke^Mjd_n3V#bL+hjf@,G.o`+pfs8W)urrN-!rr)ru +rr)isrr2ourr;oq#QOf'rr<#ts82fprrE&ps8W)us8W)ps8N!-s8N#ts8N&urr2rsrr;uorrE&s +s8;j!s8N&trr2p!rr<#qrr;uurr2otrr2p&rr;utrr2rsrr;oq%fcP-s8W)us8N#trr2rsqYpQp +rVufp"TSK$rr2os!ri6"qu6Wq!<2ut!<2ut#QFc&s8N#trr2rqrXSu-rr<#ts8W)ts8N#trqcWp +rr)lprXSu-s8N&trr;uts8N&urr)j)rr<#ts8N#trr;utrVclurr;oq!WW/rs8W&us8N#nrrN-! +q>Lm(rr2rtrr2rss8W)us8Mus$i^2+rr;uss8N&ts8Dous8N&rrW3&uqu?]q!<<&tq>UKps7uX( +s8N#ts8N#trr<#ts8W)srsSi+s8N&trr;utrr;rr!rr9"r;H`srql`qrW)utrqZQprr;fn#ljo' +s8W)ts8IN~> +s8N)urVuoss8N)urVuos#1m-kK:]Wkrl>>ngZ%MbmdTcGnc84ZneL]cnaZ&4jPA+iUOn#FJ;T_l +YdV'Rrk/N;Hh$[qUMp%l"k_#HhW!PoitUM3hqm,=d`g"cf\GBBiSB]Xo`+pfs8W)urrN-!rr)ru +rr)isrr2ourr;oq#QOf'rr<#ts82fprrE&ps8W)us8W)ps8N!-s8N#ts8N&urr2rsrr;uorrE&s +s8;j!s8N&trr2p!rr<#qrr;uurr2otrr2p&rr;utrr2rsrr;oq%fcP-s8W)us8N#trr2rsqYpQp +rVufp"TSK$rr2os!ri6"qu6Wq!<2ut!<2ut#QFc&s8N#trr2rqrXSu-rr<#ts8W)ts8N#trqcWp +rr)lprXSu-s8N&trr;uts8N&urr)j)rr<#ts8N#trr;utrVclurr;oq!WW/rs8W&us8N#nrrN-! +q>Lm(rr2rtrr2rss8W)us8Mus$i^2+rr;uss8N&ts8Dous8N&rrW3&uqu?]q!<<&tq>UKps7uX( +s8N#ts8N#trr<#ts8W)srsSi+s8N&trr;utrr;rr!rr9"r;H`srql`qrW)utrqZQprr;fn#ljo' +s8W)ts8IN~> +rVlots8Dp0s8N&urr2rsb=K(cdad+4m-sTFnH&4Nrpg`mo'u;@n)i*7RY5cc6U47JF,#eMRKeL, +nac.7?2NCg_lU>idE]kO]t1b`Za[`kci2AmdJqVsb'8F-rr33%s8W)us8Mus"9/?#rqHEsrr<#t +s8W)prrE&mrrE&rrrE&srsA])s8N&urr<#trVm?+s8W)us8N&urr;utrr2p"rr<#trr2utrr30$ +s8W)us8N#trrE&prr`9#s8Mlp*rc3>rr<#ts8W)us8N&ts8W)us8N&urr<#ts8N&trr3*"s8W)t +rrE&trrrE%s8N&urr2rt!<2ip"9/?#rqcX9rr<#ts8W)us8N&urr;uts8N&urr<#ts8W)urr;us +rr`9#s8N#t!<2ut$i^2+rr;uts8N&urqcWsrr<#tqYpZss8W)orrE&srs&K&s8N&urqHEqrr<#t +rql^'rr<#ts8N&urr<#tqYpZss8W)prr`9#s8Mio!<2rs#6+Z&rr<#tp\tBqs8W)tqu7''s8W)u +rr<#ts8W)prr`9#s8Mlp"9/?#rqZQorr)j$rr<#ts8W)mrri?$s8N#prsA])s8N&ts8W)uJ,~> +rVlots8Dp0s8N&urr2rscVh9te(*76m-sTFnH&4Nrpg`mo'u;@n)i0$PZ[KpJD*Ws4nk +nac.=Ac(L!c+:gBg"4ZsaMu09_8FIDfD=2'dtNPKrr33%s8W)us8Mus"9/?#rqHEsrr<#ts8W)p +rrE&mrrE&rrrE&srsA])s8N&urr<#trVm?+s8W)us8N&urr;utrr2p"rr<#trr2utrr30$s8W)u +s8N#trrE&prr`9#s8Mlp*rc3>rr<#ts8W)us8N&ts8W)us8N&urr<#ts8N&trr3*"s8W)trrE&t +rrrE%s8N&urr2rt!<2ip"9/?#rqcX9rr<#ts8W)us8N&urr;uts8N&urr<#ts8W)urr;usrr`9# +s8N#t!<2ut$i^2+rr;uts8N&urqcWsrr<#tqYpZss8W)orrE&srs&K&s8N&urqHEqrr<#trql^' +rr<#ts8N&urr<#tqYpZss8W)prr`9#s8Mio!<2rs#6+Z&rr<#tp\tBqs8W)tqu7''s8W)urr<#t +s8W)prr`9#s8Mlp"9/?#rqZQorr)j$rr<#ts8W)mrri?$s8N#prsA])s8N&ts8W)uJ,~> +rVlots8Dp0s8N&urr2rsdpBT1e(*76m-sTFnH&4Nrpg`mo'u;@n*&EI\>YmNH[^^1S>rmg]*G?^ +nac.DDrpoZ'%b=ThW!JLg"+[%dEp=ogu7;QrSn%?hNNulrr33%s8W)us8Mus"9/?#rqHEsrr<#t +s8W)prrE&mrrE&rrrE&srsA])s8N&urr<#trVm?+s8W)us8N&urr;utrr2p"rr<#trr2utrr30$ +s8W)us8N#trrE&prr`9#s8Mlp*rc3>rr<#ts8W)us8N&ts8W)us8N&urr<#ts8N&trr3*"s8W)t +rrE&trrrE%s8N&urr2rt!<2ip"9/?#rqcX9rr<#ts8W)us8N&urr;uts8N&urr<#ts8W)urr;us +rr`9#s8N#t!<2ut$i^2+rr;uts8N&urqcWsrr<#tqYpZss8W)orrE&srs&K&s8N&urqHEqrr<#t +rql^'rr<#ts8N&urr<#tqYpZss8W)prr`9#s8Mio!<2rs#6+Z&rr<#tp\tBqs8W)tqu7''s8W)u +rr<#ts8W)prr`9#s8Mlp"9/?#rqZQorr)j$rr<#ts8W)mrri?$s8N#prsA])s8N&ts8W)uJ,~> +qu6Zqrr2utrVuos#li(=[ERh(o'uSIs7-*Z%e&#cRTWNW8PE?%G_M*?ns9Q63Uu\/QnaNW#Zda?Ljd)`JYYL(F:J+N^?rr2rtrVlNj"TJH$rr2lr"oeQ%rr;urrrE&rrrE&s +s8Muts8N!#s8N#trqufrrqufprr2rrrr)lsrqcZprr)lsrr2rtrr2otrqud!rr<#ts8Muts8Drr +s8N#ss8N#qs8N#ss8Drqs8W)ps8W)ss8W)ts8W)trrE&rrri?$s8N&trW)usrr2rsrr2rsrqufq +rr2rrrr)lsrqcZprr)lsrqZQtrr<#ts8N#t!WN,urqZTnrqucrrqZQqrr<#srr;uurqZTorql`p +rqcWurr<#ts8N#t!WN,urqZTnrqucrrqZQqrr<#srr;uurqZTorql`prqcWurr<#ts8N#t!WN,u +rqZTnrqucrrqZQqrr<#srr;uurqZTorql`prqcWprdX~> +qu6Zqrr2utrVuos#li4K\'4%*o'uSIs7-*Z%e&)hU2asU?t=;-N0g-3nu)bXUWts8W)urr2ourr;usq>^Hnr;Qcrq>UNqs8W&ss8N)uq>^Koqu?Zp +qYp`us8W)urr2ourr;usq>^Hnr;Qcrq>UNqs8W&ss8N)uq>^Koqu?ZpqYp`us8W)urr2ourr;us +q>^Hnr;Qcrq>UNqs8W&ss8N)uq>^Koqu?ZpqYpQpJ,~> +qu6Zqrr2utrVuos#li@[\BO.+o'uSIs7-*Z&+A;rY`O`mIY*TJUoUc/\b!B:WI"+*n"XgujUB_` +dF-:adF?e%gu%,hit(/'_l(E3hNNuls8W)ts8W&spAY9ps8W)trVm'#s8W)urr)isrqucrrr)lr +rW)utrWN9#rr;uqs8W)rs8Drrs8Drqs8W)ps8W)ss8W)ts8W)trrE&rrri?$s8N&trW)usrr2rs +rr2rsrqufqrr2rrrr)lsrqcZprr)lsrr2rtrr2otrqud!rr<#ts8Muts8Drrs8N#ss8N#qs8N#s +s8Drqs8W)ps8W)ss8W)orrrE%s8N&trr3#us8N#ns8N#qrrE&orrW3"s8DrsrrE&os8W)qs8N#o +rrrE%s8N&trr3#us8N#ns8N#qrrE&orrW3"s8DrsrrE&os8W)qs8N#orrrE%s8N&trr3#us8N#n +s8N#qrrE&orrW3"s8DrsrrE&os8W)qs8N#orrE%K~> +s8N)ur;Qcrq#:K?8@?\+rpp*Zs7-ckkhXUmTn[#;2EFfPI#=&LP3nG;J2m,jn!75Ug'#6n[`$Ji +d1XmTcc3W%OF(Cr$j-Qhd)pT_oD\dirr +s8N)ur;Qcrq#:KC;Ram7rpp*Zs7-ckkhae%X-.F%<*3m`Ngul?V!Xu_P#_)Dn!mtdi<7B9_Tpa0 +fauc\`42+bB0?Y*!gD9cKnf7!s8W)urri?$s8N#ss8W)orrE&ns8;lVrrE&prrE&trrE&prrE&n +rrE&qrs&K&s8N#trqHHmrpKddrqcWprr2otrqcWprqQKnrql^"rr<#trr;uls8W)drrE&prrE&t +rrE&prrE&nrrE&qrrrE%s8N&tqu6Zqr;Qcrir9#Xrr2uto`"pjpAY-lqu6Zqr;Qcrir9#Xrr2ut +o`"pjpAY-lqu6Zqr;Qcrir9#Xrr2uto`"pjpAY-lrr7K~> +s8N)ur;Qcrq#:KG?F\5Drpp*Zs7-`jl/C::\YP%+H$kF6Up.;9m'd1sHLgXqUMp%j"P1cEg>Mqh +''&!0f?M+&Li#Hf!s5(QhNNulrr<#ts8N6$s8W)trr<#tq>UHoq#C9kj8T,YqYpQprr2utqYpQp +q#:?nqu6m"s8W)ts8Mcms8MHd!<2ip!<2ut!<2ip!<2cn!<2lq#6+Z&rr2rsp](9mmf*:dqYpQp +rr2utqYpQpq#:?nqu6j!s8W)urql]qrqucrro3qXrr2otrq-3jrq??lrql]qrqucrro3qXrr2ot +rq-3jrq??lrql]qrqucrro3qXrr2otrq-3jrq??lrr2qJ~> +!<2rss8E'!rr)lrrrl31a_5t,gdaHOc +\uCNr9KFO!!"fr,9q]kUG^o>bs8N#ts8N#trVlis!<2rs"TJH$rr2oss8Mus#QFc'rr;utrqucu +rr<#trr2utrVllsrr2utrVllsrr2utr;ZfrrVm!!s8W)srri?$s8N&trr2rtrr<#urqcWprq-3j +rr2rsrr;uurr2rtrr;uurqufrrr)j!rr<#trVm$"s8W)urr2oss8N&us8Mlp!<2Wj!<2utrr2rt +!<2uts8N&u!<2ors8Mus"9/?#rr)j"rr<#ts8N#ss8W)us8W)trrE&trrW3"rr2rtrqcWprr2rt +rr +!<2rss8E'!rr)lrrr%_i(N0^*uU'?]Zo()7>Ac(Bqbdt^@g"P-. +_m,;::d-?,!"fu1;Q8 +!<2rss8E'!rr)lrrr +rr30$s8W)urqcZprY!CF[ERn+nab1>6;Uj"FFSt#N8fg$HT1Ncn!75UfH%c/\'!$kB-SH7%0?kG +&Lgq/Pd&!IcI'dZJ+N^>rr2utr;Qlus8N#prrE&srseu-rr;uts8N&ts8N&trr<#t!rr9"rVl`p +!<2uts8E3%rr<#trr)isrr2p!rr;uprr`9#rr2`n"9/?#rr2rtrr<#urr2p&rr<#trr<#trr<#t +!<<&t!rr9!rr2utrr;us"TSK$s8N#t!ri6!qu6cts8N#nrr`9#s8N#ts8N&us8N#t#QFc'rr2rt +rr2rtrW)utrW<-!rr2otrr2rsrWN9#s8W)trrW3"rql]trr;usq>UQrs8W)ts8W)us8Dp"s8N&u +rr2otrr2rtrX/])rr<#ts8N&urr2otrr2p"rr<#trVllsqYpQprr2utqu6ZqrVmE-s8W)ts8W)u +rr2rss8W)trrE&ts8W'*s8N#ts8N&ts8W)trrE&trr`9#s8Mus!<2ip!<2ut!<2lq!<2rs&,uV/ +rr2rtrr;uss8N&urr2otrr2rtrX/])rr<#ts8N&urr2otrr2p"rr<#trVllsqYpQprr2utqu6Zq +rVm?+s8W)ts8W)urr2rss*t~> +rr30$s8W)urqcZprY!OT\'4+-nab7S?"Ir(MNaBrTAlLJNE#K=n!mtdh]9nO_pm>=D'U2@%KZtI +&h@C?S@6Mef@eW,L@kNFrr2utr;Qlus8N#prrE&srseu-rr;uts8N&ts8N&trr<#t!rr9"rVl`p +!<2uts8E3%rr<#trr)isrr2p!rr;uprr`9#rr2`n"9/?#rr2rtrr<#urr2p&rr<#trr<#trr<#t +!<<&t!rr9!rr2utrr;us"TSK$s8N#t!ri6!qu6cts8N#nrr`9#s8N#ts8N&us8N#t#QFc'rr2rt +rr2rtrW)utrW<-!rr2otrr2rsrWN9#s8W)trrW3"rql]trr;usq>UQrs8W)ts8W)us8Dp"s8N&u +rr2otrr2rtrX/])rr<#ts8N&urr2otrr2p"rr<#trVllsqYpQprr2utqu6ZqrVmE-s8W)ts8W)u +rr2rss8W)trrE&ts8W'*s8N#ts8N&ts8W)trrE&trr`9#s8Mus!<2ip!<2ut!<2lq!<2rs&,uV/ +rr2rtrr;uss8N&urr2otrr2rtrX/])rr<#ts8N&urr2otrr2p"rr<#trVllsqYpQprr2utqu6Zq +rVm?+s8W)ts8W)urr2rss*t~> +rr30$s8W)urqcZprXmUc\BO4.nabCpIY!t,VQ +/ng';^X1]linflZo`+pirrE&rrr`9#rr2fp!<2rs%K?D,s8N&urr;utrr;uss8W'"s8N&srqucr +rr2rtrWW?$s8W)trVllsrr3'!s8Moq"9/?"rqZQrrr<#trr<#ts8W,urr36&s8W)ts8W)ts8W&u +s8N!!s8N#srrE&ts8N!#s8N&urr2p!rr;uprr`9#rr2`n"9/?#rr2rtrr<#urr2p&rr<#trr<#t +rr<#t!<<&t!rr9!rr2utrr;us"TSK$s8N#t!ri6!qu6cts8N#nrr`9#s8N#ts8N&urVcs"rr<#t +rr2utrr<#t$NL,)s8W)urr<#trr2utrr3*"s8W)srrE&prrE&trrE&qrrE&srt#,/s8N#ts8N&t +rr;uts8N#t!<2uts8EB*rr2rtrr;uts8N#t!<2ut"9/?#rr)isrqcWprr2otrql]qrr)j-rr<#t +rr<#ts8N#trr<#trr2utrr<#t$NL,)s8W)urr<#trr2utrr3*"s8W)srrE&prrE&trrE&qrrE&s +rseu-s8N#ts8N&trr;utJ,~> +r;Qcrrr2utrVmB,s8N#@8@?\+nac7sJV`$;#'`&so'_lLqput*XLH?tAcN#V1."`tV7t=,f%&3s +dET_IG^o>as8N&trr;us!WW/trrrE%s8N&trr3'!s8Mcm"TJH#s8Mrr%fZM-s8N#ts8N&ts8N&t +r;Qits8Mrr!ri6"qu-j#rr<#trr;ujrrE&qrr`9#s8Moqs8E9'rr<#ts8W)qrrE&rs8W)urrrE% +s8N&uqu-j#rr<#trr;ujrrE&qrr`9#s8Moqs8E9'rr<#ts8W)qrrE&rs8W)urrrE%s8N&uqu-j# +rr<#trr;ujrrE&nrri?$s8N&trr;uurq69nrr;usrr3*"s8W)ss8W&us8Dp%s8N&trr<#tr;Zfr +r;Qcrrr2utr;Qp!s8W)urr2rt!<2Zk"9/?"rr2p"rr<#trVuos!<<#s#QOf'rr2rtrqufrrqucr +rr2otrqud!rr<#ts8N#trrE&krr`9#rr2os"9/?#rr)lsrW)usrWiK&s8N#ts8Mrrs8Mrr!<2ut +!<2orJ,~> +r;Qcrrr2utrVmB,s8N#D;Ram7nac7uO.+dn#)cIOo'`)[qq`I<]#3"KC]F\`2+:B/XiB#Kh;$`< +g""HmKnf7!s8N&trr;us!WW/trrrE%s8N&trr3'!s8Mcm"TJH#s8Mrr%fZM-s8N#ts8N&ts8N&t +r;Qits8Mrr!ri6"qu-j#rr<#trr;ujrrE&qrr`9#s8Moqs8E9'rr<#ts8W)qrrE&rs8W)urrrE% +s8N&uqu-j#rr<#trr;ujrrE&qrr`9#s8Moqs8E9'rr<#ts8W)qrrE&rs8W)urrrE%s8N&uqu-j# +rr<#trr;ujrrE&nrri?$s8N&trr;uurq69nrr;usrr3*"s8W)ss8W&us8Dp%s8N&trr<#tr;Zfr +r;Qcrrr2utr;Qp!s8W)urr2rt!<2Zk"9/?"rr2p"rr<#trVuos!<<#s#QOf'rr2rtrqufrrqucr +rr2otrqud!rr<#ts8N#trrE&krr`9#rr2os"9/?#rr)lsrW)usrWiK&s8N#ts8Mrrs8Mrr!<2ut +!<2orJ,~> +r;Qcrrr2utrVmB,s8N#H?F\5Dnac8%UTW=U#,6D6o'`>lqr&[IbL58*ErZFi3D!2B\'EsnjlGI] +inrPCPE,;7s8N&trr;us!WW/trrrE%s8N&trr3'!s8Mcm"TJH#s8Mrr%fZM-s8N#ts8N&ts8N&t +r;Qits8Mrr!ri6"qu-j#rr<#trr;ujrrE&qrr`9#s8Moqs8E9'rr<#ts8W)qrrE&rs8W)urrrE% +s8N&uqu-j#rr<#trr;ujrrE&qrr`9#s8Moqs8E9'rr<#ts8W)qrrE&rs8W)urrrE%s8N&uqu-j# +rr<#trr;ujrrE&nrri?$s8N&trr;uurq69nrr;usrr3*"s8W)ss8W&us8Dp%s8N&trr<#tr;Zfr +r;Qcrrr2utr;Qp!s8W)urr2rt!<2Zk"9/?"rr2p"rr<#trVuos!<<#s#QOf'rr2rtrqufrrqucr +rr2otrqud!rr<#ts8N#trrE&krr`9#rr2os"9/?#rr)lsrW)usrWiK&s8N#ts8Mrrs8Mrr!<2ut +!<2orJ,~> +s8W,u!WW/rrsJc*s8N&ub=K%bl2L5Sc\C,.#'Moqo'_lLqplb%XLH?tO`QVc^WP!Se^Mspd)j,3 +YHtgPG^o>aq>UQrs8N#rs8W)ts8W'.s8N#trr;uts8N&ts8W)ts8W)ss8W)srrE&mrrE&rrrE&s +rrE&ts8W)urrE&jrseu-rr2rss8N&urr;usp](6lrr2utqu?]q$31#)s8N&urr;urrrE&ts8W)u +rrE&jrseu-rr2rss8N&urr;usp](6lrr2utqu?]q$31#)s8N&urr;urrrE&ts8W)urrE&jrt#,/ +rr2rss8N&urr;uts8Mus!<2ut!<2or"9/?#rr2rtrW3&uqYpQpq#:Hqs8W)trr`9#s8Mio"oeQ% +rr;urrr`9#s8Mus!<2ut!<2or"9/?#rr2rtrW3&uqYpQpq#:Hqs8W)trr`9#s8Mio"oeQ%rr;ur +rr`9#s8Mus!<2ut!<2or"9/?#rr2rtrW3&uqYpQpq#:Hqs8W)trr`9#s8Mio"oeQ%rr;urrrrE% +s8N&uJ,~> +s8W,u!WW/rrsJc*s8N&ucVh6rl2L5Sd?N=Q.>_!oo'`)[hVR)EhVQDd_pm;+GEfAPdFm:0gY1?5 +d`]J?^r=?JL@kK@rr`9#rr2lrs8N#ts8EN.rr2rss8N&urr;uts8N#ts8Muss8Mus!<2`m!<2or +!<2rs!<2uts8N&u!<2Wj%K?D,rr;utrr<#ts8N#ls8N#srrE&qs8W')s8N&urr<#ts8Mus!<2ut +s8N&u!<2Wj%K?D,rr;utrr<#ts8N#ls8N#srrE&qs8W')s8N&urr<#ts8Mus!<2uts8N&u!<2Wj +&,uV.rr;utrr<#ts8N&urr)isrr2otrqucurr<#trr<#t!WW/qrrE&nrr`9#s8N#t"9/?#rqZQt +rr<#ts8Mus"9/?#rr)isrr2otrqucurr<#trr<#t!WW/qrrE&nrr`9#s8N#t"9/?#rqZQtrr<#t +s8Mus"9/?#rr)isrr2otrqucurr<#trr<#t!WW/qrrE&nrr`9#s8N#t"9/?#rqZQtrr<#ts8Mus +"oeQ%rr<"K~> +s8W,u!WW/rrsJc*s8N&udpBQ.l2L5Seu.3)$(uS7o'`>li8NVni>g@jdb`oWI[djlg#D)Rj5].Y +h:U-#d*pL.NqE>Hrr`9#rr2lrs8N#ts8EN.rr2rss8N&urr;uts8N#ts8Muss8Mus!<2`m!<2or +!<2rs!<2uts8N&u!<2Wj%K?D,rr;utrr<#ts8N#ls8N#srrE&qs8W')s8N&urr<#ts8Mus!<2ut +s8N&u!<2Wj%K?D,rr;utrr<#ts8N#ls8N#srrE&qs8W')s8N&urr<#ts8Mus!<2uts8N&u!<2Wj +&,uV.rr;utrr<#ts8N&urr)isrr2otrqucurr<#trr<#t!WW/qrrE&nrr`9#s8N#t"9/?#rqZQt +rr<#ts8Mus"9/?#rr)isrr2otrqucurr<#trr<#t!WW/qrrE&nrr`9#s8N#t"9/?#rqZQtrr<#t +s8Mus"9/?#rr)isrr2otrqucurr<#trr<#t!WW/qrrE&nrr`9#s8N#t"9/?#rqZQtrr<#ts8Mus +"oeQ%rr<"K~> +rr2utrr<#trr2utrr<#t"Ns?Dbj#,s!70;M#')Tlo'_lLqpZ\$XLH@#eCE$rda-1Z`PB$jXL5d` +cHjkZG^o>bs8Mus!<2rs"9/?"rr2rrrXAi+s8W)urr2rsrr;ups8W)urseu-rr;utrr;utrr2rs +oD\pls8N#mrrW3"rr)lsrr<#urr2rrrr<#urr2p"rr<#trr;us#64]&rr;utrVlcqs8N#t!<2rs +"9/?"rqQKprr;urs8W)us8W)ts8Drss8W)trr`9#s8N#trr*-%rr;utrr;rrrVuosrr2utrVm!! +s8N#mrrW3"rr)lsrr<#urr2rrrr<#urr<#urr;uurr2otrr2p!rr;uqs8W)ss8N!!s8N#rs8N#s +s8W)rs8N!$s8N&urr2lr!ri6"rVlfr#QFc'rr2rtrr2otrr2p!rr;uqs8W)ss8N!!s8N#rs8N#s +s8W)rs8N!$s8N&urr2lr!ri6"rVlfr#QFc'rr2rtrr2otrr2p!rr;uqs8W)ss8N!!s8N#rs8N#s +s8W)rs8N!$s8N&urr2lr!ri6"rVlfr"oeQ%rr2qJ~> +rr2utrr<#trr2utrr<#t"OBuTbj#,s!R[(`QNi1Co()7>AGb-dah#C>g=tB]g(`/hda-+U^q.D) +dFQt&dtNPKs8W)srrE&srr`9#rr2osrVd6*rr<#ts8N#trr2rsqu?]qs8NQ-s8N&ts8N&ts8N#t +rq$-lrr;usq#:Eps8Muss8N&us8N#trVliss8N#t"9/?#rr2rsrW`E%s8N&ts8Drqs8W)trrE&s +rr`9#rr2]m!ri6!rVuoss8W,urr;rrs8W,urr3*"s8W)ts8N!%s8N&ts8N&srr)lsrr2otrr)j! +rr;usq#:Eps8Muss8N&us8N#trVliss8N&us8N&u!<2ut!<2ut!ri6!r;ZfrrVulr!rr9!rVulr +rr<#tr;Zcq"onT%s8N#rrrW3"s8Drrrs/Q's8N#ts8N#t!<2ut!ri6!r;ZfrrVulr!rr9!rVulr +rr<#tr;Zcq"onT%s8N#rrrW3"s8Drrrs/Q's8N#ts8N#t!<2ut!ri6!r;ZfrrVulr!rr9!rVulr +rr<#tr;Zcq"onT%s8N#rrrW3"s8DrrrrrE%s8N#tJ,~> +rr2utrr<#trr2utrr<#t"Og\ebj#,s!S4.$XTkDBo()7EDYr;ne'$1rro4gUj5]+Uh:pQ1cca_d +gu./Nh33lks8W)srrE&srr`9#rr2osrVd6*rr<#ts8N#trr2rsqu?]qs8NQ-s8N&ts8N&ts8N#t +rq$-lrr;usq#:Eps8Muss8N&us8N#trVliss8N#t"9/?#rr2rsrW`E%s8N&ts8Drqs8W)trrE&s +rr`9#rr2]m!ri6!rVuoss8W,urr;rrs8W,urr3*"s8W)ts8N!%s8N&ts8N&srr)lsrr2otrr)j! +rr;usq#:Eps8Muss8N&us8N#trVliss8N&us8N&u!<2ut!<2ut!ri6!r;ZfrrVulr!rr9!rVulr +rr<#tr;Zcq"onT%s8N#rrrW3"s8Drrrs/Q's8N#ts8N#t!<2ut!ri6!r;ZfrrVulr!rr9!rVulr +rr<#tr;Zcq"onT%s8N#rrrW3"s8Drrrs/Q's8N#ts8N#t!<2ut!ri6!r;ZfrrVulr!rr9!rVulr +rr<#tr;Zcq"onT%s8N#rrrW3"s8DrrrrrE%s8N#tJ,~> +q#:?nr;R3)s8U85[ERn*o((+Xfmj9F2"C/*Q^KorVllsrVuos +!rr9!mf*:drVllsrVm$"s8N&tqu6Zqr;Qfss8N#ns8W)srrE&ss8W'"s8N#crrE&srrE&srri?$ +rr;uprrN-!J,~> +q#:?nr;R3)s8UDC\'4+,o((1ifp)bp;t9GIS7MQQ(#-jA_pmDne^)CU`5KR2aNrAhf$)D^KorVllsrVuos!rr9!mf*:drVllsrVm$" +s8N&tqu6]rs*t~> +q#:?nr;R3)s8UPS\BO4-o((A-frGjYGk(@nUMeuHhVR/Ie'$1rj5StMfDO&1f%]'@hUL-9j5]![ +NqEANs8N&trVllsqYpQprr3'!s8N#t"9/?"rqud%rr;uts8N&urr)isrqufrrq-6irr2rtrW3&u +q#:Hqs8W)rrs&K&rr;utrqucurr;usr;Qits8Mios8Moqs8Moqs8N#ts8E'!rqQKqrr<#tr;R!# +s8N&ts8Mrr"9/?"rquctrr;uns8W)qs8W)qs8W)ts8W'!s8Mfn"9/?#rqud#rr;utrr;unrrE&r +rrN-!rr2`ns8Mus!<2rss8E*"rr2?c!<2rs!<2rs"TJH#s8Moq!<2or!WN,urqZTorr)isrr)ls +rW<-!rpKddrr)isrr)j"rr;utrql]qrqucsrr;usq>^KorVllsrVuos!rr9!mf*:drVllsrVm$" +s8N&tqu6]rs*t~> +qZ$Nnrr;rr"Ns?Dbj#,t!RH;LI0OOFnac.7>l2qi]WAQT[&gLC^W"=;bg"8>Wg%sZPL%Y(b'8F- +s8N#t*WH*=rr;uss8N&urr<#ts8W)us8N&ts8W)ts8N#srseu-s8N#trr2rtrr<#trVllsr;R*& +s8W)us8N&urr2p#rr;utrr2p'rr<#ts8N&ts8N#trr`9#s8Muss8N&u%K?D,s8N&urr;utrr;us +rtGD3rr2rss8W)ts8N#ts8N&ts8Moq!ri6!rr39's8W)urr;utrr2rt"9/?#rr)lsrr +qZ$Nnrr;rr"OBuTbj#,t!RZt]Op6M9nac.=AGb+%aL]70_7RG$b0SMbeC;j[YaBrhQe0sFdtNPK +s8N#t*WH*=rr;uss8N&urr<#ts8W)us8N&ts8W)ts8N#srseu-s8N#trr2rtrr<#trVllsr;R*& +s8W)us8N&urr2p#rr;utrr2p'rr<#ts8N&ts8N#trr`9#s8Muss8N&u%K?D,s8N&urr;utrr;us +rtGD3rr2rss8W)ts8N#ts8N&ts8Moq!ri6!rr39's8W)urr;utrr2rt"9/?#rr)lsrr +qZ$Nnrr;rr"Og\ebj#,t!S4%!W +!<<#s#64]&rr;usrVm9)s3!s@bj"]go$;dl2k^]<&ETb0\S``jr+AOb%UsI>s_p +\c1"Zb'8F-r;Qcro`"sks8Dros8W'!s8M!W"TJH$rr2os!<2ors8Mio"9/?#rr2rtrr;uurr2p" +rr<#trr2utkl:V\rr2utq#CBnq>UQrs8W)ts8W)urrE&trr`9#s8N#t!<23^rVlfr!<2cns8Mio +"9/?#rr2rtrr;uurr2p!rr<#trp]pfrqQNmrr)isrqcWsrr<#tpAY-lrr2utqYpQprr<#tnG`Lf +q#C?mrVllsqYpZss8W)lrrE&trrE&prrE&ts8W)frrE&ns8N#rrrE&prr`9#s8M`l!<2ut!<2ip +!<2uts8MusJ,~> +!<<#s#64]&rr;usrVm9)s3FTPbj"]go$NHMNs:)3nac.=AGb%!a1B.0db*:+c+gHWQA0[4L7,!L +_V3\rdtNPKr;Qcro`"sks8Dros8W'!s8M!W"TJH$rr2os!<2ors8Mio"9/?#rr2rtrr;uurr2p" +rr<#trr2utkl:V\rr2utq#CBnq>UQrs8W)ts8W)urrE&trr`9#s8N#t!<23^rVlfr!<2cns8Mio +"9/?#rr2rtrr;uurr2p!rr<#trp]pfrqQNmrr)isrqcWsrr<#tpAY-lrr2utqYpQprr<#tnG`Lf +q#C?mrVllsqYpZss8W)lrrE&trrE&prrE&ts8W)frrE&ns8N#rrrE&prr`9#s8M`l!<2ut!<2ip +!<2uts8MusJ,~> +!<<#s#64]&rr;usrVm9)s3k;abj"]go%'PgVZrQ5nac.DDYr3'dEBqgh;RDQe]+tqRu;`HNMEl! +bl6W)hNNulr;Qcro`"sks8Dros8W'!s8M!W"TJH$rr2os!<2ors8Mio"9/?#rr2rtrr;uurr2p" +rr<#trr2utkl:V\rr2utq#CBnq>UQrs8W)ts8W)urrE&trr`9#s8N#t!<23^rVlfr!<2cns8Mio +"9/?#rr2rtrr;uurr2p!rr<#trp]pfrqQNmrr)isrqcWsrr<#tpAY-lrr2utqYpQprr<#tnG`Lf +q#C?mrVllsqYpZss8W)lrrE&trrE&prrE&ts8W)frrE&ns8N#rrrE&prr`9#s8M`l!<2ut!<2ip +!<2uts8MusJ,~> +rr2utrr3'!s8Mus!<2ut$-PlIbj"Zgo$;^:G6V\9o'u17>l2hd\u`B`dF$C[OF__0Lm4gH]Y_h< +da?Ijb'8F-rVllsq>UTss8N&tp\t6mrVlrus8Mio!<2ut!<2fo!<2lq!<2cn"oeQ%rr;unrs/Q' +s8N#ts8Mcm!<2ut!<2Kf!<2ut"TJH#s8N#ts8Mcm!ri6!q>U^!s8W)ts8W)mrrE&trrE&frrE&t +rri?$rr;uss8W)mrrW3"rqZR!rr<#trr<#tp\t6mnc&UgrVllsqYpQpq>UHom/I7gs8W)urqZQs +rr;utrq69krr)isrqcWprqZQorp9Xgrr<#ts8Mio"TJH#s8M]k!<2rs!<2ip!<2fo!<2?b"oeQ% +rr;unrri?$rr;uqs*t~> +rr2utrr3'!s8Mus!<2ut#gZDXbj"Zgo$Q*K#CTJ?naDuYf`'P>f\+UHorr2utq>UHoqu6Zqq#:Nss8W)urqZR! +rr<#trr<#tp\t6mrr2utnG`Lfrr3-#s8N&trr<#tp\tUTss8N&tp&>$krVllsqYpQpq>UHom/I7g +s8W)urqZQsrr;utrqueH~> +rr2utrr3'!s8Mus!<2ut$.E4jbj"Zgo%'MfV$EB3o'u1DD;5'F(#.NkbL58,ioAIVNf'-oX1lp. +e_B*^ire/%NqE;M!<2fo"TJH#s8Mcm!<2rs!ri6!q>UHorr2utq>UHoqu6Zqq#:Nss8W)urqZR! +rr<#trr<#tp\t6mrr2utnG`Lfrr3-#s8N&trr<#tp\tUTss8N&tp&>$krVllsqYpQpq>UHom/I7g +s8W)urqZQsrr;utrqueH~> +q>UTss8W)tr;R)H8@?\+o'u:sHJ*?DA2<]Fn!72TblbPY\'"]u#fid;[`?S9cdDa?!7Cbn"j2(> +oD\agrr`9#rr2cos8Mus#6+Z&rr<#trVm$"s8W)tr;Zcq!WW/rrrE&hrrE&krrE&prrE&qrri?$ +rr;uerrW3"rpg$grp]pfrqcWprql]urr;utrp]phrr;ufs8W)frrE&prrE&qrri?$rr;uRs8N#i +rs&K&s8N&urpp'hrn[VRrq-3prr<#ts8W)hrrE&Ss8N#irs&K&s8N&urpp'hrq-5@~> +q>UTss8W)tr;R)L;Ram7o'u:uMV3gjHVs>'n!mqcf+5p5_pmDog!?n,^sUZ^f@g/WrRhD/dtNPK +rr2os"9/?"rqcZprr)j$rr<#ts8W)srri?$s8N#qs8Muus8Moq!<2Qh!<2Zk!<2ip!<2lq"TJH# +s8MNf!ri6!nc/XgnG`LfqYpQpqu6fus8N&tnG`Rhs8MQgs8MNf!<2ip!<2lq"TJH#s8LjSrr2Qi +#6+Z&rr<#to)A^hh>dKRo`#-ps8W)us8MTh!<1gSrr2Qi#6+Z&rr<#to)A^ho`'F~> +q>UTss8W)tr;R)P?F\5Do'u;%T@otDQ?Vlhn"Xasg(2QRdba$Ein1iRbM1n2i8Xars5O%<"l>H' +o`"jhrr`9#rr2cos8Mus#6+Z&rr<#trVm$"s8W)tr;Zcq!WW/rrrE&hrrE&krrE&prrE&qrri?$ +rr;uerrW3"rpg$grp]pfrqcWprql]urr;utrp]phrr;ufs8W)frrE&prrE&qrri?$rr;uRs8N#i +rs&K&s8N&urpp'hrn[VRrq-3prr<#ts8W)hrrE&Ss8N#irs&K&s8N&urpp'hrq-5@~> +rVm!!s8N#rrrW3"rr2p(b=K%bl14E8cZn,^#%9:Xo'_lKqofP\XLH@#da?LjdF-IjdaJ-BrmD/$ +daH9_J+N[>s8N#t"oeQ%rr;uss8W)ts8N!!s8N#rs8W'"s8N#qs8W)prr`9#s8N#t!<2`ms8N#t +#QFc&rr;utrqufrrr2otrql^!rr;utrr2lr$i^2*s8W)ts8N&urq69nrr;usrr<#ts8NN,s8W)u +rr;uss8N&tr;Zfrrr2utqu6j!s8N&trr)j)rr;uts8N#trr<#tp&>-ns8N#ss8W)urs\o,s8N&t +s8N#trr;uqs8W)trrE&qrrrE%rr;usrVllsrr3-#s8N&tqYpQprVllsrr;usrr3'!s8Mus#lal' +s8N&ts8Mio!ri6!p\tUNq +s8Mcm!ri6!rr39's8N&urr;utJ,~> +rVm!!s8N#rrrW3"rr2p(cVh6rl14E8d>6J2#'`u8o'`)Zqpl+n]#3%Og=b36g"H>Xs4RA)s4I\3 +dtNPKrr<#trr30$s8W)urr2rtrr2rsrW<-!rr)lsrW<-!rqufrrqcWsrr<#trr2utp](9mrr36& +s8N#trr;uqs8W)trrE&qrrrE%rr;usrVm9)s8N&urr2rss8W)krr`9#rr2oss8N&u%0$;,rr;ut +rr2rss8Mrrs8N#t!<2lq"oeQ$s8N#rrsSi+rr<#trr;uts8M]k"9/?"rr2rtrrUNqs8Mcm!ri6!rr3<(s8N&urr;utrqcWprr)isrr2rsrr2p!rr;urrs8W(rr;utrr;un +rrW3"rqHEorr;usrsA])rr<#ts8N&tqYpQprVllsrr;usrr3'!s8Mus#lal's8N&ts8Mio!ri6! +p\t +rVm!!s8N#rrrW3"rr2p(dpBQ.l14E8et1Qg#*jB&o'`>jqq2;&bL58-j5T+ZiqDF4iX"T$PE,;7 +s8W)trrrE%s8N&trr<#trr;us!rr9!rVuos!rr9!r;ZfrqYpZss8W)trrE&ms8W)trs/Q'rr2rs +s8Mrrs8N#t!<2lq"oeQ$s8N#rrsSi+rr<#trr;uts8M]k"9/?"rr2rtrr +"9/?#rr2rtrW)utrXSu-s8N&A8@?\+o'u:sG1g^:?SV*An!72Tb6,8T\'"Ws!7CYk!n#HDrmCqs +b'8F-rVulrrr;rrr;Z`prVm'#s8N#ts8Drrs8W)srr`9#rr;usqu6ZqrVuosrVllsq#C?mrr;us +rr;us!rr9!r;Zcqrr;usrr;usrr3*"s8N&trqHHlrr2rsrr<#urr)lrrr2rsrr2rsrW<-!rqufq +rr2rsrr2rsrr2p"rr;utrr2Zlrr2osrr2rts8Musrr2osrr2osrr*!!rr2iqrr2osrr2osrr2lr +s8E#urr2os"9/?"rr2rsrr2rsrr;uurr)lqrr2rsrr2rsrW3&ur;Z`ps8W,u!WW/us8N#rs8W&u +s8N#srr`9#rr2osrr2osrr2rt!<2rsrVlfrrr2osrr)rurqufprr<#urW3&urr;usrVuos!<<&t +rr3*"s8N#ss8N#ss8N#trrE&ss8Drrs8N#ss8Muus8MrrrVliss8E'!rr2otrdX~> +"9/?#rr2rtrW)utrXSu-s8N&E;Ram7o'u:uLY7=bG#7`"n!mqceHa()_pmAmg=c,P#2._adtNPK +rVulrrr;rrr;Z`prVm'#s8N#ts8Drrs8W)srr`9#rr;usqu6ZqrVuosrVllsq#C?mrr;usrr;us +!rr9!r;Zcqrr;usrr;usrr3*"s8N&trqHHlrr2rsrr<#urr)lrrr2rsrr2rsrW<-!rqufqrr2rs +rr2rsrr2p"rr;utrr2Zlrr2osrr2rts8Musrr2osrr2osrr*!!rr2iqrr2osrr2osrr2lrs8E#u +rr2os"9/?"rr2rsrr2rsrr;uurr)lqrr2rsrr2rsrW3&ur;Z`ps8W,u!WW/us8N#rs8W&us8N#s +rr`9#rr2osrr2osrr2rt!<2rsrVlfrrr2osrr)rurqufprr<#urW3&urr;usrVuos!<<&trr3*" +s8N#ss8N#ss8N#trrE&ss8Drrs8N#ss8Muus8MrrrVliss8E'!rr2otrdX~> +"9/?#rr2rtrW)utrXSu-s8N&I?F\5Do'u;%S_9V>PBQKen"XasfEBODdba!VirJ* +s8N3#s8W)trrE&prrrDF8@?\+rpg*9FP1C5>qtp@n!72Taof,R\'"Hn!7CSi"j2(>oDeghrs/Q' +s8N&ts8N#t!<2fo!ri6!rVlrus8N#t#QFc&s8W)urql]urr;utrr2rtrWW?$s8N&trVm$"s8N&t +rr3*"s8W)trrE&ts8W)rrri?$rr;uss8W'#s8N&trr3*"s8W)trrE&srrE&trs/Q'rr;uts8N#t +!<2rs!<2ut!<2ut"9/?#rr2otrr2rtrqud!rr;utrr2rtrWE3"s8N#t"9/?#rr2otrr)isrr2p& +rr;utrr<#trr2utrVllsrr2utrr3*"s8W)trrE&ts8W)rrri?$rr;uss8W'*s8N&urr2rss8W)r +rr`9#s8Mlp"9/?#rr2p'rr;uts8N&urqcWprqZQorqucurr<#trVm<*s8W)us8N#trr<#tr;Qlu +s8W)prr`9#s8N#t#lal's8W)us8Mlp!<2fo!<2or"9/?#rr)j*rr<#ts8W)ts8N&urqucurr<#t +qYpZss8W)trs8W(rr<#ts8W)prrE&orrE&rrr`9#s8Mus$3'u)rr<#trr;tJ~> +s8N3#s8W)trrE&prrrDJ;Ram7rpg*;L"V"]FAMJun!mqce-!\$_peV=s4I\3g"G*4g"P05qq;5& +Knf7"rr2p&rr<#ts8N&trr2utq>UNqs8Mus!ri6!rr36&s8N&urr;uprri?$rr;uss8W'%s8N&t +s8Mus"TJH#s8N#t"9/?#rr2otrr2rtrqud!rr;utrr2rtrWE3"s8N#t"9/?#rr2otrr)isrr2p& +rr;utrr<#trr2utrVllsrr2utrr3*"s8W)trrE&ts8W)rrri?$rr;uss8W'#s8N&trr3*"s8W)t +rrE&srrE&trs/Q'rr;uts8N#t!<2rs!<2ut!<2ut"9/?#rr2otrr2rtrqud!rr;utrr2rtrX/]) +s8W)ts8N&urqucurr<#tqYpZss8W)trs8W(rr<#ts8W)prrE&orrE&rrr`9#s8Mus%0$;,rr<#t +rr;uts8Mrr"9/?#rqcWsrr<#trr39's8N&urr<#tqYpQpq>UHor;Qlus8W)srs\o,s8N&urr2rs +s8W)rrr`9#s8Mlp"9/?#rr2p'rr;uts8N&urqcWprqZQorqucurr<#trVm3's8W)us8N#trdX~> +s8N3#s8W)trrE&prrrDN?F\5Drpg*@S(X;9O`pH'o`+pirs/Q' +s8N&ts8N#t!<2fo!ri6!rVlrus8N#t#QFc&s8W)urql]urr;utrr2rtrWW?$s8N&trVm$"s8N&t +rr3*"s8W)trrE&ts8W)rrri?$rr;uss8W'#s8N&trr3*"s8W)trrE&srrE&trs/Q'rr;uts8N#t +!<2rs!<2ut!<2ut"9/?#rr2otrr2rtrqud!rr;utrr2rtrWE3"s8N#t"9/?#rr2otrr)isrr2p& +rr;utrr<#trr2utrVllsrr2utrr3*"s8W)trrE&ts8W)rrri?$rr;uss8W'*s8N&urr2rss8W)r +rr`9#s8Mlp"9/?#rr2p'rr;uts8N&urqcWprqZQorqucurr<#trVm<*s8W)us8N#trr<#tr;Qlu +s8W)prr`9#s8N#t#lal's8W)us8Mlp!<2fo!<2or"9/?#rr)j*rr<#ts8W)ts8N&urqucurr<#t +qYpZss8W)trs8W(rr<#ts8W)prrE&orrE&rrr`9#s8Mus$3'u)rr<#trr;tJ~> +qu?]q!rr9"rr2lr$-PlIbj"]hn]u7/B*MNnnac.7>PlME\#[!\rR(Pk!7C\ls3^kp"3Pk +qu?]q!rr9"rr2lr$-uMYbj"]hn^3$CIg0phnac.=A,F^W`4Ek9rRq2("52D^g%j>)g!bY0o_\Xj +rr;usqZ$Tp!rr9"rr2iq!<2`mrr2Wks8E0$rr<#tq#:?nrr2utr;Qlus8N#qrr`9#rr2lrs8Mrr +s8Mus!<2rs!<2lq!<2ip!<2Kfs8Mrr"9/?"rqucurr;usrVuosr;ZfrrVllsrVllsqu6ZqqYpQp +nGiOfr;Qlus8N#qrr`9#rr2lrs8Mrrs8Mfn!<2lq!<2ip!<2Zks8N#t"oeQ%rr;uss8W)ts8W)u +s8W)ts8W)qs8W)trrE&rrrE&qrrE&prrE&ks8W)trrrE%s8N&trr<#trr<#ts8W,urr<#tqu?]q +rr2utr;Qcrqu6ZqqYpQpp&G'krr30$s8W)urr2rtrr2rtrr<#urr2rtrql`qrr2otrqueH~> +qu?]q!rr9"rr2lr#h*+ibj"]hn^c?])NT%2o'`>jf%8L(f@S +r;Zfr!WW/qrs&K&b=K%bl2L5ScZ%QI#$3MKo'_lJqoB&OX1-7"da?LjrmLbmqpH,)d`QfaoD\di +rr<#ts8N&trr;uss8N?'s8W)us8N#srrE&ss8N#mrr`9#s8N#t!<2ut!<2cns8Mrrr;I''rr<#t +s8N&urr2os#QFc'rr<#trr2p!rr;uss8W)rrrE&trs/Q'rr;uts8N#t!<2ors8N&us8N&u"TJH$ +rr;us$NL,*s8N&ts8W)trr36&s8W)us8N#srrW3"rr2rtrqucrrr2p&rr;utrr<#trr2utr;Zfr +s8W,us8N6$s8W)urr*9)rr<#ts8N&urr2os#QFc'rr<#trr2p!rr;urrrE&rrsSi+s8N&ts8W)u +s8N#t!ri6!rr<#t$31#)rr<#ts8W)srrE&trrW3"rr)j$rr<#ts8W)trrE&trri?$rr<#trqud( +rr<#ts8N&urr<#trr3'!s8N#ts8E?)rr;uts8N&urr)isrr2p!rr;urrs&K&s8N&urr2otrr2p# +rr;uts8N#qrsSi+s8N&ts8W)us8N#t!ri6!rr<#t$31#)rr<#ts8W)srrE&trrW3"rr)j$rr<#t +s8W)trrE&trri?$rr<#trr)kI~> +r;Zfr!WW/qrs&K&cVh6rl2L5Sd=U&"#&mB.o'`)YqpGbf]#3"Ng=b35rRq>+g=cDXs4J" +r;Zfr!WW/qrs&K&dpBQ.l2L5SesY3Y#**iro'`>jqpktrb0o/,j5U'u!oi8"r8Re:ro4XNj5,u[ +o`"mjrr<#ts8N&trr;uss8N?'s8W)us8N#srrE&ss8N#mrr`9#s8N#t!<2ut!<2cns8Mrrr;I'' +rr<#ts8N&urr2os#QFc'rr<#trr2p!rr;uss8W)rrrE&trs/Q'rr;uts8N#t!<2ors8N&us8N&u +"TJH$rr;us$NL,*s8N&ts8W)trr36&s8W)us8N#srrW3"rr2rtrqucrrr2p&rr;utrr<#trr2ut +r;Zfrs8W,us8N6$s8W)urr*9)rr<#ts8N&urr2os#QFc'rr<#trr2p!rr;urrrE&rrsSi+s8N&t +s8W)us8N#t!ri6!rr<#t$31#)rr<#ts8W)srrE&trrW3"rr)j$rr<#ts8W)trrE&trri?$rr<#t +rqud(rr<#ts8N&urr<#trr3'!s8N#ts8E?)rr;uts8N&urr)isrr2p!rr;urrs&K&s8N&urr2ot +rr2p#rr;uts8N#qrsSi+s8N&ts8W)us8N#t!ri6!rr<#t$31#)rr<#ts8W)srrE&trrW3"rr)j$ +rr<#ts8W)trrE&trri?$rr<#trr)kI~> +s8N)urr3'!s8W)tqu6uG8@?\+nac7sDV8D%<%mh5n!7/S`tYt_\'!.HdaHOkdF$CjdF-FjdF-GA +dKI^;J+N[=rs/Q's8N#ts8N#t"oeQ$rr;uns8W'!s8Mrr"TJH$rr;usr;Zfr!<<&trVulrq>UHo +rVm3's8N&urr2rsrr2otrr)isrql`nrr)j)rr;uts8N&ts8N&trr<#trr36&s8W)urr2rsrqud+ +rr;uts8N&ts8W)ts8N#srrE&srrE&qs8;lprsSi+rr<#ts8N&ts8N#ts8N#t#QFc'rr;uss8N#q +rso&.rr<#ts8N&urr2rsrr2otrr)isrql`nrql^!rr<#ts8Mlps8El8rr;uts8N&trr;uts8N&t +s8W)urr2rsrVuos!WW/ors&K&s8N&ts8;lnrrrE%s8N&tqZ$Tp)#sU8rr<#ts8N#trr<#ts8N&u +rr;uss8Muss8E'!rqQKtrr<#ts8N&rrql^!rr<#ts8Mlps8El8rr;uts8N&trr;uts8N&ts8W)u +rr2rsrVuos!WW/ors&K&s8N&ts8;lnrrW3"s*t~> +s8N)urr3'!s8W)tqu6uK;Ram7nac7uJD#5QDGKcnn!mnbd0RY$_pmDng=k6Zg&]m\rn7/%"Oi'Z +o`"ji#QFc'rr2rtrr2p$rr;uss8Mios8E'!rqud!rr<#ts8N#qs8W&us8N#rs8N#nrrE&srsA]) +rr<#trr;usrr2utrVllsqu?TnrVm9)s8N&urr;utrr;uss8W)trs/Q's8N&trr;usr;R9+s8N&u +rr;uts8N#trr2os!<2rs!<2lqr;QZp$i^2*s8W)urr;utrr2rtrr2p&rr<#ts8N#trr2iq%fZM- +s8W)urr<#trr;usrr2utrVllsqu?Tnqu6j!s8W)urqcZprYY\7s8N&urr;uss8N&urr;uts8N&t +rr;urs8W'!s8Mfn#6+Z&rr;utr;QTn"oeQ%rr;uos8W'8s8N&ts8W)urr2rss8W)urr<#ts8N#t +rr)lsrW3&uq#:Qts8W)urr;oqqu6j!s8W)urqcZprYY\7s8N&urr;uss8N&urr;uts8N&trr;ur +s8W'!s8Mfn#6+Z&rr;utr;QTn!ri6"J,~> +s8N)urr3'!s8W)tqu6uO?F\5Dnac8%R+[c0N-4^^n"XaseH=(>dbar_!93q:!94"<$KC+*ioB(U +PE,;7rr36&s8W)ts8W)trrrE%rr2rsq>^Ko!WW/srri?$s8N&trqufrrW)utrr)lrrqZQorr)j' +rr;uts8N#trr2os!<2rs!<2lqr;QZp$i^2*s8W)urr;utrr2rtrr2p&rr<#ts8N#trr2iq%fZM- +s8W)urr<#trr;usrr2utrVllsqu?TnrVm9)s8N&urr;utrr;uss8W)trs/Q's8N&trr;usr;R9+ +s8N&urr;uts8N#trr2os!<2rs!<2lqr;QTn"oeQ%rr;uos8W'8s8N&ts8W)urr2rss8W)urr<#t +s8N#trr)lsrW3&uq#:Qts8W)urr;oqqu6j!s8W)urqcZprYY\7s8N&urr;uss8N&urr;uts8N&t +rr;urs8W'!s8Mfn#6+Z&rr;utr;QTn"oeQ%rr;uos8W'8s8N&ts8W)urr2rss8W)urr<#ts8N#t +rr)lsrW3&uq#:Qts8W)urr;oqqu6`ss8RT~> +!<2fo!<2fo"Ns?Dbj#,t!RGW9>m=1[o()78>5Q;A[B$dZr6b\pdaHP=dL=OOd`QfaoDegirr;ur +rrE&srrW3"rr2otrql]qrql]trr<#tr;QcrqYpQpqZ$Tpr;Zfr"TSK$s8N#trr2Qi!<2rs!<2rs +!<2lqs8Moq!<2rs!<2ut!ri6!q#:Eps8W)trr<#ts8W)to`"pjrVllsrVllsqu?]qqu6ZqrVlls +rr3'!s8Mfn!ri6"rr2oss8N&urr2Qi!<2rs!<2rs!<2Ti!<2utrr2rt!<2ut!<2ip!<2uts8N#t +s8E0$rr2rso`"pjrr<#trVllsoD\girr;uss8N)urr2utqYpQprr<#trr<#t"TSK#s8MZj!<2ut +s8Mus!<2Ti!<2utrr2rt!<2ut!<2ip!<2uts8N#ts8E0$rr2rso`"pjrr<#trVllsp&BO~> +!<2fo!<2fo"OBuTbj#,t!RZDMG6VkYo()7>A,FUT_RdY7rn7A*o\0;t$.FT_o`+pjrr;urrrE&s +rrW3"rr2otrql]qrql]trr<#tr;QcrqYpQpqZ$Tpr;Zfr"TSK$s8N#trr2Qi!<2rs!<2rs!<2lq +s8Moq!<2rs!<2ut!ri6!q#:Eps8W)trr<#ts8W)to`"pjrVllsrVllsqu?]qqu6ZqrVllsrr3'! +s8Mfn!ri6"rr2oss8N&urr2Qi!<2rs!<2rs!<2Ti!<2utrr2rt!<2ut!<2ip!<2uts8N#ts8E0$ +rr2rso`"pjrr<#trVllsoD\girr;uss8N)urr2utqYpQprr<#trr<#t"TSK#s8MZj!<2uts8Mus +!<2Ti!<2utrr2rt!<2ut!<2ip!<2uts8N#ts8E0$rr2rso`"pjrr<#trVllsp&BO~> +!<2fo!<2fo"Og\ebj#,t!S3UjPQm"eo()7ED>Vfbc-+Plro4" +$i^2*s8N&ts8W)urr2p+rr<#A8@?\+nac4rCY;kq:G25.n!7/S`!3TL\'!.HdJ_JpdF-JAdJ_K" +dF-0^J+N^?rr2fp!ri6!qu6Zqr;Zfrm/I(brVllsrVllsrr3'!s8Mus!<2rs!<2ut!<2fo!<2lq +!<2or"9/?#rosI_rqcWprpp'hrqZQorql]qrqucurr<#tl2Ue_qYpQpo)A^hq>UHoqu6Zqr;Qlu +s8W)qrrE&prrE&rrrE&ts8W'!s8Mrr!<2ut!<2`m!<2Zk!<2ut!<2rs!<2ut!<2ut"9/?#rqcWp +rqucrrr2rtrW3&ur;Qcrrr2utp\t6mp&>$krr2utrVllsrr2utrr3*"s8W)prrE&rrrE&ts8W'! +s8Mrr!<2ut!<2`m!<2Zk!<2ut!<2rs!<2ut!<2ut"9/?#rqueH~> +$i^2*s8N&ts8W)urr2p+rr<#E;Ram7nac4tIG&]HBhn6hn!mnbcND"p_pn\>s4R>(s4IG,g&9V2 +g"Oo/L@kNGrr2fp!ri6!qu6Zqr;Zfrm/I(brVllsrVllsrr3'!s8Mus!<2rs!<2ut!<2fo!<2lq +!<2or"9/?#rosI_rqcWprpp'hrqZQorql]qrqucurr<#tl2Ue_qYpQpo)A^hq>UHoqu6Zqr;Qlu +s8W)qrrE&prrE&rrrE&ts8W'!s8Mrr!<2ut!<2`m!<2Zk!<2ut!<2rs!<2ut!<2ut"9/?#rqcWp +rqucrrr2rtrW3&ur;Qcrrr2utp\t6mp&>$krr2utrVllsrr2utrr3*"s8W)prrE&rrrE&ts8W'! +s8Mrr!<2ut!<2`m!<2Zk!<2ut!<2rs!<2ut!<2ut"9/?#rqueH~> +$i^2*s8N&ts8W)urr2p+rr<#I?F\5Dnac5$Q._<)M0/=Yn"Xasdg=7@dba$Eio9"Xqr@_9rSn4D +j5,u[o`+sjrql]srr;uprrE&rs8W)brrE&srrE&srrE&trrW3"rr)isrr)isrr2otrqZQorql]q +rqucurr<#tl2Ue_qYpQpo)A^hq>UHoqu6Zqr;Qlus8W)_s8W)prrE&hrrE&orrE&qrrE&rrr`9# +s8Moq!<2ip!<2or!<2uts8E'!rqucrrr2otrqHEmrq69krr2otrr)isrr2otrr2p"rr<#tqYpQp +r;Qcrrr<#t!WW/srrE&trrE&mrrE&krrE&trrE&srrE&trrE&trr`9#s8Mlp!<2or!<2uts8E'! +rqucrrr2otrqHEmrq69krr2otrr)isrr2otrr2p"rr<#tr;V9~> +r;Qcrq#:d%s8L24[ERn*o((+@fiA;M/b8K$QUHoqYpQpr;Zcqq#:?nrVlrus8N#t!WN,urqufrrqZQorqcZprr;uu +rr2otrqQKurr<#ts8W)tq#CBnr;Qcrqu?Zpr;Zfrq>UHoqZ$Tps8N)urr2utq#:Tus8W)us8N#m +s8W)rrrE&qs8N#qs8W)orrE&ps8W)urri?$s8N#gs8Muus8Moqs8N#t!<2ip!<2fo"9/?#rql]q +rql`prql]qrpp*grW3&uqu?]qrr2utqYpQpq>UQrs8W)qrrE&qs8N#prrE&hs8Muus8Moqs8N#t +!<2ip!<2fo"9/?#rql]qrql`prql]qrr)kI~> +r;Qcrq#:d%s8L>B\'4+,o((1Tfl..-:%IlDS7DHA+i(Y+e(WO/g"P-5g"P-5g=b36g"P05g=(b1 +o`+sjrr;uhrrW3"rr)iurr;unrrE&prrE&rs8N#mrrE&srrW3"rr2ourr;usr;Zfrq>UHoqZ$Tp +s8N)urr2utq#:Tus8W)us8N#ms8W)rrrE&qs8N#qs8W)orrE&ps8W)urrE&trrE&nrs/Q's8N&u +rr2]ms8Mrr!<2lqrr2iqs8Mio!<2ips8N&u"TJH$rr2Kgrr)rurql`qrr2otrqcWprqZQrrr<#t +qu6Zqqu?Zpqu6Zqo)J^g!WW/rs8W)trrE&prrE&orr`9#s8Moq!<2lqrr2fp!<2Qhrr)rurql`q +rr2otrqcWprqZQrrr<#tqu6Zqqu?Zpqu6ZqrVqB~> +r;Qcrq#:d%s8LJR\BO4-o((@rfoH>mFRo"kUM]nV$d6]@hW*YUj5T(Yir%j9iW/$UHoqYpQpr;Zcqq#:?nrVlrus8N#t!WN,urqufrrqZQorqcZprr;uu +rr2otrqQKurr<#ts8W)tq#CBnr;Qcrqu?Zpr;Zfrq>UHoqZ$Tps8N)urr2utq#:Tus8W)us8N#m +s8W)rrrE&qs8N#qs8W)orrE&ps8W)urri?$s8N#gs8Muus8Moqs8N#t!<2ip!<2fo"9/?#rql]q +rql`prql]qrpp*grW3&uqu?]qrr2utqYpQpq>UQrs8W)qrrE&qs8N#prrE&hs8Muus8Moqs8N#t +!<2ip!<2fo"9/?#rql]qrql`prql]qrr)kI~> +"TSK$s8N#t"oeQ$s8N#rrs?k>[ERn*o((+>fi//I/b8H#Q +"TSK$s8N#t"oeQ$s8N#rrs@"L\'4+,o((1Rfkq"(9_.`BS7;B?$,F*heCiR0g"P-XgAfk'g'HBc +dtNPKs8N#srrE&ts8)`ns8W''s8N#trr2rsrVlrus8N#ts8E0$rr<#trr33%s8N#ts8Mfn'E8%2 +s8W)urr;uss8W)urr<#ts8Dp$s8N&urr<#trr +"TSK$s8N#t"oeQ$s8N#rrs@.\\BO4-o((@qfo62iFRntjUM]nU"O"s9hW"Lo!93b5!94"<#2YQ( +o`+pirr2utrr;iorVuos#QOf&s8N#trr)iurr;uss8W'$s8N&urr2p%rr;uss8W)nrtGD3rr<#t +s8N&trr<#ts8N&urr;rr#64]&s8N&urr2rt"TJH#rr;uss8N6$s8W)trVm$"s8W)tr;Qlus8W)t +rri?$s8N&srr2rtrr +r;Zfrs8N)uq>UT@8@?\+rpg*9A_Bla7P43$n!7,R^^IHK\'!.HdF-FjdaA'B!7Ceos3V&!dF$*] +J+NI8!<2]l!<2 +r;Zfrs8N)uq>UTD;Ram7rpg*;GhHj:@SH@_n!mkabRqY$_pmDng"P05g"P-5g"G*4rS%;)"4MsY +o_AFdrq??lrp0Rdrr<#tq#:?nrVllsrr3*"s8W)srrE&qrs&K&s8N#trr2rtrr2rtrr)isrr)is +rr)isrqHHmrr)j"rr<#trr2rsrW3&uq>UHor;R!#s8W)ts8N#ts8N#ts8Mus!<2rs!<2rs!<2`m +s8Mus"TJH$rr2osrr)rurqZQorqud#rr<#trr;uss8W)ts8W)srrE&srrE&arrE&trrW3"s8N#q +rrE&ns8W)us8N#qrrE&trr`9#s8Mlp!ri6!mJd1crr3'!s8W)tr;Qcrq#CBns8W)tr;Qcrrr3*" +s8W)prrW3"rpB^crr2p!rr<#trqucrrqQNnrr<#trqucrrr2p"rr<#tqYpWrs8MoqJ,~> +r;Zfrs8N)uq>UTH?F\5Drpg*@OkGWtK6-VRn"XaHr6bPe!n,rcro*q +qYp`us8N&urr2p*rr:/4[ERn*o((+:fhDZ=/FrB#Qas8N&trVlrus8M]k!<2ut!<2ut"9/?#rr2otrqud$rr;utrr2rsr;Qlus8N#srrW3"rr2p# +rr;utrr2otrr)isrquctrr;uprrE&mrrE&grrE&rrrW3"rqufrrWW?$rr<#tr;QcrrVllsr;Qit +s8Moq!<2`m!<2Ng!<2or!ri6!r;Zfr"onT$s8W)rrrE&srrE&rrrW3"rql]qrq69krq$-irr2ot +rr2otrr)j!rr<#trVlrus8Mio!<2ip!<2rs"9/?"rqcWprr2otrq$-irr2otrr2otrr)j!rr<#t +rVlrus8Mio!<2ip!<2rs"9/?"rqcWprr2otrq$-irr2otrr2otrr)j!rr<#trVlrus8Mio!<2ip +!<2rs"9/?"rqcWprr2otrr2qJ~> +qYp`us8N&urr2p*rr:;B\'4+,o((1PfkC_"9_.cCS79[brQG_c\\lnLg=k66g=b35g&9Y(g&B\2 +dtNPKrr;utrr)iurr;ujrrE&trrE&trr`9#s8N#t!<2or#QFc&s8N#trqucurr;usrr3'!s8N#t +"TJH#s8N#t!<2rs!<2or!ri6!qu6Zqp\t6mnc&Ugr;Qits8Mrrs8E3%rr2rtrqucrrr)isrquct +rr;uprrE&mrrE&grrE&rrrW3"rqufrrWW?$rr<#tr;QcrrVllsr;Qits8Moq!<2Zk!<2Ti!<2ut +!<2ut!<2rs"9/?#rr)iurr;unrrE&prrE&srr`9#rr2co!<2ut!<2Ti!<2ut!<2ut!<2rs"9/?# +rr)iurr;unrrE&prrE&srr`9#rr2co!<2ut!<2Ti!<2ut!<2ut!<2rs"9/?#rr)iurr;unrrE&p +rrE&srr`9#rr2co!<2ut!<2utJ,~> +qYp`us8N&urr2p*rr:GR\BO4-o((@nfnfoaF7SnjUM]nTs2kAjhYuO8ir.p;ir.m=ioB%tis=M* +NqE>Nrr;urrrW3"rq69krr2otrr2p"rr<#trr2utr;R$$s8N&trr;uqrr`9#rr2os!ri6!rr3-# +s8N&trr2utrVllsr;Qits8Moq!<2`m!<2Ng!<2or!ri6!r;Zfr"onT$s8W)rrrE&srrE&rrrW3" +rql]qrqHEmrpg!grquctrr;uqs8W'%s8N#ts8Mrr!<2rs!<2or!ri6!qu6Zqp&>$koD\girr2ut +rr2utrVm!!s8W)srrW3"rqZQorqcWprr)j!rr;usqYpQprr2utoD\girr2utrr2utrVm!!s8W)s +rrW3"rqZQorqcWprr)j!rr;usqYpQprr2utoD\girr2utrr2utrVm!!s8W)srrW3"rqZQorqcWp +rr)j!rr;usqYpQprr2utrr7K~> +rr<#tqu7''s8N&urr:/4[ERn7nc@'FfguB5/+W6!Q +rr<#tqu7''s8N&urr:;B\'4+9nc@-\fk(Fp9_.`BS7;B<"2DCae+_Prg&9V4g"P-4g=(b1o`"mi +r;R!#s8N#ts8N#ts8E#uqu6Tp!<2ut"9/?#rql]qrr)isrqcWprqHF!rr;uts8N#trr2osrr2os +!ri6!rVm!!s8N&trWE3"s8W)tqu7''s8W)urr2rss8N#srri?$s8N#mrri?$s8N&rrr2rsrr2p! +rr;urrr`9#rr;us"98B#s8N#prsSi+s8N&trr;utrr2os"TJH$rr2]m"TJH$rr;oqrr;usrr3'! +s8Mus"9/?"s8N!"s8N&urr2fp!ri6"rVcs"rr2rsqu?]qqu?]q"onT%rr2rrrr2p'rr;uss8W)u +rqucsrr;us!<<&ts8W,us8N)urVlrus8W&s"TSK#s8Moqs8Moqs8E3%rr;uss8Drrrs8W(rr2rt +rr;uqrrN-!rr)otrr2rts8N&u!<2rs!ri6"rVcs"rr2rsqu?]qqu?]q"onT%rr2rrrr2p'rr;us +s8W)urqucsrr;us!<<&ts8W,us8N)urVlots*t~> +rr<#tqu7''s8N&urr:GR\BO4:nc@=&fnTc^F7SkiUM]nS"Neg7hW"Lo!94"PE,;7 +s8Mrr#6+Z%rr<#trr<#t!<;rqrr2utrr3*"s8W)qrrE&srrE&prrE&mrsA])rr<#trr;usrr;us +rr3'!s8Mus"9/?"s8N!"s8N&urr2fp$i^2+rr;uss8N&trr2p#rr<#trqQKrrr<#ts8;lqs8N#s +rrW3"rr)j!rr;utrr*$"rr<#trql^'rr<#ts8N#trr;usrr3-#s8W)tq#:Krs8W)ur;Q]qrr2os +!ri6!rVm!!s8N&trWE3"s8W)tqu6`ss8W&s"TSK#s8Moqs8Moqs8E3%rr;uss8Drrrs8W(rr2rt +rr;uqrrN-!rr)otrr2rts8N&u!<2rs!ri6"rVcs"rr2rsqu?]qqu?]q"onT%rr2rrrr2p'rr;us +s8W)urqucsrr;us!<<&ts8W,us8N)urVlrus8W&s"TSK#s8Moqs8Moqs8E3%rr;uss8Drrrs8W( +rr2rtrr;uqrrN-!rr)otrr2rts8N&u!<2rs!WN+L~> +r;Zfr!<<&t&HDb/s8W)ub=K%bl14E8cX5?q#!OR.o'_lIqn3*8X1-7NdK@nFdaA'B!7Cbn!R]?p +d0%O9J+N[=rVuosrVm!!s8W)trrE&trs&K&s8N&urr)lsrWW?$rr<#trr3*"s8W)srr`9#s8N#t +!<2rs"9/?"rr2rqrW3&urr2utrVm$"s8N&tqu6Zqr;Qs"s8W)urr2otrr)lrrW3&urVllsrr;us +'EA(3rr2rss8N&ts8W)ts8N#trr2otrr)j"rr;utrql]qrqud"rr<#ts8N#t!<2rsrr)rurr)is +rr2rsrY,>2s8N#trr;utrr<#trr;uss8N#t!<2rs"TJH#s8Moq!<2or$3'u)rr;utrr;usrrE&s +rrE&ss8W)srsA])rr;uss8W)trVuos"TSK#s8N#t!<2ors8E'!rqZQorr2p(rr<#trr<#ts8N#t +!<2rs!<2rss8Mus$3'u(s8N#ts8N#rs8W'$s8N#trr2otrqufrrW3&uq>UHorr3<(s8W)ts8W)u +rr2otrr)isrr)lsrr)j'rr;utrr2rtrr2lrs8E0$rr2rsrr2utr;Zfr!WW/prrE&trsJc*s8N#t +s8N&ts*t~> +r;Zfr!<<&t&HDb/s8W)ucVh6rl14E8d2 +s8N#trr;utrr<#trr;uss8N#t!<2rs"TJH#s8Moq!<2or"oeQ%rr;usrrE&ss8Muus8Mus!<2ut +rr*T2rr;uss8N&ts8N&urr2rsrr;usrrE&srri?$rr;uprrE&rrsA])s8N&ts8N&trr2utrVlls +rVuosrVm3's8N&trr<#trr)lsrWN9#rr;usrrE&rs8W'!s8Mio!<2ut$3'u)rr2rtrr;usrrE&s +rrE&ss8W)srsA])rr;uss8W)trVuos"TSK#s8N#t!<2ors8E'!rqZQorr2p(rr<#trr<#ts8N#t +!<2rs!<2rss8Mus$3'u(s8N#ts8N#rs8W'$s8N#trr2otrqufrrW3&uq>UHorr3?)s8W)ts8W)u +rr7K~> +r;Zfr!<<&t&HDb/s8W)udpBQ.l14E8erJF;#(CXao'`>iqp#;cb0o/Bj8\-8is+N'inflZo`"jg +s8W)srr`9#s8N#t!<2ut#6+Z&rr<#trVuos"onT$s8W)trr`9#s8Mus"9/?#rr2otrr)j!rr;us +rr;oq!WW/urrE&srri?$rr;uprrE&rrrrE%s8N&trr2utrVulr!WW/trrE&ts8N!2s8N&trr;ut +rr;uts8N#trr2rsrr2utrVm$"s8N&tqu6Zqr;Qs"s8W)urr2otrr)lrrW3&urVllsrr;us'EA(3 +rr2rss8N&ts8W)ts8N#trr2otrr)j"rr;utrql]qrqud&rr<#ts8N&ts8N#t!<2rs!<2rss8Mus +$3'u(s8N#ts8N#rs8W'$s8N#trr2otrqufrrW3&uq>UHorr3<(s8W)ts8W)urr2otrr)isrr)ls +rr)j'rr;utrr2rtrr2lrs8E0$rr2rsrr2utr;Zfr!WW/prrE&trsA])s8N#ts8N&trr2utrVlls +rVuosrVm3's8N&trr<#trr)lsrWN9#rr;usrrE&rs8W'!s8Mio!<2ut$NC)*rr2rtrr;utJ,~> +!rr9!rVuosrr3N.s8W)url[j?bj"Zgo$:Xq6j>b'nac.7=o5i;YH,.Tda?LkdJMAkd/qbDdJhQ' +b'8F-s8W)urr2rtrr2iq"9/?#rr2p)rr<#trr;uts8N&trY5D3rr<#ts8W)urr;uts8N&urr;ur +rrW3"rr2rtrW3&ur;Zfr"98B#s8Muus8Mrrs8Moq!<2or"TJH$rr2iqs8EW1rr;utrr;uss8W)u +rr;utrr2p%rr<#trr;usrs/Q'rr2rss8W)t!WW/ss8W)qrrE&rrri?$s8N#qs8W'1s8N&ts8N&t +rr<#ts8N&ts8N#t#6+Z&rr2rsrr36&s8N#trr<#trW3&ur;Zfrqu6Zqr;R*&s8W)us8N#ts8N#r +rs\o,rr2rtrr;uts8N#ss8N#ts8W)ts8W'%s8N&ts8W)trr;us!rr9!rr<#tqZ$Qorr<#ts8W)t +rVm<*s8N#ts8N&ts8W)trr;uss8W,urr<#t"onT%rr<#trr2rsrW<-!rr2rtrqcZorr2rtrr<#t +rr)j*rr;uss8W)urr<#trr2rsrr<#urr2rtrWW?$s8N&urr2osrr*!!rr2oss8Mlprr2oss8N&u +J,~> +!rr9!rVuosrr3N.s8W)urm+KObj"Zgo$ML2@0Tk-nac.=@f+4L]t)&0g%a8;g"P-5g=b35g=k#0 +L@kNGrr;uss8W)tr;Qlus8W)trsJc*s8N#trr<#ts8N!3s8N#ts8N&urr;utrr<#ts8W)urr)iu +rr;uss8W'!s8Mrrs8E-#rr<#trW3&ur;Zfrqu6Zqr;Qp!s8W)tr;Zfr&c_k1rr;utrr2rtrr;ut +rr;usrs&K&s8N#trr2p&rr;uss8N&urr)rurqufrrql]qrqud!rr<#trqufrrXo20s8N&ts8N#t +s8N&ts8N&trr33%s8W)ts8N#t#QFc&rr;uts8Muus8Mrrs8Moq!<2or$3'u)rr<#trr<#trr)j* +rr;uss8W)urr<#trr2rsrr<#urr2rtrWW?$s8N&urr2osrr*!!rr2oss8Mlprr2oss8N&urr2lr% +0$;+rr<#ts8N&urr2osrr2rts8N#ts8E3%rr;uts8N#ss8N!!s8N#ss8W)ps8N#ss8W)us8N#rr +s\o,rr2rtrr;uts8N#ss8N#ts8W)ts8W'%s8N&ts8W)trr;us!rr9!rr<#tqZ$Qorr<#ts8RT~> +!rr9!rVuosrr3N.s8W)urmP2`bj"Zgo%&cQK*HaEnac.DD#;HZaNDrfpuDD6!9=( +s8W,urr36&s8W)urr;usrs?k>[ERn*nab"1fg#a%.e<,uQ^Kos8N3#s8W)srsA])s8N&trr<#trVllsrVm?+s8W)urr<#ts8N#trqcWsrr<#tqZ$Tp +!WW/ps8W)urr`9#s8Mus$3'u)rr;uss8W)srrE&srseu-s8N&ts8W)urr2rsqYpZss8W)ps8W'! +s8Mios8N&u!WN+L~> +s8W,urr36&s8W)urr;usrs@"L\'4+,nab(Hfj4ka9(MN@S7;B9%DBUTss8N&t +r;Zfrp&>-ns8W)qrr`9#s8Mlp#lal'rr;uts8Mus#lal'rr;uss8Mrr!<2lq#6+Z&rr<#to`#$m +s8W)qrr`9#s8Mlp#lal'rr;uts8Mus#lal'rr;uss8Mrr!<2lq#6+Z&rr<#to`#$ms8W)qrr`9# +s8Mlp#lal's8W)us8Mus$3'u)rr;uss8W)srrE&srseu-s8N&ts8W)urr2rsqYpZss8W)ps8W'! +s8Mios8N&u"9/?#rr)j'rr<#ts8N#ts8Mus!<2rs%K?D-rr;uts8N&trr;uorr`9#s8Mlps8E'! +rqZTorr^Kos8N-!s*t~> +s8W,urr36&s8W)urr;usrs@.\\BO4-nab7hfms?SEq8bhUMThO"3AX5hYlL6iWA0"ir8! +s8N6$s8N&tqZ$Nn"Ns?Dbj#,t!RFp%4U*eno()78=o5c4XfJqRmEuQgG^o>brr2rss8W)urr;us +q#:Hqs8W)os8W)rrrE&srri?$s8N&trr)isrr2rtrr2otrr)isrr)j!rr<#trr3*"s8W)srr`9# +s8Mus!<2cn&cVh1rr<#ts8N&urr<#ts8N#ns8W)ts8W)srrE&srr`9#s8N#t"9/?#rr)j!rr<#t +rVllsq#:s*s8W)us8N&ts8W)us8N&trqZTorr2rtrr)isrr)j!rr<#trr3*"s8W)srr`9#s8Mus +!<2cn'E8%3rr<#ts8W)urr;uts8N#trql`qrr2p(rr<#ts8W)us8N#t"oeQ$s8W)ts8W)urrrE% +s8N&tq#;-/s8W)us8N&urr<#ts8N&ts8W)ts8Moqs8N#t$3'u)rr<#ts8W)trrrE%rr<#trr<#t +s8N9%s8W)urqQL/rr<#ts8W)us8N&urr;utrr<#trr;ups8W)trsA])s8N&urr<#trr30$s8N&u +rr2rtrr +s8N6$s8N&tqZ$Nn"OBuTbj#,t!RYf<=p@quo()7>@f+1J]Xbr0rRqJ/g=k66g=c8T&CZ>fo`+pi +s8N&urr;utrr2]m"9/?#rqZTorqucrrr)j"rr<#ts8N#rrrE&ts8W)trrE&srrE&srr`9#s8N#t +"9/?#rr)j!rr<#trVllsq#:s*s8W)us8N&ts8W)us8N&trqZTorr2rtrr)isrr)j!rr<#trr3*" +s8W)srr`9#s8Mus!<2cn&cVh1rr<#ts8N&urr<#ts8N#ns8W)ts8W)srrE&srr`9#s8N#t"9/?# +rr)j!rr<#trVllsq#;$,s8W)us8N&urr;utrr<#trr;ups8W)trsA])s8N&urr<#trr30$s8N&u +rr2rtrr +s8N6$s8N&tqZ$Nn"Og\ebj#,t!S3.]Ig14>o()7ED#MTXb6,f-dbar_!oi8"qr@\8rSnIGPE,;8 +rr2rss8W)urr;usq#:Hqs8W)os8W)rrrE&srri?$s8N&trr)isrr2rtrr2otrr)isrr)j!rr<#t +rr3*"s8W)srr`9#s8Mus!<2cn&cVh1rr<#ts8N&urr<#ts8N#ns8W)ts8W)srrE&srr`9#s8N#t +"9/?#rr)j!rr<#trVllsq#:s*s8W)us8N&ts8W)us8N&trqZTorr2rtrr)isrr)j!rr<#trr3*" +s8W)srr`9#s8Mus!<2cn'E8%3rr<#ts8W)urr;uts8N#trql`qrr2p(rr<#ts8W)us8N#t"oeQ$ +s8W)ts8W)urrrE%s8N&tq#;-/s8W)us8N&urr<#ts8N&ts8W)ts8Moqs8N#t$3'u)rr<#ts8W)t +rrrE%rr<#trr<#ts8N9%s8W)urqQL/rr<#ts8W)us8N&urr;utrr<#trr;ups8W)trsA])s8N&u +rr<#trr30$s8N&urr2rtrr +!<2rs#6+Z%rr<#tqu6fB8@?\+rp^$8=4oS<1F_kan!7)Q\-&k6\'"]u!7Ceos3^Pg"Nkt=oD\Ud +rr)rurr)lsrW3&urVuos"TSK$rr2osrr*$"rr<#prW3&urVuos!WW/rrrE&nrs\o,rr<#ts8W)t +s8W)krs&K&s8N&trr2rtrqucrrr2p"rr<#tqu6cts8W)trrE&jrsJc*s8N&urr2rtrq69qrr<#t +s8N#ss8W)rrrE&trr`9#s8Moq"9/?#rr2otrq-3trr<#ts8W)ts8W)krs&K&s8N&trr2rtrqucr +rqucrrqHEmrr2otrqucrrqud!rr;utrr2rtrr2p!rr;uors8W(rr<#ts8N#rrrE&rrrE&rrrE&m +rrE&trrE&rrrE&rrri?$rr;uss8W)trrW3"rqcX#rr;uts8N&trr)isrqucrrqucrrqHEmrr2ot +rqucrrqud!rr;utrr2rtrr2p!rr;uors8W(rr<#ts8N#rrrE&ss*t~> +!<2rs#6+Z%rr<#tqu6fF;Ram7rp^$:CtVnp;G$EKn!mka`<3`__pn\>r7V#%!878'"Oi'Zo`"^e +rr)rurr)lsrW3&urVuos"TSK$rr2osrr*$"rr<#prW3&urVuos!WW/rrrE&nrs\o,rr<#ts8W)t +s8W)krs&K&s8N&trr2rtrqucrrr2p"rr<#tqu6cts8W)trrE&jrsJc*s8N&urr2rtrq69qrr<#t +s8N#ss8W)rrrE&trr`9#s8Moq"9/?#rr2otrq-3trr<#ts8W)ts8W)krs&K&s8N&trr2rtrqucr +rqucrrqHEmrr2otrqucrrqud!rr;utrr2rtrr2p!rr;uors8W(rr<#ts8N#rrrE&rrrE&rrrE&m +rrE&trrE&rrrE&rrri?$rr;uss8W)trrW3"rqcX#rr;uts8N&trr)isrqucrrqucrrqHEmrr2ot +rqucrrqud!rr;utrr2rtrr2p!rr;uors8W(rr<#ts8N#rrrE&ss*t~> +!<2rs#6+Z%rr<#tqu6fJ?F\5Drp^$?M:m:]G]N?En"X^raof],dbau`s5F+?io9^m#3+\"PE,;7 +qZ$Qo!WW/ts8W'!s8Muss8E0$rr;usrr;us"98B#s8)]qs8Muss8E'!rql]qrqQL%rr;uts8N&u +rr2rtrq69qrr<#ts8N#ss8W)rrrE&trr`9#s8Moq"9/?#rr2otrq-3trr<#ts8W)ts8W)krs&K& +s8N&trr2rtrqucrrr2p"rr<#tqu6cts8W)trrE&jrsJc*s8N&urr2rtrq69qrr<#ts8N#ss8W)r +rrE&rrrE&mrrE&trrE&rrrE&rrri?$rr;uss8W)trrW3"rqcX#rr;uts8N&trr)isrqucrrqucr +rqHEmrr2otrqucrrqud!rr;utrr2rtrr2p!rr;uors8W(rr<#ts8N#rrrE&rrrE&rrrE&mrrE&t +rrE&rrrE&rrri?$rr;uss8W)trrW3"rqcX#rr;uts8N&trr)isrr)kI~> +!<2ut!<2rs!<2ut%fZM-s8U85[ERn*o't%,ff'*h..ZrtQ<=$n"0AQ4b5TfjdF-G@dK@nFdaA'B +rm:kkG^o>ar;Qits8N#trr2oss8Mlp!<2uts8N#ts8N#ts8Mus$3'u)rr;uts8N#rrrE&ps8N#t +rrE&rrr`9#s8Muss8N&urr2co!<2Wjs8N&u!ri6!rVm$"s8W)trr2utp\t?ps8W)rrr`9#s8Mus +s8N&urr2co!<2Wjs8N&u!ri6!rVm$"s8W)trr2utp\t?ps8W)rrr`9#s8Muss8N&urr2co!<2cn +!<2uts8Mrr!<2ut!<2lqs8Mcm!ri6"rVl`p!<2or!ri6"rr2os!WN,urql]trr<#trr<#tr;Qcr +rr2utqu?]qp\t +!<2ut!<2rs!<2ut%fZM-s8UDC\'4+,o't+CfiA;R8b2H@S7;B7"1u+]eGS##g&9V+g"P-XgA]b. +dtNPKrquctrr;uss8N#ss8W)prrE&ts8W)ts8W)ts8W)srsA])s8N&ts8W)trVllsqZ$Qos8N)u +r;Qlus8W)ss8W)us8N#orrE&js8W)urrW3"rr)j"rr<#trr2otrqHEprr<#tr;Qlus8W)ss8W)u +s8N#orrE&js8W)urrW3"rr)j"rr<#trr2otrqHEprr<#tr;Qlus8W)ss8W)us8N#orrE&nrrE&t +s8W)rrrE&trrE&qs8W)mrrW3"s8DrprrE&rrrW3"s8N#srrN-!rr2fp"9/?#rr2rtrqucrrr2ot +rql`qrqHEorr<#srqucrrquctrr<#trr2ourr;usqu6cts8W)ts8W)rrrE&trrE&qs8W)mrrW3" +s8DrprrE&rrrW3"s8N#srrN-!rr2fp"9/?#rr2qJ~> +!<2ut!<2rs!<2ut%fZM-s8UPS\BO4-o't:dfm +!WW/rrri?$s8N#rrsJbK8@?\+naZ1r<805/1^5T_nac.7=SoN2X/`YOdF-G@df7]:da?LkdF-Fj +dF-FbG^o>brr2rtrr<#ts8W)ts8W)trVllsrr3'!s8W)trr2utrVllsrr;usmJd1crr<#trr;us +r;Qcrqu6cts8W)trs8W(s8N#ts8N#srrrE%rr;usrVllsrr2utoD\pls8N#ss8W)ss8W)rrrE&q +rr`9#s8N#t#lal(rr2rtrr2os"oeQ$s8N#rrrE&trrE&irr`9#rr2oss8Muss8Mrr!<2lq"9/?# +rr2p'rr<#trr<#trr2p$rr<#ts8Moqrr2iq!<2fo!<2or!ri6!r;Zcqrr2utrr<#trVllsr;Qcr +rVuosqu6`ss8Moqrr2iq!<2fo!<2or!ri6!r;Zcqrr2utrr<#trVllsr;QcrrVuosqu6`ss8Moq +rr2iq!<2fo!<2or!ri6!r;Zcqrr2utrr<#trVllsr;QcrrVuosqu6cts8N%K~> +!WW/rrri?$s8N#rrsJbO;Ram7naZ1tC"cJj<)6-Vo'`)XqnriQ\\lqMg=k66g=cJZ*nf9$g"P-5 +g"P0/Knf7"rr2rtrr<#ts8W)ts8W)trVllsrr3'!s8W)trr2utrVllsrr;usmJd1crr<#trr;us +r;Qcrqu6cts8W)trs8W(s8N#ts8N#srrrE%rr;usrVllsrr2utoD\pls8N#ss8W)ss8W)rrrE&q +rr`9#s8N#t#lal(rr2rtrr2os"oeQ$s8N#rrrE&trrE&irr`9#rr2oss8Muss8Mrr!<2lq"9/?# +rr2p'rr<#trr<#trr2p$rr<#ts8Moqrr2iq!<2fo!<2or!ri6!r;Zcqrr2utrr<#trVllsr;Qcr +rVuosqu6`ss8Moqrr2iq!<2fo!<2or!ri6!r;Zcqrr2utrr<#trVllsr;QcrrVuosqu6`ss8Moq +rr2iq!<2fo!<2or!ri6!r;Zcqrr2utrr<#trVllsr;QcrrVuosqu6cts8N%K~> +!WW/rrri?$s8N#rrsJbS?F\5DnaZ2$L=phVF`R$Cn"X^raTTW+dba![ium@Aj5T+Yj5T+Yj5]![ +NqEANrr<#ts8W)us8N#ts8N#rrrE&trrW3"s8N#srrE&srrE&ts8N#brrE&ts8W)ts8N#qrrE&q +rr`9#s8N#t#lal(rr2rtrr2os"oeQ$s8N#rrrE&trrE&irr`9#rr2oss8Muss8Mrr!<2lq"9/?# +rr2p'rr<#trr<#trr2p$rr;utrr2lr!<2ut!<2Ti"9/?"rr2rtrr)lsrqucrrql]trr<#trr39' +s8W)ts8W)trr30$s8W)urql`prqucrrqZQorquctrr;uqs8N#srrE&ts8W)srrE&rrrE&ss8W)q +rrW3"rql`prqucrrqZQorquctrr;uqs8N#srrE&ts8W)srrE&rrrE&ss8W)qrrW3"rql`prqucr +rqZQorquctrr;uqs8N#srrE&ts8W)srrE&rrrE&ss8W)qrr`9#rr7K~> +rr3#us8N#rrrE&rrs?k>[ERn+nab"(i@k`p/il^2@=YK,kjn94Q<=$ks/HR"Nkt=oDeUbs8W,u!WW/ss8W)trrE&qrr`9#s8Moq!<2ip!<2ut!<2ut!<2ut$NC))s8W)t +s8W)uqu-Tqr;Q`r#lal's8N#ts8Mus"oeQ$s8W)qrrE&qrs&K&s8N&urr2p#rr<#trr)lsrr<#t +rW3&urr;rr!<;urs8NB(s8N&trr<#trVm'#s8N&urql]qrql^"rr<#ts8W)trri?$s8N#rs8W)u +s8Muus8N#trVcfsr;Q`r#lal's8N#ts8Mus"oeQ$s8W)trr`9#s8Mus!<2ip!<2uts8N&u!<2rs +s8E*"rr2os!<2ors8N&ur;Q`r#QFc'rr2rtrql]trr<#tqu6ZqrVllsqYpQprr<#ts8N)urVuos +!rr9!rr2utr;Zfrs8W#rs8N?'s8W)ts8W)qrr`9#s8Moq!<2rs!<2ip!<2uts8N&u!<2rss8E*" +rr2os!<2ors8N&ur;Q`r#QFc'rr2rtrql]trr<#tqu6`ss8RT~> +rr3#us8N#rrrE&rrs@"L\'4+-nab(@iD:(]:0(tIGE/rVkjn94S70:OrkeoV]",`-gA]e'g&Th% +g'66adtNPKs7lTns8W'!s8Mrrs8N#t!<2lq"9/?#rql]qrqcWprr2otrr2otrr2p)rr;uts8N#t +s8N&qrW)urrr +rr3#us8N#rrrE&rrs@.\\BO4.nab7bi-#QPH%h9BU:]"@o'u1DC\u0T`QHWcrSmh:!93h7#ian( +j5,u[o`+^cs8W,u!WW/ss8W)trrE&qrr`9#s8Moq!<2ip!<2ut!<2ut!<2ut$NC))s8W)ts8W)u +qu-Tqr;Q`r#lal's8N#ts8Mus"oeQ$s8W)qrrE&qrs&K&s8N&urr2p#rr<#trr)lsrr<#trW3&u +rr;rr!<;urs8NB(s8N&trr<#trVm'#s8N&urql]qrql^"rr<#ts8W)trri?$s8N#rs8W)us8Muu +s8N#trVcfsr;Q`r#lal's8N#ts8Mus"oeQ$s8W)trr`9#s8Mus!<2ip!<2uts8N&u!<2rss8E*" +rr2os!<2ors8N&ur;Q`r#QFc'rr2rtrql]trr<#tqu6ZqrVllsqYpQprr<#ts8N)urVuos!rr9! +rr2utr;Zfrs8W#rs8N?'s8W)ts8W)qrr`9#s8Moq!<2rs!<2ip!<2uts8N&u!<2rss8E*"rr2os +!<2ors8N&ur;Q`r#QFc'rr2rtrql]trr<#tqu6`ss8RT~> +qu?]q!rr9!rr<#ts8N5F8@?\+rpg*9:us5:.k*f#K9WL[hsBq)nc&(\n!7)QZi@$-\'!+GrR(\n +rmCeoqpG\rda?-\J+NU<#lal's8N&urr2]m#6+Z%s8N&urr2Kg#6+Z&rr2rsrr<#t"TSK$s8Mcm +!<2lq$NC))rr<#ts8N&trVuos#64]&rr<#tqYpQpr;Qcrrr3-#s8W)tqu6`ss8Mlps8Mus!<2lq +$NC))rr<#ts8N&trVuos#64]&rr<#tqYpQpr;Qcrrr3-#s8W)tqu6`ss8Mlps8Mus!<2lq$NC)) +rr<#ts8N&trVuos#64]&rr<#to)A^hrVuosrr<#trr2utr;Qcrp\t9ns8N!(s8N#trr;uts8Moq +!<2or!<2Qh!<2rss8N#ts8N#t!<2or!<2`m!WN,urX&W(rr;utrr<#tqu6Zqr;Qcro)A^hrVuos +rr<#trr2utr;Qcrp\t9ns8N!(s8N#trr;uts8Moq!<2or!<2`mJ,~> +qu?]q!rr9!rr<#ts8N5J;Ram7rpg*;B&u_q9M/Q;PG>M/i9^%*nc&(\n!mh`_?IN]_pmAmrRq8) +rn7A*qq;8-g=ju/L@kED#lal's8N&urr2]m#6+Z%s8N&urr2Kg#6+Z&rr2rsrr<#t"TSK$s8Mcm +!<2lq$NC))rr<#ts8N&trVuos#64]&rr<#tqYpQpr;Qcrrr3-#s8W)tqu6`ss8Mlps8Mus!<2lq +$NC))rr<#ts8N&trVuos#64]&rr<#tqYpQpr;Qcrrr3-#s8W)tqu6`ss8Mlps8Mus!<2lq$NC)) +rr<#ts8N&trVuos#64]&rr<#to)A^hrVuosrr<#trr2utr;Qcrp\t9ns8N!(s8N#trr;uts8Moq +!<2or!<2Qh!<2rss8N#ts8N#t!<2or!<2`m!WN,urX&W(rr;utrr<#tqu6Zqr;Qcro)A^hrVuos +rr<#trr2utr;Qcrp\t9ns8N!(s8N#trr;uts8Moq!<2or!<2`mJ,~> +qu?]q!rr9!rr<#ts8N5N?F\5Drpg*@K]R:aF)l\nVmX@hipH=-nc&(\n"X[q`rj<'dbar_!oi8" +ro=% +"9/?"rr)j,rr<#trr<#trr:/4[ERn7nc@'3m4&Sp.PNkF5&$7gb1bqBnF?DH"nD0Sn!7&PZ3.&* +\'"Nps3X$YdF$:bbK%E-Y-N;%oDegirr;uss8W)urr2rss8W)urr<#ts8W)us8N&ts8W)urr<#t +s8N#trr<#ts8Muss8N&u#QFc&rr;utrr2rsrr +"9/?"rr)j,rr<#trr<#trr:;B\'4+9nc@-Km7[IO$r9o->Bl^NceRXJnF?DH"nD0Sn!mh`_$@K\ +_pd;mg=cDXrRj9bf$r*i_n<^;L@kNFs8N&trr<#ts8N#trr<#ts8N&urr<#ts8W)urr<#ts8N&u +rr;uss8N&urr;urs8W)urs/Q'rr2rss8N#trr2rt'`S.4rr;uts8N&urr<#ts8N&urr;usrr3<( +s8W)urr<#ts8Dp's8N#ts8N&ts8Mrr%fZM.rr<#ts8N&urr<#trVmT2s8W)urr<#ts8W)us8N&t +s8W)urr2os$3'u)rr;uts8N&srX&W(rr<#ts8N&tr;R9+s8W)us8N&ts8W)us8Mus'`S.4rr;ut +s8N&urr<#ts8N&urr;usrr3B*s8W)urr<#ts8W)ts8W)urrW3"rqcX%rr;uts8N#trr<#srW`E% +s8W)urqud#rr<#ts8N&trW<-!s8Drsrs/Q'rr2rss8W&srr<#ts8N0"s8Mlp$NC))s8W)ts8N&u +rVd$$rr<#ts8Mrr#6+Z&rr;utrr*!!rr;rrs8N?'s8N#trr<#srr2rtrr +"9/?"rr)j,rr<#trr<#trr:GR\BO4:nc@ +q>^Hnqu7$&b=K%bl1+?7cV3jU$RI&^=D;uG^Y%lCnc&(Znc&(enac5@o'u,&b-Pqcqlg:'Wjg-u +daA!@&(&M>^Uq(dZaINfcH:B]oCi4_rWN9#s8W)trs&K&s8N&urqcWprqcWtrr;utrr)j+rr;us +s8W)urr<#ts8Mrr!<2lq!<2orrVlcq"9/?"rr2p"rr<#trr3-#s8W)tpAY-lqu?]qrVllsrVlls +r;Qcrqu6Zqr;Z`prVm!!s8N#srr`9#s8N#t"TJH$rr2Wk!<2lqs8Mus!<2rs!<2or!<2lq!<2or +rVlcq"9/?"rr2p"rr<#trr2utpAY3ns8MWi"9/?#rqcWqrr;usrr2utq#:Qts8W)urr2os"9/?# +rr)isrqHEorr;uhrr`9#s8Mlp!WN,urr2otrqQKtrr<#ts8N#srr`9#s8Mus!<2`m!ri6!oD\pl +s8W)prrN-!rr2os!<2cn#6+Z&rr;usrr3*"s8W)srrE&qs*t~> +q>^Hnqu7$&cVh6rl1+?7d:2T8$:\-7I>OW6g?eD#rpg'ZrpgHeo'u;Ana5/V[Wc-V^Dj\n_pmAn +g"G*5g"P*.d)sAI_na.3dFZj$L@k3>rVcs"rr<#trr33%s8W)us8Mlp!<2ip"TJH#s8Mus%K?D, +rr<#ts8N&urr;uqrrE&qrrE&rs8Drqrr`9#rr2os"9/?#rr2p#rr<#trq??lrql`qrr)isrr)is +rqucrrql]qrqufprr)j!rr;usrr3*"s8W)trri?$s8N#krrE&qs8W)srrE&srrE&rrrE&qrrE&r +s8Drqrr`9#rr2os"9/?#rr2otrq??nrr;uhrr`9#s8Mlp!WN,urr2otrqQKtrr<#ts8N#srr`9# +s8Mus!<2`m!ri6!oD\pls8W)prrN-!rr2os!<2cn#6+Z&rr;usrr3*"s8W)srrE&mrrW3"rq$-l +rr<#tqYpTqs8N#srrE&nrs&K&s8N&trr2p"rr<#trVllsqu;0~> +q>^Hnqu7$&dpBQ.l1+?7eq*=0$?(6IQ_CY*h +r;Qcrr;R0(s8W)urr:/4[ERn7nc@'/ocjbe,tiTPWPmEMn,2bVnbVejn`S0#Kkapj5t5t"Yck:7 +Yc"M1b5Ka%d)j#1XgP^R_T0jHda?Lkb'8F-q>UHorr2utrVuos%0->,rr2rss8N&urr2Qi#lal' +s8W)urr2fps8E'!rr)isrr2otrqcX!rr<#ts8W)srrE&rs8W''s8N&trr;usrVuos!WW/lrr`9# +s8Mlp"oeQ$s8W)trrE&prs&K&s8N&urr)isrqufrrWiK&s8N#trr2lrs8E'!rq69nrr<#tqYp`u +s8N&urr2otrqcX!rr<#ts8W)srrE&rs8W''s8N&trr;usr;Qits8N#t"9/?#rqucurr;usqYpQp +rVuoss8N)up\t6mqu6Zqqu?Zprr3#us8N#rrrW3"rr2p"rr<#tr;Qlus8N#orrE&ss8W)urrE&m +rrE&qrrE&qs8N#srrN-!rr2lr!ri6!rr3*"s8W)rrr`9#rr2co!<2rss8N&u!<2`m!<2lq!<2lq +rr2os!WN,urr)j!rr;utJ,~> +r;Qcrr;R0(s8W)urr:;B\'4+9nc@-HogB*R7:1nI[)q"`n,2bVnbVean`\9'Mf`W:9iHPUr4`?C +\\lnpg(W/fahk[+`Q?BOeC`L.g=k#0L@k +r;Qcrr;R0(s8W)urr:GR\BO4:nc@$m*_`#HV: +dba$DioB%Sf$V^ge(34-hr3VTj5SpZNqE/I!<2ut!<2rss8EH,rr;uss8N&ts8W)to`#3rs8N&u +rr;usqu?]q!WW/trrE&trrE&prs&K&s8N&urr)isrqufrrWiK&s8N#trr2lrs8E'!rq69nrr<#t +qYp`us8N&urr2otrqcX!rr<#ts8W)srrE&rs8W''s8N&trr;usrVuos!WW/lrr`9#s8Mlp"oeQ$ +s8W)trrE&prs&K&s8N&urr)isrqufrrWiK&s8N#trr2iq!ri6!rr3*"s8W)rrr`9#rr2co!<2rs +s8N&u!<2`m!<2lq!<2lqrr2os!WN,urr)iurr;usrr`9#s8Mrr"9/?"rqcWprr)lsrr;uurqHEm +rql]qrql`prr2ourr;usrVlrus8N#t"9/?#rqucurr;usqYpQprVuoss8N)up\t6mqu6Zqqu?Zp +rr3#us8N#rrr`9#rr7K~> +rVm$"s8N&tq#:ZD8@?\+nac7s8GjSC+Yl;U:P?.$jmDO+nac8.UV#plne1K[jP%eeS9n:#7nulo +JX*(4Xo#73VlI2C`4rmfXL5mcd*U1fr6kSl#g.CAoD\dirr2os!<2rss8N#t!<2rs!<2cn"TJH$ +rr2os!<2Kf!<2cn!<2rss8N&u"oeQ%rr;urs8W'!s8Mrr!<2cn!<2uts8N#ts8Moqs8MWi!<2rs +!<2ip"oeQ%rr;urs8W'!s8Mrr!<2cn!<2uts8N#ts8Moqs8MWi!<2rs!<2ip"oeQ%rr;urs8W'! +s8Mrr!<2cn!<2fos8Mlp!<2Ti!<2Zk!<2rs!<2Ti!<2forr2fps8Mlp!<2Ti!<2Zk!<2rs!<2Ti +!<2forr2fps8Mlp!<2Ti!<2Zk!<2rs!<2Ti!<2forr2fpJ,~> +rVm$"s8N&tq#:ZH;Ram7nac7u?i32&6;:ZpBoomQkO%a-nac8.UV#plne1K\jP.qlTRgHC +rVm$"s8N&tq#:ZL?F\5Dnac8%J,=$oF+/k$UVYLEmdTc:o((\5]C#Rf'(PDNgsEj5Lh^(%BPW'^ +Wk#m\qSEW_dG!=*e'?1af\GHbiqqd9iX"D)NqE>Ns8N#srrE&ss8W)trrE&srrE&nrri?$s8N#s +rrE&frrE&nrrE&ss8W)urrrE%s8N&trVuos!WW/srrE&nrrE&ts8W)ts8W)qs8W)irrE&srrE&p +rrrE%s8N&trVuos!WW/srrE&nrrE&ts8W)ts8W)qs8W)irrE&srrE&prrrE%s8N&trVuos!WW/s +rrE&nrrE&os8W)prrE&irrE&krrE&srrE&irrE&os8N#ps8W)prrE&irrE&krrE&srrE&irrE&o +s8N#ps8W)prrE&irrE&krrE&srrE&irrE&os8N#ps*t~> +!<<#s!WW/ss8W)urs&K&b=K%bl2L5]cUJls5\bS(YKYtmr:0jXrpgflSn +!<<#s!WW/ss8W)urs&K&cVh6rl2L5]d9St&=F?$t[Ede!r:0jXrpgflSnUlB\7:KMF> +6qq]t\c08B]`#PD]`5YN[^j5n`6$ +!<<#s!WW/ss8W)urs&K&dpBQ.l2L5]epV:KH'P)-^shB4r:0jXrpgflSn\&(n +;d+OJ^AbtL_>V4N_>V4Ub0e\ef@o-ArSnmWj5].Zio9"Rc-"_!NqEANs8W)us8N&ts8N&trVlls +rr2utrr3N.s8W)us8N&urr;utrr;uqrrE&srs8W(rr;uts8N#qrs&K&rr<#trqQKprr;usrrrE% +rr<#tp\tKts8N&ts8N&trW3&uqu6Zqrr39's8W)ts8N&tr;R*&s8N&urr2rsrql]srr;usrrrE% +rr<#tp\tKts8N&ts8N&trW3&uqu6Zqrr39's8W)ts8N&tr;R*&s8N&urr2rsrql]srr;usrrrE% +rr<#tp\td's8N&ts8N&ts8N&ts8W)trrE&trrE&qs8W)srrE&trttb8rr2rss8W)urr<#ts8N&u +rr<#trr;urrtYP5s8N&urr;utrr;utrr;utrr<#trr2utrr2utqu?]qrVllsrr3i7s8N#trr<#t +s8N&urr;uts8N&urr2rsrVmW3s8W)us8N&ts8N&ts8N&ts8N&urr2otrr2otrql`qrr)isrr2p7 +rr;uss8N&urr;uts8N&ts8W)us8N#trr)j/rr<#ts8W)urr;utrr;utrr7K~> +rr3*"s8W)srrE&qrrgM9[ERn7nd4-JZGb;TlLFH8rUKsYrULlsnElljVPnN<=Ahh0RCgc'lJo^) +8Pa,dVlTTo"fA$lI!<2or"oeQ$rr;uqrrE&trrE&prrW3" +rr)isrq??lrqQKnrq??lrql]qrqufrrpg!mrr<#ts8W)trrE&`rrE&trrE&krrE&rs8W)grs&K& +s8N&urr2otrp'L`rr2otrq69krqufrrpg!mrr<#ts8N#srs/Q's8N#trr2Hf"9/?#rql`qrr)ls +rr2p"rr;usq#:?nqu6Zqrr;usrr36&s8W)ts8N#frr`9#s8Moqs8Muss8N#t"9/?"rqQKnrql]q +rr2rsrr2p&rr<#trr;usnc&^js8W)qs8W)ss8W)trr`9#rr2]m!<2lq!<2utrr2osJ,~> +rr3*"s8W)srrE&qrrgYG\'4+9nd40R]#r[elgaQ9rUKsYrULlsnElolVQ+oO@U3&WS\EM2lf?!6 + +rr3*"s8W)srrE&qrrgeW\BO4:nd49``REZ+lgaQ9rUKsYrULlsnElolVlkVjDJ+*V"3T'Jir.mMioB(YiSN>;_6/o-.40,aD4(%prrE&rrrrE%rr2rsr;Qcrrr2utqYpWr +s8Mus!<2]l!<2cn!<2]l!<2lq!<2ors8MQg#6+Z&rr<#trr2utlMgk`rr2utp&>$kr;Zfrnc&gm +s8W)us8N#t!<29`!<2ut!<2Zk!<2ors8MQg#6+Z&rr;usrr36&s8W)ts8N#frr`9#s8Moqs8Mus +s8N#t"9/?"rqQKnrql]qrr2rsrr2p&rr<#trr;usnc&^js8W)qs8W)ss8W)trr`9#rr2]m!<2lq +!<2utrr2os#QFc'rr2rsrpg!jrr<#tqu?]qrVuosrr3*"s8N#mrrE&qrrE&ts8N#ss*t~> +rVuos!rr9!q#:K?8@?\+rUU!Yq=4OUrpgWim-!Klin`;CjE"%db2` +rVuos!rr9!q#:KC;Ram7rUU!Yq=4OUrpgWim-!Noj58VKk^-I,bN/L!rr*?+rr<#skc&`+@YLPb +qRZj;\\lnpg'HBY`OM=bBi>rK!!W]u\;XG0rr2otrr2otrqucrrr)lrrr<#trqZTorqcWprr2p! +rr;uss8Muus8Mus%0$;+s8W)us8N&urr2os!<2cn!<2or!<2rss8N&u#QFc'rr<#trr2otrr2ot +rr2rtrr)lsrr<#urW)utrr)isrqud"rr;uts8Mfn!<2or!<2rss8N&u#QFc'rr<#trr2otrr2ot +rr2rtrr)lsrr<#urW)utrr)isrqud"rr;uts8Mfn!<2or!<2rss8N&u"oeQ%rr<#trr;uurr2p" +rr<#tqu6cts8W)ts8N#srs/Q's8N#ts8N#t!ri6!qu6fus8W)trr3*"s8W)ts8N#trrE&srr`9# +s8N#t"9/?#rql]trr<#trr;usrr36&s8W)ts8W)trrW3"rql]urr<#trr2p"rr<#trr;uss8N)u +rVm!!s8W)trr`9#s8Moq"9/?#rr2rsrr2p&rr<#trr<#trr3'!s8Moq"TJH$rr2os"9/?#rr2rs +rr;uurr)j"rr<#ts*t~> +rVuos!rr9!q#:KG?F\5DrUU!Yq=4OUrpgWim-!Qqjl#"Um=f2Oc/nd$rr*?+rr<#sl)oSHClYI+ +qS33Lb0o/Fis=Ytc+os(DH7_T!!Wa$_O=uYrr2otrr2otrqucrrr)lrrr<#trqZTorqcWprr2p! +rr;uss8Muus8Mus%0$;+s8W)us8N&urr2os!<2cn!<2or!<2rss8N&u#QFc'rr<#trr2otrr2ot +rr2rtrr)lsrr<#urW)utrr)isrqud"rr;uts8Mfn!<2or!<2rss8N&u#QFc'rr<#trr2otrr2ot +rr2rtrr)lsrr<#urW)utrr)isrqud"rr;uts8Mfn!<2or!<2rss8N&u"oeQ%rr<#trr;uurr2p" +rr<#tqu6cts8W)ts8N#srs/Q's8N#ts8N#t!ri6!qu6fus8W)trr3*"s8W)ts8N#trrE&srr`9# +s8N#t"9/?#rql]trr<#trr;usrr36&s8W)ts8W)trrW3"rql]urr<#trr2p"rr<#trr;uss8N)u +rVm!!s8W)trr`9#s8Moq"9/?#rr2rsrr2p&rr<#trr<#trr3'!s8Moq"TJH$rr2os"9/?#rr2rs +rr;uurr)j"rr<#ts*t~> +rr2utrr2utrVllsrr3<(s3!s@bj"]gnbr"Ync&+YnI"F9h:UQAi8UHorVuoss8N<&s8W)us8Mlps8MoqrVlcq"TJH#s8Moq!<2cn!<2or!<2fo!<2rss8N&u#6+Z& +rr<#tqZ$Tpqu?WorVlrus8Mio!ri6!q#:?nrr2utq>UHorVm$"s8N&tr;QcrqZ$TpqZ$Qor;Zfr +q>UNqs8Mfn!<2ut!<2fo!<2rs"TJH#s8Mrr!<2ips8Mlprr2iqs8Mio!ri6!q#:?nrr2utq>UHo +rVm$"s8N&tr;QcrqZ$TpqZ$Qor;Zfrr;V9~> +rr2utrr2utrVllsrr3<(s3FTPbj"]gnbr"Ync&+YnHA"3h:UWair\?,li-5OHA):ts8E-#rr;ur +rsA]'n'7>+;f%H#r43&fS)Kh@?srVllsrr3#us8N#qrrE&ps8Drr +s8;lmrrE&srrE&nrrE&ms8W)trsA])s8N&urr<#tqZ$Tpqu?WorVm$"s8N&tqu6Zqq#:?nr;Qcr +q>UHorVuoss8N<&s8W)us8Mlps8MoqrVlcq"TJH#s8Moq!<2cn!<2or!<2fo!<2rss8N&u#6+Z& +rr<#tqZ$Tpqu?WorVlrus8Mio!ri6!q#:?nrr2utq>UHorVm$"s8N&tr;QcrqZ$TpqZ$Qor;Zfr +q>UNqs8Mfn!<2ut!<2fo!<2rs"TJH#s8Mrr!<2ips8Mlprr2iqs8Mio!ri6!q#:?nrr2utq>UHo +rVm$"s8N&tr;QcrqZ$TpqZ$Qor;Zfrr;V9~> +rr2utrr2utrVllsrr3<(s3k;abj"]gnbr"Ync&+YnI"F9h:giLjlYgpn,DeWKT?'3s8E-#rr;ur +rsA]'n'I\?@!@mIr4`ZUb0o/)c+TBQ7QW47qu@!K??VRAP$4+CrVllsrr3#us8N#qrrE&ps8Drr +s8;lmrrE&srrE&nrrE&ms8W)trsA])s8N&urr<#tqZ$Tpqu?WorVm$"s8N&tqu6Zqq#:?nr;Qcr +q>UHorVuoss8N<&s8W)us8Mlps8MoqrVlcq"TJH#s8Moq!<2cn!<2or!<2fo!<2rss8N&u#6+Z& +rr<#tqZ$Tpqu?WorVlrus8Mio!ri6!q#:?nrr2utq>UHorVm$"s8N&tr;QcrqZ$TpqZ$Qor;Zfr +q>UNqs8Mfn!<2ut!<2fo!<2rs"TJH#s8Mrr!<2ips8Mlprr2iqs8Mio!ri6!q#:?nrr2utq>UHo +rVm$"s8N&tr;QcrqZ$TpqZ$Qor;Zfrr;V9~> +s8N)urr3-#s8N&trVm-%s8U85[ERn5ndY-VjP/%nT7C*0J>:*Froa=FroXRNE^ruX^Z5+gq>^Hn +-2R&JG>q1KNM!,IUoCfF0b"Kq!W`cN,UmD_RA6IDIU#9?P48JHs8Muts8Dp(s8N&trr<#ts8N#r +rrE&trri?$s8N&rrW<-!rr2otrr)iurr;usrsJc*rr;uss8N&trqud!rr;uss8N#ts8N!!s8N&t +rr<#trr)lrrWW?$s8N#trVlisrVd*&rr<#ts8N&trr3]3s8N#trr;uts8N&urr<#ts8N#trr2rt +rr*!!rr;uss8W)trVulr"onT%rr2rrrr<#srWrQ's8W)urr;usrtPJ4rr2rss8N&urr<#ts8W)u +rr2rsrr<#trW<-!s8N#ts8N#rs8N!$s8N#trr;rrr;R'%s8N&urr2rtrr*!!rr;rrs8NN,s8N&u +rr;uss8W)urr)rurr2rtrW)utrWW?$rr;usrr<#t#64]%s8W)urVl`p#lal's8W)ts8W)t!rr9" +rVlis%0$;+s8W)urr2rtrr;us!WW/us8W&us8N!$s8N#trr2oss8E6&rr2rtrr;rrr;R'%s8N&u +rr2rtrr*!!rr;rrs8NN,s8N&urr;uss8W)urr)rurr2rtrW)utrWW?$rr;usrr<#t#ljo's8W)u +rr.E~> +s8N)urr3-#s8N&trVm-%s8UDC\'4+7ndk9XjkS:uUP32OMQb:hlg+N9$L@'EH;e((_W:Lkq>^Hn +-2[/NIU?,tS?B?3[(!p$1CX]s!W`cO,qEekTW>)eLhBRlQgk"Ms8Muts8Dp(s8N&trr<#ts8N#r +rrE&trri?$s8N&rrW<-!rr2otrr)iurr;usrsJc*rr;uss8N&trqud!rr;uss8N#ts8N!!s8N&t +rr<#trr)lrrWW?$s8N#trVlisrVd*&rr<#ts8N&trr3]3s8N#trr;uts8N&urr<#ts8N#trr2rt +rr*!!rr;uss8W)trVulr"onT%rr2rrrr<#srWrQ's8W)urr;usrtPJ4rr2rss8N&urr<#ts8W)u +rr2rsrr<#trW<-!s8N#ts8N#rs8N!$s8N#trr;rrr;R'%s8N&urr2rtrr*!!rr;rrs8NN,s8N&u +rr;uss8W)urr)rurr2rtrW)utrWW?$rr;usrr<#t#64]%s8W)urVl`p#lal's8W)ts8W)t!rr9" +rVlis%0$;+s8W)urr2rtrr;us!WW/us8W&us8N!$s8N#trr2oss8E6&rr2rtrr;rrr;R'%s8N&u +rr2rtrr*!!rr;rrs8NN,s8N&urr;uss8W)urr)rurr2rtrW)utrWW?$rr;usrr<#t#ljo's8W)u +rr.E~> +s8N)urr3-#s8N&trVm-%s8UPS\BO48ndk9Xjk\G'W/PUuPe,E4n*g8Fs6g9`mt>(_NlL2VrqZTn +r[%I2abO\BIA=0_^;.k^Hn!<<#s$NL,*rr2rtrr;us +rVllsrr3-#s8W)ur;Hctrr2os!<2rs!ri6!rr3?)s8N&trr;utrr2iq"TJH#rr;uss8W)t!rr9" +rr2rtrr2lrrr**$rr;uss8Drss8Dp&s8N&urr;utrr2p3rr;uss8N&ts8W)us8N&urr;uss8N#t +s8N!!s8N&trr<#trr)lrrWW?$s8N#trVlisrVd*&rr<#ts8N&trr3]3s8N#trr;uts8N&urr<#t +s8N#trr2rtrr*!!rr;uss8W)trVulr"onT$s8N&srqud%rr;uts8N#ts8N!!s8N&srr +rVufp!WW/truV1>rl[d:bj"]hjO1]5MKE,i<,mPM<,%E/kNM-mkPjZSkNIh1Am@`-NkOcYrr2]m +,6%GqTlNJ#EK[&m[)Rk?)*Cc)K:A?nK6(Nq7V7%,VW%FOrVulrqu6Zqrr3E+s8N&urr;utrr2rs +rVulrrVlrus8W&ss8N)urVm*$s8W)us8Mus!<2ip!<2rss8N&u!<2ut!<2`m!WN,urqcZprW3&u +qu6Zqqu6Zqrr30$s8N&urr2p!rr;urrsSi+rr;uss8N#ts8N#t!<2`m!WN,urqcZprW3&uqu6Zq +qu6Zqrr30$s8N&urr2p!rr;urrsSi+rr;uss8N#ts8N#t!<2`m!WN,urqcZprW<-!rqucrrql]q +rr2p!rr;uprrE&rrrrE%s8N&tqu6Zqrr30$s8N&urqud!rr;utrqHHmrqucrrql]qrr2p!rr;up +rrE&rrrrE%s8N&tqu6Zqrr30$s8N&urqud!rr;utrqHHmrqucrrql]qrr2p!rr;uprrE&rrrrE% +s8N&tqu6Zqrr30$s8N&urqud!rr;utrqHHmrr2qJ~> +rVufp!WW/truD% +rVufp!WW/tru1n:rmP/\bj"]hjj_,HR>#TaBnDS?Cl>aPn+uM_n*lioKR$pCS\sgorr2]m,6%Jt +XFseqLo.f(d+jd))aRS>O/]4XRYlH(?[7X$YiGW[rVulrqu6Zqrr3E+s8N&urr;utrr2rsrVulr +rVlrus8W&ss8N)urVm*$s8W)us8Mus!<2ip!<2rss8N&u!<2ut!<2`m!WN,urqcZprW3&uqu6Zq +qu6Zqrr30$s8N&urr2p!rr;urrsSi+rr;uss8N#ts8N#t!<2`m!WN,urqcZprW3&uqu6Zqqu6Zq +rr30$s8N&urr2p!rr;urrsSi+rr;uss8N#ts8N#t!<2`m!WN,urqcZprW<-!rqucrrql]qrr2p! +rr;uprrE&rrrrE%s8N&tqu6Zqrr30$s8N&urqud!rr;utrqHHmrqucrrql]qrr2p!rr;uprrE&r +rrrE%s8N&tqu6Zqrr30$s8N&urqud!rr;utrqHHmrqucrrql]qrr2p!rr;uprrE&rrrrE%s8N&t +qu6Zqrr30$s8N&urqud!rr;utrqHHmrr2qJ~> +s8E'!rqZQorr2p;rr:>3>G8?eE*QF<891'.b2;RWlZR!&^usqFkPj]Fk7?^lS=c70G>^q;Q.Ga/ +rr2os!ri6!rr3u9mE(Gb8QgA6[(rT.R>,Q\UHoqu6Zq +rVuos!WW/srrE&rs8W'!s8Muss8Mrr!ri6!p&G$jrVulrqu6`ss8Muss8Mrrrr2fp!<2ors8E'! +rr)lsrquctrr;ujs8N#rs8N#prrW3"rr)lsrqufqrql]qrqufrrW3&urVuosr;Qits8M]krr2lr +rr2fp!ri6!rVuosr;Zcqqu6]rs*t~> +s8E'!rqZQorr2p7rr:GBAYc]#H"LJe;g=hHcJ\'\l[F/Tbl6r.lkA^Olg*iYXK\^pL0mkmRb7E6 +rr2os!ri6!rr3u9m`^r!UHoqu6Zq +rVuos!WW/srrE&rs8W'!s8Muss8Mrr!ri6!p&G$jrVulrqu6`ss8Muss8Mrrrr2fp!<2ors8E'! +rr)lsrquctrr;ujs8N#rs8N#prrW3"rr)lsrqufqrql]qrqufrrW3&urVuosr;Qits8M]krr2lr +rr2fp!ri6!rVuosr;Zcqqu6]rs*t~> +s8E'!rqZQorr2p9rr:PRDl1"7JT>U=@=Y&gdc0Zdm"^M-f'i)*nGhqfmaA\\\>tj2@UHoqu6ZqrVuos#QOf'rr2rtrqcWprquctrr;urrrW3"rpp'h +rr2rsrqZQorql]qrr)lsrWiK&s8N#ts8Mlp!<2or!ri6!rVlrus8MTh!<2utrr2`n!<2lq!<2rs +s8E'!rqucrrqufrrW3&urVuosr;Qits8M]krr2lrrr2fp!ri6!rVuosr;Zcqqu6Zqr;Zfr!WW/t +s8W)rrrW3"rq6 +rVllsrr<#ts8N)ur;SGKg4EC3Cjr2/kktJYn_qZsQubc6NkjiAkiUm\f$MCHX.Z)VSt2@2D,*<' +TBZ@QrrE&ts8W)urt4q;G#^Rq:H;!NB69Z^ht@$Ko`+pis8N)urr3*"s8W)prsA])rr2rtrr<#t +o`+sjq>UHorVm!!s8W)hrrW3"rqcWqrr;usqu6m"s8W)us8Moqs8Moq"TJH$rr2iq#QFc'rr;ut +rpp'jrr;uorrN-!rr2fp#6+Z&rr<#tqu?]qqu6fus8W)tr;R$$s8W)urr;ugrrW3"rqcWqrr;us +qu6m"s8W)us8MTh!<2ips8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&u +rr2Wk!<2ips8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&urr2Wk!<2ip +s8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&urr2fpJ,~> +rVllsrr<#ts8N)ur;SGKgPK?OG(upEkktJYn_qa$SpF:_Us//jm-Eiph:U&m\ZiXqb)EIFM"i:[-Lo`+pis8N)urr3*"s8W)prsA])rr2rtrr<#t +o`+sjq>UHorVm!!s8W)hrrW3"rqcWqrr;usqu6m"s8W)us8Moqs8Moq"TJH$rr2iq#QFc'rr;ut +rpp'jrr;uorrN-!rr2fp#6+Z&rr<#tqu?]qqu6fus8W)tr;R$$s8W)urr;ugrrW3"rqcWqrr;us +qu6m"s8W)us8MTh!<2ips8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&u +rr2Wk!<2ips8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&urr2Wk!<2ip +s8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&urr2fpJ,~> +rVllsrr<#ts8N)ur;SGKglZGpJWHn_l2:SZo&J*0Uk2s6[FXg8nF,`-jPSS8`P9.#]tCtZM/6F; +X6]c_rrE&ts8W)urt4q@LMU"(CK=naI#+Z@iV*UHorVm!!s8W)hrrW3"rqcWqrr;usqu6m"s8W)us8Moqs8Moq"TJH$rr2iq#QFc'rr;ut +rpp'jrr;uorrN-!rr2fp#6+Z&rr<#tqu?]qqu6fus8W)tr;R$$s8W)urr;ugrrW3"rqcWqrr;us +qu6m"s8W)us8MTh!<2ips8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&u +rr2Wk!<2ips8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&urr2Wk!<2ip +s8Mus"oeQ$s8W)srrE&rrrE&trrE&ps8W)urrE&rrrE&trs/Q's8N&urr2fpJ,~> +rr2uto`#0qs8ViIiq33Js!-$LEaM=,>]G4UQbhM-beCWnWMH8^TV%jJSXc1=VQHeM5K*Bt!<2ip% +.VuRT:`1+i9pI@s8N#ts8E'!rr)lsrW3&urVlrus8Mfns8E<(rr<#ts8W)urr2rt!<2ut!<2fo! +<2ut!<2fos8N#ts8E'!rr)lsrW3&uqYpZss8W)orrE&rrri?$s8N#rrr`9#s8Moq!<2uts8Mfn! +<2]ls8Mfn"9/?#rqZQorqud!rr<#trr)j!rr<#tqu6Zqrr<#tq#:?npAb0lq#:Hqs8W)orrE&rr +ri?$s8N#rrrE&ks8N#os8W)qs8W)ss8W)urrE&qrr`9#s8Mus!<2ut!<2fos8N#t!<2Wjrr2cos +8Moqs8Muss8N&u!<2lq"9/?#rr)isrr2otrqZTorr2otrq-6irqcZprql`qrr)lsrr;uurql]tr +r<#trVllsrr2utq>^Korr2utqYu'~> +rr2uto`#0qs8ViJj7N^Korr2utqYu'~> +rr2uto`#0qs8VlLjRiELs!-3`L3$^1G)Vlp]%6*)gsaTm`PK@)^V7Fq]tCth_8<[F=j-X@!<2ip% +.`/`X/i_UipZaCs8N#ts8E'!rr)lsrW3&urVlrus8Mfns8E<(rr<#ts8W)urr2rt!<2ut!<2fo! +<2ut!<2fos8N#ts8E'!rr)lsrW3&uqYpZss8W)orrE&rrri?$s8N#rrr`9#s8Moq!<2uts8Mfn! +<2]ls8Mfn"9/?#rqZQorqud!rr<#trr)j!rr<#tqu6Zqrr<#tq#:?npAb0lq#:Hqs8W)orrE&rr +ri?$s8N#rrrE&ks8N#os8W)qs8W)ss8W)urrE&qrr`9#s8Mus!<2ut!<2fos8N#t!<2Wjrr2cos +8Moqs8Muss8N&u!<2lq"9/?#rr)isrr2otrqZTorr2otrq-6irqcZprql`qrr)lsrr;uurql]tr +r<#trVllsrr2utq>^Korr2utqYu'~> +5l^i_s8N#trr2rtrr<#trr<#ts8N#trr2rss8T#ZH]anpV5^JnVlHhuW26;bUS=HTUSXohYe@of +Z'B0!8BUr3!ri6!rVm<*s8N&ts8N&tr;?Qnrr3'!s8N#ts8Mus!<2rs!<2ips8E'!rr)isrr)j! +rr;usq#CBnrr<#trr<#trr<#tqYpWrs8N#ts8Mus!<2rss8Mlp!ri6!r;Qits8Mus!<2Wj!<2lq +!<2ut!<2forr2os!ri6!rVllsrVllsqYpWrs8Mrr!ri6!rVllso`"pjqu6Zqrr2utq>^Hnrr3'! +s8Mus!<2rs!<2ip!ri6!r;Qits8Mus!<2Zk!<2fos8N&u!<2Wj"9/?#rr2otrq69mrr;urs8W'! +s8Muss8E'!rqQKnrqZTorr;uurq-3mrr<#trr2utp&>*ms8Muss8E'!rr)lsrW3&uq#:?nq>^Ko +s8N)uo`#$ms8W)trrE&krrW3"rr)lsrW3&urVuos!WW/orrE&ss*t~> +5l^i_s8N#trr2rtrr<#trr<#ts8N#trr2rss8T5mJXWXF[(*ZW\%92^\$`TLZa-j?ZF%*N]Z%t0 +[@;8><6Y@A!ri6!rVm<*s8N&ts8N&tr;?Qnrr3'!s8N#ts8Mus!<2rs!<2ips8E'!rr)isrr)j! +rr;usq#CBnrr<#trr<#trr<#tqYpWrs8N#ts8Mus!<2rss8Mlp!ri6!r;Qits8Mus!<2Wj!<2lq +!<2ut!<2forr2os!ri6!rVllsrVllsqYpWrs8Mrr!ri6!rVllso`"pjqu6Zqrr2utq>^Hnrr3'! +s8Mus!<2rs!<2ip!ri6!r;Qits8Mus!<2Zk!<2fos8N&u!<2Wj"9/?#rr2otrq69mrr;urs8W'! +s8Muss8E'!rqQKnrqZTorr;uurq-3mrr<#trr2utp&>*ms8Muss8E'!rr)lsrW3&uq#:?nq>^Ko +s8N)uo`#$ms8W)trrE&krrW3"rr)lsrW3&urVuos!WW/orrE&ss*t~> +5l^i_s8N#trr2rtrr<#trr<#ts8N#trr2rss8TK-LnhAk^r442`5]j;`59@,^qd_"^r""-`m)fN +\tOR`@F5#R!ri6!rVm<*s8N&ts8N&tr;?Qnrr3'!s8N#ts8Mus!<2rs!<2ips8E'!rr)isrr)j! +rr;usq#CBnrr<#trr<#trr<#tqYpWrs8N#ts8Mus!<2rss8Mlp!ri6!r;Qits8Mus!<2Wj!<2lq +!<2ut!<2forr2os!ri6!rVllsrVllsqYpWrs8Mrr!ri6!rVllso`"pjqu6Zqrr2utq>^Hnrr3'! +s8Mus!<2rs!<2ip!ri6!r;Qits8Mus!<2Zk!<2fos8N&u!<2Wj"9/?#rr2otrq69mrr;urs8W'! +s8Muss8E'!rqQKnrqZTorr;uurq-3mrr<#trr2utp&>*ms8Muss8E'!rr)lsrW3&uq#:?nq>^Ko +s8N)uo`#$ms8W)trrE&krrW3"rr)lsrW3&urVuos!WW/orrE&ss*t~> +#64]&s8N&trr2utqu6`ss8Musrr2rt,IB^NM5[nkXJr.rVl$;eUna]a[(X5i\Z;'QFAPJ>HAJWH +o)AXhrr2rtrr2otrr2otrq??lrr2otrqucrrquctrr;uqs8DrqrrW3"rqZQorql]srr;urrrW3" +rql]qrqZQorr2otrqucrrqucrrqucurr;usqu6Zqr;QcrpAY-lrr3-#s8W)tmJd:fs8W)orrE&r +rrW2kkksEBj72mCrVllspAY-lrr3-#s8W)tmJd:fs8W)orrE&rrr`9#rr2fp!<2or!<2]l"9/?# +rr2rtrpB^jrr<#ts8W)trVuosqu?]qqu6Zqqu6fus8W)tqu?]q!WW/us8W)crs/Q's8N&urr2lr +s8Moqs8Moq!<2lq"TJH$rr2fps8E'!rr2rtrpB^jrr<#ts8W)trVuosqu?]qqu6Zqqu6fus8W)t +qu?]q!WW/us*t~> +#64]&s8N&trr2utqu6`ss8Musrr2rt,IgEfNi]q0]=GG\\$i]P['R*J^rOO:^Ta;iHWj +#64]&s8N&trr2utqu6`ss8Musrr2rt%_Z%mPd&'H`l5p8`5BI/rkT2bbL+__`3lJ.KP"V;Mj^ou +oD\airr2rtrr2otrr2otrq??lrr2otrqucrrquctrr;uqs8DrqrrW3"rqZQorql]srr;urrrW3" +rql]qrqZQorr2otrqucrrqucrrqucurr;usqu6Zqr;QcrpAY-lrr3-#s8W)tmJd:fs8W)orrE&r +rrW2ll29QDjmr0FrVllspAY-lrr3-#s8W)tmJd:fs8W)orrE&rrr`9#rr2fp!<2or!<2]l"9/?# +rr2rtrpB^jrr<#ts8W)trVuosqu?]qqu6Zqqu6fus8W)tqu?]q!WW/us8W)crs/Q's8N&urr2lr +s8Moqs8Moq!<2lq"TJH$rr2fps8E'!rr2rtrpB^jrr<#ts8W)trVuosqu?]qqu6Zqqu6fus8W)t +qu?]q!WW/us*t~> +rVuospAb0lqYr)Fs8VQ,N_E&RNO63rVl$>fYeeT7`j:\9?W0Bus8W)urr<#ts8N#ts8N#trr2Nh"oeQ%rr;usrsSi+s8N#trr<#ts8N#ts8N&us8E0$ +rr<#trVuiq"nU!5G[t+X=UA8@Ao3p;ebB(BpAYUKps8N#trrE%K~> +rVuospAb0lqYr)Fs8VQ/PZLk"Ogr3<\$i`Q]unjYag[LPBjOSBM6"JCkO\WNs8N#ts8N#qrrE&r +rrE&qrrE&qrrE&krseu-s8N&ts8W)urr2rtrr2oss8E'!rr)isrr)j)rr<#ts8W)urr<#tp\t6m +qu6Zqp&>Bus8W)urr<#ts8N#ts8N#trr2Nh"oeQ%rr;usrsSi+s8N#trr<#ts8N#ts8N&us8E0$ +rr<#trVuiq"nU';J8T#t@gQ[_E-IhVf(]1CpAYUKps8N#trrE%K~> +rVuospAb0lqYr)Fs8VT4RU]fKQb:AX`5BL0ajSr$cF]QlF_b8tOKlgXkk"`Os8N#ts8N#qrrE&r +rrE&qrrE&qrrE&krseu-s8N&ts8W)urr2rtrr2oss8E'!rr)isrr)j)rr<#ts8W)urr<#tp\t6m +qu6Zqp&>Bus8W)urr<#ts8N#ts8N#trr2Nh"oeQ%rr;usrsSi+s8N#trr<#ts8N#ts8N&us8E0$ +rr<#trVuiq"n^3BML'@@E!U]9JtfX(p\t0crrrE%s8N&trr3B*s8W)ts8N&urr;uss8W)us8W'$ +s8N&urr)j(rr<#ts8N&urr;uss8W)ts8N#hs8N#trri?$s8N#qrso&.s8N#ts8N&trr<#trqQKp +rr;uss8Muus8Moq!WN,urr2otrqZQprr;uss8N6$s8W)tr;R9+s8W)ts8W)urr2rtrr2]m!ri6! +rr;us!WW/rrrN-!rr2os!<2fo!WN,urr +rVuoss8N)urr2utq#:?nr;Qcrrr3c0eq[[(?AbPj_R$+q?:.RsBSjCYpAXpgs8Muss8E'!rr2p! +rr;uqrr`9#s8Mus#6+Z&rr<#tqYpQpqZ$Tps8N)up\t6mqu6`ss8Mrrs8Mlp!<2ip!<2ut#lal' +rr;uts8Mlp!<2]l!<2cnrr2fp!<2ut#6+Z&rr2rso`#!ls8N#t!<2Zk#lal(r9i"7GX)-_!&F4' +#"F0Tht[6Nrr33%s8W)ts8MZj!ri6!rr2utp&>$kp&>$kq#C?mqu6Zqrr3*"s8W)grrN-!rVlKi +!<2lqs8Mrr!<2lq!ri6"rr2ZlrVl?e!WN,trq69krql`qrqucrrql]srr<#trqHHkrpg!hrr;rr +p&>$kqu?]qr;Qcrqu6`ss8W)tp](3kqu;0~> +rVuoss8N)urr2utq#:?nr;Qcrrr3c0f8XQDArj"0a1/.0AklTGEfe#lpAXpgs8Muss8E'!rr2p! +rr;uqrr`9#s8Mus#6+Z&rr<#tqYpQpqZ$Tps8N)up\t6mqu6`ss8Mrrs8Mlp!<2ip!<2ut#lal' +rr;uts8Mlp!<2]l!<2cnrr2fp!<2ut#6+Z&rr2rso`#!ls8N#t!<2Zk$3'u)r9i(>InN'+5la1G +5la1L5mC2A^>Sedrr2p%rr<#trr;uirrW3"rr2otrq69krq69krqQNmrql]qrr2p"rr<#tnc&Xh +s8DrirrE&qs8W)rrrE&qrrW3"s8N#ls8DrerrN-!rVlKi!<2lqs8Mrr!<2lq!ri6"rr2ZlrVl?e +!WN,trq69krql`qrqucrrql]srr<#trqHHkrql_G~> +rVuoss8N)urr2utq#:?nr;Qcrrr3c0fT^SeE0[]LbIt*EE*R(!I[@n.pAXpgs8Muss8E'!rr2p! +rr;uqrr`9#s8Mus#6+Z&rr<#tqYpQpqZ$Tps8N)up\t6mqu6`ss8Mrrs8Mlp!<2ip!<2ut#lal' +rr;uts8Mlp!<2]l!<2cnrr2fp!<2ut#6+Z&rr2rso`#!ls8N#t!<2Zk#lal(r9r7GLKXRQ!)WPi +!)WSj#%*D-iV$kp&>$kq#C?mqu6Zqrr3*"s8W)grrN-! +rVlKi!<2lqs8Mrr!<2lq!ri6"rr2ZlrVl?e!WN,trq69krql`qrqucrrql]srr<#trqHHkrpg!h +rr;rrp&>$kqu?]qr;Qcrqu6`ss8W)tp](3kqu;0~> +rVllsp&>3ps8N&urqHF(rqu/qP$^dg;+>G]S[d27q"Xjhrql]qrr2p"rr<#trr2utqu6Zqr;Zfr +oDeghs8NB(s8W)us8N&toDejir;Qits8Mus!ri6!rr2utrr<#t!WW/es8N#nrrW3"rr)isrqQNm +rql]trr<#trr2utrr3*"s8W)trrE&mrrE&prs&>HQ?#VS1As!03*#iX!)DUPtrqucu +rr<#trr2utrr3*"s8W)trrE&mrrE&ps8Muus8Mlp!ri6!rVllsq#C?mqu6Zqqu6j!s8N#trquct +rr<#trqucrrr2p!rr<#srr2otrr2p'rr;utrr<#troa:brr;uss8Mrr!ri6"rr2iq!<2ut!ri6" +rVlfr!<2ut#lal's8N&urr2*\"oeQ$rr;uqrrW3"s8N#qrrE&trrW3"s8DrrrrE&trs8W(rr;ut +s8N#\s*t~> +rVllsp&>3ps8N&urqHF(rqu/tQtTH6>Z,a-Uq>1Cq"Xjhrql]qrr2p"rr<#trr2utqu6Zqr;Zfr +oDeghs8NB(s8W)us8N&toDejir;Qits8Mus!ri6!rr2utrr<#t!WW/es8N#nrrW3"rr)isrqQNm +rql]trr<#trr2utrr3*"s8W)trrE&mrrE&prri2GS9e965ljD^qdT\15sYB7#!bXgO3[Iur;Qlu +s8W)trrE&trr`9#s8N#t!<2`m!<2iprr)rurqcWrrr;urrrE&ns8N#prrE&qrrrE%rr2rsr;Qit +s8W)tr;Qcrrr3'!s8W&srr2utrr39's8N&ts8W)tkPk_bs8N#trquctrr<#trqucrrr2p!rr<#s +rr2otrr2p'rr;utrr<#troa:brr;uss8Mrr!ri6"rr2iq!<2ut!ri6"rVlfr!<2ut#lal's8N&u +rr2*\J,~> +rVllsp&>3ps8N&urqHF(rqu3$TQ=OaB4$.VX2!9Pq=ssirql]qrr2p"rr<#trr2utqu6Zqr;Zfr +oDeghs8NB(s8W)us8N&toDejir;Qits8Mus!ri6!rr2utrr<#t!WW/es8N#nrrW3"rr)isrqQNm +rql]trr<#trr2utrr3*"s8W)trrE&mrrE&prri2IUP*1T;#s[6qeuXL;,L0g;$Bs=R*bR+r;Qlu +s8W)trrE&trr`9#s8N#t!<2`m!<2iprr)rurqcWrrr;urrrE&ns8N#prrE&qrrrE%rr2rsr;Qit +s8W)tr;Qcrrr3'!s8W&srr2utrr39's8N&ts8W)tkPk_bs8N#trquctrr<#trqucrrr2p!rr<#s +rr2otrr2p'rr;utrr<#troa:brr;uss8Mrr!ri6"rr2iq!<2ut!ri6"rVlfr!<2ut#lal's8N&u +rr2*\J,~> +"98B#rqcWprr)isrr2otrr2otrqHHmrX\hibJ)Ecn+ZbZrr<#ts8W)tr;Qlus8W)trr`9#s8N#t +!<2or!<2rs!<2rs"9/?#rr)isrqHHmrr +"98B#rqcWprr)isrr2otrr2otrqHHmrX\hjc,%rmnFuk[rr<#ts8W)tr;Qlus8W)trr`9#s8N#t +!<2or!<2rs!<2rs"9/?#rr)isrqHHmrr +"98B#rqcWprr)isrr2otrr2otrqHHmrX\hkd)FZ#nFuk[rr<#ts8W)tr;Qlus8W)trr`9#s8N#t +!<2or!<2rs!<2rs"9/?#rr)isrqHHmrr +"98B#rqucrrr2p%rr<#ts8N#srrW3"rq?Blrr<#srWN9#s8W)mrrE&mrrE&srrE&trrE&rrrrE% +rr2rsqu?Wo!rr9"rVlWm!<2fo!<2rs!WN,urr<#urr2otrr)lsrr2p!rr;urrs&K&s8N&trql`o +rW<-!s8Dp"s8N#ts8DrsrrE&ts8W)ps8W)ts8W)trrE&rrs/Q's8N&urr;rrrVuoss8N)urVuos +&bX%f1G^dB7q$nL`m3#`g>:feiY:>,g=b!'cG,ud;)L-c3c;7grVulprs/Q's8N&urr;rrrVuos +s8N)urVulrrVuoss8W,us8W&ss8N)urr<#tqZ$Tprr<#trr2utr;Qcrq>^Hnrr<#t"98B#rr)lq +rr2rtrqud!rr<#trr2rtrqQKprr;uss8W)urrE&qrrE&os8N#ss8W'#s8N&trVuiqrr<#tr;Qp! +s8W)trr<#tq#:Eps8N#ts8N&u!<2lq!<2forr2oss8E-#rr;urs8Drrs8W)rrri?$s8N#ss8W)n +rrW3"rr2rtrr;uurql]qrdX~> +"98B#rqucrrr2p%rr<#ts8N#srrW3"rq?Blrr<#srWN9#s8W)mrrE&mrrE&srrE&trrE&rrrrE% +rr2rsqu?Wo!rr9"rVlWm!<2fo!<2rs!WN,urr<#urr2otrr)lsrr2p!rr;urrs&K&s8N&trql`o +rW<-!s8Dp"s8N#ts8DrsrrE&ts8W)ps8W)ts8W)trrE&rrs/Q's8N&urr;rrrVuoss8N)urVuos +!qjQarBU`gD2PdJf@o*?jS\0Tk2YFYgtC<#W-2H65s\"a[Hmekrqud$rr<#ts8W)urVlcqs8N&u +!<2rsrr2lrs8N&us8N&urVlis!<2uts8Mlps8N#ts8N#t!<2or!<2forr2oss8E-#rr;urs8Drr +s8W)rrri?$s8N#ss8W)nrrW3"rr2rtrr;uurql]qrqZTnrr2rtrWE3"s8MusrVlfrs8Mrr"TJH$ +rr2oss8Mfn!ri6!rr<#ts8N)uqu6Zqq>^Hnrr<#t"98B#rr)lqrr2rtrqud!rr<#trr2rtrqQKp +rr;uss8W)urrE&qrrE%K~> +"98B#rqucrrr2p%rr<#ts8N#srrW3"rq?Blrr<#srWN9#s8W)mrrE&mrrE&srrE&trrE&rrrrE% +rr2rsqu?Wo!rr9"rVlWm!<2fo!<2rs!WN,urr<#urr2otrr)lsrr2p!rr;urrs&K&s8N&trql`o +rW<-!s8Dp"s8N#ts8DrsrrE&ts8W)ps8W)ts8W)trrE&rrs/Q's8N&urr;rrrVuoss8N)urVuos +&G=/&;,C+e@="0QfAGTKkNVp1'^FoFjl57Vd'84<;c-CmJ%FtEs8Mrr#QFc'rr<#ts8Drqs8W)u +rrE&ss8N#rs8W)us8W)us8DrsrrE&ts8W)ps8W)ts8W)trrE&rrrE&os8N#ss8W'#s8N&trVuiq +rr<#tr;Qp!s8W)trr<#tq#:Eps8N#ts8N&u!<2lq!<2forr2oss8E-#rr;urs8Drrs8W)rrri?$ +s8N#ss8W)nrrW3"rr2rtrr;uurql]qrqZTnrr2rtrWE3"s8MusrVlfrs8Mrr"TJH$rr2oss8Mfn +!ri6!rr<#ts8N)uqu6ZqJ,~> +s8W,u!<<#srVllsqu6p#s8W)urr;uorrE&prrE&qrrE&trr`9#s8Mus!<2ip!<2ip$3'u(s8N&t +s8W)rrrW3"rq$-irqufrrW<-!rqucrrr2otrr2otrqufrrqZTorr2p&rr;uts8N&trVuos!WW/d +s8W)orrE&prrE&rrrrE%rr2rsrVm'#s8W)urr)j!rr;usrVm3's8N&ts8VA88,b:Q:kl'fc.D%E +o(MnWrr)j4rVH<`oC:qqd)i\U +s8W,u!<<#srVllsqu6p#s8W)urr;uorrE&prrE&qrrE&trr`9#s8Mus!<2ip!<2ip$3'u(s8N&t +s8W)rrrW3"rq$-irqufrrW<-!rqucrrr2otrr2otrqufrrqZTorr2p&rr;uts8N&trVuos!WW/d +s8W)orrE&prrE&rrrrE%rr2rsrVm'#s8W)urr)j!rr;usrVm3's8N&ts8VA?;uT&k>`lG:f&,`^ +o_84[rr)j4rVQHep@RV-g![U%@6m1E96J/Mrr;urrrrE%s8N&trVm!!s8N#rrri?$rr;uqrrE&k +s8W)orrE&prrE&rrr`9#rr2fp"9/?#rql]srr;uqrri?$rr;uss8W)js8W)ps8W)qrr`9#rr2os +s8Mio"9/?#rql]srr;uqrri?$rr;uss8W)js8W)ps8W)qrr`9#rr2oss8Mio"9/?#rql]srr;uq +rri?$rr;uss8W)js8W)ps8W)qrr`9#rr2oss8MioJ,~> +s8W,u!<<#srVllsqu6p#s8W)urr;uorrE&prrE&qrrE&trr`9#s8Mus!<2ip!<2ip$3'u(s8N&t +s8W)rrrW3"rq$-irqufrrW<-!rqucrrr2otrr2otrqufrrqZTorr2p&rr;uts8N&trVuos!WW/d +s8W)orrE&prrE&rrrrE%rr2rsrVm'#s8W)urr)j!rr;usrVm3's8N&ts8VDH@K'+4BUc`bhW4(p +p%S:Zr;HR&qtg-`p@Rb6i7c5HDZ3K;=b"Hhrr;urrrrE%s8N&trVm!!s8N#rrri?$rr;uqrrE&k +s8W)orrE&prrE&rrr`9#rr2fp"9/?#rql]srr;uqrri?$rr;uss8W)js8W)ps8W)qrr`9#rr2os +s8Mio"9/?#rql]srr;uqrri?$rr;uss8W)js8W)ps8W)qrr`9#rr2oss8Mio"9/?#rql]srr;uq +rri?$rr;uss8W)js8W)ps8W)qrr`9#rr2oss8MioJ,~> +!<<&t#64]&rr<#tr;R'%s8N&trr<#tqYpZss8W)qs8W)urs/Q'rr2rss8W)t$NL,)s8W)urr<#t +rr<#ts8N)uq>UHoq#:?nq#CBn"98B#rr)j$rr<#ts8N#ms8W'&s8N&ts8N#ns8W)us8W)srrE&q +rrrE%rr<#tq#CBn!WW/qrrW3"rqcWprqud$rr;utrr<#tq>UHor;Qcrp\tBqs8N&trVm>uZqWA5 +4'7ZddG*s[rU9^trVH$Ae&S4_5Vt8UNT'g8s8Mrr!<2`m"TJH#s8Mrr!<2rs"9/?#rqcWrrr;uo +rrE&rrs/Q'rr;uts8Mrr!ri6!q#:Eps8Mlp!<2ip!<2ip!ri6!r;Qits8Mrr!ri6!qu6Zqr;Qcr +rVuos!WW/orrW3"rqcWprqcWprqcWrrr;uqrrW3"rquctrr;uprrE&rrrE&ss8W'!s8Mfn!ri6! +qYpQpqYpQpqYpWrs8Mrr!ri6!r;Qits8Moq!<2or!<2rss8E'!rr2qJ~> +!<<&t#64]&rr<#tr;R'%s8N&trr<#tqYpZss8W)qs8W)urs/Q'rr2rss8W)t$NL,)s8W)urr<#t +rr<#ts8N)uq>UHoq#:?nq#CBn"98B#rr)j$rr<#ts8N#ms8W'&s8N&ts8N#ns8W)us8W)srrE&q +rrrE%rr<#tq#CBn!WW/qrrW3"rqcWprqud$rr;utrr<#tq>UHor;Qcrp\tBqs8N&trVm>u[ol$` +87\4:g#;AnrU9^trVQ0IgX*$09gM'5P2lK?s8Mrr!<2`m"TJH#s8Mrr!<2rs"9/?#rqcWrrr;uo +rrE&rrs/Q'rr;uts8Mrr!ri6!q#:Eps8Mlp!<2ip!<2ip!ri6!r;Qits8Mrr!ri6!qu6Zqr;Qcr +rVuos!WW/orrW3"rqcWprqcWprqcWrrr;uqrrW3"rquctrr;uprrE&rrrE&ss8W'!s8Mfn!ri6! +qYpQpqYpQpqYpWrs8Mrr!ri6!r;Qits8Moq!<2or!<2rss8E'!rr2qJ~> +!<<&t#64]&rr<#tr;R'%s8N&trr<#tqYpZss8W)qs8W)urs/Q'rr2rss8W)t$NL,)s8W)urr<#t +rr<#ts8N)uq>UHoq#:?nq#CBn"98B#rr)j$rr<#ts8N#ms8W'&s8N&ts8N#ns8W)us8W)srrE&q +rrrE%rr<#tq#CBn!WW/qrrW3"rqcWprqud$rr;utrr<#tq>UHor;Qcrp\tBqs8N&trVm;t]4Oo; +=)k(hiTK_*rqlfqr;HQor;HQor;QZpr"/_slJgI(DHp%9<12hFs8W)rrrE&mrri?$rr;uqrrE&s +rr`9#s8Mlp!ri6!qYpQpr;R$$s8N&ts8W)rrrW3"rqQKprr;uorrE&prrE&prrW3"rquctrr;uq +rrW3"rql]qrqucrrr)lsrW3&uq#:Eps8Mlp!<2ip!<2ip!ri6!r;Qits8Mrr!ri6!qu6Zqr;Qcr +rVuos!WW/orrW3"rqcWprqcWprqcWrrr;uqrrW3"rquctrr;uprrE&rrrE&ss8W'!s8N#tJ,~> +s8N)uqu6Zqr;Zfr!WW/srrE&prrE&srri?$rr;urrs&K&s8N#trr)j#rr;uts8Mus!<2cns8Moq +!ri6!r;R$$s8N&urr;urrrE&orrW3"rqZR#rr;utrr;uts8Mlp!<2utrr2os!<2rs!<2rs%K?D, +s8N&ts8N&urr;urrrE&trs/Q'rr;uts8Mlp$NC))s8W)us8N&tp\t?ps8W)frrN-!rr*?+nr5pj +1JWqEcee*equ6Woqu-Zqrr)iq'E.q0rVZ3De&.bk1G^pu`Voi:rp]pgrr;usrVm!!s8W)srs8W( +s8N&ts8W)prsJc*rr<#ts8W)urqQKnrr2otrr2rsrW3&uqu6fus8N&urr2lr"9/?#rr)lsrr +s8N)uqu6Zqr;Zfr!WW/srrE&prrE&srri?$rr;urrs&K&s8N#trr)j#rr;uts8Mus!<2cns8Moq +!ri6!r;R$$s8N&urr;urrrE&orrW3"rqZR#rr;utrr;uts8Mlp!<2utrr2os!<2rs!<2rs%K?D, +s8N&ts8N&urr;urrrE&trs/Q'rr;uts8Mlp$NC))s8W)us8N&tp\t?ps8W)frrN-!rr*?+nrld5 +6!BVrf];T"qu6Woqu-Zqrr)iq'E.q0rVZ9LgWZR;5s[kRaSl/=rp]pgrr;usrVm!!s8W)srs8W( +s8N&ts8W)prsJc*rr<#ts8W)urqQKnrr2otrr2rsrW3&uqu6fus8N&urr2lr"9/?#rr)lsrr +s8N)uqu6Zqr;Zfr!WW/srrE&prrE&srri?$rr;urrs&K&s8N#trr)j#rr;uts8Mus!<2cns8Moq +!ri6!r;R$$s8N&urr;urrrE&orrW3"rqZR#rr;utrr;uts8Mlp!<2utrr2os!<2rs!<2rs%K?D, +s8N&ts8N&urr;urrrE&trs/Q'rr;uts8Mlp$NC))s8W)us8N&tp\t?ps8W)frrN-!rr*?+nsWcZ +;.uZMhs'b0nGN@bqu%''p$1PdY^fSJ;g6F`s8W)frrN-!rr2lr"9/?#rr)j&rr<#ts8N&urqcX% +rr;uts8N&urr;umrrE&trrE&ts8Muus8Moq"TJH#s8W)trVm!!s8W)ss8W)urri?$rr;umrs&K& +s8N&trqQKnrqucrrr2rsrW3&uqu6fus8N&urr2lr"9/?#rr)lsrr +%fcP.s8N#ts8N#ts8N&urVlis(&n75rr<#ts8W)urr<#ts8W)ts8N#ss8W)srrW3"rqucrrqZQo +rquctrr;uqs8W)urrW3"s8N!%s8N&urr;uqrsA])rr2rsrr;usqZ$TppAY-lq>Ud#s8N#ts8N&t +rr)iurr;uss8N#trrrE%s8N&tr;Qlus8N#is8W&us8N#is8W''s8N#trr<#trr2utrVuos!rr9" +rr2os$iT(23& +%fcP.s8N#ts8N#ts8N&urVlis(&n75rr<#ts8W)urr<#ts8W)ts8N#ss8W)srrW3"rqucrrqZQo +rquctrr;uqs8W)urrW3"s8N!%s8N&urr;uqrsA])rr2rsrr;usqZ$TppAY-lq>Ud#s8N#ts8N&t +rr)iurr;uss8N#trrrE%s8N&tr;Qlus8N#is8W&us8N#is8W''s8N#trr<#trr2utrVuos!rr9" +rr2os$iT+;76s@^\_#m4qu-KmrW)oqrW)orrWW9"rr)ipr;I9+qtB4-b`c$m5utSlrr<#trr2ut +rVuos!rr9"rr2iq!<2ors8N&us8MZjs8E#urr2Qis8N&us8N#t!<2fos8E3%rr2rsrqucrrr2rt +rX8c*s8W)ts8N#ts8Mrrs8E3%rr2rsrr2p!rr;umrr`9#rr2os!<2fos8E3%rr2rsrqucrrr2rt +rX8c*s8W)ts8N#ts8Mrrs8E3%rr2rsrr2p!rr;umrr`9#rr2os!<2fos8E3%rr2rsrqucrrr2rt +rX8c*s8W)ts8N#ts8Mrrs8E3%rr2rsrr2p!rr;umrr`9#rr2osJ,~> +%fcP.s8N#ts8N#ts8N&urVlis(&n75rr<#ts8W)urr<#ts8W)ts8N#ss8W)srrW3"rqucrrqZQo +rquctrr;uqs8W)urrW3"s8N!%s8N&urr;uqrsA])rr2rsrr;usqZ$TppAY-lq>Ud#s8N#ts8N&t +rr)iurr;uss8N#trrrE%s8N&tr;Qlus8N#is8W&us8N#is8W''s8N#trr<#trr2utrVuos!rr9" +rr2os%/o:G<)HYD_VXMIq>9=P&,Q"cimaN/;,Li;q#: +qu6ZqrVuoss8N)uq>UHoq#:Qts8W)ts8Mlp!<2`m"TJH$rr2]m!<2or!<2forr2lr!ri6!rr<#t +s8N)urr2utrVuos"98B#rqcWurr;uts8Mcm"oeQ$s8W)rrrE&srrE&trrE&trrrE%s8N&trr<#t +s8N)urVm!!s8W)trrE&trrE&rrrE&orrE&orrE&qrrE&srrW3"rqQL'r6&A$1I[8Ig@"q=rVlcl +rr;rsrr;rrrW)orrW)oorr;p'p>jc5>rOQ*QgjtR!<2rs!ri6!q#:Hqs8W)ts8W)prr`9#s8N#t +!<2ut!<2or!<2fo!<2fo!<2lqs8E3%rr<#trr)isrr)j'rr<#ts8W)us8Mio"oeQ$s8W)rrrE&t +rrE&qrrE&qrrE&trrE&qs8W'%s8N&urr2lr!<2rs$3'u)rr<#ts8W)orrrE%rr<#tr;Qcrrr2ut +qu6Zqqu6Zqrr2utqu?]q"onT%s8N#rrrE&srsA])s8N&urr<#tq>UWts8N&urqucrrr2otrql]q +rql]qrr2otrr)kI~> +qu6ZqrVuoss8N)uq>UHoq#:Qts8W)ts8Mlp!<2`m"TJH$rr2]m!<2or!<2forr2lr!ri6!rr<#t +s8N)urr2utrVuos"98B#rqcWurr;uts8Mcm"oeQ$s8W)rrrE&srrE&trrE&trrrE%s8N&trr<#t +s8N)urVm!!s8W)trrE&trrE&rrrE&orrE&orrE&qrrE&srrW3"rqQL'r68k?5uNuui:6dFrVlcl +rr;rsrr;rrrW)orrW)oorr;p'pZ^JKBgb6]SFQRX!<2rs!ri6!q#:Hqs8W)ts8W)prr`9#s8N#t +!<2ut!<2or!<2fo!<2fo!<2lqs8E3%rr<#trr)isrr)j'rr<#ts8W)us8Mio"oeQ$s8W)rrrE&t +rrE&qrrE&qrrE&trrE&qs8W'%s8N&urr2lr!<2rs$3'u)rr<#ts8W)orrrE%rr<#tr;Qcrrr2ut +qu6Zqqu6Zqrr2utqu?]q"onT%s8N#rrrE&srsA])s8N&urr<#tq>UWts8N&urqucrrr2otrql]q +rql]qrr2otrr)kI~> +qu6ZqrVuoss8N)uq>UHoq#:Qts8W)ts8Mlp!<2`m"TJH$rr2]m!<2or!<2forr2lr!ri6!rr<#t +s8N)urr2utrVuos"98B#rqcWurr;uts8Mcm"oeQ$s8W)rrrE&srrE&trrE&trrrE%s8N&trr<#t +s8N)urVm!!s8W)trrE&trrE&rrrE&orrE&orrE&qrrE&srrW3"rqQL0r6KC\;.-$Pk48EIqu$?h +qu$Bhr;?HhrqlcnrVQcpr;?Hjr;HL!p[$q]G#V=CU@J3^!<2rs!ri6!q#:Hqs8W)ts8W)prr`9# +s8N#t!<2ut!<2or!<2fo!<2fo!<2lqs8E3%rr<#trr)isrr)j'rr<#ts8W)us8Mio"oeQ$s8W)r +rrE&trrE&qrrE&qrrE&trrE&qs8W'%s8N&urr2lr!<2rs$3'u)rr<#ts8W)orrrE%rr<#tr;Qcr +rr2utqu6Zqqu6Zqrr2utqu?]q"onT%s8N#rrrE&srsA])s8N&urr<#tq>UWts8N&urqucrrr2ot +rql]qrql]qrr2otrr)kI~> +rr2utp\t6mqZ$Tpr;QcrrVllsr;Qcrp\t6mqu?]qp&>$krVm!!s8W)rrrE&prrE&trrrE%rr<#t +pAb-ks8W,uqZ$Tprr2utrVllsqu?]qrVuos!rr9!rr2utr;Qlus8W)trrrE%rr<#tp\t?ps8N#s +rr`9#s8Muss8N#ts8N#t!<2ip!<2rs)?0[9rr;uts8N&ts8N&ts89l=1,;Urbie`Vr<`Dmh7Rto +1-LK_rr3`4s8W)urr<#ts8N&ts8N&dgsj0LX8[JLQFPE+q"k!mrr;usrr3*"s8W)ss8W)ts8W)t +rrE&prrE&rrrE&qrrW3"rr)lsrW3&urVm!!s8N#qrrE&qs8W)srrW3"rr)lsrr<#urr)iurr<#t +rr;uurqucrrql]srr;urs8W'!s8Mus"9/?"rqucrrql`qrr)iurr;urs8W)us8W)srrW3"s8N#t +rrE&rrrE&qrrW3"rr)lsrW3&urVm!!s8N#qrrE&qs8W)srrW3"rr)lsrr<#urr)iurr<#trr +rr2utp\t6mqZ$Tpr;QcrrVllsr;Qcrp\t6mqu?]qp&>$krVm!!s8W)rrrE&prrE&trrrE%rr<#t +pAb-ks8W,uqZ$Tprr2utrVllsqu?]qrVuos!rr9!rr2utr;Qlus8W)trrrE%rr<#tp\t?ps8N#s +rr`9#s8Muss8N#ts8N#t!<2ip!<2rs)?0[9rr;uts8N&ts8N&ts89rI5XASPea*"dr<`Doj2?L> +5Y7%+rr3`4s8W)urr<#ts8N&ts8N&dh:9ERYPs4YS%I24q"k!mrr;usrr3*"s8W)ss8W)ts8W)t +rrE&prrE&rrrE&qrrW3"rr)lsrW3&urVm!!s8N#qrrE&qs8W)srrW3"rr)lsrr<#urr)iurr<#t +rr;uurqucrrql]srr;urs8W'!s8Mus"9/?"rqucrrql`qrr)iurr;urs8W)us8W)srrW3"s8N#t +rrE&rrrE&qrrW3"rr)lsrW3&urVm!!s8N#qrrE&qs8W)srrW3"rr)lsrr<#urr)iurr<#trr +rr2utp\t6mqZ$Tpr;QcrrVllsr;Qcrp\t6mqu?]qp&>$krVm!!s8W)rrrE&prrE&trrrE%rr<#t +pAb-ks8W,uqZ$Tprr2utrVllsqu?]qrVuos!rr9!rr2utr;Qlus8W)trrrE%rr<#tp\t?ps8N#s +rr`9#s8Muss8N#ts8N#t!<2ip!<2rs)ZKd:rr;uts8N&ts8N&ts8:&W;,Co2h!Xt7r;6Qlqu$Kk +rqufnqYU?jrVQZmrqm*"p#sY[=&E(dnc&P'rr<#ts8N&urr;utrr;utn(uX8]X.Tu"JWW\kP4oR +"9/?"rr2p"rr<#trVuosrr<#trr2utqYpQpr;Qcrqu6`ss8Muss8E'!rr)j!rr;usr;Qcrqu?]q +rVlrus8Muss8N&us8Mus!ri6"rr2rt!<2or!<2lq!ri6!rVuos!WW/trr`9#rr2iq!<2lqs8Mus +!ri6!rVuoss8W,urVlrus8W)ts8N)ur;Qcrqu6`ss8Muss8E'!rr)j!rr;usr;Qcrqu?]qrVlru +s8Muss8N&us8Mus!ri6"rr2rt!ri6"J,~> +qu6`ss8Mrr!ri6!rVllso)A^hqYpQpqYq!'p?:Z'p\`[croLu[p\tHss8N&roCW%^!<2uts8Mus +"9/?#rqcZmrW3&urr3#us8DrprrE&srrE&rs8W'$s8N#trr)j!rr<#tqYpQprr<#trVm!!s8W)p +rtYP5s8N#ts8N#trr;utrr2rtrr;usrVm'#s8W)us8N!"s8N&trVuoss8N3#s8W)trrW3"s8N!- +rOl#`3+9AJmem"]r;?NlquZiprVl]urVZTlr;?Qm!rW#prr)lps8<]1rVcZlqVo\^5;G-?l2L\^ +s8N&urr2rtr[@X5hmRo!5!:tg3&36F2EEud6>EOHkkP2Xrr2rss8N&trr<#ts8N#rrrrE%s8N&u +rr*H.rr<#trr<#trr<#trr;usrrE&ts8;its8N#qs8W)urrE&trt581s8N#trr;uts8N&trr;us +r;QcrrVuosrr3H,s8N#ts8N#ts8N#trr2otrr2rqrW<-!rqufrrr;uurr2p0rr<#trr;utrr<#t +s8N#trr2iq!<2rss8N#t%K?D,rr<#trr<#trr;usrrE&ts8;its8N#qs8W)urrE&trt581s8N#t +rr;uts8N&trr;usr;QcrrVuosrr30$s8N#ts*t~> +qu6`ss8Mrr!ri6!rVllso)A^hqYpQpqYq!'p?:Z'p\`[croLu[p\tHss8N&roCW%^!<2uts8Mus +"9/?#rqcZmrW3&urr3#us8DrprrE&srrE&rs8W'$s8N#trr)j!rr<#tqYpQprr<#trVm!!s8W)p +rtYP5s8N#ts8N#trr;utrr2rtrr;usrVm'#s8W)us8N!"s8N&trVuoss8N3#s8W)trrW3"s8N!- +rP2T&7;Tfqnbi=`r;?NlquZiprVl]urVZTlr;?Qm!rW#prr)lps8<]1rVcZlqWH=u9gD'qlMge_ +s8N&urr2rtr[@X5iOXV:91h`F7R9:*6UsaC:NEVdl1k;Yrr2rss8N&trr<#ts8N#rrrrE%s8N&u +rr*H.rr<#trr<#trr<#trr;usrrE&ts8;its8N#qs8W)urrE&trt581s8N#trr;uts8N&trr;us +r;QcrrVuosrr3H,s8N#ts8N#ts8N#trr2otrr2rqrW<-!rqufrrr;uurr2p0rr<#trr;utrr<#t +s8N#trr2iq!<2rss8N#t%K?D,rr<#trr<#trr;usrrE&ts8;its8N#qs8W)urrE&trt581s8N#t +rr;uts8N&trr;usr;QcrrVuosrr30$s8N#ts*t~> +qu6`ss8Mrr!ri6!rVllso)A^hqYpQpqYq!'p?:Z'p\`[croLu[p\tHss8N&roCW%^!<2uts8Mus +"9/?#rqcZmrW3&urr3#us8DrprrE&srrE&rs8W'$s8N#trr)j!rr<#tqYpQprr<#trVm!!s8W)p +rtYP5s8N#ts8N#trr;utrr2rtrr;usrVm'#s8W)us8N!"s8N&trVuoss8N3#s8W)trrW3"s8N!- +rPW>GYn@Uli-n`s8N&u +rr2rtr[@X6ikC:U>$4p- +!<2ut$3'u(s8W)us8N#ls8W)rs8W)srrE&trrE&srr`9#s8N#t']aC/BhXi[DG'i<;nW/0rr;ut +s8Moq#3pl6rr;usr;Qlus8W)trrE&qrr`8tg\UgIs8Mfn!<2Ti"oeQ%rr;umrr`9#s8Mrrs8N&u +!<2ut!<2lq"TJH$rr2fp!<2ut!<2uts8Mus!<2rs!<2ors8MQg&,uV/rr<#tbY0cMEP:,tr;?L" +r;HQkrVcZmrVZTl"oS>tr;HQlr;ccorVud(rVZWmqWQ=o82E2br:p9urpn!hGu6@R1,A\^!&FF- +"?^1T`:Ep-!<2ut!<2uts8Mus!<2rs!<2ors8MWi!ri6!rr<#trVlrus8Mus!<2ut!<2rs!<2or +!<2ips8Mlps8M?a!ri6!rr<#trVlrus8Mus!<2ut!<2rs!<2or!<2ips8Mlps8M?a!ri6!rr<#t +rVlrus8Mus!<2ut!<2rs!<2or!<2ips8Mlps8MWiJ,~> +!<2ut$3'u(s8W)us8N#ls8W)rs8W)srrE&trrE&srr`9#s8N#t']aC/BhXi[DG'i<;nW/0rr;ut +s8Moq#3pl6rr;usr;Qlus8W)trrE&qrr`8tg\UgIs8Mfn!<2Ti"oeQ%rr;umrr`9#s8Mrrs8N&u +!<2ut!<2lq"TJH$rr2fp!<2ut!<2uts8Mus!<2rs!<2ors8MQg&,uV/rr<#tbu[1uI)Y+;r;?L" +r;HQkrVcZmrVZTl"oS>tr;HQlr;ccorVud(rVZWmqs<"1 +!<2ut$3'u(s8W)us8N#ls8W)rs8W)srrE&trrE&srr`9#s8N#t']aC/BhXi[DG'i<;nW/0rr;ut +s8Moq#3pl6rr;usr;Qlus8W)trrE&qrr`8tg\UgIs8Mfn!<2Ti"oeQ%rr;umrr`9#s8Mrrs8N&u +!<2ut!<2lq"TJH$rr2fp!<2ut!<2uts8Mus!<2rs!<2ors8MQg')qq2rr<#tcsopOLX,)Uqu$?g +pA=pfrVZ]ms8;ln"T8/or;6Hj%f?2%qu$Bgn)16V;,`q]q#:Nso?!V]BD,1&;#=)m=*L7YoD\ai +rr2otrr2rtrr)isrr)isrqufrrq$-krr;uss8W)srrW3"rr)isrr2otrr)isrqucrrqcZprqcZp +rp0Rcrr;uss8W)srrW3"rr)isrr2otrr)isrqucrrqcZprqcZprp0Rcrr;uss8W)srrW3"rr)is +rr2otrr)isrqucrrqcZprqcZprq$/?~> +s8E'!rr)j!rr<#trVuoss8W)t!rr9!rr2utrVllsrVuosrVn8Es8N&urr;S))MlY-J`UcAr92;d +s8;<1h>%!Il0[unnG^s%CZY9bs8W)trrE&prs8RkYjq_ls8W)ss8W)urrE&trs&K&rr2rtrqQKn +rr)isrr2otrqcWprr2rtrr<#urr2otrqcZprr2otrr2otrr2otrr2rtrr;uurquctrr;usrrE&t +s8W)us8W)ts8W)srso&.rr2rtroIlN1hje^pA+Xer;QZpr;Z]qr;$9kr;QWrr;HQkr;ccprVud0 +rVQ!-TKb1pa8Q&;rr<#trV"!F7f>+[2FD/.M3XL%Whu8BG$d6g2)@$F7Ua1*rVlfsrr2rtrr;uu +rquctrr;usrrE&ts8W)us8W)trrE&trs8W(rr;uss8W)trrE&ts8W)prrE&ps8W)trrE&srr`9# +s8N#t!<2ip!<2uts8N&us8N#t!<2ut#lal's8N#ts8N#t!<2uts8Mlp!<2ips8N#t!<2rs"9/?# +rr2otrqcWprr2rtrr<#urr2otrr2p'rr;utrr2rtrr2otrr2rtrqcWprqcZprr2otrr)j!rr<#t +rr2utqYpQprr<#ts8W,uJ,~> +s8E'!rr)j!rr<#trVuoss8W)t!rr9!rr2utrVllsrVuosrVn8Es8N&urr;S))MlY-J`UcAr92;d +s8;<1h>%!Il0[unnG^s%CZY9bs8W)trrE&prs8RkYjq_ls8W)ss8W)urrE&trs&K&rr2rtrqQKn +rr)isrr2otrqcWprr2rtrr<#urr2otrqcZprr2otrr2otrr2otrr2rtrr;uurquctrr;usrrE&t +s8W)us8W)ts8W)srso&.rr2rtroS8f6?C9/q"ajgr;QZpr;Z]qr;$9kr;QWrr;HQkr;ccprVud0 +rVQ'7W_>]Mao28=rr<#trV"*Q;Z/lu6r7o]P+SML['6BkJSI\D6U=");Ja;Crr2otrr2rtrr;uu +rquctrr;usrrE&ts8W)us8W)trrE&trs8W(rr;uss8W)trrE&ts8W)prrE&ps8W)trrE&srr`9# +s8N#t!<2ip!<2uts8N&us8N#t!<2ut#lal's8N#ts8N#t!<2uts8Mlp!<2ips8N#t!<2rs"9/?# +rr2otrqcWprr2rtrr<#urr2otrr2p'rr;utrr2rtrr2otrr2rtrqcWprqcZprr2otrr)j!rr<#t +rr2utqYpQprr<#ts8W,uJ,~> +s8E'!rr)j!rr<#trVuoss8W)t!rr9!rr2utrVllsrVuosrVn8Es8N&urr;S))MlY-J`UcAr92;d +s8;<1h>%!Il0[unnG^s%CZY9bs8W)trrE&prs8RkYjq_ls8W)ss8W)urrE&trs&K&rr2rtrqQKn +rr)isrr2otrqcWprr2rtrr<#urr2otrqcZprr2otrr2otrr2otrr2rtrr;uurquctrr;usrrE&t +s8W)us8W)ts8W)srso&.rr2rtro\],;Ld*Ypso6TqXNFK>>SGFrVulrs8W)sp;MSjrD=D2?@A'. +WN +')qq1rr<#trr<#ts8N&urr2rsrr;usrVllsq#:?nrr3'!s8N#t,l[iDcn0kHs8VZ\DG'i?-*mHD +6q9S!oAVW4?m.\iK+K#&dJj(D!ri6!rr30$s8N&trqud#Vf@UDq#:9lrrE&qrsJc*rr;utrr;ut +rr2otrr2p#rr<#trr)isrr2otrr2rtrql]qrr2p$rr;utrr2Kg!ri6!rVm$"s8N&trr33%s8N&t +s8N#t"TJH#s8Mus!<2or"9/?"rr2p(nprPQB>W[(rVc`n!WDrir;uoqr:^'hr;$9kr;QZpr!2`B +O#f$ja8Gr:%/f1_>Vn5m2b[Y.[,q/P'Be6)eBc=EMdB+71G^dnZ0VAgrr)j"rr;utrr2p%rr;ut +rr;usrrE&trrE&orrE&ts8W'$s8N&trql]qrqQKtrr;utrr;usrsSi+rr;uts8N&ts8N#t!<2ut +!ri6!rVm!!s8W)orrE&ts8W'$s8N&trql]qrqQKtrr;utrr;usrsSi+rr;uts8N&ts8N#t!<2ut +!ri6!rVm!!s8W)orrE&ts8W'$s8N&trql]qrqQKtrr;utrr;usrsSi+rr;uts8N&ts8N#t!<2ut +!ri6!rVm'#s8W)us*t~> +')qq1rr<#trr<#ts8N&urr2rsrr;usrVllsq#:?nrr3'!s8N#t,l[iDcn0kHs8VZ\DG'i?-*mHD +6q9S!oAVW4?m.\iK+K#&dJj(D!ri6!rr30$s8N&trqud#Vf@UDq#:9lrrE&qrsJc*rr;utrr;ut +rr2otrr2p#rr<#trr)isrr2otrr2rtrql]qrr2p$rr;utrr2Kg!ri6!rVm$"s8N&trr33%s8N&t +s8N#t"TJH#s8Mus!<2or"9/?"rr2p(nq]RuEm*YArVc`n!WDrir;uoqr:^'hr;$9kr;QZpr!2fL +R7BPGao)/<%/f4eAO8[K79F>[\`in[$L?d1gt:,hP\O>fr]p^$[d3nlrr)j"rr;utrr2p%rr;ut +rr;usrrE&trrE&orrE&ts8W'$s8N&trql]qrqQKtrr;utrr;usrsSi+rr;uts8N&ts8N#t!<2ut +!ri6!rVm!!s8W)orrE&ts8W'$s8N&trql]qrqQKtrr;utrr;usrsSi+rr;uts8N&ts8N#t!<2ut +!ri6!rVm!!s8W)orrE&ts8W'$s8N&trql]qrqQKtrr;utrr;usrsSi+rr;uts8N&ts8N#t!<2ut +!ri6!rVm'#s8W)us*t~> +')qq1rr<#trr<#ts8N&urr2rsrr;usrVllsq#:?nrr3'!s8N#t,l[iDcn0kHs8VZ\DG'i?-*mHD +6q9S!oAVW4?m.\iK+K#&dJj(D!ri6!rr30$s8N&trqud#Vf@UDq#:9lrrE&qrsJc*rr;utrr;ut +rr2otrr2p#rr<#trr)isrr2otrr2rtrql]qrr2p$rr;utrr2Kg!ri6!rVm$"s8N&trr33%s8N&t +s8N#t"TJH#s8Mus!<2or"9/?"rr2p&o8umJIadWXrql`lqtgBir;-Tmqtp6Squ?KtoAlZI;.e)N +rr3)ukHT"*;$Bp1GE9K'qXP +"TSK$s8Muss8E'!rr)lqrql]srr;urrrE&prrE&qs!RgGs2cULs8W)uokmD"]d9uE4d4p(1<\Z7 +B@rIuaj<+^jn8ZQs8Mrr!<2fo!<2rs#In_lI^enJrr2rtrqufrrr)j!rr;usrVm!!s8N#orrW3" +rqud!rr;utrr2p!rr;unrrE&srrE&ss8W)krsA])s8N&ts8N&tqu6cts8W)prrE&srrW3"rr2p% +Ys's6WS[IIr;cckrVufnr;ccmr;ccor<)urrVZHh(]<^AE&TR^kPtPUZtD0M1GWF +"TSK$s8Muss8E'!rr)lqrql]srr;urrrE&prrE&qs!RgGs2cULs8W)uokmD"]d9uE4d4p(1<\Z7 +B@rIuaj<+^jn8ZQs8Mrr!<2fo!<2rs#In_lI^enJrr2rtrqufrrr)j!rr;usrVm!!s8N#orrW3" +rqud!rr;utrr2p!rr;unrrE&srrE&ss8W)krsA])s8N&ts8N&tqu6cts8W)prrE&srrW3"rr2p% +ZqCp& +p[de6gXjc_O_7'J5t?(1r;-F"rr<#ts8N&ts8Moq"9/?#rqucrrr2p$rr<#ts8Moq!<2Qh"oeQ$ +rr;uqs8N#trrrE%rr<#trr3'!s8Mus"oeQ$s8W)rrrE&trrrE%s8N&tqu6Zqo)Amms8N#trqufq +rr +"TSK$s8Muss8E'!rr)lqrql]srr;urrrE&prrE&qs!RgGs2cULs8W)uokmD"]d9uE4d4p(1<\Z7 +B@rIuaj<+^jn8ZQs8Mrr!<2fo!<2rs#In_lI^enJrr2rtrqufrrr)j!rr;usrVm!!s8N#orrW3" +rqud!rr;utrr2p!rr;unrrE&srrE&ss8W)krsA])s8N&ts8N&tqu6cts8W)prrE&srrW3"rr2p% +\QD^<]]f.hqZ-Kdqu?NjqZ-KiqZ-KkqZ-Kcq\T,"f7m4$GNo/,pq(lM:f1)6Zd@k/qtg0ds8!<# +oC(r'hq,c:F&Yt5 +rr2utrVllsqYpj#s8W)urr;usr;Qlus8N#srrW3"rqZRBrr;utbUJPLs8VugDG'i?-*kB"=-/>c +al51As3(Y>iB_J`rr;utrr2otrr)isrr2otrr2rtrW3&@rbr!_O5Ba4o)Ajls8N&tq>UHorVlls +rr3<(s8N&ts8W)urqZQorr2otrr2rtrWE3"s8Mio!<2or#lal's8W)urr;usq>UHorVllsp\tR! +s8LYG1HCiUpUHorVllsqYp`us8W)urq??lrqud%rr<#ts8N#trr)isrr2otrr2p#rr<#ts8Muus8Mio +!<2rs!<2ip"oeQ%rr;ukrrE&rrs8W(s8N&trr;urrrE&trrE&trri?$s8N&trW3&uq>UHorVlls +qYp`us8W)urq??lrqud%rr<#ts8N#trr)isrr2otrr2p#rr<#ts8Muus8Mio!<2rsJ,~> +rr2utrVllsqYpj#s8W)urr;usr;Qlus8N#srrW3"rqZRBrr;utbUJPLs8VugDG'i?-*kB"=-/>c +al51As3(Y>iB_J`rr;utrr2otrr)isrr2otrr2rtrW3&@rbr!_O5Ba4o)Ajls8N&tq>UHorVlls +rr3<(s8N&ts8W)urqZQorr2otrr2rtrWE3"s8Mio!<2or#lal's8W)urr;usq>UHorVllsp\tR! +s8L\T5t@X+pWraLqs;C?5XLt:mZ^=06VqjBlh^/L&Gu=un)N0Rc)t_Q5s\/&hY[UHorVllsqYp`us8W)urq??lrqud%rr<#ts8N#trr)isrr2otrr2p#rr<#ts8Muus8Mio +!<2rs!<2ip"oeQ%rr;ukrrE&rrs8W(s8N&trr;urrrE&trrE&trri?$s8N&trW3&uq>UHorVlls +qYp`us8W)urq??lrqud%rr<#ts8N#trr)isrr2otrr2p#rr<#ts8Muus8Mio!<2rsJ,~> +rr2utrVllsqYpj#s8W)urr;usr;Qlus8N#srrW3"rqZRBrr;utbUJPLs8VugDG'i?-*kB"=-/>c +al51As3(Y>iB_J`rr;utrr2otrr)isrr2otrr2rtrW3&@rbr!_O5Ba4o)Ajls8N&tq>UHorVlls +rr3<(s8N&ts8W)urqZQorr2otrr2rtrWE3"s8Mio!<2or#lal's8W)urr;usq>UHorVllsp\tR! +s8Lbc;-'aZp\amgqYg9lqYU9g!W2`dqZ-Kjqu?NmqZ-KlqZ-Kiq[r\nd!8JdT_e,H=]&('IE1[L +rVHTkqYL9hrqd9'q=jFCini4pF]qX>>*InArr39's8N&urr;utrr2`n!<2rs!<2ip"oeQ%rr;uk +rrE&rrs8W(s8N&trr;urrrE&trrE&trri?$s8N&trW3&uq>UHorVllsqYp`us8W)urq??lrqud% +rr<#ts8N#trr)isrr2otrr2p#rr<#ts8Muus8Mio!<2rs!<2ip"oeQ%rr;ukrrE&rrs8W(s8N&t +rr;urrrE&trrE&trri?$s8N&trW3&uq>UHorVqB~> +(]OI6rr;uts8N&urr2rss8W)us8N&urr)isrq??orr;utrr2iq+lu'bame6$lY]>m]d9u<)Mmt^ +jRV:fPQ&o/S)ZqNqu-NirrE&trrE&trrE&rrrC^NEW9tdI^ntJs8W)urr<#trr2otrr)j"rr;ut +rr2rtrW<-!rr)isrqcWrrr;usrr`9#s8N#t!<2ut!<2or!<2rs"TJH#s8N#ts8N#t!<2Zk$3'u( +s8N#ts8N#srrE&trrE&trsSi+rpb@m20[R@qtpBj!;lWj!;l`m!W2foqu6Knqu-Eoqu$?gr;ZZo +r;ZZor;ZZor##:l]0\;=V/\=I2hK'Br;?Hhr;6Bhr;6BjquHWjr!rW#n_hmBaIZj%1,Dh1q>UBo +rq69orr;utrr2rtrr2otrr2rtrr +(]OI6rr;uts8N&urr2rss8W)us8N&urr)isrq??orr;utrr2iq+lu'bame6$lY]>m]d9u<)Mmt^ +jRV:fPQ&o/S)ZqNqu-NirrE&trrE&trrE&rrrC^NEW9tdI^ntJs8W)urr<#trr2otrr)j"rr;ut +rr2rtrW<-!rr)isrqcWrrr;usrr`9#s8N#t!<2ut!<2or!<2rs"TJH#s8N#ts8N#t!<2Zk$3'u( +s8N#ts8N#srrE&trrE&trsSi+rpbV-6@mn`qtpBj!;lWj!;l`m!W2foqu6Knqu-Eoqu$?gr;ZZo +r;ZZor;ZZor##:p_bNKlWHgfr7#B"Yr;?Hhr;6Bhr;6BjquHWjr;ZX&oB"`Zd&1_N5s\e]q>UBo +rq69orr;utrr2rtrr2otrr2rtrr +(]OI6rr;uts8N&urr2rss8W)us8N&urr)isrq??orr;utrr2iq+lu'bame6$lY]>m]d9u<)Mmt^ +jRV:fPQ&o/S)ZqNqu-NirrE&trrE&trrE&rrrC^NEW9tdI^ntJs8W)urr<#trr2otrr)j"rr;ut +rr2rtrW<-!rr)isrqcWrrr;usrr`9#s8N#t!<2ut!<2or!<2rs"TJH#s8N#ts8N#t!<2Zk$3'u( +s8N#ts8N#srrE&trrE&trsJc*rpl"F;N0T-qYg9mqYU-cq[iW$qtg0dqtg0dqtg0dqtg0cqZlup +qYU-cqtpBhs8*K*mE8d4>HWQU;,i\#p%nR^qtg0gqZ-KkqZ?WkqYU.!qXj(4i7Y>\=&Dh/[e]q& +!<2Zk"TJH#s8N#ts8N#t!<2uts8N&u!ri6!qYpQprVlots8N#prrE&rrrE&srrN-!rr2lr"9/?# +rr)isrr2otrr2rtrr2otrr2rtrr +s8N3#s8W)trrW3"rqZQorqucrrqQKnrqucrrr2rtrr)j>qmf9J4u?j6DG'i?-*m>Z(OC?be`&HM +s3Lb8mp7)uec,RKrqZQrrr<#tqYpQVrbrltE,]uikPkJ\rr2rss8W)urr;utrr;uss8W)urr2rr +rr^Emr;Qlus8W)orrE&krrE&qrrE&trrE&rrrE&lrs&K&s8N&urr)j)rkLcS<42)i +r;?Hhr;6Qlr;?Tlp\Y$gqtpHkrqlcnq>C9irVR#sg4(k74Z"rZSal^W#5e>rqu$Bhrqufnr;6Ql +r;7$$q=*1ccG,T51G_D"q>C6mrr2otrqucrrql]qrr)isrqHEprr<#tqu?]qrVuosp\t6mq>UHo +rVllsrr33%s8W)us8Moq!<2rs!<2`m"9/?#rql`qrr)lsrqHEmrqZQorr)isrr2p%rr<#ts8W)q +rrE&srrE&mrr`9#s8Moqs8Muss8Mcm!<2fo!<2rs!<2ut#6+Z&rr<#tqu6Zqrr7K~> +s8N3#s8W)trrW3"rqZQorqucrrqQKnrqucrrr2rtrr)j>qmf9J4u?j6DG'i?-*m>Z(OC?be`&HM +s3Lb8mp7)uec,RKrqZQrrr<#tqYpQVrbrltE,]uikPkJ\rr2rss8W)urr;utrr;uss8W)urr2rr +rr^Emr;Qlus8W)orrE&krrE&qrrE&trrE&rrrE&lrs&K&s8N&urr)j)rkqMs@(u+, +r;?Hhr;6Qlr;?Tlp\Y$gqtpHkrqlcnq>C9irVR#tiJKle8O>^9U@J6\#5e>rqu$Bhrqufnr;6Ql +r;7$$q=sO^5s\;NqY^?nrr2otrqucrrql]qrr)isrqHEprr<#tqu?]qrVuosp\t6mq>UHo +rVllsrr33%s8W)us8Moq!<2rs!<2`m"9/?#rql`qrr)lsrqHEmrqZQorr)isrr2p%rr<#ts8W)q +rrE&srrE&mrr`9#s8Moqs8Muss8Mcm!<2fo!<2rs!<2ut#6+Z&rr<#tqu6Zqrr7K~> +s8N3#s8W)trrW3"rqZQorqucrrqQKnrqucrrr2rtrr)j>qmf9J4u?j6DG'i?-*m>Z(OC?be`&HM +s3Lb8mp7)uec,RKrqZQrrr<#tqYpQVrbrltE,]uikPkJ\rr2rss8W)urr;utrr;uss8W)urr2rr +rr^Emr;Qlus8W)orrE&krrE&qrrE&trrE&rrrE&lrs&K&s8N&urr)j%rl85?DTD8B +bk_\@jciS>=&MmuW:/mF%/BGWi8;n[@Sp!.[JKh$!<2ut!<2or!<2lq!<2rs!<2`m"9/?#rql`q +rr)lsrqHEmrqZQorr)isrr2p%rr<#ts8W)qrrE&srrE&mrr`9#s8Moqs8Muss8Mcm!<2fo!<2rs +!<2ut#6+Z&rr<#tqu6ZqrVllsp\t?ps8W)qs8W)ss8W)mrrE&orrE&srrE&trs&K&s8N&urql]q +rr2qJ~> +qu?]qrr2utr;Qcrqu6Zqp&G'krVm'#s8W)urr)j=rp[RucLC_fd/N:Xk5Y;5Yd)aUp"/%!p<`4+ +mDH@!rVmW3s8W)urr;uss8N&ts8W)urr;J1EVj\YI(8hJs8W)ts8W,u"TSK$rr2os!<2ut!<2ip +!<2lqs8N&us8N#ts8El8rr;uss8N&ts8W)urr;uts8N&trr;utrVcfsrVd'%rr;uts8N#srrE&s +rseu-s8N&ts8N#trr<#trVm9)oOp$CSDX5Ar;6BjquZcnqu6Krqu$Bhr;6@%r;6Bhqtp +qu?]qrr2utr;Qcrqu6Zqp&G'krVm'#s8W)urr)j=rp[RucLC_fd/N:Xk5Y;5Yd)aUp"/%!p<`4+ +mDH@!rVmW3s8W)urr;uss8N&ts8W)urr;J1EVj\YI(8hJs8W)ts8W,u"TSK$rr2os!<2ut!<2ip +!<2lqs8N&us8N#ts8El8rr;uss8N&ts8W)urr;uts8N&trr;utrVcfsrVd'%rr;uts8N#srrE&s +rseu-s8N&ts8N#trr<#trVm9)oPm,fV<%OOr;6BjquZcnqu6Krqu$Bhr;6@%r;6Bhqtpo +8jPn+nG`Ferr;uts8N#srrE&srs8W(rr<#ts8N#ss8Drsrr`9#rr2os)#jR8rr<#ts8N#trr;ut +s8N&trr<#trr;us$NL,*s8N#trr;usrr3*"s8W)rs8W)urr`9#rr2osrVlis"9/?"rr2p7rr<#t +s8W)urr2rss8N&urr;uss8W)ts8N!)s8N&urr2rss8N#srr`9#s8Mrrs8N&u"9/?"rr2rrrr +qu?]qrr2utr;Qcrqu6Zqp&G'krVm'#s8W)urr)j=rp[RucLC_fd/N:Xk5Y;5Yd)aUp"/%!p<`4+ +mDH@!rVmW3s8W)urr;uss8N&ts8W)urr;J1EVj\YI(8hJs8W)ts8W,u"TSK$rr2os!<2ut!<2ip +!<2lqs8N&us8N#ts8El8rr;uss8N&ts8W)urr;uts8N&trr;utrVcfsrVd'%rr;uts8N#srrE&s +rseu-s8N&ts8N#trr<#trVm6(om9P'm`q>0se +q#^Egq>'k"q>0s`qYBg4H;RL;IF.ccq>0pcq??]kqYC!`rV?TkqYC*d!r;]hrqR8sjP\qFL0@GR +QLOnQs8N&ts8W)trr2utrVm0&s8N&urr;usrr;rrs8N3#s8N#srttb8s8N&urr;uss8N&ts8W)u +rr2rtrr2rsrX/])s8W)ts8N&trr2p"rr<#tr;Zfrs8N3#s8N#ss8Drsrr`9#rr2os)#jR8rr<#t +s8N#trr;uts8N&trr<#trr;us$NL,*s8N#trr;usrr3*"s8W)rs8W)urr`9#rr2osrVlis"9/?" +rr2p7rr<#ts8W)urr2rss8N&urr;uss8W)ts8N!)s8N&urr2rss8N#srr`9#s8Mrrs8N&u!WN+L~> +!<2rs!ri6!r;Qp!s8W)to`+sjrr3-#s8W)tr;Qcro`+pirVm'#s8N&urqcX"rr<#ts8N&trr2ut +r;Zfrr;Zfr"onSoMK*V7EW0nYF0P?8rrE&rrrE&trrE&rrrrE%rr2rsrVuos"onT%s8N&trqQNn +rqufrrW3&urr2utrr<#to)Adjs8W)trVulrs8N)ur;Qlus8N#srseu+XYVb5r;?HhqtpNm +r;6Kk"oJ5pr;6B^quQ]mrVQNjs82io$2aYuj.S\'L?/71quHWjqulopr;6BgquZcnqu6L'qu$?g +oAIs?`Ip9.1PtMrrrW3"s8N#rs8W)ns8W)rs8W)srrE&rs8N#srri?$rr;uss8Dots8Moq!ri6! +q>UQrs8W)hs8W)rs8W)srrE&rs8N#srri?$rr;uss8Dots8Moq!ri6!q>UQrs8W)hs8W)rs8W)s +rrE&rs8N#srri?$rr;uss8Dots8Moq!ri6!q>UQrs8W)ks*t~> +!<2rs!ri6!r;Qp!s8W)to`+sjrr3-#s8W)tr;Qcro`+pirVm'#s8N&urqcX"rr<#ts8N&trr2ut +r;Zfrr;Zfr"onSoMK*V7EW0nYF0P?8rrE&rrrE&trrE&rrrrE%rr2rsrVuos"onT%s8N&trqQNn +rqufrrW3&urr2utrr<#to)Adjs8W)trVulrs8N)ur;Qlus8N#srseu+YX(QffCf%UQrs8W)hs8W)rs8W)srrE&rs8N#srri?$rr;uss8Dots8Moq!ri6!q>UQrs8W)hs8W)rs8W)s +rrE&rs8N#srri?$rr;uss8Dots8Moq!ri6!q>UQrs8W)ks*t~> +!<2rs!ri6!r;Qp!s8W)to`+sjrr3-#s8W)tr;Qcro`+pirVm'#s8N&urqcX"rr<#ts8N&trr2ut +r;Zfrr;Zfr"onSoMK*V7EW0nYF0P?8rrE&rrrE&trrE&rrrrE%rr2rsrVuos"onT%s8N&trqQNn +rqufrrW3&urr2utrr<#to)Adjs8W)trVulrs8N)ur;Qlus8N#srseu+[8BeCh=^U>qYL$`rqZlq +qYBs`q>0seq>^9kq=j^eq>0pdq>pEgrqQTkq>U6iq>^9tq>0pQZWgXtjSAcN!;ZQh#5S,kqYL$` +rqZlqqYBs`q>0seq$d,qp$(DlesTT9;4$_JrrW3"s8N#rs8W)ns8W)rs8W)srrE&rs8N#srri?$ +rr;uss8Dots8Moq!ri6!q>UQrs8W)hs8W)rs8W)srrE&rs8N#srri?$rr;uss8Dots8Moq!ri6! +q>UQrs8W)hs8W)rs8W)srrE&rs8N#srri?$rr;uss8Dots8Moq!ri6!q>UQrs8W)ks*t~> +rr2utrVllspAY9ps8W)trVm6(s8W)ts8N&ts8Mrr!WN,urr<#urXo20s8W)ts8W)us8N&urr2rs +rr<#t!WW/ursA])rr2rtrr<#tr;Qcrrr3*"s8W)trrr.eE,]f:rbr'cRH=AHs8N#ts8E3%rr2rs +rqZTorr;uurr)j)rr;utrr2rsrr<#tq>UHorr3*"s8W)ls8W'!s8N#t$3'u)rr;utrr<#trW3&u +rVlots8N#irs&J^>r+I7l,WZ(pZe$Xn_O'Rpu^#NaGrA=3/6o%rr;uts8Muus8Mus"TJH$rr2fp +#lal's8N&urr;lp"onT%s8N#rs8N#prs&K&rr;uss8Drrrr`9#rr;usrVllsqu?Zpqu6s$s8N&t +s8W)uqu-d!rr<#trr)lrrql^"rr;utrr2rrrr2p"rr;utrr2lr!<2lqrr2fp#lal's8N&urr;lp +"onT%s8N#rs8N#prs&K&rr;uss8Drrrr`9#rr;usrVllsqu?Zprr7K~> +rr2utrVllspAY9ps8W)trVm6(s8W)ts8N&ts8Mrr!WN,urr<#urXo20s8W)ts8W)us8N&urr2rs +rr<#t!WW/ursA])rr2rtrr<#tr;Qcrrr3*"s8W)trrr.eE,]f:rbr'cRH=AHs8N#ts8E3%rr2rs +rqZTorr;uurr)j)rr;utrr2rsrr<#tq>UHorr3*"s8W)ls8W'!s8N#t$3'u)rr;utrr<#trW3&u +rVlots8N#irs&J_B0f"fmDo),q!FNcn_O'Rq +rr2utrVllspAY9ps8W)trVm6(s8W)ts8N&ts8Mrr!WN,urr<#urXo20s8W)ts8W)us8N&urr2rs +rr<#t!WW/ursA])rr2rtrr<#tr;Qcrrr3*"s8W)trrr.eE,]f:rbr'cRH=AHs8N#ts8E3%rr2rs +rqZTorr;uurr)j)rr;utrr2rsrr<#tq>UHorr3*"s8W)ls8W'!s8N#t$3'u)rr;utrr<#trW3&u +rVlots8N#irt#+iF&>uFn+leUq>0p_qYC'c#Pn5lqYL$aq=XRcq>0seq#L9jq#^Egq>U3jq>0pq +p[+TinG2qVq>0p_qt^QnqYC!`q>0pbqAT2+q>0s`qYC!aq!I(ufqMVH +rr30$s8N&urr)lprq??lrr)j%rr<#trr;usrr2utqu6s$s8W)urr<#trVllsqYpQpqYpj#s8W)u +s8N&trVllso`"sfWV^W9LroGhrrW3"rr)j!rr<#tqu?]qrVllsq#CBns8N)urr3*"s8W)ds8W)l +rrE&frr`9#s8N#t!<2ut'`S.4rr0Pt1NCh;qYL*cqtg3eqYL3g!;cWj!rDfjrVHTkrql`lrql`l +rqc]lq"k6kqtp6equ6Eoqt^-crql`ls8)fmrql]k#Q+ApqYU0dqYp?lqY^3lqYU-gq[32bdEg%, +82E&hq=+Cdrr<#trr2utqu6Zqrr<#t!WW/urrE&qrr`9#rr2os!<2or!<2lq!<2rs!<2rss8E*" +rr2cos8N&u!<2ut!<2lq!<2uts8E'!rr2otrql]trr;usrr2utr;Qcrqu6ZqrVllsrVuos!rr9! +qZ$Tps8N)urr2utqu6Zqrr<#t!WW/urrE&qrr`9#rr2os!<2or!<2lq!<2rs!<2rss8E*"rr2co +s8N&u!WN+L~> +rr30$s8N&urr)lprq??lrr)j%rr<#trr;usrr2utqu6s$s8W)urr<#trVllsqYpQpqYpj#s8W)u +s8N&trVllso`"sfWV^W9LroGhrrW3"rr)j!rr<#tqu?]qrVllsq#CBns8N)urr3*"s8W)ds8W)l +rrE&frr`9#s8N#t!<2ut'`S.4rr0Z.5^V/YqYL*cqtg3eqYL3g!;cWj!rDfjrVHTkrql`lrql`l +rqc]lq"k6kqtp6equ6Eoqt^-crql`ls8)fmrql]k#Q+ApqYU0dqYp?lqY^3lqYU-gq[32eg"4cO + +rr30$s8N&urr)lprq??lrr)j%rr<#trr;usrr2utqu6s$s8W)urr<#trVllsqYpQpqYpj#s8W)u +s8N&trVllso`"sfWV^W9LroGhrrW3"rr)j!rr<#tqu?]qrVllsq#CBns8N)urr3*"s8W)ds8W)l +rrE&frr`9#s8N#t!<2ut$NC)*rr0f@;2=$'rqZWjo(iIaqYL$Wq>g?gq?$Khq>C'mq>0p`qY:'d +"8Vfhq>:!gq>U3jq==@nq>0s`qYL$ViSWIp@o6+!q=+Cdrr<#trr2utqu6Zqrr<#t!WW/urrE&q +rr`9#rr2os!<2or!<2lq!<2rs!<2rss8E*"rr2cos8N&u!<2ut!<2lq!<2uts8E'!rr2otrql]t +rr;usrr2utr;Qcrqu6ZqrVllsrVuos!rr9!qZ$Tps8N)urr2utqu6Zqrr<#t!WW/urrE&qrr`9# +rr2os!<2or!<2lq!<2rs!<2rss8E*"rr2cos8N&u!WN+L~> +s8N&u!ri6!rr3-#s8W)trr2utrr3*"s8N#srrE&trrE&orrE&nrrE&mrrW3"rp9Xbrq??mrr;lp +!rr/(rc.pV!L*-PrrE&srrE&orr`9#s8N#t!<2]ls8N&u!<2ut!<2fo!WN,rrr;uurqQKnrr)j! +rr;usq>UNqs8N#ts8Mio!<2rs$i^2+plRBpQ0J2CqYp@!qYU-dqtg0dqYU-_qZ-KkqZ6QjrqcNh +s7ucnqYpBlqYp?lqYg9kqYg*ms8Muss8Mrrs8N#t!<2ut"oeQ% +rr;uqrrE&ps8W)rrrE&trrW3"rr)lrrq69mrr;urs8W)rs8W)trrE&trrrE%s8N&tr;QcrqZ$Tp +r;Qcrrr3'!s8Musrr2Tj!ri6!rVuosr;Zfrrr2utrr36&s8W)urr<"K~> +s8N&u!ri6!rr3-#s8W)trr2utrr3*"s8N#srrE&trrE&orrE&nrrE&mrrW3"rp9Xbrq??mrr;lp +!rr/(rc.pV!L*-PrrE&srrE&orr`9#s8N#t!<2]ls8N&u!<2ut!<2fo!WN,rrr;uurqQKnrr)j! +rr;usq>UNqs8N#ts8Mio!<2rs$i^2+q3XK>TC)OQqYp@!qYU-dqtg0dqYU-_qZ-KkqZ6QjrqcNh +s7ucnqYpBlqYp?lqYg9kqYg,Ju9s=Bh +rrW3"rr2rtrWE3"s8Mrr!<2ips8Mrr!<2ut!ri6!rVulrp&>*ms8Muss8Mrrs8N#t!<2ut"oeQ% +rr;uqrrE&ps8W)rrrE&trrW3"rr)lrrq69mrr;urs8W)rs8W)trrE&trrrE%s8N&tr;QcrqZ$Tp +r;Qcrrr3'!s8Musrr2Tj!ri6!rVuosr;Zfrrr2utrr36&s8W)urr<"K~> +s8N&u!ri6!rr3-#s8W)trr2utrr3*"s8N#srrE&trrE&orrE&nrrE&mrrW3"rp9Xbrq??mrr;lp +!rr/(rc.pV!L*-PrrE&srrE&orr`9#s8N#t!<2]ls8N&u!<2ut!<2fo!WN,rrr;uurqQKnrr)j! +rr;usq>UNqs8N#ts8Mio!<2rs#lal(q4CPdWU?8O$M`uHi7tJ6;-UF'qYpWrs8N#ts8E-#rr;uq +rrE&ps8W)rrrE&trrW3"rr)lrrq69mrr;urs8W)rs8W)trrE&trrrE%s8N&tr;QcrqZ$Tpr;Qcr +rr3'!s8Musrr2Tj!ri6!rVuosr;Zfrrr2utrr30$s8W)urqucrrqcZprqucrrr2p!rr;urs8N#j +rrW3"rr)lsrqufrrr2otrr2p&rr<#ts8N&uJ,~> +qZ$Tpq>UHojSo5Zr;Qcrqu6Zqrr2utrr3N.s8W)ts8W)us8N#trr;usrrE&qrri?$rr;usrrE&s +rt58/^i==;PJ`5uV"4Qbrr<#trr3*"s8W)prs8W(s8N#ts8N#rs8N#krs/Q's8N&ts8N#t!<2rs +"9/?#rqufrrr;uurr)j!rr<#tqYpZss8W)lrso&.s8N&urr2r\?SbNmpAXphqYp?lqYU-nqYU0d +qtg6f"8_olqYg9kqY^3oqYU-dqtg3e!;cNg!rDfjrqc]lqtgBirVHTkrqc]lqtgQnqtp6eqY^4" +qYU-bl-mu'MEE[`\c)F*"9/?#rq??orr<#tpAY-lrVllsr;R!#s8W)urr2cos8N&u!<2rs"9/?# +rr)j$rr<#ts8W)trrE&prr`9#s8M`l!<2rs!<2or#6+Z&rr;usqZ$Tps8N)urVm!!s8W)srs&K& +s8N&urr2otrqcWsrr<#tpAY-lrVllsr;R!#s8W)urr2cos8N&u!<2rs"9/?#rr)j$rr<#ts8W)t +rrE&qs*t~> +qZ$Tpq>UHojSo5Zr;Qcrqu6Zqrr2utrr3N.s8W)ts8W)us8N#trr;usrrE&qrri?$rr;usrrE&s +rt58/^i==;PJ`5uV"4Qbrr<#trr3*"s8W)prs8W(s8N#ts8N#rs8N#krs/Q's8N&ts8N#t!<2rs +"9/?#rqufrrr;uurr)j!rr<#tqYpZss8W)lrso&.s8N&urr2r]BL,nCp\t$iqYp?lqYU-nqYU0d +qtg6f"8_olqYg9kqY^3oqYU-dqtg3e!;cNg!rDfjrqc]lqtgBirVHTkrqc]lqtgQnqtp6eqY^4" +qYU-bm+^1DPY+5=]`%a-"9/?#rq??orr<#tpAY-lrVllsr;R!#s8W)urr2cos8N&u!<2rs"9/?# +rr)j$rr<#ts8W)trrE&prr`9#s8M`l!<2rs!<2or#6+Z&rr;usqZ$Tps8N)urVm!!s8W)srs&K& +s8N&urr2otrqcWsrr<#tpAY-lrVllsr;R!#s8W)urr2cos8N&u!<2rs"9/?#rr)j$rr<#ts8W)t +rrE&qs*t~> +qZ$Tpq>UHojSo5Zr;Qcrqu6Zqrr2utrr3N.s8W)ts8W)us8N#trr;usrrE&qrri?$rr;usrrE&s +rt58/^i==;PJ`5uV"4Qbrr<#trr3*"s8W)prs8W(s8N#ts8N#rs8N#krs/Q's8N&ts8N#t!<2rs +"9/?#rqufrrr;uurr)j!rr<#tqYpZss8W)lrso&.s8N&urr2r^F&?\rp>>ZGq"ORaq#1!gq#'pf +q#:'hq"sjepttoIp^-BJi81&.;-q':qu6cts8W)lrr`9#s8M`l!<2rs!<2or#6+Z&rr;usqZ$Tp +s8N)urVm!!s8W)srs&K&s8N&urr2otrqcWsrr<#tpAY-lrVllsr;R!#s8W)urr2cos8N&u!<2rs +"9/?#rr)j$rr<#ts8W)trrE&prr`9#s8M`l!<2rs!<2or#6+Z&rr;usqZ$Tps8N)urVm!!s8W)s +rs&K&s8N&urr2otrql_G~> +oD\girr2utq>UTss8W)to)A^hqu?ZpmJd1cqYpZss8N&trr)iurr;uprt,20s8L2`Ktd*SdsH;A +r;ZcprrE&trrW3"rr)j5rr<#ts8W)urr<#ts8N&ts8N&ts8W)trr3*"s8W)trrW3"rql]qrql]q +rr)lsrqHEmrql]qrql]qrql]urr<#trr2p&rr:"u1MP\?RJI6ckL%VqJibbkjSSrWrql]qrr2p" +rr<#tq#:?np\t6mrr3-#s8W)trr3-#s8W)urr*'#rr2rsrr<#trr2utr;QcrpAY6os8W)nrrE&m +rrE&trri?$s8N#srri?$s8N&trWN9#rr;uss8W)trrE&rrrE&lrr`9#s8Mfn!<2`m!<2ut"TJH$ +rr2os"TJH$rr;us"TSK#s8N#ts8N#t!<2or!<2]l!ri6"J,~> +oD\girr2utq>UTss8W)to)A^hqu?ZpmJd1cqYpZss8N&trr)iurr;uprt,20s8L2`Ktd*SdsH;A +r;ZcprrE&trrW3"rr)j5rr<#ts8W)urr<#ts8N&ts8N&ts8W)trr3*"s8W)trrW3"rql]qrql]q +rr)lsrqHEmrql]qrql]qrql]urr<#trr2p&rr:,06$;2_RJI6cle0q:N(?6Ejno&Xrql]qrr2p" +rr<#tq#:?np\t6mrr3-#s8W)trr3-#s8W)urr*'#rr2rsrr<#trr2utr;QcrpAY6os8W)nrrE&m +rrE&trri?$s8N#srri?$s8N&trWN9#rr;uss8W)trrE&rrrE&lrr`9#s8Mfn!<2`m!<2ut"TJH$ +rr2os"TJH$rr;us"TSK#s8N#ts8N#t!<2or!<2]l!ri6"J,~> +oD\girr2utq>UTss8W)to)A^hqu?ZpmJd1cqYpZss8N&trr)iurr;uprt,20s8L2`Ktd*SdsH;A +r;ZcprrE&trrW3"rr)j5rr<#ts8W)urr<#ts8N&ts8N&ts8W)trr3*"s8W)trrW3"rql]qrql]q +rr)lsrqHEmrql]qrql]qrql]urr<#trr2p+rr:5B;1[m)q=sa\q#1!kq"aa\q#:*aq"jddq#1!g +q#'pfq#1!jq"aa\o_JO^!r;Wdr;$Bf!VuNhq#pKgq=saaq=saaq$Hi`iS`@T=&Enuqu6Zqqu6Zq +rr3*"s8W)nrrE&mrrE&trri?$s8N#srri?$s8N&trWN9#rr;uss8W)trrE&rrrE&lrr`9#s8Mfn +!<2`m!<2ut"TJH$rr2os"TJH$rr;us"TSK#s8N#ts8N#t!<2or!<2]l"9/?#rqQKnrqHEmrr2p# +rr<#trr2p#rr<#ts8N!#s8N#trr2rtrr2otrqucrrq??nrr<"K~> +qZ$Tps8W,urVlrus8N#trr2lr!<2lqrr2Wk!ri6!pAY-lrr2utr;Qits8Mus"oeQ$s8W)srrE&t +s8W)qrt>>2rr<#PY2oKZrqs`[Fgq,Es8Doss8N#srrE&trrE&ts82fmrr`9#s8Mus!<2rs!<2ut +s8Moq!ri6!rVm*$s8N&urr2iqrVcitrqucrrr2otrqufqrW3&uqZ$Qo#lg2H1nO%/qYC-e!;ZTi +s7uZj!;ZTi"8Vfhq>'mcq#U?frVHNhq>1*d!W)WjqZ$?nqYC!`q>(*erqZWjrVHQirqZWjrV?Wl +qYBsaq?crWd*BO?1,F1Hrr2utrr2utqu?]q!WW/srrE&trrE&rs8W)trrrE%rr<#trr3*"s8W)s +rrE&ss8W)ts8W)trrW3"rqQKnrql`qrW3&ur;Qcrrr2utr;Zfrrr30$s8N&urr2p"rr<#trVlls +rVuosrr<#trr3'!s8Mfn!<2lqs8E'!rqucrrr2otrqufrrr2p$rr;uts8N#t"9/?#rr)isrr)ls +rr2rtrr2p!rr;umrrE&qs8W'"s8N%K~> +qZ$Tps8W,urVlrus8N#trr2lr!<2lqrr2Wk!ri6!pAY-lrr2utr;Qits8Mus"oeQ$s8W)srrE&t +s8W)qrt>>2rr<#PY2oKZrqs`[Fgq,Es8Doss8N#srrE&trrE&ts82fmrr`9#s8Mus!<2rs!<2ut +s8Moq!ri6!rVm*$s8N&urr2iqrVcitrqucrrr2otrqufqrW3&uqZ$Qo#lgA[6Dj2HqYC-e!;ZTi +s7uZj!;ZTi"8Vfhq>'mcq#U?frVHNhq>1*d!W)WjqZ$?nqYC!`q>(*erqZWjrVHQirqZWjrV?Wl +qYBsaq?cr\g"=Mf5s^%mrr2utrr2utqu?]q!WW/srrE&trrE&rs8W)trrrE%rr<#trr3*"s8W)s +rrE&ss8W)ts8W)trrW3"rqQKnrql`qrW3&ur;Qcrrr2utr;Zfrrr30$s8N&urr2p"rr<#trVlls +rVuosrr<#trr3'!s8Mfn!<2lqs8E'!rqucrrr2otrqufrrr2p$rr;uts8N#t"9/?#rr)isrr)ls +rr2rtrr2p!rr;umrrE&qs8W'"s8N%K~> +qZ$Tps8W,urVlrus8N#trr2lr!<2lqrr2Wk!ri6!pAY-lrr2utr;Qits8Mus"oeQ$s8W)srrE&t +s8W)qrt>>2rr<#PY2oKZrqs`[Fgq,Es8Doss8N#srrE&trrE&ts82fmrr`9#s8Mus!<2rs!<2ut +s8Moq!ri6!rVm*$s8N&urr2iqrVcitrqucrrr2otrqufqrW3&uqZ$Qo%0*"u;QfNaq"a^\q"X^] +#l+5jq=sd]q"am`rqQQhrqZQg!r;WdrqZThs7u]ir:pNkq=sd\q"sjeq#'pfq#:'mq"a^\q"X^] +#l+5jq=sd]q"am`rqQorp[$hqe9k+jM=^`H!<2ut!<2lqs8E'!rqucrrr2otrqufrrr2p$rr;ut +s8N#t"9/?#rr)isrr)lsrr2rtrr2p!rr;umrrE&qs8W'!s8Mrr!<2ut!<2ors8N#t"oeQ$s8W)t +rr`9#s8Mus!<2rss8N#ts8N#t!ri6!q#:?nqu?]q!WW/srrE&trrE&rs8W)trrrE%rr<#trr3*" +s8W)srrE&ss8W)ts8W)trrW3"rqQKnrql`qrW<-!s*t~> +!<<&t!<<&tr;Qits8W)tqYpQprVuos!<<&t!<<&t!<<&tq#:?nrVllsrVllsqZ$Tprr2utrr2ut +p&G$jq>^Kos8N,trVZ[%qSR])YOqkprr2fp"9/?"rql`qrr)isrr2rsrqucrrqZTnrqZTorql^# +rr;utrr<#trr2utq#CBnqu6ZqoD]'ps8#bP36CglqYg6fq?6WjqYBsdq?-QiqYC!a"8Vfiq>'md +q>L-iq>U3tq>0p`qYBs`qYBscqZ$BfqYg6fq?6WjqYBsdq?-QiqYC!a%f,kVcd0!j1H_K0s8W)t +qu6Zqq#:Eps8Mrr!ri6!qu?Zpqu6cts8W)trrN-!rr2rt!<2ut"9/?#rqcWprqHEmrqZQqrr;uq +rrW3"rql`prql]trr<#trr3#us8N#trrE&trr`9#s8Mlp!<2`m!<2fo!ri6!r;Qits8Moqrr2fp +"9/?#rr2ourr;uss8N)urr3*"s8W)prrE&mrrE&qs*t~> +!<<&t!<<&tr;Qits8W)tqYpQprVuos!<<&t!<<&t!<<&tq#:?nrVllsrVllsqZ$Tprr2utrr2ut +p&G$jq>^Kos8N,trVZ[%qSR])YOqkprr2fp"9/?"rql`qrr)isrr2rsrqucrrqZTnrqZTorql^# +rr;utrr<#trr2utq#CBnqu6ZqoD]'ps8$+h7aUi-qYg6fq?6WjqYBsdq?-QiqYC!a"8Vfiq>'md +q>L-iq>U3tq>0p`qYBs`qYBscqZ$BfqYg6fq?6WjqYBsdq?-QiqYC!a%f,k[f\!r>5tS$Os8W)t +qu6Zqq#:Eps8Mrr!ri6!qu?Zpqu6cts8W)trrN-!rr2rt!<2ut"9/?#rqcWprqHEmrqZQqrr;uq +rrW3"rql`prql]trr<#trr3#us8N#trrE&trr`9#s8Mlp!<2`m!<2fo!ri6!r;Qits8Moqrr2fp +"9/?#rr2ourr;uss8N)urr3*"s8W)prrE&mrrE&qs*t~> +!<<&t!<<&tr;Qits8W)tqYpQprVuos!<<&t!<<&t!<<&tq#:?nrVllsrVllsqZ$Tprr2utrr2ut +p&G$jq>^Kos8N,trVZ[%qSR])YOqkprr2fp"9/?"rql`qrr)isrr2rsrqucrrqZTnrqZTorql^# +rr;utrr<#trr2utq#CBnqu6ZqoD]'ps8$P/L'kq=sa\q>C$fq>^6iq$d&oq"X[\q"a^\ +q=sa\q#L3gq>^6hq#L3gq>^6hq#L3gq>^6dq>L'kq=sa\q>C$fq>^6iq%ic$q"X[\q"a^Zl/:L? +APlR3qZ$Tprql]qrqQKprr;uqrrW3"rql`prql]trr<#trr3#us8N#trrE&trr`9#s8Mlp!<2`m +!<2fo!ri6!r;Qits8Moqrr2fp"9/?#rr2ourr;uss8N)urr3*"s8W)prrE&mrrE&orrW3"rquct +rr;ups8N#prr`9#s8N#t!WN,urr;uurr2p"rr<#tqYpQpp\t6mqu;0~> +"TSK$s8N#t"9/?#rqcWprr2rtrr;uurr)isrr2p)rr;utrr<#ts8W)trrE&qrrE&trr`9#s8Moq +!<2rs!<2ut#6+Z&rr<#tqu?]q"TSK$rr2oss8Mlps8EZ2rr;f6EHeSZs8N&ts8W)urr2os(]OI6 +s8W)urr;uts8N&ts8N&trr;utrqcZorWN9#s8N#ss8W)prrrE%s8N&trVllsq>UHorVm-%s8N&u +rr;uprrrE%s8N&trr3/d6S_a#q>:!jq>0s`qt^TmmHj]Fp?VADqs+^co'>rEqY':DqYBIJq>U4/ +q>0sQ[GLcVq'm_nE]K9qYC!Zlg40p`q>0^2 +ccqhC1K)m(rs/Q'rr<#ts8Moq!<2ut"9/?"rquctrr;usrrW3"rr2p#rr;utrr)j"rr;utrr2ot +rqcWprqud$rr<#ts8N&trVuosr;Qcrrr3*"s8N#qrrW3"rr2p!rr;usrri?$rr;urrri?$rr;us +rrE&prrE&rrs/Q's8N&ts8Muss8Mrr!<2ut"9/?"rquctrr;usrrW3"rr2p#rr;utrr)j"rr;ut +rr2otrqcWprqud$rr<#ts8N&trVuosr;V9~> +"TSK$s8N#t"9/?#rqcWprr2rtrr;uurr)isrr2p)rr;utrr<#ts8W)trrE&qrrE&trr`9#s8Moq +!<2rs!<2ut#6+Z&rr<#tqu?]q"TSK$rr2oss8Mlps8EZ2rr;f6EHeSZs8N&ts8W)urr2os(]OI6 +s8W)urr;uts8N&ts8N&trr;utrqcZorWN9#s8N#ss8W)prrrE%s8N&trVllsq>UHorVm-%s8N&u +rr;uprrrE%s8N&trr3/d:dJUQq>:!jq>0s`qt^TmmHj]Fp?VADqs+^co'>rEqY':DqYBIJq>U4/ +q>0sQ[GLcVq'm_nE]K9qYC!Zlg40p`q>0a; +f[c`j6!`1Brs/Q'rr<#ts8Moq!<2ut"9/?"rquctrr;usrrW3"rr2p#rr;utrr)j"rr;utrr2ot +rqcWprqud$rr<#ts8N&trVuosr;Qcrrr3*"s8N#qrrW3"rr2p!rr;usrri?$rr;urrri?$rr;us +rrE&prrE&rrs/Q's8N&ts8Muss8Mrr!<2ut"9/?"rquctrr;usrrW3"rr2p#rr;utrr)j"rr;ut +rr2otrqcWprqud$rr<#ts8N&trVuosr;V9~> +"TSK$s8N#t"9/?#rqcWprr2rtrr;uurr)isrr2p)rr;utrr<#ts8W)trrE&qrrE&trr`9#s8Moq +!<2rs!<2ut#6+Z&rr<#tqu?]q"TSK$rr2oss8Mlps8EZ2rr;f6EHeSZs8N&ts8W)urr2os(]OI6 +s8W)urr;uts8N&ts8N&trr;utrqcZorWN9#s8N#ss8W)prrrE%s8N&trVllsq>UHorVm-%s8N&u +rr;uprrrE%s8N&trr38h?;YY*q"aa\rqQcnq>'g]q=ssb#kmWNq>'^KoCVqF%/05VoD/1Slg=NC +lLFlK'`%P"q<>'gPlK\0?q=sFDm.UGS&G#,Po_J=Xq>%tJp%\%AlLY#Ns69UMrqQ`mq=sa\ +q#'pno\n`bX'AM9g\q-Wrr;uts8N&tqu6Zqrr3*"s8N#qrrW3"rr2p!rr;usrri?$rr;urrri?$ +rr;usrrE&prrE&rrs/Q's8N&ts8Muss8Mrr!<2ut"9/?"rquctrr;usrrW3"rr2p#rr;utrr)j" +rr;utrr2otrqcWprqud$rr<#ts8N&trVuosr;Qcrrr3*"s8N#qrrW3"rr2p!rr;usrri?$rr;ur +rri?$rr;usrrE&prrE&rrs/Q's8N&ts8Muss8MrrJ,~> +!<2rsrVd$$rr;uss8Mus!<2ip$i^2*s8W)urr<#trq?Blrql]srr;uorrE&rs8W)trrN,srr2`n +#6+Z&rr2rtrr2iqqu.')rr;uq`dW#tjSo/YrqufrrX&W(rr<#ts8W)trr33%s8W)urr2lrrVlis +$3'u)rr<#trr<#trquctrr<#prqcZprr<#urW)utrr:$c +q>L.0gduJ]q6q$.cUo]/+tQmSH4u;2pp)M6mc5%+o)/>%q6`oXq;$o_1+Rn=j*s

    r;%'%kKqPsG;V17rVlfrs8N&urr;lpq>^Ko!<;urs8N)u +rr<#t!<<&t"98B#rr)j"rr;uts8DrsrrE&trri?$rr<#srW`E%s8W)us8N#ts8N#ns8W&us8;lr +rrE&ts8W&us8N!"s8N&trVm$"s8N&urVlis!<2ut"TJH#s8W&s#64]&s8N&urr2rtrr2`ns8E#u +r;Q`r!<2uts8E#urr*$"rr;urrri?$rr<#srr;uurr2p#rr;uts8Dp$s8N&urr<#trr<#trr<"K~> +!<2rsrVd$$rr;uss8Mus!<2ip$i^2*s8W)urr<#trq?Blrql]srr;uorrE&rs8W)trrN,srr2`n +#6+Z&rr2rtrr2iqqu.')rr;uq`dW#tjSo/YrqufrrX&W(rr<#ts8W)trr33%s8W)urr2lrrVlis +$3'u)rr<#trr<#trquctrr<#prqcZprr<#urW)utrr:$c +q>L.0gduJ]q6q$.cUo]/+tQmSH4u;2pp)M6mc5%+o)/>%q6`oXq;$o_1+Rn=j*s

    r;%'%le'k^Ko!<;urs8N)u +rr<#t!<<&t"98B#rr)j"rr;uts8DrsrrE&trri?$rr<#srW`E%s8W)us8N#ts8N#ns8W&us8;lr +rrE&ts8W&us8N!"s8N&trVm$"s8N&urVlis!<2ut"TJH#s8W&s#64]&s8N&urr2rtrr2`ns8E#u +r;Q`r!<2uts8E#urr*$"rr;urrri?$rr<#srr;uurr2p#rr;uts8Dp$s8N&urr<#trr<#trr<"K~> +!<2rsrVd$$rr;uss8Mus!<2ip$i^2*s8W)urr<#trq?Blrql]srr;uorrE&rs8W)trrN,srr2`n +#6+Z&rr2rtrr2iqqu.')rr;uq`dW#tjSo/YrqufrrX&W(rr<#ts8W)trr33%s8W)urr2lrrVlis +$3'u)rr<#trr<#trquctrr<#prqcZprr<#urW)utrr#:@OnG"!W +88n:u[M,1U8h1r,/6L_R'8uJUYqA-)iY-S+r:h0(ZV9ERgPIX?.t?^@IQo_C>j_!C8Mr4mf)GFU +j#sdDm!1)pO7^hA0/kbPkOnT_p[6tsg5T!-R/R$`s8W)us8N&qrqZTorW)urrr;uurr2rtrW)ut +rWE3"s8Mus"TJH#s8W&ss8N)urr3-#s8N&urVd$$rr<#ts8W)ts8W)tq>^Ko!<;urs8N)urr<#t +!<<&t"98B#rr)j"rr;uts8DrsrrE&trri?$rr<#srW`E%s8W)us8N#ts8N#ns8W&us8;lrrrE&t +s8W&us8N!"s8N&trVm$"s8N&urVlis!<2ut"TJH#s8W&s#64]&s8N&urr2rtrr2rtJ,~> +#64]%s8N&tr;Zfrrr3*"s8N#os8W)us8W)urrE&ts8W)trrE&trrW3"rq-3krr;usrVllsr;Qu\ +_Xmg-rr2os!<2fo"oeQ$rr;urrs&K&rr<#trr2p)qTt(0p_qYL$`qYBs?3bA0aZ2g0R^90\#]"mTL!%?=d0s`q<2R`qY#+RR`i0a +hN&M@f"ZV![MXD@a+Mq=qY7[!kP=boWrRqAB-Y7F]s?ktq>g?iq?ciKcd0*e1I'murVulr!<;op +s8N)urr3*"s8N&srr2p$rr;utrr;usq>UWts8N&trqcWprr)lsrql]qrr2rsrW)uprr;uurr2p" +rr;utrVlfr"oeQ$s8N&trqZQtrr;utrr2co!<2rss8Moq!<2utrr)otqYpNp!<2ut"9/?"s8Drr +rrrE%rr;utrr2`n"oeQ$s8N#orrE&ss8W)qrrE&ts8Muts8)]ps*t~> +#64]%s8N&tr;Zfrrr3*"s8N#os8W)us8W)urrE&ts8W)trrE&trrW3"rq-3krr;usrVllsr;Qu\ +_Xmg-rr2os!<2fo"oeQ$rr;urrs&K&rr<#trr2p)qTt(0p_qYL$`qYBs?3bA0aZ2g0R^90\#]"mTL!%?=d0s`q<2R`qY#+RR`i0a +hN&M@f"ZV![MXD@a+Mq=qY7[!kP=boWrRqAB-Y7F]s?ktq>g?iq?clRf@[o75tg8;rVulr!<;op +s8N)urr3*"s8N&srr2p$rr;utrr;usq>UWts8N&trqcWprr)lsrql]qrr2rsrW)uprr;uurr2p" +rr;utrVlfr"oeQ$s8N&trqZQtrr;utrr2co!<2rss8Moq!<2utrr)otqYpNp!<2ut"9/?"s8Drr +rrrE%rr;utrr2`n"oeQ$s8N#orrE&ss8W)qrrE&ts8Muts8)]ps*t~> +#64]%s8N&tr;Zfrrr3*"s8N#os8W)us8W)urrE&ts8W)trrE&trrW3"rq-3krr;usrVllsr;Qu\ +_Xmg-rr2os!<2fo"oeQ$rr;urrs&K&rr<#trr2p)qTt(UWts8N&trqcWprr)lsrql]qrr2rsrW)uprW)tK~> +rr2utp&>$krVuos!rr9"rr2os"oeQ%rr;urs8W)ks8N#prr`9#s8N#t(B4@6rr<#tq2]aSrr<#t +s8N&urr2rsqZ$Tpp\u!-s8W)us8Cc5EJ)""rr;uts8N&urr)j$rr<#ts8W)os8W'#s8N#trr2rt +s8E'!rqcZprqucrrqcWprq$-irr2otrr2p&rr<#ts8W)tqYpj#s8W(S1c(ZpnG+'W3aKY@NW>=> +q;b%Rq>'Q!2+h]#8'jBktq-ns8W)ts8W)ss8W)srr`9#s8Mrr!<2rs$i^2+rr<#ts8W)urql]q +rr2rtrr-ns8W)ts8W)ss8W)srr`9#s8Mrr!<2rs$i^2+rr<#ts8W)urql]qrr2rt +rr-ns8W)ts8W)ss8W)us*t~> +rr2utp&>$krVuos!rr9"rr2os"oeQ%rr;urs8W)ks8N#prr`9#s8N#t(B4@6rr<#tq2]aSrr<#t +s8N&urr2rsqZ$Tpp\u!-s8W)us8Cc5EJ)""rr;uts8N&urr)j$rr<#ts8W)os8W'#s8N#trr2rt +s8E'!rqcZprqucrrqcWprq$-irr2otrr2p&rr<#ts8W)tqYpj#s8W([6:%LBnG+'W3aKY@NW>=> +q;b%Rq>'Q!2+h]#8'jBktq-ns8W)ts8W)ss8W)srr`9#s8Mrr!<2rs$i^2+rr<#ts8W)urql]q +rr2rtrr-ns8W)ts8W)ss8W)srr`9#s8Mrr!<2rs$i^2+rr<#ts8W)urql]qrr2rt +rr-ns8W)ts8W)ss8W)us*t~> +rr2utp&>$krVuos!rr9"rr2os"oeQ%rr;urs8W)ks8N#prr`9#s8N#t(B4@6rr<#tq2]aSrr<#t +s8N&urr2rsqZ$Tpp\u!-s8W)us8Cc5EJ)""rr;uts8N&urr)j$rr<#ts8W)os8W'#s8N#trr2rt +s8E'!rqcZprqucrrqcWprq$-irr2otrr2p&rr<#ts8W)tqYpj#s8W(c;Gj[krV6Ees7cTgq=mb; +3aBS?NW>==pZ"_Mq"O8q1e!&20-)S/huIW_q"ORYpV^:hpZ*&mkkOo;nT51dc0OfjT+>8EkjS-< +q!)RJq"ORYh#N2m>SEm\n*ouJp]^Eep\=OXrqHormc!*\NDWTOrVuosrr36&s8W)us8N#rrr`9# +s8Mrr!<2rs$i^2+rr<#ts8W)urql]qrr2rtrr-ns8W)ts8W)ss8W)srr`9#s8Mrr +!<2rs$i^2+rr<#ts8W)urql]qrr2rtrr-ns8W)ts8W)ss8W)srr`9#s8Mrr!<2rs +$i^2+rr<#ts8W)urql]qrr2rtrr-ns8W)ts8W)ss8W)us*t~> +!WW/srrE&ts8Muts8Dots8Mus#6+Z%s8N&tr;Zfrrr2utqZ$Km"TSK#s8Moqrr)otrVlis!<2ut +"KHF5qu?Wo!<<#s"98B#rr)j"rr<#ts8N!1s8N#trr;uss8N&tn>^_QU>u.Ls8W)trr`9#s8MQg% +fZM.rr;utrr<#ts8N&trVm$"s8W)urr)otrr2rts8Mus"oeQ%rr2rsrr<#urr2otrr2otrr2otr +qufrrr2p*rq:Lk5-FYUq"X[[rqRl8q=sa\q"X[[fK($63[t,oq>')A@/9WgDFUNl;3!pmm,7q]n +G`5%rg,69':n(gV^#Sh".q"_cfanb`-ptc"*o"Rd5!'cq@q=ssb"o.ogq +>'gbq$HfNcd/sg1KiT6rr2utrr2utq#:?nrr<#trr3*"s8W)ss8W)us8Drsrseu-s8N#trr2rsr +r;usrr3#us8Doss8N#trrE&srrE&rrrE&prrE&ts8W)trr`9#s8Muss8N&urVlis%K?D-rr2rsr +r;uss8N#srrN-!rVcfsrr2rt!<2rs!<2or!<2ip!<2uts8N#t"9/?#rr)lsrr<#srr +!WW/srrE&ts8Muts8Dots8Mus#6+Z%s8N&tr;Zfrrr2utqZ$Km"TSK#s8Moqrr)otrVlis!<2ut +"KHF5qu?Wo!<<#s"98B#rr)j"rr<#ts8N!1s8N#trr;uss8N&tn>^_QU>u.Ls8W)trr`9#s8MQg% +fZM.rr;utrr<#ts8N&trVm$"s8W)urr)otrr2rts8Mus"oeQ%rr2rsrr<#urr2otrr2otrr2otr +qufrrr2p*rq:h-9=OZkq"X[[rqRl8q=sa\q"X[[fK($63[t,oq>')A@/9WgDFUNl;3!pmm,7q]n +G`5%rg,69':n(gV^#Sh".q"_cfanb`-ptc"*o"Rd5!'cq@q=ssb"o.ogq +>'gbq$HfSf\!l:5\/dOrr2utrr2utq#:?nrr<#trr3*"s8W)ss8W)us8Drsrseu-s8N#trr2rsr +r;usrr3#us8Doss8N#trrE&srrE&rrrE&prrE&ts8W)trr`9#s8Muss8N&urVlis%K?D-rr2rsr +r;uss8N#srrN-!rVcfsrr2rt!<2rs!<2or!<2ip!<2uts8N#t"9/?#rr)lsrr<#srr +!WW/srrE&ts8Muts8Dots8Mus#6+Z%s8N&tr;Zfrrr2utqZ$Km"TSK#s8Moqrr)otrVlis!<2ut +"KHF5qu?Wo!<<#s"98B#rr)j"rr<#ts8N!1s8N#trr;uss8N&tn>^_QU>u.Ls8W)trr`9#s8MQg% +fZM.rr;utrr<#ts8N&trVm$"s8W)urr)otrr2rts8Mus"oeQ%rr2rsrr<#urr2otrr2otrr2otr +qufrrr2p%rqD7G>/9n2p^-]iq"ORYp\=OXrqIMc3ZU7B.KG_.pu=hNq"X>r7]/XNNBo)\huIW_p +\sq?nSiF;pY,[enG)bQpr#*8!@3!Zh+Apu'kc=spq\u3p\=OXh#N3"^.K1A5+:s +q>UHor;Qcrrr33%s8W)us8MZjs8N&u!<2ip!<2fos8E'!rqucrrq??ogjsY&qYpWrs8Moqs8N#t +!<2lq"9/?"rqud%rr;]-J8pC[p&+girr2rtrql]qrql]urr<#trqucrrr2otrql`qrr2otrr)j" +rr;utrql]trr;usrVuosq>^Kop&>I"s8W)un8C*Y]D;9trqQWjq=ssb!;QKf*8!;]hqt(,Pkk.9 +7pu,fnSUhL7M!I*/*u3pD=IN"+PAocq"Wo!A+06gq>'d?_1=?K^A6m.P=P\#VMm.gSU$f1l< +p@d4EI6]O6q"smep^[,pq=sd]mEa,"F#,qZr;HZqrr2p!rr;uprr`9#s8Mrrrr2os!<2lq"9/?# +rr)j$rr;uts8N#qrrE&os8W)ts8N#ts8W)urr`9#s8Moq"9/?#rqufqrr2otrql]trr<#trVm*$ +s8N&urr2iq!<2fos8N#trr2rts8N&u"9/?#rql]trr<#tr;Zcqrr2utqu6cts8W)srs&K&rr<#t +rqucrrqZTorr2rsrr<#urr +q>UHor;Qcrrr33%s8W)us8MZjs8N&u!<2ip!<2fos8E'!rqucrrq??ogjsY&qYpWrs8Moqs8N#t +!<2lq"9/?"rqud%rr;]-J8pC[p&+girr2rtrql]qrql]urr<#trqucrrr2otrql`qrr2otrr)j" +rr;utrql]trr;usrVuosq>^Kop&>I"s8W)un9@3&_YO$&rqQWjq=ssb!;QKf*8!;]hqt(,Pkk.9 +7pu,fnSUhL7M!I*/*u3pD=IN"+PAocq"Wo!A+06gq>'d?_1=?K^A6m.P=P\#VMm.gSU$f1l< +p@d4EI6]O6q"smep^[,pq=sd]n(?:?IR$K/r;HZqrr2p!rr;uprr`9#s8Mrrrr2os!<2lq"9/?# +rr)j$rr;uts8N#qrrE&os8W)ts8N#ts8W)urr`9#s8Moq"9/?#rqufqrr2otrql]trr<#trVm*$ +s8N&urr2iq!<2fos8N#trr2rts8N&u"9/?#rql]trr<#tr;Zcqrr2utqu6cts8W)srs&K&rr<#t +rqucrrqZTorr2rsrr<#urr +q>UHor;Qcrrr33%s8W)us8MZjs8N&u!<2ip!<2fos8E'!rqucrrq??ogjsY&qYpWrs8Moqs8N#t +!<2lq"9/?"rqud%rr;]-J8pC[p&+girr2rtrql]qrql]urr<#trqucrrr2otrql`qrr2otrr)j" +rr;utrql]trr;usrVuosq>^Kop&>?ts8W)un:FJMb4#'Ef/d?shOae3p\3Z:?ha<`DFW5H&&^gc +le_\Yn,;tdf0-M7pYmW3mJZblp"R631((_hj2-sM!0m6PJm[gApBo^VL%P#iY'`Ggcgpf9nDN6X +MG[K`r;HZqrr2p!rr;uprr`9#s8Mrrrr2os!<2lq"9/?#rr)j$rr;uts8N#qrrE&os8W)ts8N#t +s8W)urr`9#s8Moq"9/?#rqufqrr2otrql]trr<#trVm*$s8N&urr2iq!<2fos8N#trr2rts8N&u +"9/?#rql]trr<#tr;Zcqrr2utqu6cts8W)srs&K&rr<#trqucrrqZTorr2rsrr<#urr +!WW/ss8N#ps8W)ts8W'!s8Mus!ri6!qu6j!s8N&trr2p(rr<#ts8W)ts8Mrrrr*0&rr<#ts8W)s +s8W'/s7rj>Sb2p\s8W)us8N&trVm*$s8W)us8Miorr2rt%0$;,rr;lSRs&t;f_5=Dr;Qp!s8N&t +rr30$s8N#trr2rprql]qrr)j$rr<#ts8W)ps8N#rs8N#ss8N!!s8N&trW3&urVufprVulrr;Qrh +DDG)+q#1!gq"OS^q"`Q'Abc)+!0m9Rj@'Gq;pb?"cqlCe)oS0/^=+iq#1""q"a^\q=s[ +!WW/ss8N#ps8W)ts8W'!s8Mus!ri6!qu6j!s8N&trr2p(rr<#ts8W)ts8Mrrrr*0&rr<#ts8W)s +s8W'/s7rj>Sb2p\s8W)us8N&trVm*$s8W)us8Miorr2rt%0$;,rr;lSRs&t;f_5=Dr;Qp!s8N&t +rr30$s8N#trr2rprql]qrr)j$rr<#ts8W)ps8N#rs8N#ss8N!!s8N&trW3&urVufprVulrr;Qrh +G'Gq;pb?"cqlCe)oS0/^=+iq#1""q"a^\q=s^Df[m6%6$2Vrrr)lq +rqufrrqucsrr;oqrVuosrVm'#s8W)urr)isrr)lsrqHHlrW)usrpg$grqucsrr;oqrVuosrVm'# +s8W)urr)isrr)lsrqHHlrW)usrpg$grqucsrr;oqrVuosrVm'#s8W)urr)isrr)lsrqHHlrW)us +rpg#=~> +!WW/ss8N#ps8W)ts8W'!s8Mus!ri6!qu6j!s8N&trr2p(rr<#ts8W)ts8Mrrrr*0&rr<#ts8W)s +s8W'/s7rj>Sb2p\s8W)us8N&trVm*$s8W)us8Miorr2rt%0$;,rr;lSRs&t;f_5=Dr;Qp!s8N&t +rr30$s8N#trr2rprql]qrr)j$rr<#ts8W)ps8N#rs8N#ss8N!!s8N&trW3&urVufprVulrr;R#j +JPg1.p\4C\pAjp\pJfa*AG>i%!0d-Mi^R;Lp[;uhmDlWl6S%HZ!+jjBiUli4<9EoJnSJl9io6im +U;u.*?Vu:Bs8MusrVl`p +s8Mrr!WN,srr)lsrr)j#rr<#ts8Mus!<2rss8Mcmrr)otrVl?es8Mrr!WN,srr)lsrr)j#rr<#t +s8Mus!<2rss8Mcmrr)otrVl?es8Mrr!WN,srr)lsrr)j#rr<#ts8Mus!<2rss8Mcmrr)otrVl?e +J,~> +rr36&s8W)ts8N#orrE&srrE&[rrE&rrr`9#s8MHd"QP2^b5M2:"9/?#rr)isrqucrrqcWprql]q +rr2p)pV)T,GbX'irr;urs8W)errE&qrr`9#s8Mus!<2or!<2lq!<2ip!<2rs!<2ip!<2or!ri6! +rVllsq#:imDDP/0q"aa\q"a^\q"aparV9=cgK/7fpq&)Kq"WrYEqoG"JQ;=:pu5[Wm,BQlBP2#? +k$G4cq=sa8AMHJXBⅇ;c$DSnub2\8mHT%po@NYq=sc&8MjPul>Kiu>""D?q>L*fq>^4"q=sd] +q"X1&cc0?K1Xc:#rrW3"rr)isrqucurr<#trr2utqYpWrs8N#ts8E'!rr2otrr2otrr2otrqZQr +rr<#tq>UHoqYpQprr2utr;Qlus8W)trrE&rrsSSdfY=;\^Y%fIs8N#t!<2ut!<2ut!<2fo"9/?# +rqZQorqcWprr2otrqucurr<#trr2utqYpWrs8N#ts8E'!rr2otrr2otrr2otrqZQrrr<#tq>UHo +qYpQprr3#us*t~> +rr36&s8W)ts8N#orrE&srrE&[rrE&rrr`9#s8MHd"QP2^b5M2:"9/?#rr)isrqucrrqcWprql]q +rr2p)pV)T,GbX'irr;urs8W)errE&qrr`9#s8Mus!<2or!<2lq!<2ip!<2rs!<2ip!<2or!ri6! +rVllsq#:imGKiu>""D?q>L*fq>^4"q=sd] +q"X:1f[">!6.Go3rrW3"rr)isrqucurr<#trr2utqYpWrs8N#ts8E'!rr2otrr2otrr2otrqZQr +rr<#tq>UHoqYpQprr2utr;Qlus8W)trrE&rrsSSdftshl_:e,Ms8N#t!<2ut!<2ut!<2fo"9/?# +rqZQorqcWprr2otrqucurr<#trr2utqYpWrs8N#ts8E'!rr2otrr2otrr2otrqZQrrr<#tq>UHo +qYpQprr3#us*t~> +rr36&s8W)ts8N#orrE&srrE&[rrE&rrr`9#s8MHd"QP2^b5M2:"9/?#rr)isrqucrrqcWprql]q +rr2p)pV)T,GbX'irr;urs8W)errE&qrr`9#s8Mus!<2or!<2lq!<2ip!<2rs!<2ip!<2or!ri6! +rVllsq#:]iJPg10p@n=Tp@nOZ!r)E^r:_/`]M"p\4-,<:T_Vi*T:Fi%.Y&B-?6r +?**bop\*'H0gT,WiJL!#:fEGEX?TiZ>B]'#W`S9\p'tn11KVufDcoY76]LO.p\smapAjpcpBgQ^ +iSW73:f5gCr;Qits8Mus!<2or"9/?#rr2otrqcWrrr;uss8W'!s8N#t!<2ut!<2ut!<2fo"9/?# +rqZQorqcWprr2otrqucurr<#trr2utr;R0!le9=aZc1\aqu?ZprrE&trrE&trrE&orr`9#s8Mio +!<2ip!<2ut!<2or"9/?#rr2otrqcWrrr;uss8W'!s8N#t!<2ut!<2ut!<2fo"9/?#rqZQorqcWp +rr2ourr7K~> +s8N6$s8N&trr2utrVulrq>UHorr2utrr2utrr30$s8N&urr2otrq??lrqcWtrr;utrqZQurqs9G +QhC@WrrE&rrrE&ts8W)urrE&qrrE&ss8W'"s8N#prs/JaVfm'4T%j&?!ri6!rVllsrr<#tq>^Ko +rVllsrr<#ts8N)ur;Qits8W)t!WW/orr`9#rr2]m!<2ut!<2`m$N9;7T27=@`;'0(rV-Hiq"am` +*VoL+q=3"aq>'=%iqW<@f%Bfop>+'hq>'U5eb/P3cNEdJ@H@F`./h0NA<;lr;Qcrrr3*"s8W)orr`9#s8Mfn +$3'u(s8N&urr;urs8N!(s8N#trr;uts8Moq"9/?"rqQKqrr;usrr2utq>V60s8W)us8ME<\Vk*- +;aNQ-6;q3@c2%> +s8N6$s8N&trr2utrVulrq>UHorr2utrr2utrr30$s8N&urr2otrq??lrqcWtrr;utrqZQurqs9G +QhC@WrrE&rrrE&ts8W)urrE&qrrE&ss8W'"s8N#prs/JaVfm'4T%j&?!ri6!rVllsrr<#tq>^Ko +rVllsrr<#ts8N)ur;Qits8W)t!WW/orr`9#rr2]m!<2ut!<2`m$N9>9UK^#ib4tf.rV-Hiq"am` +*VoL+q=3"aq>'=%iqW<@f%Bfop>+'hq>'U5eb/P3cNEdJ@H@F`./V60s8W)us8MH>\rh#I +>u!p\:0qXjcM@G=rr*6(rr2rss8N&urql]trr;usq#:Hqs8N#srrE&orr`9#s8Mfn$3'u(s8N&u +rr;urs8N!(s8N#trr;uts8Moq"9/?"rqQKqrr;usrr3'!s8RT~> +s8N6$s8N&trr2utrVulrq>UHorr2utrr2utrr30$s8N&urr2otrq??lrqcWtrr;utrqZQurqs9G +QhC@WrrE&rrrE&ts8W)urrE&qrrE&ss8W'"s8N#prs/JaVfm'4T%j&?!ri6!rVllsrr<#tq>^Ko +rVllsrr<#ts8N)ur;Qits8W)t!WW/orr`9#rr2]m!<2ut!<2`m%fPb?Ve8kAd.[5.p@n=Trq@T0 +p\+=Tp@n=Me'[pal-8/[p[Zhcp\4=7c1Ui*nCH+\nbgW6n[;ibrq@<(p#F)b^u4hBc*"(rmIo_h +\=h75p?,DPp&=[naJ$K,o^q"dT=EJArV$Efp\4CVpBU9Lhqt)';76?%!<2ut"9/?#rqZQrrr<#t +q#:["s8N&ts8W)urr)lrrX&W(rr;utrr<#tqu6cts8N#mrr`9#rr2os!<2fo(B4@6rr<#tmb>IC +IFHOrGrVulr$31#(s8N&ts8W)qrr`9#rr2]m"9/?"rr2otrqZQrrr<#tq#:["s8N&t +s8W)urr)lrrX&W(rr;utrr<#tqu6cts8N#mrr`9#rr2os!ri6"J,~> +"TSK#s8N#t"oeQ$rr;uss8W'#s8N&urVlis!<2rss8Mus"oeQ$s8W)ss8W)urri?$s8N&trX8c* +s8W)ts8W)urr2osrr2rt#4dFe_>aK6rr;uss8NQ-s8N&urr;uts8N&trr2rtrrqXs46a0q@_6U=FM@XY#kiU?6maeWH@9Uj8p +rVulrs8N#trr<#tq>Us(s8W)urr2rsrr;uts8M`ls8EH,rr;uss8N&urr;usq>V'+s8W)ts8N&t +rr;uss8N&urqZR(rr<#ts8N#trr2rss8W)os*t~> +"TSK#s8N#t"oeQ$rr;uss8W'#s8N&urVlis!<2rss8Mus"oeQ$s8W)ss8W)urri?$s8N&trX8c* +s8W)ts8W)urr2osrr2rt#4dFe_>aK6rr;uss8NQ-s8N&urr;uts8N&trr2rtrrJ^s8W)srrE&ns8W',s8N&trr;uts8N&trqZR+rr<#trr;ut +rr2rsrr;uts8Mio%fZM.rr;uss8N#trr<#tpAZQ>qXs77b.=*p:JFr&D1nh.j72[!bc#D\Us(s8W)urr2rsrr;uts8M`ls8EH,rr;uss8N&urr;usq>V'+s8W)ts8N&t +rr;uss8N&urqZR(rr<#ts8N#trr2rss8W)os*t~> +"TSK#s8N#t"oeQ$rr;uss8W'#s8N&urVlis!<2rss8Mus"oeQ$s8W)ss8W)urri?$s8N&trX8c* +s8W)ts8W)urr2osrr2rt#4dFe_>aK6rr;uss8NQ-s8N&urr;uts8N&trr2rtrrTi8;[T;0D[6s8Mus!<2cns8EH,rr;uss8N&urr;usq>V'+s8W)ts8N&trr;us +s8N&urqZR(rr<#ts8N#trr2rss8W)ls![jBp$Leb^S?Zl>%M`"NNCCeo^q7lXa4MfVU=o3s8N#t +rr2rss8W)orso&.s8N&trr;uss8N&urq?BlrXAi+s8N#trr<#ts8N#nrt581s8N#trr;uss8N#t +rr<#tq>Us(s8W)urr2rsrr;uts8MioJ,~> +!<2ip#QFc&s8W)urqud#rr;utrr;uqrr`9#rr2oss8E0$rr<#tq>^Kor;Z`pqYp]ts8W)trVm$! +_fgn!rr3'!s8Muss8Mrrs8M]k!<2rs!<2lq$i^"TZ@6e5PHid1rqcWsrr<#trr3<(s8W)urr2rt +rql`qrqufrrr2rsrql]qrr)isrqcWprql`qrqZTorWE2iUJq+I">Vc#J`-J$rq?Hgp\Xacp\jji +p\=LXp\spkp\=LXq"Oa^!r)KarqHZkq"XURo_\Ccp\=OXrqHKfqY1'brV-EbmJch\q"O[\s7cKe +"S_]cq"Od_"o%fdq"XU_p^HoTcd0a71.U."s8N#ns8W)ursJc*s8N&trr<#trqQNnrr)j%rr;ut +s8N&tqYpQprr3'!s8Mio$3'u)rr;uss8W)rs8W)ursn"bKmmrF4\]gJQa+NalM0fSkJNHh8Tgic +r;QQm!<2ut!ri6!q>Ud#s8W)urr2rtrqufrrrUd#s8W)urr2rtrqufrrdX~> +!<2ip#QFc&s8W)urqud#rr;utrr;uqrr`9#rr2oss8E0$rr<#tq>^Kor;Z`pqYp]ts8W)trVm$! +_fgn!rr3'!s8Muss8Mrrs8M]k!<2rs!<2lq$i^"TZ@6e5PHid1rqcWsrr<#trr3<(s8W)urr2rt +rql`qrqufrrr2rsrql]qrr)isrqcWprql`qrqZTorWE2jVd90c!`"O0r:p9c!VlEdq#C*ep]U?d +p\=L^p]^Eep\=OXrV-Hgq"Od_"o%fep[RnQp]L9cq"Od_!;H?b!;HHe!V>^XpAt'`qtU3crV-Ni +q"ORXrqHZkq"ORYp\sprpZ:&[e6tXBh>dNSrqZTorrUd#s8W)urr2rtrqufrrrUd#s8W)urr2rtrqufrrrUd#s8W)urr2rtrqufrrdX~> +!<2ip#QFc&s8W)urqud#rr;utrr;uqrr`9#rr2oss8E0$rr<#tq>^Kor;Z`pqYp]ts8W)trVm$! +_fgn!rr3'!s8Muss8Mrrs8M]k!<2rs!<2lq$i^"TZ@6e5PHid1rqcWsrr<#trr3<(s8W)urr2rt +rql`qrqufrrr2rsrql]qrr)isrqcWprql`qrqZTorWE2jXD7W0!aLcErq?EdrqHHdq=am_rV$Be +p\+OZ!;??b!;?Ed!VZ9dpAXdgp@.\Ir:^Hip\4CUp@n:WpAjpcpBC-Sp@n:Sq=am_rV$Bep\+OZ +!;??b&,,blp?CMmghoqthZ*WTrqZTorrUd#s8W)urr2rtrqufrrr +!WW/rrrE&ts8W)us8W)trs&K&s8N&urqZTmrqcWprqQKnrqHEprr<#tqu7*(s8W)tn=+L#p](9m +qYpg"s8N&ts8W)srs8W(rr;uts8N&srW3&urVmQ1s8W)pijakjFFAk?ea<#)r;Q]js8W)qs8W)r +rs/Q'rr;uts8N#t"9/?#rr)j&rr<#ts8N&urr)j!rr;utrr2rts8N&u*<-!UQrs8W)srs/Q'rr;uss8Mus"oeQ%rr;urrsSi+rr<#ts8W)us8Mfn!<2rss8N&us8N&u +rr2lrJ,~> +!WW/rrrE&ts8W)us8W)trs&K&s8N&urqZTmrqcWprqQKnrqHEprr<#tqu7*(s8W)tn=+L#p](9m +qYpg"s8N&ts8W)srs8W(rr;uts8N&srW3&urVmQ1s8W)pijakjFFAk?ea<#)r;Q]js8W)qs8W)r +rs/Q'rr;uts8N#t"9/?#rr)j&rr<#ts8N&urr)j!rr;utrr2rts8N&u*<-!UQrs8W)srs/Q'rr;uss8Mus"oeQ%rr;urrsSi+rr<#ts8W)us8Mfn!<2rss8N&us8N&u +rr2lrJ,~> +!WW/rrrE&ts8W)us8W)trs&K&s8N&urqZTmrqcWprqQKnrqHEprr<#tqu7*(s8W)tn=+L#p](9m +qYpg"s8N&ts8W)srs8W(rr;uts8N&srW3&urVmQ1s8W)pijakjFFAk?ea<#)r;Q]js8W)qs8W)r +rs/Q'rr;uts8N#t"9/?#rr)j&rr<#ts8N&urr)j!rr;utrr2rts8N&u'E8%3rr<#pd"5=r;d=.0 +]?]3qo8`MSn)<3]RSd.orr<#trr<#trqZQrrr<#trVm-%s8N&trr;urrrrE%s8N&trVm9)s8N&u +rr<#ts8W)nrrE&ss8W)us8W)us8N#rrs\e?Cg^t.T>'"8kO.s4oF^TPbDKtKKuNNVrr2rtrr<#t +q#:?nrVuoss8W,us8W)tq>UQrs8W)srs/Q'rr;uss8Mus"oeQ%rr;urrsSi+rr<#ts8W)us8Mfn +!<2rss8N&us8N&urr2lrJ,~> +s8E'!rr2otrqucrrr2p!rr;usrrE&ts8W)srsJc*s8N&urr;uss8DrsrrE&ps8Muts8N#ts8W'$ +s8N&trqucrrr)j!gO"4hrr33%s8W)us8N#t"9/?#rqcZorr2otrr2p!rr<#trr)j:rr<#tq9l:, +HZ3tMNi0J1gun2"p%SF^p%%A2kJQNii29155tZ:4gPFkqikrOGQpa5ljh^0blhg_]s8Mlps8E'! +rr2otrr2p#cq@]_lK7I@h5YBf=-:AgrVuosrqud"rr<#ts8Mlps8E'!rr2otrr)lsrr<#urqud! +rr<#trqucrrqHEmrr)isrr)lrrqud"rr<#ts8Mlps8E'!rr2otrr2qJ~> +s8E'!rr2otrqucrrr2p!rr;usrrE&ts8W)srsJc*s8N&urr;uss8DrsrrE&ps8Muts8N#ts8W'$ +s8N&trqucrrr)j!gO"4hrr33%s8W)us8N#t"9/?#rqcZorr2otrr2p!rr<#trr)j:rr<#tq9l:, +HZ3tMNi0J1gun2"p%SF^p%%A2kJQNii2KUI92p;Pgkatril]<^Th\7:jh^0blhg_]s8Mlps8E'! +rr2otrr2p#dT1&%mH3mFi3%?-@$ek$rVuosrqud"rr<#ts8Mlps8E'!rr2otrr)lsrr<#urqud! +rr<#trqucrrqHEmrr)isrr)lrrqud"rr<#ts8Mlps8E'!rr2otrr2qJ~> +s8E'!rr2otrqucrrr2p!rr;usrrE&ts8W)srsJc*s8N&urr;uss8DrsrrE&ps8Muts8N#ts8W'$ +s8N&trqucrrr)j!gO"4hrr33%s8W)us8N#t"9/?#rqcZorr2otrr2p!rr<#trr)j:rr<#tq9l:, +HZ3tMNi0J1gun2"p%SF^p%%A2kJQNii2g0b='pWpg5+\ni6]cpWENAajh^0blhg_]s8Mlps8E'! +rr2otrr2p#eRN[DnE0 +rVllso`+sjqu6ZqrVuosrr<#trVllsqu?]qs8N6$s8N&trVuosrr<#ts8N)uqu7<.s8N#ts80!= +L@bHEs8W)us8Mus"oeQ$s8W)os8W)trr`9#s8Mus!<2cn(AmLM]9IAVEH#uNMj'KoR@]q8Q&^f] +_i=bODZ4>NE.s")#D@_^Hu!G=MntDTQ1=kKrrW3"rqZQrrgH3hj6R*UHoJ,~> +rVllso`+sjqu6ZqrVuosrr<#trVllsqu?]qs8N6$s8N&trVuosrr<#ts8N)uqu7<.s8N#ts80!= +L@bHEs8W)us8Mus"oeQ$s8W)os8W)trr`9#s8Mus!<2cn(AmLM]9IAVEH#uNMj'KoR@]q8Q&^f] +_i=bPDuOJPEJB1+#DRqdIV`bBMntDTQ1=kKrrW3"rqZQrrgus'j6mUHoJ,~> +rVllso`+sjqu6ZqrVuosrr<#trVllsqu?]qs8N6$s8N&trVuosrr<#ts8N)uqu7<.s8N#ts80!= +L@bHEs8W)us8Mus"oeQ$s8W)os8W)trr`9#s8Mus!<2cn(AmLM]9IAVEH#uNMj'KoR@]q8Q&^f] +_i=bPE;jYSEe]:+reCW,DJXNT_2\S^nc&=`!ri6!q>UQrV-D%#nd+L*W,H'lX6'UHorr30$s8N#trr)j%rr;uts8N&urVlfr"9/?"rr)isrr2rtrqZTorW3&uq#:Eps8Mio +!<.K~> +"9/?#rr2rrrqufrrW3&urVllsrr3'!s8MEc"9/?#rr2otrqQKqrr<#trr3*"s8N#srsA])s7)Ou +X7uYnoD\mks8M`l!<2`ms8E'!rqud,rr)]_iPqj[MM?\0I!KaRrd4`pK#NEIJo,:=EI`Xn#Cq5N +HZ3b>J\d$@N:?05!c*2Ci9Lg9jN3'X8oLuopAY*kkPkP]qu6ZqrVllsqu6Zqrr39's8N&urr<#t +rVuosqu?]qs8N)ukPp&~> +"9/?#rr2rrrqufrrW3&urVllsrr3'!s8MEc"9/?#rr2otrqQKqrr<#trr3*"s8N#srsA])s7)Ou +X7uYnoD\mks8M`l!<2`ms8E'!rqud,rr)]_iPqj[MM?\0I!KaRrd4`pK#NEIJo5C@Ee/gp#D%AS +HuWtBJ\d$@N:?05!citVi9h$@kfo#r +"9/?#rr2rrrqufrrW3&urVllsrr3'!s8MEc"9/?#rr2otrqQKqrr<#trr3*"s8N#srsA])s7)Ou +X7uYnoD\mks8M`l!<2`ms8E'!rqud,rr)]_iPqj[MM?\0I!KaRrd4`pK#NEIJo>LCF+Jpq#D%DU +IWB:GJ\d$@N:?05!dfslo^W"Pmd^eUm*_):@Xu&Np\t3lkPkP]qu6ZqrVllsqu6Zqrr39's8N&u +rr<#trVuosqu?]qs8N)ukPp&~> +r;Zcq"TSK$s8Mrr"oeQ$rr;uss8N#prrW3"rr2rsrW3&urVllsqZ$Tpq>^Hnrr3'!s8Mrr#QFc& +e:2hbr;?Qprr2rtrql]qrr2otrr2p!rr;urs8W)urr`9#s8Mus!WN,urr)j)rr<#qn)iERd`]8; +rmChsi5Xg^ii>dB8tsmgh$;3:]*.t(l3Z_-W-V-? +KYd!Nr;QcrrVuoss8W,urr<#tq#:Nss8W)ts8N#nrs/Q'rr;uts8Moqs8N&u"TJH#s8Mcm!<2rs +s8N&us8N#ts8MrrJ,~> +r;Zcq"TSK$s8Mrr"oeQ$rr;uss8N#prrW3"rr2rsrW3&urVllsqZ$Tpq>^Hnrr3'!s8Mrr#QFc& +e:2hbr;?Qprr2rtrql]qrr2otrr2p!rr;urs8W)urr`9#s8Mus!WN,urr)j)rr<#qn)iERd`]8; +rmChsi5Xg^iiQ6V;Q&,uh$; +r;Zcq"TSK$s8Mrr"oeQ$rr;uss8N#prrW3"rr2rsrW3&urVllsqZ$Tpq>^Hnrr3'!s8Mrr#QFc& +e:2hbr;?Qprr2rtrql]qrr2otrr2p!rr;urs8W)urr`9#s8Mus!WN,urr)j)rr<#qn)iERd`]8; +rmChsi5Xg^iilfn>cZJ.g]u +!WW/rrrW3"rql]qrql^!rr<#ts8Mrr!<2ip!<2ut%0$;+rr;utrr<#ts8N#t!<2lq!<2rs!<2ut +!<2uts8E<(qmpfui;WcUrr2utqu6ZqrVm'#s8N&trr2otrr)isrqucrrr)isrr2otrql]qrqZQo +rr)isrqZQorr2otrql]qrqQKnrr2p$rr;uts8Mcm!<2ut!<2rss8E2V?o0`gl%/O7jNl/iA2@BE +s8Muss8Mio!<2or!<2ut!<2or!<2ut!<2or!<2`m"9/?#rr)lsrqcZprWN9#s8W)lrrQ>bkM,5. +khs[U=\De"^A%X)s8W'$s8N&urq$-irqucrrr2otrqucrrr2otrqucrrqHEprr<#trVuosqZ$Tp +"TSK$s8M`lJ,~> +!WW/rrrW3"rql]qrql^!rr<#ts8Mrr!<2ip!<2ut%0$;+rr;utrr<#ts8N#t!<2lq!<2rs!<2ut +!<2uts8E<(qmpfui;WcUrr2utqu6ZqrVm'#s8N&trr2otrr)isrqucrrr)isrr2otrql]qrqZQo +rr)isrqZQorr2otrql]qrqQKnrr2p$rr;uts8Mcm!<2ut!<2rss8E2WC-b4Bm"+j:kh+M2Da@mi +s8Muss8Mio!<2or!<2ut!<2or!<2ut!<2or!<2`m"9/?#rr)lsrqcZprWN9#s8W)lrrQVslItS2 +jO'c6 +!WW/rrrW3"rql]qrql^!rr<#ts8Mrr!<2ip!<2ut%0$;+rr;utrr<#ts8N#t!<2lq!<2rs!<2ut +!<2uts8E<(qmpfui;WcUrr2utqu6ZqrVm'#s8N&trr2otrr)isrqucrrr)isrr2otrql]qrqZQo +rr)isrqZQorr2otrql]qrqQKnrr2p$rr;uts8Mcm!<2ut!<2rss8E2YFAYu"m"+g9lep[MHr4h? +s8Muss8Mio!<2or!<2ut!<2or!<2ut!<2or!<2`m"9/?#rr)lsrqcZprWN9#s8W)lrrR#2mb7.: +kgleRA8cP-p\t*js8E0$rr<#toD\gir;Qcrrr2utr;Qcrrr2utr;Qcrp\t?ps8W)ss8W)ps8W'$ +s8N&urq?AB~> +rVm6(s8W)us8N#ts8Muss8E'!rr)isrquctrr;usrrE&trs\o,rr;uts8N&ts8W)irrE&grrr7h +EfKJcrVllsrr<#ts8N)uq>^Ko"98B#rr2otrr2p"rr<#tnc/Xgrr2utqZ$Tpp\t6mrr<#ts8N)u +q#:Krs8N&trr2utnc&Ugrr39#K/5E*de +rVm6(s8W)us8N#ts8Muss8E'!rr)isrquctrr;usrrE&trs\o,rr;uts8N&ts8W)irrE&grrr7h +EfKJcrVllsrr<#ts8N)uq>^Ko"98B#rr2otrr2p"rr<#tnc/Xgrr2utqZ$Tpp\t6mrr<#ts8N)u +q#:Krs8N&trr2utnc&Ugrr39#M*XOVfCnn1rUp6arUp +rVm6(s8W)us8N#ts8Muss8E'!rr)isrquctrr;usrrE&trs\o,rr;uts8N&ts8W)irrE&grrr7h +EfKJcrVllsrr<#ts8N)uq>^Ko"98B#rr2otrr2p"rr<#tnc/Xgrr2utqZ$Tpp\t6mrr<#ts8N)u +q#:Krs8N&trr2utnc&Ugrr36"O\o&4h"C=6o`FdYo_.tXo`+Rao^qeYo_%nLq"4XZp%8=Wrq-?b +p%8"O!qc0Xp@\IXs7HBao^r=Yp%@tSo`sg@hpd$NDrCWp!<2lq!<2uts8N#t"9/?"s8N#lrrE&t +rrE&prrE&ts8W')s8N&ts8W)us8Mrrs8E'!rqucrrql^!rr<"7U$^\)%. +"9/?#rqud"rr;uts8MWi!ri6!qYpQprr2utqYp]ts8W)tq#:?nr;Qcrq>^Kor;Qs"j,S5ap%eUg +rr;oqqZ$Tprr33%s8W)us8N#t!ri6!r;Z`prVuoss8N)urVllsq#:?np\t9ns8;its8N#qrrE&q +s8W)urrE&ms8W)us8W'5gcdJ]]']1ap@\.Qp%A%Op@\.Pp@\FY#PIfap%A%Op&=[bp&4Rap&4Ra +p&=Y$p%J+Pp%J(Op@e1Qp@\.Pp@e1Pp@e1Pr:^0`s7Qlop@e1Pp@\.Pp@\.Prq6Tip@e1Pp@\+X +pAagap&Odap&Odbp)cd0L>1KiQ6rr2rtrr2rtrr2p&rr<#ts8N&tr;Zfrrr<#t +rr<#tr;Zcqs8N)urr3'!s8Mcm!<2rs%fZM.rr<#trr;uts8N&trr3('O6#I#k6U55kN:pik3(n+ +k8rdKk3(pikND!ikN:seg!%4>['?[4XKSn5T1`DMrr)j,rr<#ts8W)ts8N&urr;usrs/Q's8N&t +s8Mrrs8N#ts8N#ts8Mrrrr2rt!<2ut!ri6!p\t6mrVmB,s8W)us8N#trr<#ts8N#tJ,~> +"9/?#rqud"rr;uts8MWi!ri6!qYpQprr2utqYp]ts8W)tq#:?nr;Qcrq>^Kor;Qs"j,S5ap%eUg +rr;oqqZ$Tprr33%s8W)us8N#t!ri6!r;Z`prVuoss8N)urVllsq#:?np\t9ns8;its8N#qrrE&q +s8W)urrE&ms8W)us8W'5h+L"2_=%!ip@\.Qp%A%Op@\.Pp@\FY#PIfap%A%Op&=[bp&4Rap&4Ra +p&=Y$p%J+Pp%J(Op@e1Qp@\.Pp@e1Pp@e1Pr:^0`s7Qlop@e1Pp@\.Pp@\.Prq6Tip@e1Pp@\+X +pAagap&Odap&Odbp) +"9/?#rqud"rr;uts8MWi!ri6!qYpQprr2utqYp]ts8W)tq#:?nr;Qcrq>^Kor;Qs"j,S5ap%eUg +rr;oqqZ$Tprr33%s8W)us8N#t!ri6!r;Z`prVuoss8N)urVllsq#:?np\t9ns8;its8N#qrrE&q +s8W)urrE&ms8W)us8W'0hH +!<2ip!<2rs"9/?#rr)isrq-3mrr<#tq>UHorVllsrr<#trVllsq#;*.s8W)urr2rtrr<#ts8N&t +dXZGIqt^6rrr;uts8N#ss8W)trs8W(s8N&ts8W)srrE&ts8W)us8W'!s8Mus!<2Wjs8MTh"TJH# +s8W)ts8N)urVm'#s8N&urr)j$rr;utrr<#trW)usrX&W"JMT':hXpO7rUp6arq?Bbrq?Bbr:^*^ +#PRi`p@\.Pp&=[bp&=Xop%J(Pp@\.Pp%J(Pp@\FY!;6?b!;6)p%J+Pp@\+Pp%IImcGO0K=P3<;o'GW+mdg,Jrr2rtrr;uq +s8N!6s8N#ts8N&urr;uss8N&ts8W)urr<#trr33%s8W)urr2os%K?D-rr;uts8N&urr2rrrr2rt +rWW?$s&kECkiN<6h:^<"]WJ07XKJh5rNcC.%>d!frr;uts8N&urr2rrrr2rtrW`E%s8W)urqufq +rYPV6rr<#ts8W)urr2rss8N&urr;uts8N#t#6+Z&rr;usrr3H,s8W)urr<#ts8W)ts8Drrs8W'" +s8N%K~> +!<2ip!<2rs"9/?#rr)isrq-3mrr<#tq>UHorVllsrr<#trVllsq#;*.s8W)urr2rtrr<#ts8N&t +dXZGIqt^6rrr;uts8N#ss8W)trs8W(s8N&ts8W)srrE&ts8W)us8W'!s8Mus!<2Wjs8MTh"TJH# +s8W)ts8N)urVm'#s8N&urr)j$rr;utrr<#trW)usrX&W"LHn+ej7N')p%J+Pp@\+Pp%IV%f?A/!@bUMHo'GZ,n+6;Lrr2rtrr;uq +s8N!6s8N#ts8N&urr;uss8N&ts8W)urr<#trr33%s8W)urr2os%K?D-rr;uts8N&urr2rrrr2rt +rWW?$s'_8WkirT>j58V=a1Jgl]"GbkrP/ +!<2ip!<2rs"9/?#rr)isrq-3mrr<#tq>UHorVllsrr<#trVllsq#;*.s8W)urr2rtrr<#ts8N&t +dXZGIqt^6rrr;uts8N#ss8W)trs8W(s8N&ts8W)srrE&ts8W)us8W'!s8Mus!<2Wjs8MTh"TJH# +s8W)ts8N)urVm'#s8N&urr)j$rr;utrr<#trW)usrX&W#O&8`CkOeH>rq66^!ql3Xrq66^!;6<_ +!;6<_!;6<_rq69_s7HHcp%84U!VH']oE+^Xo`"L`o_nF_o_nFao_%kUp&4Lap%7nUp&4L_p&4L_ +p&4L_p&4O^p&=U`o`FdYo_nF`o_&4U)!g):e9k,1g\(10mHa*-oCr([rr<#ts8Mrrrr*`6rr2rt +rr<#ts8N#trr;uts8N&ts8W)trs&K&s8N&trr2p,rr<#ts8N&urr<#trr;rrrr<#t"onT%Cn^4Z +mL/CGk2Y4Gbf\,Qbg-(2s3M4O;q(aGrr<#ts8W)ts8Drrs8W'&s8N&urr;uqs8N!6s8N#ts8N&u +rr;uss8N&ts8W)urr<#trr33%s8W)urr2os%K?D-rr;uts8N&urr2rrrr2rtrW<-!s*t~> +qu6Zqr;QcrqYpQpr;Zfrrr3*"s8W)mrrE&ts8W)srs8W(rr2rss8W)trrE&srrE&trrE&ls8W'$ +_f^%GrVca#rr;utrr;ugrri?$rr;urrrE&srrE&prrE&srrE&prrW3"rr)isrqHEsrr;utrr;ui +rrE&trr`9#s8Mio!<2rss8E6&bXsW]^$:1As7I)ecdU'M1IQbHI!]U +qu6Zqr;QcrqYpQpr;Zfrrr3*"s8W)mrrE&ts8W)srs8W(rr2rss8W)trrE&srrE&trrE&ls8W'$ +_f^%GrVca#rr;utrr;ugrri?$rr;urrrE&srrE&prrE&srrE&prrW3"rr)isrqHEsrr;utrr;ui +rrE&trr`9#s8Mio!<2rss8E6&c;m21`U&0Ks7I)if\4_n5u<>pKS+;]D0gntQE/[-rr2utrVlls +rVuos!WW/krrE&srrrE%rr<#trr3*"s8N#srrE&rs8W)qrr`9#s8Mus"TJF0QfmVt#MmP;\@9&] +^APbK^VIY"rP/NMVG#54s8W)qrr`9#s8Mus!<2rs!<2rs!<2rss8E'!rq-3jrr)j#rr;uts8N#t +"9/?"rr2otrqufrrql]trr<#trVlots*t~> +qu6Zqr;QcrqYpQpr;Zfrrr3*"s8W)mrrE&ts8W)srs8W(rr2rss8W)trrE&srrE&trrE&ls8W'$ +_f^%GrVca#rr;utrr;ugrri?$rr;urrrE&srrE&prrE&srrE&prrW3"rr)isrqHEsrr;utrr;ui +rrE&trr`9#s8Mio!<2rss8E6&d:6!_c0g/Ts7@#ki8WC<;-f9JNJi1-GCtmBT!?u13?Ks8Moq"9/?#rr)isrr)isrr)isrr)lsrW3&uo`"pjrVm'#s8N&u +rr2p"rr;usrr2utr;Zfrqu6cts8W)srrN-!J,~> +s8W,urr<#trr2utrVulr$31#)s8N&urr<#trr2p"rr;usqYpQprr2utqu6Zqp&>$krr30$s8W)u +s8N#qrs8VtX)j*MrVulnrrrE%rr2rsr;Qp!s8W)urr)rurr2ourr;rrq>UZus8N&ts8Moq!WN,u +rql^!rr;uss8Mlp"9/?"rqcWprr)lrrqZTnrql^$rr&?E1OddCo_\:]o`"Lco_%nLqXsm\rq-Bc +p%@tPo`4X[o`4XXoa:?ap%7qMo^qhLo`"L`o_\:]o`"Lco_%nLqXsm\rq-Bcp%@tPo`4X[o`4X^ +o`XaLmG`'_1B9301]K611Cu<#;-oR6o_ndhrr2rsrr;uqrrE&ss8Muts8N#ts8;j!s8N&urr)is +rp9Xkrr<#ts8W($NoKBc"QRe3YH\#3nZr:c5KiTs#6+Z&rr<#tqu?]q"TSK#s8Mrr!<2rsrr)ot +rr2rtr;Hj!rr<#trVllsm/I:hs8W)us8IN~> +s8W,urr<#trr2utrVulr$31#)s8N&urr<#trr2p"rr;usqYpQprr2utqu6Zqp&>$krr30$s8W)u +s8N#qrs8VtX)j*MrVulnrrrE%rr2rsr;Qp!s8W)urr)rurr2ourr;rrq>UZus8N&ts8Moq!WN,u +rql^!rr;uss8Mlp"9/?"rqcWprr)lrrqZTnrql^$rr&QY6&=4bo_\:]o`"Lco_%nLqXsm\rq-Bc +p%@tPo`4X[o`4XXoa:?ap%7qMo^qhLo`"L`o_\:]o`"Lco_%nLqXsm\rq-Bcp%@tPo`4X[o`4X^ +o`XdPn)JZb5n?@gBq*KArVlirrr;uss8Mrr!<2rsrr)otrr2rtr;Hj!rr<#trVllsm/ICks8W)u +s8HGmk3M46kLRA[^Abn>^]hKg^o'lOnc&gms8W)us8Moqs8E0$rr2rsr;QcrrVulr!<<&ts8W#r +"TSK$s8Mus!<2?b#6+Z&rr<#tJ,~> +s8W,urr<#trr2utrVulr$31#)s8N&urr<#trr2p"rr;usqYpQprr2utqu6Zqp&>$krr30$s8W)u +s8N#qrs8VtX)j*MrVulnrrrE%rr2rsr;Qp!s8W)urr)rurr2ourr;rrq>UZus8N&ts8Moq!WN,u +rql^!rr;uss8Mlp"9/?"rqcWprr)lrrqZTnrql^$rr&fo;3]u/oD\@^oDA.^oCV\HrU^3`o^qbS +oEY![o^h\Ho^htP!;#XN!;$3^!;$3^"7u0WoD\@^oD\@^oDA.^oCV\HrU^3`o^qbSoEY![o^h\H +o^htP!;#gS"RtmLjF[#$%od4bT[NN3rr;uss8N#trqucrrr)lrrW)utrr<#rrWN9#s8W)srrE&b +rsA])s8N&urbS7mlg+c?hp0Klrm1Vks3LAb!k2F_nc&gms8W)us8Moqs8E0$rr2rsr;QcrrVulr +!<<&ts8W#r"TSK$s8Mus!<2?b#6+Z&rr<#tJ,~> +!<2ut"oeQ%rr<#trWN9#s8W)ts8W'#s8N&tq#:Eps8MfnrVl]o!<2fo"TJH#s8Mlprr2]m#55$9 +J^sf"rr2utrr2utp](9mr;Qp!s8N&tr;Qcrqu6fus8N&trr2utqu?]q!rr9!qu?Zp"98B#rr2ot +rr2otrr2rtrr;uurr2p!rr;uss8W'(s8N&urr;utrqZQuon5+iVr74Ho`=^Xrq$6ao_nFno_%nL +p%7qLp%@tMp%7qLrq-Hep%@tMo_nF_o`"Lho_%kLp%7qMo`"L`o`"L`o_e@co_%kLo^r.U!VH'a +oE"XWrUg]np%@tMo_%kLp%7qMo_%kUo`b!\p%7qLrUg0_rq.0$p%7qMo_%nLp%@Kf1G_-h=^,0B +?s?W)4T$u;7[;'fq>UHor;Qlus8W)err`9#rr2iq"oeQ%rr;umrrE&trrE&srrQ>_iToM7g8D3] +Za-pDZEpjCZEpmCrNcm;Za-m*5Kj*,rr;umrrE&trrE&errE&rrr`9#s8MKe"9/?"rqud"rr<#t +s8Mfn!<2ut!<2rsJ,~> +!<2ut"oeQ%rr<#trWN9#s8W)ts8W'#s8N&tq#:Eps8MfnrVl]o!<2fo"TJH#s8Mlprr2]m#55$9 +J^sf"rr2utrr2utp](9mr;Qp!s8N&tr;Qcrqu6fus8N&trr2utqu?]q!rr9!qu?Zp"98B#rr2ot +rr2otrr2rtrr;uurr2p!rr;uss8W'(s8N&urr;utrqZQuonu(5Z/tWWo`=^Xrq$6ao_nFno_%nL +p%7qLp%@tMp%7qLrq-Hep%@tMo_nF_o`"Lho_%kLp%7qMo`"L`o`"L`o_e@co_%kLo^r.U!VH'a +oE"XWrUg]np%@tMo_%kLp%7qMo_%kUo`b!\p%7qLrUg0_rq.0$p%7qMo_%nLp%@Kn5s\%F@qB:j +C1UaR8c1jV;4>]$q>UHor;Qlus8W)err`9#rr2iq"oeQ%rr;umrrE&trrE&srrQVpjm2(2hmU;s +^]V?e^q]i`!5JEH#H(8@s8W)urqQKnrr2otrpTjerqucurr<#tn,ELhs8N#qrrrE%s8N&tq#:?n +rr2utrVqB~> +!<2ut"oeQ%rr<#trWN9#s8W)ts8W'#s8N&tq#:Eps8MfnrVl]o!<2fo"TJH#s8Mlprr2]m#55$9 +J^sf"rr2utrr2utp](9mr;Qp!s8N&tr;Qcrqu6fus8N&trr2utqu?]q!rr9!qu?Zp"98B#rr2ot +rr2otrr2rtrr;uurr2p!rr;uss8W'(s8N&urr;utrqZQtp68E^\`j"as76giZPrr;umrrE&trrE&errE&rrr`9# +s8MKe"9/?"rqud"rr<#ts8Mfn!<2ut!<2rsJ,~> +!<2ut!<2lqs8N&u!ri6!rr<#ts8NE)s8N&urr<#trr2rtrW<-!rqHEmrq??mrr;usp](9mrr2ut +rVm6(s6uIsMs:9@s8Mfnr;H`srqQKqrr;utrr2`nr;Hctrr2fp"9/?"rq69orr;utrq??prr<#t +rqcWprr2rtrW<-!rqcX/rr;G11/PC@o^qhLo_%nLo_%kKp&+I]o`4X^oa19`p%7qLo_%nLr:U*^ +!VQ*[p&F[_oa:?ao^qhLo^qhKo`"O`o`+Rio_%nLo_%kKp&+I]o`4X^oa19`p%7qLo_%nLr:U*^ +!VQ*[p&F[aob$A,@uIJ4f\>9GiS2f$Z'9/jrA+UGMWFd:rr)lsrr)lsrWiK&s8W)us8Mus!<2or +s8M`ls8Mus!<2or!<2rss8E3%rr6,\i9TA)_6(&Lrj2U0rj)^4Za-n5ZNZd^bQ%S@rVllsr;Qcr +rVuos!WW/trrE&rrrE&ss8W)ss8W''s8N&urr<#trVllsr;ZfrpAb0lrVllsr;QcrrVuos!rr9" +J,~> +!<2ut!<2lqs8N&u!ri6!rr<#ts8NE)s8N&urr<#trr2rtrW<-!rqHEmrq??mrr;usp](9mrr2ut +rVm6(s6uIsMs:9@s8Mfnr;H`srqQKqrr;utrr2`nr;Hctrr2fp"9/?"rq69orr;utrq??prr<#t +rqcWprr2rtrW<-!rqcX/rr;J:6!V.go^qhLo_%nLo_%kKp&+I]o`4X^oa19`p%7qLo_%nLr:U*^ +!VQ*[p&F[_oa:?ao^qhLo^qhKo`"O`o`+Rio_%nLo_%kKp&+I]o`4X^oa19`p%7qLo_%nLr:U*^ +!VQ*[p&F[aob$A4Cm)'Jg"YBHinMr([[MD5rBUTaOlZNArr)lsrr)lsrWiK&s8W)us8Mus!<2or +s8M`ls8Mus!<2or!<2rss8E3%rr6Dmjo"9Lk3(pikND!ikN:sir9"+']DfVG^]2(R^VIY"^qd_\ +^]gW0cN!nCrVllsr;QcrrVuos!WW/trrE&rrrE&ss8W)ss8W''s8N&urr<#trVllsr;ZfrpAb0l +rVllsr;QcrrVuos!rr9"J,~> +!<2ut!<2lqs8N&u!ri6!rr<#ts8NE)s8N&urr<#trr2rtrW<-!rqHEmrq??mrr;usp](9mrr2ut +rVm6(s6uIsMs:9@s8Mfnr;H`srqQKqrr;utrr2`nr;Hctrr2fp"9/?"rq69orr;utrq??prr<#t +rqcWprr2rtrW<-!rqcX$rr;JC;/4,;o^i"Q!qZ'Vrq$0^!qZ'Uq"4UX"SD +rr2utp&>$kp&>$kr;Qcrrr2utp&>$kq>UHoqu?]qs8N)ur;Qlus8W)qrrE&srs7nYF-PY_s8W)r +s8W)rrrE&ss8W'"s8N#srrrE%s8N&trr2utqu?]qs8W,urVm!!s8W)qrrE&rrr`9#rr2os!<2or +s8N&u"9/?#rqud!rr;uss8N#ss8W)urrE&srsSi+k@$,K^ut@^p%84Us7H9_"n_K[o_%nUoE4dY +o_&4Us7Q?_rUp0^"SME[o_&4U$2*r`o_%nLp%@tQp&F[`p&FXbp%84Us7H9_"n_K[o_%nUoE4dY +o_&4Us7Q?_rUp0^"SME[o_&4U$ha/bo_%nLnDE?ro_\:mo_%kLn`\W%ECVuE2HdK\rqQKqrr;us +q#:?nrr2utq>UHor;Zfrrr<#tqYq!'s8W)urr2rss&k< +rr2utp&>$kp&>$kr;Qcrrr2utp&>$kq>UHoqu?]qs8N)ur;Qlus8W)qrrE&srs7nYF-PY_s8W)r +s8W)rrrE&ss8W'"s8N#srrrE%s8N&trr2utqu?]qs8W,urVm!!s8W)qrrE&rrr`9#rr2os!<2or +s8N&u"9/?#rqud!rr;uss8N#ss8W)urrE&srsSi+k\<@oaQiEip%84Us7H9_"n_K[o_%nUoE4dY +o_&4Us7Q?_rUp0^"SME[o_&4U$2*r`o_%nLp%@tQp&F[`p&FXbp%84Us7H9_"n_K[o_%nUoE4dY +o_&4Us7Q?_rUp0^"SME[o_&4U$ha/bo_%nLn_iQuo_\:mo_%kLn`ec/HW*@!6tUHor;Zfrrr<#tqYq!'s8W)urr2rss'_2RlfJ8^^VBc`!5J6C!5JHI"/ei +rr2utp&>$kp&>$kr;Qcrrr2utp&>$kq>UHoqu?]qs8N)ur;Qlus8W)qrrE&srs7nYF-PY_s8W)r +s8W)rrrE&ss8W'"s8N#srrrE%s8N&trr2utqu?]qs8W,urVm!!s8W)qrrE&rrr`9#rr2os!<2or +s8N&u"9/?#rqud!rr;uss8N#ss8W)urrE&srt,20l#]aCdHpJso^h_Ho^h\RoDnL^oDnL]o`+Ll +o^h_Ho^h_IoCVYHoCMtRrq$*\"S;9XoCW%R!VH!YoDnL^o`+O^oEb'\o^h_Ho^h\RoDnL^oDnL] +o`+Llo^h_Ho^h_IoCVYHoCMtRrq$*\"S;9XoCW%R$hX&_o^Lf$mdp)CoD\@noCV\HnEJ]6Kjn%Z +;f9;ArqQKqrr;usq#:?nrr2utq>UHor;Zfrrr<#tqYq!'s8W)urr2rss(n=jlfeGpci2;jci2;k +chbugci28n[p7A\rr<#tqYps&s8W)urr2rss8W)frr`9#rr2]m!<2ut!<2fo!<2ors8N#ts8Mlp +$3'u)rr;uss8N%K~> +rr<#t!WW/us8W)trrW3"s8N#js8W)ts8W'&s8N&urr;uqs8Dp!s8N&trr2utrr2utq>^Hns8N<& +s8W)urr;us$31#(j-=VBjT#8ZrqHEprr<#tq#CUHorr;us +rVllsrr<#t!WW/us8W)trrE&qs8W)urrrE%rr;usqu?]qrr3*"=cD5'huKkWZN.<1ZN.<-ZP9^O +[CEcVZ^O,%s8N#ts8N&ts8N#ps8W)ts8W)qs8N#mrrE&ts8N#rrrE&ts8W'!s8N#ts8N#t!<2lq +s8N&u"oeQ$s8N#ps8W)trrE%K~> +rr<#t!WW/us8W)trrW3"s8N#js8W)ts8W'&s8N&urr;uqs8Dp!s8N&trr2utrr2utq>^Hns8N<& +s8W)urr;us$31#(j-=VBjT#8ZrqHEprr<#tq#CUHorr;us +rVllsrr<#t!WW/us8W)trrE&qs8W)urrrE%rr;usqu?]qrr3*"@?om=jT<$.^\GSE^\tq^^VI_) +`P]Kh9[<\;rr<#ts8N&trql`qrr2rtrql`prqQKnrr2rsrr)isrr2rtrW3&urr<#trr2utqu?]q +s8N9%s8N&trql`qrr2otrdX~> +rr<#t!WW/us8W)trrW3"s8N#js8W)ts8W'&s8N&urr;uqs8Dp!s8N&trr2utrr2utq>^Hns8N<& +s8W)urr;us$31#(j-=VBjT#8ZrqHEprr<#tq#Cu>q$m/-DVoCVYQoE4^W +o^hqO!;$0]!;$'Z"7u0WoD8(`oCV\Ho^qbOoE+XVoDJ4^oCVYMoE+XVoDS:`oCV\HqXadZrU^*] +qXam]o^qbOoEOpZo^h_IoD8(\oCVYPoE4^WoCMtR$M3T.Rqtr!;j,i4q>UHorr;usrVllsrr<#t +!WW/us8W)trrE&qs8W)urrrE%rr;usqu?]qrr3*"CnBh[klBrFklAp*ciDDkd/VGkckk$Td*L(d +e'ugm[p7A]rr2rtrr;utrr2fps8N#ts8Moqrr2]m!<2utrr2lr!<2uts8E'!rr2rtrr2otrql`q +rr +rr2utrr3*"s8N#rrrW3"s8Drsrri?$rr;unrr`9#s8M`l!<2or!<2lq!<2rss8EB*rr;utrr2rs +s8Mlps8N&u#6*bNEKfA[qu?]q!WW/trrE&ss8N#trrE&jrr`9#s8N#t!ri6"rVcs"rr2rsqYp]t +s8N&trr2utq>^Ko!WW/prrrE%s8N&tr;Qrkb--Y>CAqfNB60ZB1G`I]jam'foGI2ee[B6K1H&1I +r;Zfrs8W)urr2rsrr;usrs&K&s8N&urr2otrr)j#rr;uss8Mlp"9/?"rr2otrr2p(rr;uss8W($ +Mr!^V!3H1+(:(9QZEpmCZa6sD\%TZ!b08,R^7%:0r;Qlus8N#srrE&trs/Q'rr2rtrr2Qi$i^2+ +rr;uss8N#trr2p%rr<#ts8W)trrE&srrrE%rr2rsqYpZss8N#srrE&trs&K&rr2rtrdX~> +rr2utrr3*"s8N#rrrW3"s8Drsrri?$rr;unrr`9#s8M`l!<2or!<2lq!<2rss8EB*rr;utrr2rs +s8Mlps8N&u#6*bNEKfA[qu?]q!WW/trrE&ss8N#trrE&jrr`9#s8N#t!ri6"rVcs"rr2rsqYp]t +s8N&trr2utq>^Ko!WW/prrrE%s8N&tr;QrkbHd4SFT-4bEI=L]5s]A8k^iBioGI2fgqS"u5sntq +r;Zfrs8W)urr2rsrr;usrs&K&s8N&urr2otrr)j#rr;uss8Mlp"9/?"rr2otrr2p,rr;uss8W(, +Q/grejlH@$!9F+?%-6O2jQ5IajLW.B^VBZ]&&5op^r+7;dF6XseB"O]cM[\Err;usrr2utrr36& +s8N#ts8N#irsSi+s8N&trr;uss8N#t#6+Z&rr<#trr2utrVm'#s8N#trqcWsrr;usrr2utrr33% +s8N#ts8IN~> +rr2utrr3*"s8N#rrrW3"s8Drsrri?$rr;unrr`9#s8M`l!<2or!<2lq!<2rss8EB*rr;utrr2rs +s8Mlps8N&u#6*bNEKfA[qu?]q!WW/trrE&ss8N#trrE&jrr`9#s8N#t!ri6"rVcs"rr2rsqYp]t +s8N&trr2utq>^Ko!WW/prrrE%s8N&tr;Qrlc*j!lJ,Xd#I"nQ&;,MYnl[eZko,.&eil?[J;,_8L +r;Zfrs8W)urr2rsrr;usrs&K&s8N&urr2otrr)j#rr;uss8Mlp"9/?"rr2otrr2p(rr;uss8W(7 +T'#A&!6bAg!71Si&C8_Ld*U4kg"bHAi83%o>giQM"9/?"rr2otrr2p&rr;uss8W)to`# +q>UNqs8Mus!<2rs!<2ut!<2ip!<2rss8N#t!<2lq"TJH#s8N#t"oeQ$s8W)qrri?$s8N#prrE&q +s8W)qrsShgRWao^qbHo^h_IoCVYGqXjaXs7?<_rq$Heo^h_HoCVYRoEFjYoCMVGr:L$\%.s/_ +nD;?Z=#2TpQLFhPrr3*"s8N&trW<-!rr2rqrW<-!s7uZlrsSi+rr2rtrr2rss8W#rrr<#t!a1H9 +leN&OZa-pDZEpsJ\[oVsbL$17'@P:UcC@,Bs8N&trr<#trr;uts8;lqs8W&us8Doss8N#ts8;lq +rr`9#rr;us!rr9!rr;oq!rr9"q>U +q>UNqs8Mus!<2rs!<2ut!<2ip!<2rss8N#t!<2lq"TJH#s8N#t"oeQ$s8W)qrri?$s8N#prrE&q +s8W)qrsShgRW26:1H5$:7$ECu4RNoCVYGqt0jYs7H?_ +s7?fmo^h_IoCMVGo^qbIoCMhNrU^']!;$3^#P7TZo^h\HoD\@coCVYGo^i"Qs76ao^qbHo^h_IoCVYGqXjaXs7?<_rq$Heo^h_HoCVYRoEFjYoCMVGr:L$\%.s/_n`/,s +@mNCQS+-FVrr3*"s8N&trW<-!rr2rqrW<-!s7uZlrsSi+rr2rtrr2rss8W#rrr<#t!b%>Qlf8Pe +^VIY"^VI\'`Q$-KeCaTM&D*jScN!nDrr2rtrr2rss8W#rrr<#t!<<#s!<<&ts8W#rrr3*"s8N&t +rW<-!rr2rqrW<-!s7uZlrsSi+rr2rtrr2rss8W#rrr<#tJ,~> +q>UNqs8Mus!<2rs!<2ut!<2ip!<2rss8N#t!<2lq"TJH#s8N#t"oeQ$s8W)qrri?$s8N#prrE&q +s8W)qrsShgRWUU +"onT$s8N#srrE&trrW3"s8N#ts8W)rrr`9#s8Mfns8N#trVlfrrr2os"TJH$rr2lr!<2lq$3'u( +rr;uts8N#rrtbV6s8N#ts8MAZE.Q@4s8N&ts8N#trr)j"rr<#ts8DrrrrrE%rr<#trVllsrr<#t +!rr9!rr36&s8N&urr;urrrE&ss8W)us8W)urrE&trrrE%rr;usq#:["s8W)touMkh2Z#951/hUi +6N/e@1'M1Io^qbHr:C!\qXam]o^h\QoDnL\oE4^Wo^hMC#4qKYo^h\Hrq$0^!;$0]rU^']s7?0\ +!;$'Z"7u0VoDS:]oDJ4_oCV\Hmdp_To^h_HoCW%Rs7?<_rU^0_o^i(Ss7?6^$h<-$\S4&[5EbjA +rqufrrWN9#s8W)trrW3"rqucrrr)j!rr<#trr3'!s8N#t!ri6!rr3*"s8N#srsJc*s8N%$MVHtC +h"TV)h"oh-goLF\"gu%^a32d-d/h\CrmD/#_QolXd[i\Hs8N#t!ri6!rr3*"s8N#srrrE%s8N&t +r;QcrqZ$Tpr;Zfr"TSK$s8N#t!ri6!r;QcrrVm!!s8W)trrW3"rr2p!rr;usrr`9#rr2os"TJH$ +rr7K~> +"onT$s8N#srrE&trrW3"s8N#ts8W)rrr`9#s8Mfns8N#trVlfrrr2os"TJH$rr2lr!<2lq$3'u( +rr;uts8N#rrtbV6s8N#ts8MAZE.Q@4s8N&ts8N#trr)j"rr<#ts8DrrrrrE%rr<#trVllsrr<#t +!rr9!rr36&s8N&urr;urrrE&ss8W)us8W)urrE&trrrE%rr;usq#:d%s8W)tou`8&6U="'rBUNl +C2-NB5mBSkj7N!8oDJ4\oD8(]oCVYGrU^*]r:C*_o^qbCoEOpZoCVYGo`"I^oDnL]o_nC]o`+O\ +oDnLZoE4^WoCMqQ!;$-\"7u0WoBu5ToCVYHoCMVRoDeF_oDS:_oCVYRo`+O^oF(6Nftqi#5tdR? +rr2iqs8E0$rr<#trr3'!s8Mrr!<2rs"9/?#rr2p!rr;usrrW3"rr2p"rr;usrr36&s8W)u@?fa: +iuGYG^q[_-cI(+mg"P-5g"P-5fZLe(db:]pcN!nCrrW3"rr2p"rr;usrr30$s8W)urqucrrqcZp +rqufrrWN9#s8W)trrW3"rqucrrr)j!rr<#trr3'!s8N#t!ri6!rr3*"s8N#srri?$s8N%K~> +"onT$s8N#srrE&trrW3"s8N#ts8W)rrr`9#s8Mfns8N#trVlfrrr2os"TJH$rr2lr!<2lq$3'u( +rr;uts8N#rrtbV6s8N#ts8MAZE.Q@4s8N&ts8N#trr)j"rr<#ts8DrrrrrE%rr<#trVllsrr<#t +!rr9!rr36&s8N&urr;urrrE&ss8W)us8W)urrE&trrrE%rr;usq#:d%s8W)tp!&b<;Gg:frDdo(2JDrpp3^oCDhN!qPsRrU^'[q==UWrpp-\p%&@XoCMPEo)81Zo)J:]o)81Y +o)J:`o(2JDrpp3^oCDhN!qPsRrU^'[q==UWrpp-\p%&@XoCMPEo)81Zo)J:]o)8.[o)/(Zo)8.f +n`\oSJQ>WNT)/Hcr;Zfr"TSK$s8N#t!ri6!r;QcrrVm!!s8W)trrW3"rr2p!rr;usrr`9#rr2os +#QFc'rr6f*jm2(>b0\J\dFR%,hVmJRj5].uisObp_m8(X\QmS_rr2p!rr;usrr`9#rr2os"oeQ% +rr;uqrrE&ps8W)rs8W'$s8N&urr2p!rr;uqrrE&srr`9#s8N#t!ri6!rr3'!s8N#t"9/?"rr2p# +rr<#ts*t~> +"oeQ%rr;ulrrE&rrrE&trsA])s8N#trr2rsrr3*"s8N#srr`9#s8Muss8N&u!<2rs#QFc&s8W)u +rr2p&rr<#ts8N&trVlrus8Mlps8E>nVfdI$pAb-lrqucrrr2p!rr;uss8N#rs8W'!s8Mus#lal' +s8N#ts8N#ts8N&u!<2rs#QFc&s8N&urr)lsrr2otrr2p#rr;utrqudV'+ +s8W)urr2rss8N&ts8Q5Zg?[MuX0]+AajAH7dLagObK%8pNH-lu)CWJNSj1Eos!IaFs8N&trr;ut +rr;uts8N&ts8W)ts8W)urr<#ts8N&ts8W)urql^-rr;uss8N#ts8N&urr;uts8N#t!<2fo%fZM. +rr;uss8N&ts8N&uJ,~> +"oeQ%rr;ulrrE&rrrE&trsA])s8N#trr2rsrr3*"s8N#srr`9#s8Muss8N&u!<2rs#QFc&s8W)u +rr2p&rr<#ts8N&trVlrus8Mlps8E>nVfdI$pAb-lrqucrrr2p!rr;uss8N#rs8W'!s8Mus#lal' +s8N#ts8N#ts8N&u!<2rs#QFc&s8N&urr)lsrr2otrr2p#rr;utrqudV'+ +s8W)urr2rss8N&ts8QMki9TA@\\Ptudb*7+g=k62e'>n9P^,53*%K.bW_C_6s!IaFs8N&trr;ut +rr;uts8N&ts8W)ts8W)urr<#ts8N&ts8W)urql^-rr;uss8N#ts8N&urr;uts8N#t!<2fo%fZM. +rr;uss8N&ts8N&uJ,~> +"oeQ%rr;ulrrE&rrrE&trsA])s8N#trr2rsrr3*"s8N#srr`9#s8Muss8N&u!<2rs#QFc&s8W)u +rr2p&rr<#ts8N&trVlrus8Mlps8E>nVfdI$pAb-lrqucrrr2p!rr;uss8N#rs8W'!s8Mus#lal' +s8N#ts8N#ts8N&u!<2rs#QFc&s8N&urr)lsrr2otrr2p#rr;utrqud?rr;utrr;uofmI.);,US- +NOHaLf&#BEg<[-^?sA!;oCMPKo)S@\o)S@\o)S@\o)S@\o)eLSo)8.[o(hkWo)A4do(2JDoCMPE +o)A4^o(2JPo)&"Yo)/(Zo(hkWo)A4\o)A4\o)A4\o)A4^o(2GNo)S@Wo)S@\o*FpYoCDMEo(2GO +o)eLSoD\=Xo)S@Zo)S@Zo+LTVi7+B&:fjRfrr2rss8W)urql^-rr;uss8N#ts8N&urr;uts8N#t +!<2fo&cVh1rr;uss8N&ts8N&uCn9YQjr2Cgd*ph0io9"YinrPCc+0?p4!Pate`+,EdeWnirr<#t +s8N#trr;utrr<#ts8N&urr2rtrr;uts8N&ts8N&urr;uprt581rr2rsrr<#ts8W)urr<#trr2ut +q>Us(s8W)urr2rss8N&ts8RT~> +s8N?'s8N&ts8N#rrrW3"rr2otrql]qrqcX!rr;utrr;uirrW3"rqQKrrr<#trr)iurr<#trWW?$ +rr<#trr3K-s8W)urr<#l[!?VhlMgb^!<2or!<2ip!<2ip!<2Zk"9/?#rr)lrrW3&upAY3ns8N#t +!<2Wj!<2lq$07FB1G^mrKYlsMoDnL]oEY!OaKb"$o^i"Qs76BcoCMVGrq$3^p[nFUp%8:U"SD[f^%6$X0]4VdF-@]\uU^+>X95* +!!a`%9Z,8L5Kis(rr2iqs8Mcmrr2rt!<2ors8Mrr!<2lqs8Mio!ri6!rVllsp&G$jr;ZfrqYu'~> +s8N?'s8N&ts8N#rrrW3"rr2otrql]qrqcX!rr;utrr;uirrW3"rqQKrrr<#trr)iurr<#trWW?$ +rr<#trr3K-s8W)urr<#l[!?VhlMgb^!<2or!<2ip!<2ip!<2Zk"9/?#rr)lrrW3&upAY3ns8N#t +!<2Wj!<2lq$0@[T5s[kQMo=iVoDnL]oEY!Ob-^F)o^i"Qs76BcoCMVGrq$3^p[nFUp%8:U"SD +s8N?'s8N&ts8N#rrrW3"rr2otrql]qrqcX!rr;utrr;uirrW3"rqQKrrr<#trr)iurr<#trWW?$ +rr<#trr3K-s8W)urr<#l[!?VhlMgb^!<2or!<2ip!<2ip!<2Zk"9/?#rr)lrrW3&upAY3ns8N#t +!<2Wj!<2lq$0J!j;,L87P/ZV`o)nRToCDkO&+\o+\*HIVt +rrE&qs8W)orrW3"rr)isrq6UNqs8Mus!<2Zkrr2iqs8MlpJ,~> +"98B#rqQKnrr)isrr2rsrr2otrr)isrr)isrr2rtrpB^crpp*hrW3&uo)AsopqhQ&R,.c?rrE&t +rr`9#s8Mus!<2Qh"TJH$rr2oss8N&u"TJH$rr2os!<2lq!<2ip!ri6!q#:?nqu7-)qSd,,1,E(- +g[Fe+oDJ4aoCVYHo^i(Ss769`oDS=\o*4jYoCVYGo_nCUoE+XVoDJ4\oD%qZoCVYRoE=dXo^h\P +oEFjYoCV\Hrq-6^!VH!^o`"Fdo^h\HoCMVQoCqkYoCVYPoDnLXoE+XVoD\@boCV\HoDJ4doCVYH +o^h_IoD\@^oD8(bld3quM`rpd`qfW7rr2otrqcWprr2p%rr<#ts8W)rrrE&trrE&trrE&ts8W'" +s8N#rrri?$=bt\qfa=ac]?eH\>Wjee$N:#7%m*m1JZQ?"cI&4JbPqM@!<2ut!<2uts8E*"rr2lr +!<2or$i^2*s8W)us8N&urqZQorr2otrqcWprr2p%rr<#ts8W)rrrE&trrE&trrE&ts8W'"s8N#r +rrN-!J,~> +"98B#rqQKnrr)isrr2rsrr2otrr)isrr)isrr2rtrpB^crpp*hrW3&uo)AsopqhQ&R,.c?rrE&t +rr`9#s8Mus!<2Qh"TJH$rr2oss8N&u"TJH$rr2os!<2lq!<2ip!ri6!q#:?nqu7-)qT!SD5XAnX +h!an,oDJ4aoCVYHo^i(Ss769`oDS=\o*4jYoCVYGo_nCUoE+XVoDJ4\oD%qZoCVYRoE=dXo^h\P +oEFjYoCV\Hrq-6^!VH!^o`"Fdo^h\HoCMVQoCqkYoCVYPoDnLXoE+XVoD\@boCV\HoDJ4doCVYH +o^h_IoD\@^oD8(bmFg+=PtOD@aSGi9rr2otrqcWprr2p%rr<#ts8W)rrrE&trrE&trrE&ts8W'" +s8N#rrsSi+@?]U-i8NVQiSaUls5UHorr2utqYpQprr33%s8W)us8Mrr!<2ut +!<2ut!<2uts8E*"rr2lr!WN+L~> +"98B#rqQKnrr)isrr2rsrr2otrr)isrr)isrr2rtrpB^crpp*hrW3&uo)AsopqhQ&R,.c?rrE&t +rr`9#s8Mus!<2Qh"TJH$rr2oss8N&u"TJH$rr2os!<2lq!<2ip!ri6!q#:?nqu7*(qT4(_:f2,3 +h!Xe)qst!^oCDMEo)8.co(2GDoCDMDo)A4`o(2GCoDS7SoDeCYo)S@Vo*"XUo(2GNo)S@Yo*+^V +o(2JDrUU*!bPD/ +rr2utrVllsqu6`ss8M6^!<2lq!<2fo!<2`ms8Moq!<2cn"TJH$rr2co%fZFcO)oK`p&>!krr<#t +q>UHorr2utp&>O$s8N&urr<#ts8W)us8Mus!<2ut!<2ut!<2fo!<2ut!<2or"9/?#rr2p'op7m! +1e*tpnU^;Vo*P!Gcd'[i1c&:uq>UHolMgk`nG`Uis8W)srrQ>Zf'Cs#WjBLfYq$%r*[X:!P,6+? +d+&$B"OYPe5KiWt"9/?#rq??lrqucrrq??lrp'L`rp]pirr<#trVqB~> +rr2utrVllsqu6`ss8M6^!<2lq!<2fo!<2`ms8Moq!<2cn"TJH$rr2co%fZFcO)oK`p&>!krr<#t +q>UHorr2utp&>O$s8N&urr<#ts8W)us8Mus!<2ut!<2ut!<2fo!<2ut!<2or"9/?#rr2p'opn`A +5uXE9nU^;Vo*P!Kf[nT96:#,Gq>UHolMgk`nG`Uis8W)srrQVlh*g"<;ucLUu;rr<#tpAY-lr;QcrpAY-llMgk`nG`Uis8W)ss*t~> +rr2utrVllsqu6`ss8M6^!<2lq!<2fo!<2`ms8Moq!<2cn"TJH$rr2co%fZFcO)oK`p&>!krr<#t +q>UHorr2utp&>O$s8N&urr<#ts8W)us8Mus!<2ut!<2ut!<2fo!<2ut!<2or"9/?#rr2p'p7keg +;.6<]n:C/Tnd4jMi8<:Z;Gh>sq>UHolMgk`nG`Uis8W)srrR#+iToM:ajA]"`%_Q;,:cHBUq"t1 +i8`hrirnB#\QmSRrr`9#s8M`l!<2or!<2]l!<29`!<2Kf"9/?#rr)kI~> +r;Qlus8W)rrrE&trr`9#s8Mfn"9/?#rqufrrqcZprr;uurr2p)rr<#ts8W)ts8W)hrrE&lrrE&t +s8W)urrqYbH$H1LrVlrus8Mus!<2rss8E'!rql]qrr2otrr2otrql`prr2otrqucurr<#trVlls +rr<#tqYpQpr;R-'s8VSS1G^t-]^c!m!:p-\s763]"7l'To)A4\o)8.^o(2GCrUU$[rpp6_oCDJO +o)S@Qo)eLSo)8.[o)8.[o(hkWo)A7\o)J:`o(2JDrpp-\rUU-^oCDJNo)S@\o)nRTo()eO!:oaQ +!qPsRrUU$[rUU$[q==UWrq$0\s76?`oCMPPo*Y'[o(2JDoCDJDo)8.emFT\1a^-__Recs]rrE&t +rrE&qrrE&nrrW3"s8N#srrE&trrE&trr`9#s8Moq#6+Z%s&k--ldm,VZbb&"Cic;R_p-WZeC)am +dF$+V^:1S@5Kj*+rr2utrr3*"s8W)qrsA])rr;uts8N&tq#:Hqs8W)srrE&trrE&qrrE&nrrW3" +s8N#srrE&trrE&trr`9#s8Moq"9/?"s*t~> +r;Qlus8W)rrrE&trr`9#s8Mfn"9/?#rqufrrqcZprr;uurr2p)rr<#ts8W)ts8W)hrrE&lrrE&t +s8W)urrqYbH$H1LrVlrus8Mus!<2rss8E'!rql]qrr2otrr2otrql`prr2otrqucurr<#trVlls +rr<#tqYpQpr;R-'s8VSY5X@h`_"%Eq!:p-\s763]"7l'To)A4\o)8.^o(2GCrUU$[rpp6_oCDJO +o)S@Qo)eLSo)8.[o)8.[o(hkWo)A7\o)J:`o(2JDrpp-\rUU-^oCDJNo)S@\o)nRTo()eO!:oaQ +!qPsRrUU$[rUU$[q==UWrq$0\s76?`oCMPPo*Y'[o(2JDoCDJDo)8.en(u^Ld:ts:TDAKbrrE&t +rrE&qrrE&nrrW3"s8N#srrE&trrE&trr`9#s8Moq$3'u(s'_&GhV[2ghZDZlhYl=6hV[5IrSJU* +^rtEJF*OXmb1>8#gY1?7g=as$ahu#p9[<\;rr2utrr3*"s8W)qrsA])rr;uts8N&tq#:Hqs8W)s +rrE&trrE&qrrE&nrrW3"s8N#srrE&trrE&trr`9#s8Moq"9/?"s*t~> +r;Qlus8W)rrrE&trr`9#s8Mfn"9/?#rqufrrqcZprr;uurr2p)rr<#ts8W)ts8W)hrrE&lrrE&t +s8W)urrqYbH$H1LrVlrus8Mus!<2rss8E'!rql]qrr2otrr2otrql`prr2otrqucurr<#trVlls +rr<#tqYpQpr;R0(s8VVa:f12D`:3?rnc&(dnac5?o()>Ao'u8Ko)8+Wo)J7Xo)A1ZnceRSnac8@ +rUL6ao()>Ao'u;ArUKmX!:fsWrUKmX$M!]Wnac8@o()>@rUTpWrUU!Yr:9jWs7-?`o'u;Anbr"a +nac8@o()>Ao)8+Xnc84Wo)8+Xnd+dVnaZ2@nac8Lnc/1Ync/.[nc&(dn)WEbflg4mVYU5irrE&t +rrE&qrrE&nrrW3"s8N#srrE&trrE&trr`9#s8Moq#QFc&s(n1`iqqa9ir.maioB(Yj5T+ZioA/- +f](/%J$Hi?hr<_Xj5T+YiniG@daGU0df9=GrrE&trr`9#s8Moq$3'u(s8N&urr;umrr`9#s8Mus +!<2ut!<2lq!<2cn!ri6"rr2os!<2ut!<2ut"9/?#rql]trr;utJ,~> +$i^2+rr;uts8N&urr)lsrY#81s8W)us8N#ts8N&trr<#trr)isrr2ourr;oqs8W,urVuiqrVlls +rr<#t"TSK$rr;usr;Zfr"TSK$s8N#t!<2or#laM9GB8\fpAXpg"oeQ$s8W)qrrE&srrE&trr`9# +rr2iq#6+Z&rr<#tqu?]qrVllsrr2utp\t +$i^2+rr;uts8N&urr)lsrY#81s8W)us8N#ts8N&trr<#trr)isrr2ourr;oqs8W,urVuiqrVlls +rr<#t"TSK$rr;usr;Zfr"TSK$s8N#t!<2or#laM9GB8\fpAXpg"oeQ$s8W)qrrE&srrE&trr`9# +rr2iq#6+Z&rr<#tqu?]qrVllsrr2utp\tC&`QHNTWD(V9s8W)trrE&rrrW3"rr)j!rr<#tq#CBnr;Qcrr;Qcr +q#:?nr;Qlus8W)trrE&ps8W)trrE&rrrW3"rr)isrdX~> +$i^2+rr;uts8N&urr)lsrY#81s8W)us8N#ts8N&trr<#trr)isrr2ourr;oqs8W,urVuiqrVlls +rr<#t"TSK$rr;usr;Zfr"TSK$s8N#t!<2or#laM9GB8\fpAXpg"oeQ$s8W)qrrE&srrE&trr`9# +rr2iq#6+Z&rr<#tqu?]qrVllsrr2utp\tn:fNe>nac8@o()>AnbVeYnac8@rUL-^ +o'u8@nb_kZnac8@r:0jXrpgNgo()>An`oH0na>Z.n,)>LlhfoInE^)LnceRS +naZ2?qsjjZo()>Knc84Zndb3\n*BE4nac8@nac8@nbr"^nac8@o'u\L"nD0Snac5HncSFQo'u_M +s7$6_naZ2?rpp'Y$L6R-hn!5nC"WFar;Qcrq#:?nr;Qlus8W)trrE&ps8W)trrE&rrrW3"rr)j! +rbS%]lf&,jd+I@:hW"Lo&)uR,hqZf0bKnVggYKAEdf'4Grr2otrquctrr;urrr`9#s8Mfns8Mrr +!<2or!<2cn!<2or"9/?#rr2otrqcZprr2otrquctrr;urrrE%K~> +rr2utq#:?nqu?]qrr2utr;Qcrrr2utrr3'!s8N#t!<2ut!<2or#lal's8N&ts8Mrr#6+Z%s8N#t +rr2os!<2cn!ri6!pAYZ[QZR8:iV``Ts8N&ts8W)orsSi+s8N&urr;utrr;rrs8W)t!WW/trrE&q +rrrE%s8N&tpAY-lq>UZrP;>!YOP\.N*TU4BiUXNWS'#GU8PN`9O^qW^7V$&dGsu7=>-IAGncHd@ +Z,lJGnC5e1b'c0(Jc#HHs8N#qrri?$rr;uqrs8W(rr;utrr;usrrE&trtbV6rr<#ts8W)urr;ut +s8N&urr-&Te*GNsWjBOhdF-Cdahkg)\?rKL_9(('dKItGSj1Etrt581rr<#ts8W)urr;uts8N&u +rr2os!<2Zk#6+Z%s8W)tr;Qp!s8N&tr;R'%s8N&ts8N&trr2utrr3Z2s8N&urr<#ts8N&ts8W)u +s8N"J~> +rr2utq#:?nqu?]qrr2utr;Qcrrr2utrr3'!s8N#t!<2ut!<2or#lal's8N&ts8Mrr#6+Z%s8N#t +rr2os!<2cn!ri6!pAYZ[QZR8:iV``Ts8N&ts8W)orsSi+s8N&urr;utrr;rrs8W)t!WW/trrE&q +rrrE%s8N&tpAY-lq>UZrQpEu2RGuB[*TU4BiUXNWS'#GU8PN`9O^qW^7V$&dGsu7=>-IAGncHd@ +Z,lJGn_DdLdtgCXM#72Os8N#qrri?$rr;uqrs8W(rr;utrr;usrrE&trttb8rr<#ts8W)urr;ut +s8N&urr->fgYLZ[h#Q7.h&+r'gt^_q^rtEag=b$)c-")F^qIY/e(ECRf`Ts.9[ +rr2utq#:?nqu?]qrr2utr;Qcrrr2utrr3'!s8N#t!<2ut!<2or#lal's8N&ts8Mrr#6+Z%s8N#t +rr2os!<2cn!ri6!pAYZ[QZR8:iV``Ts8N&ts8W)orsSi+s8N&urr;utrr;rrs8W)t!WW/trrE&q +rrrE%s8N&tpAY-lq>UZrT2AEhUufbh*TL+?i:4-@8EnH-X> +Z,lGFnD`BagQPT5OSf%Ws8N#qrri?$rr;uqrs8W(rr;utrr;usrrE&tru:t;rr<#ts8W)urr;ut +s8N&urr-`&hr3PPiSaCf+5l,9iS_i)f](rOinrSFf@86qc-k8#ioB(Yj5[[Tdf07Yrr;uts8N&u +rr;utrr<#ts8W)trr2utp&>6qs8N&urr2iq"TJH#s8Mrr#lal's8N&ts8N#t!<2ut'E8%2s8W)u +s8N&ts8N&urr<#trdX~> +r;Qcro`"pjrVuosqYq!'s8W)us8N#trr<#tp\t6mrVllsq>^Korr2utrr<#tq>UHoq#:p)s8W)t +s8N#a]RFgU^%MC)rr2fps8N&u!<2lq!<2lq$3'u)rr;uts8N&trpTjkrr<#trr;unrs\nK6o-W] +eF)nunac5Lnc\LRnac8Lnbr"Ync&(\nac5Gnc84UncJ@Pnc&)Unac5@j;UkPo!0C,ikDfI3julL +]UU-A]Y*3)%C;E]5M,Gro'4WQkgT+nca:[Yo'tbRdale7gs+jJg!&mTn]S5]mIBc-a1]pcTcT-9 +mJ6;QnbhqXnbhqZnac5Lnc\LRnac8Lnbr"_nac5?o()>Mnc84Zo)J4\o%sAl$+E8X5N2V@s8W)m +rrE&srs/Q's8N#ts8MHd!<2uts8N#t!a16*ldQBCZbOSs\ZrQP]=l,'c2H)jd0@k2c-i1JbOb`6 +rr2rtrql]qrr2rtrqucrrr)lsrr;uurqHEmrr)j%rr<#trr<#tmf*:drr<#trr7K~> +r;Qcro`"pjrVuosqYq!'s8W)us8N#trr<#tp\t6mrVllsq>^Korr2utrr<#tq>UHoq#:p)s8W)t +s8N#a]RFgU^%MC)rr2fps8N&u!<2lq!<2lq$3'u)rr;uts8N&trpTjkrr<#trr;unrs\nM:dIC9 +g@+V'nac5Lnc\LRnac8Lnbr"Ync&(\nac5Gnc84UncJ@Pnc&)Unac5@j;UkPo!0C,ikDfI3julL +]UU-A]Y*3)%C;E]5M,Gro'4WQkgT+nca:[Yo'tbRdale7gs+jJg!&mTn]S5]mIBc-a1]pcTcT-9 +mJ6;QnbhqXnbhqZnac5Lnc\LRnac8Lnbr"_nac5?o()>Mnc84Zo)J4io&J?SfYC +r;Qcro`"pjrVuosqYq!'s8W)us8N#trr<#tp\t6mrVllsq>^Korr2utrr<#tq>UHoq#:p)s8W)t +s8N#a]RFgU^%MC)rr2fps8N&u!<2lq!<2lq$3'u)rr;uts8N&trpTjkrr<#trr;unrs\nO?;XRr +hs^+*nF?#Bnc/+WnGr(XnH8:NnF6DH#4V0QnF?& +s8W)t"TSK$s8Moq%fZM-s8W)us8N&urr<#tr;Zcq*WQ-=rr2rtrr<#ts8W)ts8N#trr<#ts8N&t +s8W)ts8W'*s8N&trr;uss8W)srrW3"rr)jMrr<#ts8W)us8N&ur8F/kFc=Z9rr2rss8N#trr2rt +rr<#ts8W)urr;utrr<#tqu7!%s8N#trr2rtrql]qrr)j'rr<#ts8W)us8N#ts8E]3rr1kh1H9s7 +lgaQ9nac5@o'u8KncSFQnaZVLs7-!W#P%BUnac8@nc&(\nac8MnH&4NrUM-%o'u;3)a(+-MB&)U +o&_Vtl1+<7co-1?n`*[^j6UJ8d/NSifgBCVE9NQUJO,"PeOV)_6Rh,q0tcq'9',2n8:a!dkfQJ9 +Jl' +s8W)t"TSK$s8Moq%fZM-s8W)us8N&urr<#tr;Zcq*WQ-=rr2rtrr<#ts8W)ts8N#trr<#ts8N&t +s8W)ts8W'*s8N&trr;uss8W)srrW3"rr)jMrr<#ts8W)us8N&ur8F/kFc=Z9rr2rss8N#trr2rt +rr<#ts8W)urr;utrr<#tqu7!%s8N#trr2rtrql]qrr)j'rr<#ts8W)us8N#ts8E]3rr1nr5t-^c +mIBc;nac5@o'u8KncSFQnaZVLs7-!W#P%BUnac8@nc&(\nac8MnH&4NrUM-%o'u;3)a(+-MB&)U +o&_Vtl1+<7co-1?n`*[^j6UJ8d/NSifgBCVE9NQUJO,"PeOV)_6Rh,q0tcq'9',2n8:a!dkfQJ9 +Jl'E9[<\;s8N#srsA])rr2rsrr;usr;R6*s8W)urr2rt +rr<#ts8N!,s8N&urr<#ts8W)ts8Mrr!ri6"rVlZns8E0$rr;usrr3<(s8N#trr2rsrqueH~> +s8W)t"TSK$s8Moq%fZM-s8W)us8N&urr<#tr;Zcq*WQ-=rr2rtrr<#ts8W)ts8N#trr<#ts8N&t +s8W)ts8W'*s8N&trr;uss8W)srrW3"rr)jMrr<#ts8W)us8N&ur8F/kFc=Z9rr2rss8N#trr2rt +rr<#ts8W)urr;utrr<#tqu7!%s8N#trr2rtrql]qrr)j'rr<#ts8W)us8N#ts8EZ2rr1u*;,rq? +mI9Z8nF?# +U&=ris8W)us8N#trquctrr<#srqcZprWN9#s8N#srsA])rr2rsrr;usr;Qh7RGI2d+3;gUdFR%/ +i8N\Tj5JhEc*j:(?RmVWj1/FCs8N&trr2p(rr;uss8N#trr2iq%K?D-rr;uss8W)us8N&trXJo, +s8W)us8N&urr2rsr;Qits8W&sqZ$Tp"TSK$rr2os$3'u(rr;uss8N#qs*t~> +s8N)uq#C6jr;Zfrrr3W1s8W)us8N&urr;uts8N#ts8N#t!<2ut!<2ut$NC))s8N&ts8W)trr2ut +qu6ZqqYp]ts8W)trr39's8W)ts8N&tqu7#u`fG1_Q-K%&rr;usrr3'!s8Mlprr2rt!<2ut!<2rs +!ri6!rVulrrVulrs8NB(s8W)ts8N&tqYpm$s8/'?1Ln2ZnbhtXnauDPnc/.[nb)GXnac5?o()>@ +q=5*eo((i\'/hm-&t8C]jtKBkrpgKE2L4laj&ZYfM)fJ5rph\o2,(-_`@IS2R4,t3)62Ru)<@P; +\a=Q(jLZY?eV>s*M&`2;e*"+`T&oJ4naZSK!:f[Os7,aPs7-*Z!:fjTrp^Nimaf_1cF68!>O)4f +s8N#srrE&prrW3"rqcWprr)isrr2rtrql`qrr;uurqcWr=bP0#df7\uda?IjdaA$As3^kp'%,., +ZGFr:da?Ig^pBJS?V!!VrW!-23l9=:5Kj'+s8Moqs8N&u!<2Tis8E6&rr;uts8Mus"TJH$rr2os +!<2ip!ri6!qYpQprVllsrr<#tqu?]qs8N)uqYu'~> +s8N)uq#C6jr;Zfrrr3W1s8W)us8N&urr;uts8N#ts8N#t!<2ut!<2ut$NC))s8N&ts8W)trr2ut +qu6ZqqYp]ts8W)trr39's8W)ts8N&tqu7#u`fG1_Q-K%&rr;usrr3'!s8Mlprr2rt!<2ut!<2rs +!ri6!rVulrrVulrs8NB(s8W)ts8N&tqYpm$s8/6Q6#Od,nbhtXnauDPnc/.[nb)GXnac5?o()>@ +q=5*eo((i\'/hm-&t8C]jtKBkrpgKE2L4laj&ZYfM)fJ5rph\o2,(-_`@IS2R4,t3)62Ru)<@P; +\a=Q(jLZY?eV>s*M&`2;e*"+`T&oJ4naZSK!:f[Os7,aPs7-*Z!:fjTrp^Nin(lUJfYCEOAa99p +s8N#srrE&prrW3"rqcWprr)isrr2rtrql`qrr;uurqcWr@?9(,g&nh"bLujJ#hR/0Tm^HF3!K9] +"qg8[ilrr<#tqu?]qs8N)uoDeji#64]&rr<#trVm$"s8W)trr2utqYpWrs8Mlp!<2rs!<2ut +s8Moqs8N&u!<2ipJ,~> +s8N)uq#C6jr;Zfrrr3W1s8W)us8N&urr;uts8N#ts8N#t!<2ut!<2ut$NC))s8N&ts8W)trr2ut +qu6ZqqYp]ts8W)trr39's8W)ts8N&tqu7#u`fG1_Q-K%&rr;usrr3'!s8Mlprr2rt!<2ut!<2rs +!ri6!rVulrrVulrs8NB(s8W)ts8N&tqYps&s8/Kg;0pXSnF?#InGr(XnGr(XnGr(XnGr(XnGr(W +nGr(MnGr(XnGr(XnH8:NnaQPJ%HAB@2EXGjt7_.W.)Ll[WSUhsj.[a-lubMP\g+B-L,7&0*1t[-k-Q>'jR;X/nF6GI"RtsOnF6>F!:^!X!:^!X +!:^!X!:^!X!:^!X!:]RL"7YjLj8RsCa^J%eli-qarr2os!<2ip!ri6!qYpQprVllsrr<#tqu?]q +s8N)uqYpV5RG@,b&BN5Nio9"Xio&8'WInn^3sGT`"qF#Oj1/FCrr<#tqu?]qs8N)uoDeji#64]& +rr<#trVm$"s8W)trr2utqYpWrs8Mlp!<2rs!<2uts8Moqs8N&u!<2ipJ,~> +rr;usp](9m!WW/trrE&srr`9#s8Moq#QFc'rr<#trr2p$rr;uts8Mus!<2Ng!<2cn!<2Kf*<-!< +rr<#rlb7[bH^`4Trr2rss8N&ts8W)us8N#t!<2rss8Mrr!<2ut!<2fo"9/?"rq$."rr<#ts8W)t +g-RP]VU=kRnI=Lt7)[QI+.D`ijY09irp^EC2L+c^i`6:r +rr;usp](9m!WW/trrE&srr`9#s8Moq#QFc'rr<#trr2p$rr;uts8Mus!<2Ng!<2cn!<2Kf*<-!< +rr<#rlb7[bH^`4Trr2rss8N&ts8W)us8N#t!<2rss8Mrr!<2ut!<2fo"9/?"rq$."rr<#ts8W)t +gJ:(1YM&BcnI=Lt7)[QI+.D`ijY09irp^EC2L+c^i`6:r1WWO!<2ut!<2He!<2lq!WN,urW3&u +qu6`ss8N#t"9)_if^%3/\%p2?eA.]067sW=l.%o6hoUq>11W_C_;rrN-!rr)rurql]srr;us +rrW3"rq??lrqucrrqucrrr2otrpTjerql]rrr;us!WW/rrrW3"rr2otrdX~> +rr;usp](9m!WW/trrE&srr`9#s8Moq#QFc'rr<#trr2p$rr;uts8Mus!<2Ng!<2cn!<2Kf*<-!< +rr<#rlb7[bH^`4Trr2rss8N&ts8W)us8N#t!<2rss8Mrr!<2ut!<2fo"9/?"rq$."rr<#ts8W)t +gg*`_\DcrNnHJFPnF?&hrD7Pdf07Irr;us!WW/rrrW3"rr2p! +rr;ukrrE&rrrE&rrrE&trrE&errE&qrrN-!rr)rurql]srr;usrrE%K~> +rr2rtrr2rt!<2utrr2iqs8N&u!<2fo!<2ut!<2fo$i^2*rr<#trr<#ts8N#rs8W'"s8N#ors8W( +rr2rtrr<#trr2rtrW`E%rr<#trr2p"rr;usrr3<(n@49pEJhQpr;HWsrr;uqs8N!#s8N#trr2rt +rqZTorWE3"rr;oqs8W,u#64]%s8W)trr3E+s8N&urpOe]15='1p[J7Qdd\::)bo5[YooM*n`;Gr +kj\-4cSg%d'[b"Otj/a#Xen%&*[ih+!k0iAGg;eFF[([fR +jR<';!:]jT!:][O!:]%=!UnkDcNVOG1HV];rVu`nqZ$Nnr;Qcrr;Qcrq#C6jr;Qh$K?``.&?)qO +dBP"u!!4&b2+`1e\'P'($.@5Kc^mAEs8W)ns82flrrE&srsSi+s8N&ts8W)us8MoqqYp?krVl`p +!<2or!<2cnqu6NnJ,~> +rr2rtrr2rt!<2utrr2iqs8N&u!<2fo!<2ut!<2fo$i^2*rr<#trr<#ts8N#rs8W'"s8N#ors8W( +rr2rtrr<#trr2rtrW`E%rr<#trr2p"rr;usrr3<(n@49pEJhQpr;HWsrr;uqs8N!#s8N#trr2rt +rqZTorWE3"rr;oqs8W,u#64]%s8W)trr3E+s8N&urpP(s6'0[Xp[J7Qdd\::)bo5[YooM*n`;Gr +kj\-4cSg%d'[b"Otj/a#Xen%&*[ih+!k0iAGg;eFF[([fR +jR<';!:]jT!:][O!:]%=!Uo%IfEKfd5tA3ZrVu`nqZ$Nnr;Qcrr;Qcrq#C6jr;Qh,Nn3OK'=Yd# +fsrO3!!4,g3)"q$^=M&oh#>t2f;_Nis8W)ns82flrrE&srsSi+s8N&ts8W)us8MoqqYp?krVl`p +!<2or!<2cnqu6NnJ,~> +rr2rtrr2rt!<2utrr2iqs8N&u!<2fo!<2ut!<2fo$i^2*rr<#trr<#ts8N#rs8W'"s8N#ors8W( +rr2rtrr<#trr2rtrW`E%rr<#trr2p"rr;usrr3<(n@49pEJhQpr;HWsrr;uqs8N!#s8N#trr2rt +rqZTorWE3"rr;oqs8W,u#64]%s8W)trr3E+s8N&urpYJ8;4?A)p[J7Qdd\::)bo5[YooM*n`;Gr +kj\-4cSg%d'[b"Otj/a#Xen%&*[ih+!k0iAGg;eFF[([fR +jR<';!:]jT!:][O!:]%=$Lm69i8EF[;-(.)rVu`nqZ$Nnr;Qcrr;Qcrq#C6jr;Qt;R+pHPgthtb +s5!_1rn[V0qqVh)ce.6p/-#YO+"KELMQk4\roF(<#3!*tdf9@Hq#C6jqYpQprVm9)s8W)urr<#t +s8W)qs8)`ks8DrprrE&rrrE&ns82fns*t~> +qu6cts8W)ss8Dots8N#t!<2or%K?D-rr2rtrr<#ts8N#rrrE&rrrE&srrE&os8W)us8W)urrE&o +rt,20rr;utrr<#ts8N&trr;uorrW3"rr2p)rqt`cNGrls[G_&`s8W'#s8N&trr;us!WW/trrE&q +s8W)trt581rr<#ts8N&urr;utrr2rsqYps&s8W)-5r2NTd,sinnc/+Tnc&%VnGr(WnGr(XnGr(U +nH\RRnF5u;naZVJs7$*Yrp^HX)bo5[YooM*n`;Grkl1)ZcSg%X] +=i\9*1KumXj4H.2F%SXVi,KK0 +qu6cts8W)ss8Dots8N#t!<2or%K?D-rr2rtrr<#ts8N#rrrE&rrrE&srrE&os8W)us8W)urrE&o +rt,20rr;utrr<#ts8N&trr;uorrW3"rr2p)rqt`cNGrls[G_&`s8W'#s8N&trr;us!WW/trrE&q +s8W)trt581rr<#ts8N&urr;utrr2rsqYps&s8W)19gN4.g$/#%nc/+Tnc&%VnGr(WnGr(XnGr(U +nH\RRnF5u;naZVJs7$*Yrp^HX)bo5[YooM*n`;Grkl1)ZcSg%X] +=i\9*1KumXj4H.2F%SXVi,KK0 +qu6cts8W)ss8Dots8N#t!<2or%K?D-rr2rtrr<#ts8N#rrrE&rrrE&srrE&os8W)us8W)urrE&o +rt,20rr;utrr<#ts8N&trr;uorrW3"rr2p)rqt`cNGrls[G_&`s8W'#s8N&trr;us!WW/trrE&q +s8W)trt581rr<#ts8N&urr;utrr2rsqYpp%s8W)5>>]=bi9SGQ%H8=$hXIcmRdfh-0M1I,n-I>u +Gjt4] +s8W,urVm$"s8W)tq>UQrs8W)prrE&nrrE&prrE&srrW3"s8N#arr`9#s8Mio!<2rs"oeQ%rr;us +rtbV6s8N&ts8W)rn]$]:FFB@hk4eiSrr2rtrr)j*rr;uts8N&ts8W)urr)isrr)isrql]qrr)j# +rr<#ts8N#t$NC)*on5+]Pg.hIrUBmWqsa[Ur:'dVrUBmWp@/IYnaZ,=nF5uAnaQMI!pe"Zrp_;u_5XEVlgDrn`EF/>n'%cTd`:bFk.R^o +c0X>qV6eeBn(FeTm/?GSnGVkWnGVkWnGVkWnGD_UnGMeVnGVkWnFc>OnGi%Xn-S+#cd'k>8ht\^ +rVuoss8N)uqYq')s7`nBn,*.arr;uts8Mrrs8Moq%0$;,rr2rsrr<"$K$ +s8W,urVm$"s8W)tq>UQrs8W)prrE&nrrE&prrE&srrW3"s8N#arr`9#s8Mio!<2rs"oeQ%rr;us +rtbV6s8N&ts8W)rn]$]:FFB@hk4eiSrr2rtrr)j*rr;uts8N&ts8W)urr)isrr)isrql]qrr)j# +rr<#ts8N#t$NC)*onu++T%;cdrUBmWqsa[Ur:'dVrUBmWp@/IYnaZ,=nF5uAnaQMI!pe"Zrp_;u_5XEVlgDrn`EF/>n'%cTd`:bFk.R^o +c0X>qV6eeBn(FeTm/?GSnGVkWnGVkWnGVkWnGD_UnGMeVnGVkWnFc>OnGi%Xn,VVLfEAZa6%SS) +s8W)urrE&prso&.pU&'2qu?Zps8N&urqufrrql^(rr<#trr;uss8QMeea(g*\%p2?f?r7'g=tB7 +f@A?qa2,@'`m)u_W_C_9s8W)qrsJc*s8N#trr2rtrr2rtrW3&urVulr"TSK$s8Mrrs8N&u!<2ip% +fZM.rr;uts8N#trr<#tr;Zfrqu7!%s8W)ts8N#ts*t~> +s8W,urVm$"s8W)tq>UQrs8W)prrE&nrrE&prrE&srrW3"s8N#arr`9#s8Mio!<2rs"oeQ%rr;us +rtbV6s8N&ts8W)rn]$]:FFB@hk4eiSrr2rtrr)j*rr;uts8N&ts8W)urr)isrr)isrql]qrr)j# +rr<#ts8N#t%K?D-p68ETW8?V'nF5oFn,i(Jn,;_Xn*oi8rp]sVrpTpVp[A1Or9s^Tp@&X^nF5k` +cKt&Y_qFPKm`rnE%<] +Wm0kd[%t"ZmdA`.]BetU!:TmU!q5XIrU9pXnF5oGnGhtMnGhtWn-ndTnEJlgi8;:\;2XrCs8W)u +rrE&prso&.pU&'2qu?Zps8N&urqufrrql^(rr<#trr;uss8Qo%g?[K3aO&T!i7QrGioB(Yi8 +qu6ZqrVllsqu?]qs8N)up&>0os8N&tqYp]ts8N&tr;Zfr!WW/rrs8W(rr<#ts8W)mrrW3"rql]s +rr;uorr`9#s8Muss8Mrr%JJ/@KQ2!XU;5a]rr;urrrE&ss8W)prrE&prr`9#s8Moq!ri6!qYq$( +s8W)uro70;<4L92n!EMGl?>GOYODPOrQbV\<\n:Nn,EXdST9XskPY>WrsSi+rr<#ts8W)us8Mus +"9/?#rr2p!=b=i_bnI%^_9p]ZdET_J]XkY^Zadoqd*_g?%\>o.rr;uts8N&urr<#trVm!!s8W)r +rrE&ss8W'!s8Mrr"TJH$rr2-]!<2or$i^2*s8W)us8N&urr)j!rr<#trr7K~> +qu6ZqrVllsqu?]qs8N)up&>0os8N&tqYp]ts8N&tr;Zfr!WW/rrs8W(rr<#ts8W)mrrW3"rql]s +rr;uorr`9#s8Muss8Mrr%JJ/@KQ2!XU;5a]rr;urrrE&ss8W)prrE&prr`9#s8Moq!ri6!qYq!' +s8W)uro@TU@):LUQLG"AGiTrs/7gEf7Bhr;QWo$i^2*s8W)us8N&urr)j! +rr<#trr3%.NR[:F'">["g"P05f$V[]`PfX/`Qclar7VX\9[ +qu6ZqrVllsqu?]qs8N)up&>0os8N&tqYp]ts8N&tr;Zfr!WW/rrs8W(rr<#ts8W)mrrW3"rql]s +rr;uorr`9#s8Muss8Mrr%JJ/@KQ2!XU;5a]rr;urrrE&ss8W)prrE&prr`9#s8Moq!ri6!qYq3- +s8W)uroS,rDT^o#n*of7nF-;E"RkjLn*p>Fq=+FQqsXUSrp]sVq!\:Pr9smYnF,l9n+uPRmfDqH +rUBjU!V#RUn-&4LnF,lGn+lJQn,DeYl$#>Nrp]sVq!\:Pr9smYnF,l9n+uPRmfDqHrUBjU!V#RU +n-&4LnF,lGn+lGQn+Q5Nn,De_l/:IWi6Q@>G3eVs#PO^/MmhgHrqud(rr;uts8N&urr<#trVm!! +s8W)trrR#'g&9\*gA9P-g=tB9gY2Y]'$&>NioB(Yi7uu8e'cXje(NR:r8S9t>giWOrr<#ts8W)u +s8Mus"9/?#rqucrrr)lsrW3&ur;Qp!s8W)tkl1Y^r;R0(s8N&urr<#ts8W)srr`9#s8N#tJ,~> +rr2utqYpj#s8N#ts8N&trVllsr;Qcrrr2utr;Zfrrr<#tqYpWrs8Mus!<2or#6+Z&rr<#trr2ut +nc&Ugrr2utr;Zfrr;Qcrrr3'!s8N#t&cVI_`0tgfF,#sef'`M:rr;umrrrE%rr;usr;QcrrVlls +rVllsrr2utr;ZfrrVm6(br@Lmb0]/;n*p;ErU9gUrpU*[nF,l9n,DeVn,DeZn*oi8n,2\Tn,De[ +n*oi8nF-8D#4M'Mn*of8rpTmV!:TpV!:TmU!UoOVn,;_Un,De[n*of8nF-AG!:TpV$h*TSn*\`J +lgXE4n,De[n*oi8nF-8D#4M'Mn*of8rpTmV!:TpV!:TmU!UoOVn,;_Un,De[n*of8nF-AG%.E]T +n*of8n*fc8n*g8F"7PaJhu:q*cGa!Dl2(G[rW)utrr2p- +rr<#ts8W)us8N&u=b4`]bS6t]^rX=$Xg,CL^rFOAdF#qBV3\ssdKc@.bQ%VArr;usrr3K-s8W)u +s8N&urr<#trr;rrq>^Kos8N)uqYpZss8N#srsSi+rr2rsrr;uts8Mios8E#urr2os$i^2+rr<#t +s8W)us*t~> +rr2utqYpj#s8N#ts8N&trVllsr;Qcrrr2utr;Zfrrr<#tqYpWrs8Mus!<2or#6+Z&rr<#trr2ut +nc&Ugrr2utr;Zfrr;Qcrrr3'!s8N#t&cVI_`0tgfF,#sef'`M:rr;umrrrE%rr;usr;QcrrVlls +rVllsrr2utr;ZfrrVm6(cUC-Ae(EdOn*p;ErU9gUrpU*[nF,l9n,DeVn,DeZn*oi8n,2\Tn,De[ +n*oi8nF-8D#4M'Mn*of8rpTmV!:TpV!:TmU!UoOVn,;_Un,De[n*of8nF-AG!:TpV$h*TSn*\`J +lgXE4n,De[n*oi8nF-8D#4M'Mn*of8rpTmV!:TpV!:TmU!UoOVn,;_Un,De[n*of8nF-AG%.E]T +n*of8n*fc8n*g8F"7PaJjSmd8f?S%q?fh1b"9/?"rr2p+rr;uss7W"&E,gf>l2(G[rW)utrr2p- +rr<#ts8W)us8N&u@?&b%eJ,I-bL+JN]>)8)bL"_hg"OZ`Wg_$.g'=WOcN!qDrr;usrr3K-s8W)u +s8N&urr<#trr;rrq>^Kos8N)uqYpZss8N#srsSi+rr2rsrr;uts8Mios8E#urr2os$i^2+rr<#t +s8W)us*t~> +rr2utqYpj#s8N#ts8N&trVllsr;Qcrrr2utr;Zfrrr<#tqYpWrs8Mus!<2or#6+Z&rr<#trr2ut +nc&Ugrr2utr;Zfrr;Qcrrr3'!s8N#t&cVI_`0tgfF,#sef'`M:rr;umrrrE%rr;usr;QcrrVlls +rVllsrr2utr;ZfrrVm6(do91qgYh>cn*p;ErU9gUrpU*[nF,l9n,DeVn,DeZn*oi8n,2\Tn,De[ +n*oi8nF-8D#4M'Mn*of8rpTmV!:TpV!:TmU!UoOVn,;_Un,De[n*of8nF-AG!:TpV$h*TSn*\`J +lgXE4n,De[n*oi8nF-8D#4M'Mn*of8rpTmV!:TpV!:TmU!UoOVn,;_Un,De[n*of8nF-AG%.E]T +n*of8n*fc8n*g8F"7PaJkl'EBeoai)k55/\rr;usrr3E+s8N#tp76/AEJq$bqZ$Tp!<<&trr3K- +s8W)us8N&urr<"7QItNW'Z\SPgt0uucI17qgYLfIiml#PT$RDr#J"*fs8W)ts8N#srso&.s8N&u +rr<#ts8W)ts8Drms8W)urrE&prr`9#rr2os$i^2*rr;uss8N&urqZTorW)utrr2p*rr<#ts8W)u +s8N&uJ,~> +&c_k1s8N&ts8W)us8N&ts8W)trrE&srrE&prrE&rrrE&nrr`9#s8N#t!<2ut!<2ut"TJH$rr2os +$NC)*rr;utrr2rtrr*!!rr2oss8E*"rr2os#6+Z&rr<#tqYqZ:s8N&urr<#trr)B*RY>m(Ec[)= +`SBVFpAFsirr;urrri?$rr;urrr`9#s8Muss8E*"rr2os*<-!F!:]sUrpTsWnG_nVn-AFOn*fc8n*p;E#Oq3OnF,i8n,DeYn*oi8rUBgTrpTsWnG_nV +n-ndTn*of8n*oi8nF,lGmf;kUn,DeWn*p>Fs6p9^nF,i8nF,lFmg&@NnF5o8nF-AG"7PaKn,;bT +n,DeWn*p>Fs6pHcnF,l8nF,l9n*of8rpKjVrU9aT!UoOVmfN"InG_k^nF,l9n*of6h>Y\'ccTTM +4koo6rr<#t0)tqMs8N#trq;n%E,fi:GGNj_rr<#ts8N&ts8W)ts8W)ts8W)urr<#ts&joplcVVm +ZF%'T`mE,WaMG?eS;_`7H%_L"daHO75Kj*+s8N&ts8W)ts8W)ts8W)urr<#ts8W)us8N&trr;us +s8W)ts8W)t!<;urrr<#t/-#VJs8N#trr2rsrr<#trr;utrr<#ts8N&ts8W)ts8W)ts8W)urr<#t +s*t~> +&c_k1s8N&ts8W)us8N&ts8W)trrE&srrE&prrE&rrrE&nrr`9#s8N#t!<2ut!<2ut"TJH$rr2os +$NC)*rr;utrr2rtrr*!!rr2oss8E*"rr2os#6+Z&rr<#tqYqZ:s8N&urr<#trr)B*RY>m(Ec[)= +`SBVFpAFsirr;urrri?$rr;urrr`9#s8Muss8E*"rr2os*<-!F!:]sUrpTsWnG_nVn-AFOn*fc8n*p;E#Oq3OnF,i8n,DeYn*oi8rUBgTrpTsWnG_nV +n-ndTn*of8n*oi8nF,lGmf;kUn,DeWn*p>Fs6p9^nF,i8nF,lFmg&@NnF5o8nF-AG"7PaKn,;bT +n,DeWn*p>Fs6pHcnF,l8nF,l9n*of8rpKjVrU9aT!UoOVmfN"InG_kgnF,l9n*of7in)f7f[=P# +8_s=Drr<#t0)tqMs8N#trq;n%E,fi:GGNj_rr<#ts8N&ts8W)ts8W)ts8W)urr<#ts'^l7ldS80 +^qmn1d+?t#ccEf)TojbIJ<$;Eg"P,Z9[<\;s8N&ts8W)ts8W)ts8W)urr<#ts8W)us8N&trr;us +s8W)ts8W)t!<;urrr<#t/-#VJs8N#trr2rsrr<#trr;utrr<#ts8N&ts8W)ts8W)ts8W)urr<#t +s*t~> +&c_k1s8N&ts8W)us8N&ts8W)trrE&srrE&prrE&rrrE&nrr`9#s8N#t!<2ut!<2ut"TJH$rr2os +$NC)*rr;utrr2rtrr*!!rr2oss8E*"rr2os#6+Z&rr<#tqYqZ:s8N&urr<#trr)B*RY>m(Ec[)= +`SBVFpAFsirr;urrri?$rr;urrr`9#s8Muss8E*"rr2os*<-!F!:]sUrpTsWnG_nVn-AFOn*fc8n*p;E#Oq3OnF,i8n,DeYn*oi8rUBgTrpTsWnG_nV +n-ndTn*of8n*oi8nF,lGmf;kUn,DeWn*p>Fs6p9^nF,i8nF,lFmg&@NnF5o8nF-AG"7PaKn,;bT +n,DeWn*p>Fs6pHcnF,l8nF,l9n*of8rpKjVrU9aT!UoOVmfN"InG_kgnF,l9n*of7k2>.Ti7`HQ +=5WrTrr<#t0)tqMs8N#trq;n%E,fi:GGNj_rr<#ts8N&ts8W)ts8W)ts8W)urr<#ts(n"Qle+VF +d*U1kgYq/Jf[.RGVNud[KpJ^cj5].0>giZOs8N&ts8W)ts8W)ts8W)urr<#ts8W)us8N&trr;us +s8W)ts8W)t!<;urrr<#t/-#VJs8N#trr2rsrr<#trr;utrr<#ts8N&ts8W)ts8W)ts8W)urr<#t +s*t~> +#64]&rr2rsrr2utpAY-lo`"pjqu?]qqYpWrs8Mus"oeQ%rr;ugrrE&srrE&orrE&rs8W)urrW3" +rqudHrr<#ts8W)urr<#trr<#tq;K;uS:>NuE-6r'UTV>VceIF;kOA!&gu7#Qj7*>/5!u9fa4Z%( +_;bRTci(fc^1'9#eF2o.l'_KirbqscU<`H2s8N#qs8W',s8N#ts8N&urr6,OaQptMVmF5UHoqYp]ts8W)tpAY6o +s8W)os8N#qs8W')s8N#ts8N&urr7K~> +#64]&rr2rsrr2utpAY-lo`"pjqu?]qqYpWrs8Mus"oeQ%rr;ugrrE&srrE&orrE&rs8W)urrW3" +rqudHrr<#ts8W)urr<#trr<#tq;K;uS:>NuE-6r'UTV>VceIF;kOA!&gu7#Qj7*>38PZM7cJ*p1 +_;bRUeG[Vp`b\4If'i,0l'_KirbqscU<`H2s8N#qs8W',s8N#ts8N&urr6DcdHf7"[_U)>g"P/s +QB7,[L6%h*]u7q;g"P-5W_C_;s8N#qs8W'(s8N#ts8N&urr2otrqcWprqZQorqcWtrr<#trq??o +rr<#tq>^Hnr;Zfr$31#(s8W)us8N%K~> +#64]&rr2rsrr2utpAY-lo`"pjqu?]qqYpWrs8Mus"oeQ%rr;ugrrE&srrE&orrE&rs8W)urrW3" +rqudHrr<#ts8W)urr<#trr<#tq;K;uS:>NuE-6r'UTV>VceIF;kOA!&gu7#Qj7*>9^Hnr;Zfr$31#(s8W)us8N%K~> +$NL,)s8N&urr<#trVuoss8W)t!WW/ss8W'!s8Mus$3'u)rr;uss8W)ss8W'#s8N&trr;usqZ$Tp +rr3'!s8W&srr2utrr<#trr3-#s8W)tq#:["s8N#trr<#trql]qrqud6rql +$NL,)s8N&urr<#trVuoss8W)t!WW/ss8W'!s8Mus$3'u)rr;uss8W)ss8W'#s8N&trr;usqZ$Tp +rr3'!s8W&srr2utrr<#trr3-#s8W)tq#:["s8N#trr<#trql]qrqud6rql3",(l +$NL,)s8N&urr<#trVuoss8W)t!WW/ss8W'!s8Mus$3'u)rr;uss8W)ss8W'#s8N&trr;usqZ$Tp +rr3'!s8W&srr2utrr<#trr3-#s8W)tq#:["s8N#trr<#trql]qrqud6rqlNioB%X^8\9D`R`bthVmMSr8Rsk>giWOrqcWsrr;usrr<#trVm<*s8N#t +s8N#ts8N&tr;Zfrs8N)urVm!!s8N#nrr`9#rr2os!<2rss8E'!rqcWsrr;usrr<#trVqB~> +qu6Zqqu6p#s8W)urr;uqrr`9#s8N#t#QFc'rr;utrr2p#rr;utrqZQorqcZprr)isrqufrrqufq +rr<#urXf,/s8W)urr;uts8N&ts8W)srrE&qs8W)trrrE%s8N&trr3?%m,61$Tn[Z/EH(bos)\3[ +!cW=7jb*hUCiOiMI=Qm#_1DZ;r-SWlDJXEHmt:^oG5H:XE!;$!jo5;ZrVm!!s8W)trrE&srri?$ +=b"Hba8j9Wa:cP7aJQ;[dF-Fjcd1"edF$CjdJ;2qSj1Eus8N&trVm!!s8W)trrE&srs8W(s8N&t +s8W)ts8W)qrrE&trrE&prsJc*rr;utrr2rtrqcWprquctrr;urrr`9#s8N#t!<2rs!WN+L~> +qu6Zqqu6p#s8W)urr;uqrr`9#s8N#t#QFc'rr;utrr2p#rr;utrqZQorqcZprr)isrqufrrqufq +rr<#urXf,/s8W)urr;uts8N&ts8W)srrE&qs8W)trrrE%s8N&trr3?%m,61$Tn[Z/EH(bos)\3[ +!cW=7jb*\QD0#W)!.]WP_1DZ;r-ecoDf'TJmt:^oG5H:XE!;$!jo5;ZrVm!!s8W)trrE&srrrE% +@>iL[q9g81daHOkda?Ljda?Lk[D9u=g=b33f@em2g=k65q:Z(R9[<\ +qu6Zqqu6p#s8W)urr;uqrr`9#s8N#t#QFc'rr;utrr2p#rr;utrqZQorqcZprr)isrqufrrqufq +rr<#urXf,/s8W)urr;uts8N&ts8W)srrE&qs8W)trrrE%s8N&trr3?%m,61$Tn[Z/EH(bos)\3[ +!cW=7jb*\RDKGf,JUtUf!.aus"F>$)FFrt7!J>RmEW'h[LTT\;s8Mus"9/?#rr2otrr)j"rr6f" +ebn#!f)+&$f%8O)rmqY2f@S$gf](rNj5JqVj5Tal#J"*fs8W)urr)j!rr<#trr2utrVm0&s8W)u +rr<#trr<#tqu6Zqrr2utqYpp%s8N&ts8N#ts8Mlp!<2or!ri6!rVm!!s8W)trrE&srrN-!J,~> +!<<&trr;uss8W&s"TSK$s8Mlp!<2or!<2rs!<2ut!<2]l!<2ut!<2ut"TJH$rr2iq%0$;,rr;ut +rr;utrr2Kg!<2fo"9/?#rr2otrr2p$rr;uts8N#t(AHk+ToatNEH,r;GEJGrYIqQcbg+S_rltPn +hWQ`TtPH +VR"%crmCeoqpGJlr6besda?L75Kip'!ri6!qYpQpp&>$koD\gioDeghs8N)unc&[is8Mlp!<2or +J,~> +!<<&trr;uss8W&s"TSK$s8Mlp!<2or!<2rs!<2ut!<2]l!<2ut!<2ut"TJH$rr2iq%0$;,rr;ut +rr;utrr2Kg!<2fo"9/?#rr2otrr2p$rr;uts8N#t(AHk+ToatNEH,r;GEJGrYIqQcbg+S_rltPn +hWeL9[$koD\gioDeghs8N)unc&[is8Mlp!<2orJ,~> +!<<&trr;uss8W&s"TSK$s8Mlp!<2or!<2rs!<2ut!<2]l!<2ut!<2ut"TJH$rr2iq%0$;,rr;ut +rr;utrr2Kg!<2fo"9/?#rr2otrr2p$rr;uts8N#t(AHk+ToatNEH,r;GEJGrYIqQcbg+S_rltPn +hWgiKK!ri6!qYpQpp&>$koD\gioDeghs8N)unc&[is8Mlp!<2orJ,~> +rr3'!s8Mrr#6+Z%s8W)tr;Qcrr;Qp!s8N&ur;I$&rr<#ts8W)urr2p%rr<#ts8W)ss8W&us8N#t +s8W)urrE&ss8W)ts8W'&s8N&urr;urs"FBOs8N&ts8W)urr<#ts8W)urr;uts8N&urquEMaI7Bu +FEN(gNi9kMn+QSRqu$Hlrr2rtrr*-%rr;uts8Mus!<2rs(B4@6rr;uts8N&ts8P8=CsUGSipZ@( +rU0aSq +rr3'!s8Mrr#6+Z%s8W)tr;Qcrr;Qp!s8N&ur;I$&rr<#ts8W)urr2p%rr<#ts8W)ss8W&us8N#t +s8W)urrE&ss8W)ts8W'&s8N&urr;urs"FBOs8N&ts8W)urr<#ts8W)urr;uts8N&urquEMaI7Bu +FEN(gNi9kMn+QSRqu$Hlrr2rtrr*-%rr;uts8Mus!<2rs(B4@6rr;uts8N&ts8P_XG1bI#jmV[+ +rU0aSq +rr3'!s8Mrr#6+Z%s8W)tr;Qcrr;Qp!s8N&ur;I$&rr<#ts8W)urr2p%rr<#ts8W)ss8W&us8N#t +s8W)urrE&ss8W)ts8W'&s8N&urr;urs"FBOs8N&ts8W)urr<#ts8W)urr;uts8N&urquEMaI7Bu +FEN(gNi9kMn+QSRqu$Hlrr2rtrr*-%rr;uts8Mus!<2rs'E8%3rr;uts8N&ts8Q;#J`#DDk^i0< +mL\C9i8>r;Q]qs8N#ts8Mlp"9/?"rr)iu +Cmf](oNiqh[=ioB%Yj5U$t$FsEirr<#trr<#tqYpZss8N#rrrE&qrr`9#s8Mus!<2lq +"TJH$rr2lr!<2rs#QFc&s8W)urr)isrr2p&rr<#trr<#tqYpZss8N#rs*t~> +s8N)urr2uto`#*os8W)urql]qrr)lsrq69krr)isrr)isrr)isrr2p!rr;urrrE&orrE&nrs/Q' +rr;uts8Mio!<2rs'E8%3rr2rohR]A2EH-;dVS1^Mqu6U#rr<#ts8N&tqu6cts8W)orrE&srs/Q' +rr;uts8Mrrs8E3d12P:^cenTf"7GXGmeuSSmecGQmeZARmdKT?mf;ePmfi.Jn*]Z4rpKjTrpKjT +r9jXRrU0aSq!S=Qn*]WBmf;eQmf;ePmfMqGmeZAPmeZAUmdKW4n*^2D!:KjT!:KdR!:KgS!:KXN +"7GXGmeuSSmecGQmeZAVmdKT4mdKTBmg\C*cd'k_a`]I1`W,r:p\t6mrVm3'p762CE-e5&o`"jj +rqucsrr;usrr<#ts8N)ur;Qh$IDbm"s2=rV!6"lU$,jg$`Pf`mZbb&fdKS%HdF$CjrmC_n!7Ceo +!hMX"r;Qfss8N#ss8W)urrE&qrrE&mrsJc*rr2rtrr2rsrqHEmrr)lsrW<-!rqZQorqucsrr;us +rr<#ts8N)ur;V9~> +s8N)urr2uto`#*os8W)urql]qrr)lsrq69krr)isrr)isrr)isrr2p!rr;urrrE&orrE&nrs/Q' +rr;uts8Mio!<2rs'E8%3rr2rohR]A2EH-;dVS1^Mqu6U#rr<#ts8N&tqu6cts8W)orrE&srs/Q' +rr;uts8Mrrs8E3q6$Co4f];nt"7GXGmeuSSmecGQmeZARmdKT?mf;ePmfi.Jn*]Z4rpKjTrpKjT +r9jXRrU0aSq!S=Qn*]WBmf;eQmf;ePmfMqGmeZAPmeZAUmdKW4n*^2D!:KjT!:KdR!:KgS!:KXN +"7GXGmeuSSmecGQmeZAVmdKT4mdKTBmg\L6f[nd.dXXV^a8c/qfg&B\*g&'M'g%j>'W_C_9rrN-!rr2oss8N&u!<2lq +!<2`m$NC))rr<#trr;usp\t6mrVuos!rr9!q>UHor;Qfss8N#ss8W)urrE&rs*t~> +s8N)urr2uto`#*os8W)urql]qrr)lsrq69krr)isrr)isrr)isrr2p!rr;urrrE&orrE&nrs/Q' +rr;uts8Mio!<2rs'E8%3rr2rohR]A2EH-;dVS1^Mqu6U#rr<#ts8N&tqu6cts8W)orrE&srs/Q' +rr;uts8Mrrs8E:.;1[Z_i90OqrU0[P$1@3Kmd9H0mdBKAmKN"GmI'E0rpKgRqsFIOrpBdRrU'pX +mdBK1mI'B8mKr:KmI'E0md9H0rU0[P$1@3Kmd9H0mdBKAmKN"GmI'E0rpKgRqsFIOrpBdRrU'pX +mdBK1mI'B8mKr:KmI'E0md9H0rU0[P$1@3Kmd9H0mdBKAmK2eDmJcPRm0<"GmI'B0mJZG^l/:IV +i8E=J;..QHrr2Zl!<2rs$3'XhEH,rDU!<6/rrE&rrrN-!rr2oss8N&u!<2or!c4(KldQ$Vd+I@V +is4T(j5T+Zio9ps#3+\'iji=Br;Qfss8N#ss8W)urrE&qrrE&mrsJc*rr2rtrr2rsrqHEmrr)ls +rW<-!rqZQorqucsrr;usrr<#ts8N)ur;V9~> +s8Ef6rr2rss8W)urr;utrr2rtrr;uts8Mlp!<2lq#6+Z&rr<#trr2utr;Qs"s8N&urr)isrr2ot +rr2p#rr<#trql`qrr2otrr2p#rr<#trpp('rr<#ts8W)rn&:ZGFED_d_VsnVrVQTprr2p'rr<#t +rr<#trql]qrr)j&rr<#trr<#trq?BlrW58>CAuN[g[5"/"7GXHmeuSSmecGSmdKWDmK)eErU0pX +n*f]5mecJPmeuSSme?/PmdKT4rpKgT!:K[O"7GXHmeuSSmecGSmdKWDmK)eErU0pXn*f]5mecJP +meuSSme?/PmdKT4rpKgT!:K[O"7GXHmeuSSmecGSmdKWDmK)eErU0aSqsXRQ%d_lpcHjh^`*kH$ +h>dKRrr2utrr3*"s8W)srsJc!ST9+Th=U^Hrr2otrr)lrrqucrrr2rtrWrApoCH%0]u%\S_uljA +_9r50!7Ceos3^kp"OYZFdaA'B".ha#rr)lrrqucrrqcX&rr<#trr<#trr<#trVm0&s8W)ts8W)t +rr2utrr3*"s8W)srrE&qrr`9#s8N#t!<2rsrr2iq!<2ip!WN+L~> +s8Ef6rr2rss8W)urr;utrr2rtrr;uts8Mlp!<2lq#6+Z&rr<#trr2utr;Qs"s8N&urr)isrr2ot +rr2p#rr<#trql`qrr2otrr2p#rr<#trpp('rr<#ts8W)rn&:ZGFED_d_VsnVrVQTprr2p'rr<#t +rr<#trql]qrr)j&rr<#trr<#trq?BlrW5_YFoL"oi9gO4"7GXHmeuSSmecGSmdKWDmK)eErU0pX +n*f]5mecJPmeuSSme?/PmdKT4rpKgT!:K[O"7GXHmeuSSmecGSmdKWDmK)eErU0pXn*f]5mecJP +meuSSme?/PmdKT4rpKgT!:K[O"7GXHmeuSSmecGSmdKWDmK)eErU0aSqsXRQ!U\eBfE]Z;6!rLK +rr2os!<2ut"9/?#rr)j(rq;n'I&>`lrr;usrrE&ss8N#qrrE&ts8W'(qY0XS?\ZVFc0`dY[(jf; +rRqA,g=k6Yg'$*_g"P-Yg&n?KcMmeBrr2iq!<2ip$i^2+rr2rtrr2rtrr)j&rr<#trr<#trr2ot +rr2p"rr<#trVllsqu6cts8W)trrE&ss8N#qrrE&prrN-!J,~> +s8Ef6rr2rss8W)urr;utrr2rtrr;uts8Mlp!<2lq#6+Z&rr<#trr2utr;Qs"s8N&urr)isrr2ot +rr2p#rr<#trql`qrr2otrr2p#rr<#trpp('rr<#ts8W)rn&:ZGFED_d_VsnVrVQTprr2p'rr<#t +rr<#trql]qrr)j&rr<#trr<#trq?BlrW6;#JH"I/jmDL'rU'[QqODmJcMWmI'E0md9o>!:BRL +"RYXFmHscODmJZGSmI'B?mJuYOmL\dRmH!3_i8EMCGu8A7s8N#s +rrE&trr`9#s8Mus$NBaiEdXb?o`"mirr2utrVulrr;Qcrrr<#t#lFDiokKT4dF.F2"3&U=ir.m; +iqqagiWMs8N#qrrE&prsSi+s8N#ts8N#ts8Mus#lal(rr2rtrr2os!<2ut"9/?# +rr)isrql]trr<#trr2utrVulrr;QcrqYpTqs*t~> +rr3K-s8N&urr;uts8N&ts8Mus%0$;,rr2rss8W)urr2os#QFc&s8W)us8DrorrE&ss8Dros8W)t +s8N#prrE&qs8Dots8Mfn"9/?"s8N#srso&%e?41=EJU:1mJQt`rr2rqrWE3"s8Moq#6+Z&rr2rs +q#:Bos8Muus8Mfn$i^2+r]W,2c-O_bl2:#LmKN(ImdKW4rU0mWn*]Z4rpTmT#Oh*Kn*]Z4mf)YV +mdKTBmf;eSn,MeWn*]W5mf;eQn,D_Yn*]W4n*^/C"RbaHn*^2Ds6^-\mdBQ3n*]WCmfMqGmeuSS +meuVSmK2kFmdTZFmecJPmKN(ImdKW4rU0mWn*]Z4qsXRQ!UoISmfMq8d/;2sWAcVJo)A[hrr;up +rrE&rrs/Pt['],ss8Mrr!<2rsrr2osrr2rt%fZ=_[Y.X,+X&I1H^M4Wn%o1'Zbb&gdK%\ldK%\n +dK%\ndK6")bPhJ?rr2rsrr;uurr2otrr2otrr)j!rr;usrr<#t!WW/us8W)urrW3"rql]qrqufr +rr +rr3K-s8N&urr;uts8N&ts8Mus%0$;,rr2rss8W)urr2os#QFc&s8W)us8DrorrE&ss8Dros8W)t +s8N#prrE&qs8Dots8Mfn"9/?"s8N#srso&%e?41=EJU:1mJQt`rr2rqrWE3"s8Moq#6+Z&rr2rs +q#:Bos8Muus8Mfn$i^2+r_#LXe_&O/lMU,MmKN(ImdKW4rU0mWn*]Z4rpTmT#Oh*Kn*]Z4mf)YV +mdKTBmf;eSn,MeWn*]W5mf;eQn,D_Yn*]W4n*^/C"RbaHn*^2Ds6^-\mdBQ3n*]WCmfMqGmeuSS +meuVSmK2kFmdTZFmecJPmKN(ImdKW4rU0mWn*]Z4qsXRQ!UoISmh5'Lf[nd-f@[At6$)Vrs8W)u +rql]qrqud$rqEe,lM^b^r;QcrrVulrrr;uss8NT.qVo5\ITolS?ZV@+^Wc/k#.21hg"P05qUtr& +r7V/(rn7FR9[ +rr3K-s8N&urr;uts8N&ts8Mus%0$;,rr2rss8W)urr2os#QFc&s8W)us8DrorrE&ss8Dros8W)t +s8N#prrE&qs8Dots8Mfn"9/?"s8N#srso&%e?41=EJU:1mJQt`rr2rqrWE3"s8Moq#6+Z&rr2rs +q#:Bos8Muus8Mfn$i^2+r``31hVd>Olhg,MmJlSWmI'E0mJcMRmJcMVmI'B0mJ6/OmI'B:mJuYR +mKDqFmd9E5mK;kEmd9l=s6]jS"RYXFmHso@!:BdR"RYXEmd9i +qu?]q!WW/ps8W)grrE&jrr`9#s8Mfn#QFc&s8W)urr)iurr;uorrE&prrrE%s8N&tpAY-lrr3`4 +s7XU/HuX7s^uP4hs8N&urr2rtrqcX"rr;uts8N&tpAY-lr;Qs"s8W)urq69u=>N"Rcd'krn*f]D +mg/@Mn*]W4n*]WCmf;eRmfMqGmf)YVmdKTCmf;eRn,MhTmf`(In*]W;mg8FNmdKT4mdKW4rU0aS +rpL-\n*f]4n*f]4rpKjTr9j^Tn*^2D!q,OFrpKjTr9s[RrpL!Xn*f]4p?r=Un*]Z4n*]Z5meuSS +mf)Y\mdKW4mdKW4mf)YTmelMZmdKT3n*f]5mf)\TmM+s7cd0n^ccgGd1Tp`Wrr<#ts8W)lrs\kt +rVulsrr;utrr<#trql]qrr)j.roTqU*>&MW!!!*-'I-hA](!N +qu?]q!WW/ps8W)grrE&jrr`9#s8Mfn#QFc&s8W)urr)iurr;uorrE&prrrE%s8N&tpAY-lrr3`4 +s7XU/HuX7s^uP4hs8N&urr2rtrqcX"rr;uts8N&tpAY-lr;Qs"s8W)urq69n@R3Q,rn%>7n*f]D +mg/@Mn*]W4n*]WCmf;eRmfMqGmf)YVmdKTCmf;eRn,MhTmf`(In*]W;mg8FNmdKT4mdKW4rU0aS +rpL-\n*f]4n*f]4rpKjTr9j^Tn*^2D!q,OFrpKjTr9s[RrpL!Xn*f]4p?r=Un*]Z4n*]Z5meuSS +mf)Y\mdKW4mdKW4mf)YTmelMZmdKT3n*f]5mf)\TmM,!@f@\a-f[P=86*^Fhrr<#ts8W)lrs\kt +rVulsrr;utrr<#trql]qrr)j3ro^A?G_(L%KnFo&Ec$;r`QZTObfoq.!6kGe"O+6gbLuaG!87;( +s4IG,g&B\,W_C_;rql]qrr)iurr;urrrrE%rr<#trVuoss8N)urr3B*s8W)urr<#ts8W)ks8W') +s8N&ts8N&ts8W)tqu6ZqrVlrus8Mus!WN+L~> +qu?]q!WW/ps8W)grrE&jrr`9#s8Mfn#QFc&s8W)urr)iurr;uorrE&prrrE%s8N&tpAY-lrr3`4 +s7XU/HuX7s^uP4hs8N&urr2rtrqcX"rr;uts8N&tpAY-lr;Qs"s8W)urq69nD,FB^rnn"EmdBK1 +md:#A!:BdRs6]CFrp9^RrpBXOs6]gR"RYXFmHsW8!:BaQs6]jS#jq'ImdBK1md:#A!:BdRs6]CF +rp9^RrpBXOs6]gR"RYXFmHsW8!:BaQs6]jS#jq'ImdBK1md:#A!:BdRs6]CFrpBaRrp:EciSWSN +hr*=H;,Ob#s8N&urr<#tpAYR"oDS^gs8N&ts8N&urr2fp!<2rs'`R@,Yd)0kda6:]_69JkUs%06 +da@m=s3^kp"OY38f])njs5F(>ir.p;iX+Z)j5T+Yj1/FCrr2fp!<2rs!ri6!rVm'#s8N&urr)ls +rr;uurr2p*rr<#ts8N&urr<#tp&G'k$31#)rr;utrr<#trql]qrr)iurr;urrrN-!J,~> +%fZM.rr;utrr2rtrr;utrVlis"9/?"rr)isrqcWrrr;usrrW3"rp'Lcrr<#trVm!!s8W)trrW3" +rqcWprqcWprql^.rr<#trThRaG'&A:h"UdHs8W)ts8W'!s8Muss8N#t!WN,urX8c*s8W)urr2rs +s8Mio!<2ip!<2ip"TFT?32uo'!S-Rgm`4_rlIc'\%+!1h5Vl+&rr<#ts8N#t!ri6!rr;rrrr<#t +rr2utrr3'!s8N#t%K?D,rr;uts8Mc'9bdd,!!`T=01SB0WP7r="/W??dJhPrdF-Fjrm:_ormC_n +#1:lHSj1Etrr3Z2s8N#trr<#trr<#trr;utrr;urrrE&ts8W'"s8N#rs8W)urrW3"rr2p!rr;us +s8Drrs8W)trrE&trrW3"rr2p1rr;uss8N&urr2rtrr2rss8N%K~> +%fZM.rr;utrr2rtrr;utrVlis"9/?"rr)isrqcWrrr;usrrW3"rp'Lcrr<#trVm!!s8W)trrW3" +rqcWprqcWprql^.rr<#trThRaG'&A:h"UdHs8W)ts8W'!s8Muss8N#t!WN,urX8c*s8W)urr2rs +s8Mio!<2ip!<2ip$3$;W7^C[uf\GkFm`4`.le^7Gf@\^+VbKHYnG`Ifrr;usrrW3"rr2rrrr2rt +rr2otrr2p!rr;usruD%qM26n>K7SQ&LR4`oH*tcbb6,,dbLuRB"52D^g&B\. +fr@`krr2p2rr;uss8N&urr2rtrr2rss8N&trVllsrr<#t!rr9!rVuoss8N0"s8N#t!ri6!rr;rr +rr<#trr2utrr3'!s8N#t')qq1rr;uts8N#ts8N#trr;utJ,~> +%fZM.rr;utrr2rtrr;utrVlis"9/?"rr)isrqcWrrr;usrrW3"rp'Lcrr<#trVm!!s8W)trrW3" +rqcWprqcWprql^.rr<#trThRaG'&A:h"UdHs8W)ts8W'!s8Muss8N#t!WN,urX8c*s8W)urr2rs +s8Mio!<2ip!<2ip$3$MnOEmJZGTmI'E0p?hqJqZ###rr<#ts8N#t!ri6!rr;rr +rr<#trr2utrr3'!s8N#t*<-!;rr;uts8Mf=V9%0;eC)^hbK7SrEDTq`][-/q"i\j@ioB%qirJ*9 +irJ*;irchsdf07G'E8%2rr;uts8N#ts8N#trr;utrr)isrr2rtrW<-!rr)lsrr>2rr2rss8W)ts8W)ts8N&ts*t~> +rVlots8Drqs8Drrrs8W(s8N#trr;usrrE&ps8W'&s8N&urr;uss8;los8W)srr`9#s8N#ts8N&u +s8Miorr2os!<2ut!<2ip)?0[8rU%U`E-%)KkPYAZrr;uts8N&ts8N#nrseu-rr;uss8W)us8N&t +rVllsp\t6mrr2utqYpd!s8TM`22;(U!9a@LrTsXRmJZGQmJQDOm/ueDmd9l=!:B:D!:BXN!:B^P +s6TjTmJZGQmJZJOm/cYBrU'[Qr9jRO"7GREmJ?5NmI9NDmJ?5NmJQDPm/cYBrU'[QrU0XO!Uf@R +mJuYPmf)SSmd9`9"7+^gcMl,ucF[::4/r2Yrr2rtrqZTorr<#urW<-!rqZQrrr;usqu6Zqrr35q +Rn+.m!"'/4!!jQ8?"IA9;jG&f^B::<_9r&+!n#HDq9fD;5Kj'*qu6ZqrVllsrr<#ts8N0"s8Mlp +!ri6!qYpd!s8N#ts8Mios8N&us8E*"rr2`n"9/?"rql]qrr)isrr2rtrr +rVlots8Drqs8Drrrs8W(s8N#trr;usrrE&ps8W'&s8N&urr;uss8;los8W)srr`9#s8N#ts8N&u +s8Miorr2os!<2ut!<2ip)?0[8rU%U`E-%)KkPYAZrr;uts8N&ts8N#nrseu-rr;uss8W)us8N&t +rVllsp\t6mrr2utqYpd!s8TYr6]h9!!9sLNrTsXRmJZGQmJQDOm/ueDmd9l=!:B:D!:BXN!:B^P +s6TjTmJZGQmJZJOm/cYBrU'[Qr9jRO"7GREmJ?5NmI9NDmJ?5NmJQDPm/cYBrU'[QrU0XO!Uf@R +mJuYPmf)SSmd9`9'C=]1f@\^-f>M;f8?Mjjrr2rtrqZTorr<#urW<-!rqZQrrr;usqu6Zqrr3`* +Y)JL$M2R:GK7SQ%N2j:s[\\POaSs?bb0.uNqo]/c[(sl +rVlots8Drqs8Drrrs8W(s8N#trr;usrrE&ps8W'&s8N&urr;uss8;los8W)srr`9#s8N#ts8N&u +s8Miorr2os!<2ut!<2ip)?0[8rU%U`E-%)KkPYAZrr;uts8N&ts8N#nrseu-rr;uss8W)us8N&t +rVllsp\t6mrr2utqYpd!s8Tf0;k![C!:#.&aR'Z-jl#%Ri8EM;FAZ,FrVulrs8W)os8W)us8W'" +s8N#nrr`9#rr2fp!<2ut(%o+j\(K +rr3T0s8N&trr<#ts8W)urr<#trr)lrrr2rtrr2ourr;us!rr9!rVllsr;Qcrrr33%s8W)urr2iq +s8N#t#6+Z&rr2rsrVm0&s8N&urr;usrr2utq#CBn)Z7g>G]AMSlMUY]rr;uss8N&urr<#trr;us +rVuosrr2utrr<#t!WW/us8N#srrE&ts8N#srrE&ns8W'-s3j4hA]N*Bce@aRmd:#A!:BXN!:BaQ +"mtaFmd9E?mKDqFmI'B@mJuYRmJuYQmf)VRmK2eDmJ62LmJZGQmJ?5NmJcMRmJ?5NmJZGVmI'B0 +mHsl?"RYXEmd:#A!:BdR!:BaQrpBaR!q#FCqL^'(7<_9p[0dK%\odf7_pdK%\kdK6")bPhGBrr;usrr`9#s8Mfn!<2rs!<2lq +!<2ut$3'u(rr<#ts8N#srrE&ms8W)srrE&trrE&rrrW3"rr2p"rr<#tq#>j~> +rr3T0s8N&trr<#ts8W)urr<#trr)lrrr2rtrr2ourr;us!rr9!rVllsr;Qcrrr33%s8W)urr2iq +s8N#t#6+Z&rr2rsrVm0&s8N&urr;usrr2utq#CBn)Z7g>G]AMSlMUY]rr;uss8N&urr<#trr;us +rVuosrr2utrr<#t!WW/us8N#srrE&ts8N#srrE&ns8W'-s4'e/ER<=if\c)amd:#A!:BXN!:BaQ +"mtaFmd9E?mKDqFmI'B@mJuYRmJuYQmf)VRmK2eDmJ62LmJZGQmJ?5NmJcMRmJ?5NmJZGVmI'B0 +mHsl?"RYXEmd:#A!:BdR!:BaQrpBaR!q#FCq2f9SllG3])+s8W)urr2os!<2`ms8Mus!<2ut!<2or!ri6!rr3f6qkoOJSsPFsRtlQF +IXIBd]">SbW.1fj~> +rr3T0s8N&trr<#ts8W)urr<#trr)lrrr2rtrr2ourr;us!rr9!rVllsr;Qcrrr33%s8W)urr2iq +s8N#t#6+Z&rr2rsrVm0&s8N&urr;usrr2utq#CBn)Z7g>G]AMSlMUY]rr;uss8N&urr<#trr;us +rVuosrr2utrr<#t!WW/us8N#srrE&ts8N#srrE&ns8W')s4CLPIG!H8i8jk'!U]7Mm/ZMNmJlPM +m02kDmHj6,qX":Lrp9^PqX+:Kqs=CMqX":Lrp9dRmHso>!U]7Mm/ZMNmJlPMm02kDmHj6,qX":L +rp9^PqX+:Kqs=CMqX":Lrp9dRmHso>!U]7Mm/ZMNmJlPMm0)eCmHj6>lkJU?hr*DMi8:2.;1S!3 +rr<#ts8N#srrE&ms8W)srrE&trrE&rrrW3"rr2p6rqigC8mIClX^SlcaiDAQ92AA\:Jl/:o?RW[ +ce.7:j5U!ss5O(=$KC+*j5].Zj1/FCrVlrus8N#t"9/?#rqQKnrr)isrql]qrr2p(rr;uss8W)u +rr2os!<2`ms8Mus!<2ut!<2or!ri6!rr3*"s8W)ns*t~> +!<2lqs8E#ur;QZps8Mfn!<2ut"9/?"rr)isrql^.rr;uts8N&trr<#ts8N#ts8N&trW<-!rr2rr +rWE3"s8W)t$NL,*s8N#trr2rsrVm<*s8N&up<\qAG)jQ9rVllsr;Qits8W)ts8NB(s8W)ts8N&u +rr)rurr)lsrY,>2s8W)ts8W)urr2rtrr;uss8Mus!ri6!r;QocD)4khrm(Vli.::=m/cJ*rm(nr +cd0nC6Sh-Yrr2p"rr;usr;QcrrVuos!rr9!r;Qcrr;Qcrrr3T0s8N&ts8Vkk6!7W(;(NSJ,lI]R +$U7ct@:a"L9V/o0]tD%kr4N`U]qi!NdF-Fjda?LjdF-FidaA'B!7Ceo!hMX"rr3-#s8N&trr2ut +rVuoss8N)urr<#ts8N)urr2utr;Qits8N#t"9/?"rqucrrr)lsrW<-!rqucrrqucrrr2p#rr;ut +rr2otrr)lsrr +!<2lqs8E#ur;QZps8Mfn!<2ut"9/?"rr)isrql^.rr;uts8N&trr<#ts8N#ts8N&trW<-!rr2rr +rWE3"s8W)t$NL,*s8N#trr2rsrVm<*s8N&up<\qAG)jQ9rVllsr;Qits8W)ts8NB(s8W)ts8N&u +rr)rurr)lsrY,>2s8W)ts8W)urr2rtrr;uss8Mus!ri6!r;QodF[9->rn%8)jFQ^Am/cM0qq),) +]MCgieGfII"9/?"rqucrrr)lsrW<-!rqucrrqucrrr2pDrr;utrr<#nZ]_Z(\$)6^UQ^4WI!^@; +Za@3Q]!$RaaN;QFaiOD%"j"fl^WY=-gAfh-g=b0Ug'$*_W_C_;rri?$rr;usrrE&ss8W)urrE&t +s8W)urrE&trrE&rrrW3"rr2p"rr;usr;QcrrVuos!rr9!r;Qcrr;Qcrrr3-#s8N&trr2utrVuos +s8N0"s8RT~> +!<2lqs8E#ur;QZps8Mfn!<2ut"9/?"rr)isrql^.rr;uts8N&trr<#ts8N#ts8N&trW<-!rr2rr +rWE3"s8W)t$NL,*s8N#trr2rsrVm<*s8N&up<\qAG)jQ9rVllsr;Qits8W)ts8NB(s8W)ts8N&u +rr)rurr)lsrY,>2s8W)ts8W)urr2rtrr;uss8Mus!ri6!r;QodIo0gorSR_>m/?;Wm-X3,m-X3, +m/$)Um-X0,mHj6-m-O`="RPOBmHji>#jgsFmHj3,mHjc"hZi:BjR0Zd$b?c1oQf`6d/rj5U$ts5F+?io9an!kDRarr3-#s8N&t +rr2utrVuoss8N)urr<#ts8N)urr2utr;Qits8N#t"9/?"rqucrrr)lsrW<-!rqucrrqucrrr2p# +rr;utrr2otrr)lsrr +"oeQ$s8N#lrrE&trrW3"rr)isrql`qrW)utrqufqrql^!rr<#ts8Mlprr2iqrr2iqrr2rt#lal( +rr2rtrr2osrr*9)rr;uZW-rW=]'B7o!<2ip"9/?#rr)isrr2ourr;us!<<&trr3*"s8N#rrrE&s +rrE&qs8W)ts8Muus8Moq"o4<=2i,]Wc2lDWq<\1KrpBaPs6TmSmHso>s6TgQrU'UNrTsUOp[&%K +mHji>rp0[Qm/65Qm-X3,rpBaPp?_kHrpBaPs6TmSmHso>s6TgQrU'UNrTsUOp[&%KmHji>rp0[Q +m/65Qm-X3,rpBaPp?_kHrpBaPs6TmSmHso>s6TgQrTs[Qkh#dZ$dR)DZ!9%?Hhm[@s8N#ts8W)u +rrE&srrE&trrE&ss8W'!s8Mios8N&u%fZM.b=OKrAmI5&4^L#NrW!9+(+(S-AS#@F=KD,-"J`9= +dF%sAs3^ho!7Ceorm:qudF-I75Kj'+s8N&u"TJH$rr2lr"9/?#rr2rtrr2p"rr<#tq>UNqs8W)t +s8W,us8N)urVllsrr2utrVuos!WW/ps8W)urri?$s8N#rrr`9#s8N#tJ,~> +"oeQ$s8N#lrrE&trrW3"rr)isrql`qrW)utrqufqrql^!rr<#ts8Mlprr2iqrr2iqrr2rt#lal( +rr2rtrr2osrr*9)rr;uZW-rW=]'B7o!<2ip"9/?#rr)isrr2ourr;us!<<&trr3*"s8N#rrrE&s +rrE&qs8W)ts8Muus8Moq$Mg)W7?Z3Qf[njAq<\1KrpBaPs6TmSmHso>s6TgQrU'UNrTsUOp[&%K +mHji>rp0[Qm/65Qm-X3,rpBaPp?_kHrpBaPs6TmSmHso>s6TgQrU'UNrTsUOp[&%KmHji>rp0[Q +m/65Qm-X3,rpBaPp?_kHrpBaPs6TmSmHso>s6TgQrTs[Ql.u4=#]=+>hU:-\EI!^-aKT;7u]">MIJ@G3m"LGne +g"H>X!875&$/+%cg=b36W_C_;s8W)urri?$s8N#rrr`9#s8N#ts8N#t"9/?#rqZQqrr<#trr<#u +rr;uurr)isrr2otrr)lsrW3&uq>^Kos8N6$s8W)trVm!!s8W)ts*t~> +"oeQ$s8N#lrrE&trrW3"rr)isrql`qrW)utrqufqrql^!rr<#ts8Mlprr2iqrr2iqrr2rt#lal( +rr2rtrr2osrr*9)rr;uZW-rW=]'B7o!<2ip"9/?#rr)isrr2ourr;us!<<&trr3*"s8N#rrrE&s +rrE&qs8W)ts8Muus8Moq$Mg>m<1Vk&i8s6TgQrU'UNrTsUOp[&%K +mHji>rp0[Qm/65Qm-X3,rpBaPp?_kHrpBaPs6TmSmHso>s6TgQrU'UNrTsUOp[&%KmHji>rp0[Q +m/65Qm-X3,rpBaPp?_kHrpBaPs6TmSmHso>s6TgQrTs[QlJqj$$fBn"_K8XPMu!APs8N#ts8W)u +rrE&srrE&trrE&ss8W'!s8Mios8N&u*<-!H?;4eB`PTF'RXB$F:Jae\GJ +rVm$"s8W)tq>UHorVllsp&>3ps8W)urqcX!rr<#ts8W)srseu-rr2rsrr;uts8N&tr;Zcqrr2ut +qZ$Tprr2utqu7*(pV;N)IB2]2rr2rsr;Zcqs8NZ0s8N&ts8W)urr;utrr<#tqYpWrs8W)tp](9m +rr2utqZ$Tp&-)Y.s8L,41.&Cpcd'kglh0WMm-X3,m-X3,qX":Lrp9^Pp?hnHs6]jQp[&:RmHs9- +mHj6-m-j! +rVm$"s8W)tq>UHorVllsp&>3ps8W)urqcX!rr<#ts8W)srseu-rr2rsrr;uts8N&tr;Zcqrr2ut +qZ$Tprr2utqu7*(pV;N)IB2]2rr2rsr;Zcqs8NZ0s8N&ts8W)urr;utrr<#tqYpWrs8W)tp](9m +rr2utqZ$Tp$31#(s8L2B5u55nfE'gop$E"NmHs9,mHs9:m/ZMPm/ZMHmJlPQmJlPIm0W.HmHj6- +m-X3,n*LAHmHs9,mHs9:m/ZMPm/ZMHmJlPQmJlPIm0W.HmHj6-m-X3,n*LAHmHs9,mHs9:m/lV9 +g\f_(f*Sut6:,;?s8W)tpAYBss8N&urr;uqs8W)urr`9#s8Mus!<2rs)Z,;PXh)-MP(]U2UkjAC +G^":QLTe:mTWj3;ou@9C^WY(s4RA)!ier>rVllsr;Zfrr;Zfrq#CBn!WW/urrW3" +rr2rtrq??srr;uts8N&tr;Zfrs8N3#s8W)srrE&rs8W)rs8W)ss*t~> +rVm$"s8W)tq>UHorVllsp&>3ps8W)urqcX!rr<#ts8W)srseu-rr2rsrr;uts8N&tr;Zcqrr2ut +qZ$Tprr2utqu7*(pV;N)IB2]2rr2rsr;Zcqs8NZ0s8N&ts8W)urr;utrr<#tqYpWrs8W)tp](9m +rr2utqZ$Tp&-)Y.s8L;R;-h6#hr!APm.K`Nm-X3,m-X3,qX":Lrp9^Pp?hnHs6]jQp[&:RmHs9- +mHj6-m-j1;K:Uos8N#krs/Q'rr<#ts8Mrrs8N&u"9/?#rr)isrr)j8qk'6R:JafKa%K<- +VSg3`]XYA.8P`)U8lhGSbQYr3f](rOro3t +"98B#rqud"rr;uss8Muss8E#urr)otrr)rurr2rtrW3&uqu6ZqqYpQpqZ$NnrVm'#s8W)urr)ls +rW3&urVuiqs8N3#s8W)trrE&trs/JYVK$aMi;ETS!<2`m!<2rs!<2or!ri6!qu?]qo)Jahqu6Zq +rr2utp&>3jNAEA,aSjEch!4n+!:9IIs6KjTm-X0:m0;qEm-X3,m.frPm-X0+mHs97m/u_BmHjW8 +s6T^O!:9IIs6KjTm-X0:m0;qEm-X3,m.frPm-X0+mHs97m/u_BmHjW8s6T^O!:9IIs6KjTm-X0< +m1J^Ig!J'jcHje]c*:5(1MG89rr3*"s8W)trrE&mrrE&os8N#srrE&orsZq48n2FE>q#ph(*3k\ +!!t/S>Uq%!;+Ih#rON!>r43*-Zbb&;daA$As3^Yjs3UttSj1Etp\t6moD\girr2utpAY6os8W)t +rrE&mrrE&os8N#srrE&mrrE&ls*t~> +"98B#rqud"rr;uss8Muss8E#urr)otrr)rurr2rtrW3&uqu6ZqqYpQpqZ$NnrVm'#s8W)urr)ls +rW3&urVuiqs8N3#s8W)trrE&trs/JYVK$aMi;ETS!<2`m!<2rs!<2or!ri6!qu?]qo)Jahqu6Zq +rr2utp&>3jPFM%@h'#qu4ZbXc;g=b36g"P05g"P05r7VA.g=`K"cMmS +"98B#rqud"rr;uss8Muss8E#urr)otrr)rurr2rtrW3&uqu6ZqqYpQpqZ$NnrVm'#s8W)urr)ls +rW3&urVuiqs8N3#s8W)trrE&trs/JYVK$aMi;ETS!<2`m!<2rs!<2or!ri6!qu?]qo)Jahqu6Zq +rr2utp&>EpRScq7f\kZFi8s;(m/ZMImJlMTmHj6,qs=USmHj6-m-ON7#41aDm-X3,p[&(LmHs98 +mJlPOm/ZMImJlMTmHj6,qs=USmHj6-m-ON7#41aDm-X3,p[&(LmHs98mJlPOm/ZMImJlMTmHj6, +rTs[Ql/_a"#iFLVD,F/VfDY^K"9/?#rr2otrqHEmrqZTnrr2otrqZR5c]DU3:f'i/`35qd[(sDg +\[](n7ndiM8kEU1rQP8arQGG`ce.7;iqqa9iqqaAioB(Yj1/FCrqHEmrq$-irr2otrq??orr<#t +rr2utp\t6mq>^Hnrr2utp\t6mpA]X~> +rr<#trVuosrr2utrr<#tqu6Zqq#:Nss8N&urr)isrqucrrr2p"rr<#tp\t?ps8W)nrrE&trrE&r +rrE&prs/Q#a+eV^]CGat!<2lq!<2ut#6+Z%s8N&tr;Zcq!WW/rrs&K&rr;utrqHHmrqcWsrr;ut +rr)rurr2p$j@qBmRa1oY"jkuhmHj3;m/ZMLm/lYAm/-2Lli?GOm/65Nm.p#Km/HAUm-X3,mHjZ9 +s6KdRm/65Qm-X0+r9XLNqX"@NmHj`;rp0XPrTsIL!:9OK!:9^P"mkXDm-X08mJlMRmHjc<"75FA +m/65Nm/$)Nm-X0=m0;h2e'?7bcMl,sc(\/o1K)p)s8W)srt#,/rr<#ts8N&trr<#ts8Moq#lal( +rr;utrr2os#QFc'rq_C3@/aaAA4ma>!!;us#Ri1G'c^4[5)K!D#,AN@dF$CirmCeoqU5Dks3_(u +d[i\Hrr2p"rr<#trVm!!s8W)prrE&grrE&srt#,/rr<#ts8N&trr<#ts8Moq#lal(rr;utrr2os +"9/?#rr)j!rr<#tqYu'~> +rr<#trVuosrr2utrr<#tqu6Zqq#:Nss8N&urr)isrqucrrr2p"rr<#tp\t?ps8W)nrrE&trrE&r +rrE&prs/Q#a+eV^]CGat!<2lq!<2ut#6+Z%s8N&tr;Zcq!WW/rrs&K&rr;utrqHHmrqcWsrr;ut +rr)rurr2p-j]=`?UY",Mf\,3LmHj3;m/ZMLm/lYAm/-2Lli?GOm/65Nm.p#Km/HAUm-X3,mHjZ9 +s6KdRm/65Qm-X0+r9XLNqX"@NmHj`;rp0XPrTsIL!:9OK!:9^P"mkXDm-X08mJlMRmHjc<"75FA +m/65Nm/$)Nm-X0=m/uY4g=Q5S$J)7c6:"l1rVuosrVmE-s8N&urr;utrr2rtrr;uprs8W(s8N&t +s8N#sruh=@s8MkXT!u;C]=Fu$IXHNgG^":OEH$,`U3_Ep[YgCE`WWW`bLtSJgAfh,g=c/Q"0,&? +rr2p"rr<#trVm!!s8W)prrE&grrE&srt#,/rr<#ts8N&trr<#ts8Moq#lal(rr;utrr2os"9/?# +rr)j!rr<#tqYu'~> +rr<#trVuosrr2utrr<#tqu6Zqq#:Nss8N&urr)isrqucrrr2p"rr<#tp\t?ps8W)nrrE&trrE&r +rrE&prs/Q#a+eV^]CGat!<2lq!<2ut#6+Z%s8N&tr;Zcq!WW/rrs&K&rr;utrqHHmrqcWsrr;ut +rr)rurr2p$k%%:kXl'*8!9JdueEd8%jl-3r%cH7&hqk_W;Gh,_rVuosrVmE-s8N&urr;utrr2rt +rr;uprs8W(s8N&ts8N#srs/Q's8Mnf>Yk>q'i.l*a2Pj0^:_"d[^;`F6BQjl9N@\Xb7hh?f](oN +io9"XioB(Yj5].Zio9ps"1_[brr2p"rr<#trVm!!s8W)prrE&grrE&srt#,/rr<#ts8N&trr<#t +s8Moq#lal(rr;utrr2os"9/?#rr)j!rr<#tqYu'~> +rr2utrr<#ts8W)ts8W,urr33%s8W)us8Mlp!<2ut!<2ut!<2ut"TJH$rr;uss8W,u!rr9!q#CBn +s8W,u"98B#rr2p!rr;urs8W'!s8Mrr#l`nVFEjADrVl`p"9/?#rqud"rr;uts8Mrrrr2fp!WN,t +rqufqrW3&ur;Z`p!WW/is8W'&s8B/b1JtFTcNDncm-X`;s6TgQqsFFM!q#@@qsF=JqsF@KqNm/ZMMmJlMSmHj3:mJQ>JmJZDImJcG[mHj3,m-X0+ +mHj3,rp0pXm-X3,mHj6-r9XIN!:9UM#OLd?jP/&-ci25icO.t7Lc$tHB%R%^s8N#srrE&ss8N#m +rr`9#rr2Zl!<2or$NAg^4C;Z3ARe4?p&G@5.0Ur#APZR;pU:3uZGHOfpX0&hr6kVm"J.j$s8Mrr +!<2fos8E'!rqQNnrqZTnrr2otrr)lrrqQKqrr;usp\t6mr;Qcrq>^Ko!WW/us*t~> +rr2utrr<#ts8W)ts8W,urr33%s8W)us8Mlp!<2ut!<2ut!<2ut"TJH$rr;uss8W,u!rr9!q#CBn +s8W,u"98B#rr2p!rr;urs8W'!s8Mrr#l`nVFEjADrVl`p"9/?#rqud"rr;uts8Mrrrr2fp!WN,t +rqufqrW3&ur;Z`p!WW/is8W'&s8B>t6!_)"fE:$rm-X`;s6TgQqsFFM!q#@@qsF=JqsF@KqNm/ZMMmJlMSmHj3:mJQ>JmJZDImJcG[mHj3,m-X0+ +mHj3,rp0pXm-X3,mHj6-r9XIN!:9UMs6KjQkMY%kf`'J/bE>4Y6uU`Ws8W)trr2utrVulrq#:Hq +s8N#lrrE&rruV0rL8),f]=YVPKm\5mG^":OEGo`2I?JB%[(<8X_=tnMZG=Z^fa-^Hnrr2utrVulrq#:Hqs8N#lrrE&rrrE&os8W'!s8N#t +J,~> +rr2utrr<#ts8W)ts8W,urr33%s8W)us8Mlp!<2ut!<2ut!<2ut"TJH$rr;uss8W,u!rr9!q#CBn +s8W,u"98B#rr2p!rr;urs8W'!s8Mrr#l`nVFEjADrVl`p"9/?#rqud"rr;uts8Mrrrr2fp!WN,t +rqufqrW3&ur;Z`p!WW/is8W'&s8BN3;/=)Ihui'*m-O`;!UT.Im/H>Hm/H>Nli?ALm/QAQm-F!6 +liZS?lg4W:s6T[L"RPI?m-FZ;!:0UMrp'UOlhKiGlhToHli6;Olhp,LlN6G=lh]rMlg3s(rp0UN +r9FLPlg*p'rp0XNrTsOL!UT.Im/QAQlKI@+i;_[@e=9H7;gI*rs8W)trr2utrVulrq#:Hqs8N#l +rrE&rruV0uY@^I(:f'q`WPl]i^:_"d[Bm-AOB&&r9M\3'`qRUW_pI'8iqqd8iWA0"iqqa=\QmS_ +rqucrrqZTorW3&uq#CBnq>^Hnrr2utrVulrq#:Hqs8N#lrrE&rrrE&os8W'!s8N#tJ,~> +s8Mus!<2or!ri6!rr2utrr<#ts8W&srVllsr;ZfrrVulrrr33%s8W)ts8Mio"9/?"rr)isrqucr +rr)lqrqZR%rr(T0E.Gjtrr;usqu?]q!WW/qrs/Q'rr2rtrr2]m!<2ip!<2`ms8E*"rr2iqs8N&u +!<2or!<2rs#6+%>2)8jdrQbPlg#dkPl0JN3jll"+lj2e7hqHW-cd0o8cO.tDX_g'R1Oe*Wrr)is +rqucrrq$-lrr<#trVm!!s8W)nrs?(S+\6$R@R_FBp&G@'$kGU5AmS6/pU10uZbb&bdKItGdF-G? +dKItGSj1EgrrrE%rr<#trVllsrVllsrVllsrVllsr;QcroD\pls8W)srr`9#s8MNf#6+Z%s8W)u +J,~> +s8Mus!<2or!ri6!rr2utrr<#ts8W&srVllsr;ZfrrVulrrr33%s8W)ts8Mio"9/?"rr)isrqucr +rr)lqrqZR%rr(T0E.Gjtrr;usqu?]q!WW/qrs/Q'rr2rtrr2]m!<2ip!<2`ms8E*"rr2iqs8N&u +!<2or!<2rs#6+(F6U>b?r7D&-k^i*bliZA4l0J34"R5(/i8"=a!8%2%$J3q>GXk%cL"uY+rVlls +r;QcroD\pls8W)srr`9#s8Mfn*P-K\WOTRMViH4QH$FOUF)c/:Chdj-F.g(U[!o@\`;mjR`<3E] +bLujJ!87A*!87>)rn7>*"PMM/9[<2."oeQ$s8W)srrE&srrE&srrE&srrE&rrrE&irr`9#s8Mus +"9/?#rp]plrr;uts8N%K~> +s8Mus!<2or!ri6!rr2utrr<#ts8W&srVllsr;ZfrrVulrrr33%s8W)ts8Mio"9/?"rr)isrqucr +rr)lqrqZR%rr(T0E.Gjtrr;usqu?]q!WW/qrs/Q'rr2rtrr2]m!<2ip!<2`ms8E*"rr2iqs8N&u +!<2or!<2rs#6+(N;G_hqr87Y;l0J*1s6KUL"7,=>lhKiHlhg#Mlg3s0li?AIm/QDHli?AGm/QDL +liZS?lg+?4s6KRK!pf4=o]uSDq<\.Iq!81Mm-!Ttlhp,LlNZYgi0B"oeQ$s8W)srrE&srrE&srrE&srrE&rrrE&irr`9#s8Mus +"9/?#rp]plrr;uts8N%K~> +qu6s$s8N&urr<#tqu6Zqp\t6mqYpQprVm!!s8N#krrE&ms8W)ps8W&us8DrsrrE&srseu-s8M`2 +Kl`C0r;ZfrpAb0lp\tHss8W)us8Mus#6+Z&rr2rsrVm'#s8N&urqcX!rr<#ts8W)nrr`9#s8N#t +#l`RN1H'HpcHcF8"4H&jlh]rJli$/Mli$/Mli$/MlhKfHli-5Nlh9ZFlhTlKlg3s2li?AGli?AM +li?AMli?AMli?AHli?ANli?AFli?AIliQM>lh9ZMlg3ufdF-LprRh;*eC)bDcN)8ici23"b.<-n +2D[gjmf*7cs8W)orr`9#s8N#t!<2ut"9/?"rpKdmrMpV@5@Inc&H_\,$3:G8$o;'uARS&spU(4" +Zbb&:da@R4!hMX"q#CBns8N)un,ECerr3*"s8W)orr`9#s8N#t!<2ut"9/?"rp9[brr;uurqQMD~> +qu6s$s8N&urr<#tqu6Zqp\t6mqYpQprVm!!s8N#krrE&ms8W)ps8W&us8DrsrrE&srseu-s8M`2 +Kl`C0r;ZfrpAb0lp\tHss8W)us8Mus#6+Z&rr2rsrVm'#s8N&urqcX!rr<#ts8W)nrr`9#s8N#t +#QELZ5t$:JfDX>(g>_A_qWn4JrTjOMrTjOMrTjOMq!8"Hrp0XNp?VeFqj~> +qu6s$s8N&urr<#tqu6Zqp\t6mqYpQprVm!!s8N#krrE&ms8W)ps8W&us8DrsrrE&srseu-s8M`2 +Kl`C0r;ZfrpAb0lp\tHss8W)us8Mus#6+Z&rr2rsrVm'#s8N&urqcX!rr<#ts8W)nrr`9#s8N#t +#6*Ii;,`G'rnmb6!o`;,Ja;Xf!94":!9="-I\B#K+p@ioB(Yir7s? +ioB%XrSmn;rSmsi>giEIs8N&u!<2He!<2ut"9/?#rqZQrrr<#trr2utrr3*"s8N#as8W)urrE&n +s*t~> +r;Hm"rr;utrr2p#rr;utrr2otrr)iurr;usrsSi+rr;utrr;utrr;uss8N)urr3-#s8W)trr33% +s8W)us8Mus!<2ip"9/?#rr2p"rr<#trr39's6c_)G-(*1rr2utqu6ZqqYpQpp\t6mrr3-#s8W)t +qu6ZqoD\giqu6ZqqYpQprr2utqu6p#s11]V2f68,cOeCJeD]WWm-F$)lg3s(lg3s8m/QDOm/QDN +liQM>li-8Nlhp,LlNZ_Am-F$)li-5Nlhg#Klhg&Kli-8Nli6;[lg4!(m-O')lg3s(lhp,Lli6>O +li-5Plg3s:m/QDLm/QAUm-F$(m-O';li?AKli?AKm/QDNm/QAWm+9P/cd'k_cMl,kcHjf5cO.n. +TlraY1,E:[qu6Tqrqufrrr;uurr)isrr2p"rr<#trr2utqu6j!s8N&urqcX"qkk8A8n17#o`,=9 +3\X$/AS,Ob5)f6C"/<-qdF-F65Ki^!"TJH#s8MWi!<2ut!<2ors8N&u!<2rs!<2ut +"9/?#rr2otrql^!rr;uts8MZj"TJH#s8MrrJ,~> +r;Hm"rr;utrr2p#rr;utrr2otrr)iurr;usrsSi+rr;utrr;utrr;uss8N)urr3-#s8W)trr33% +s8W)us8Mus!<2ip"9/?#rr2p"rr<#trr39's6c_)G-(*1rr2utqu6ZqqYpQpp\t6mrr3-#s8W)t +qu6ZqoD\giqu6ZqqYpQprr2utqu6p#s1D5q7!Q]LfFZZegZ7Vbm-F$)lg3s(lg3s8m/QDOm/QDN +liQM>li-8Nlhp,LlNZ_Am-F$)li-5Nlhg#Klhg&Kli-8Nli6;[lg4!(m-O')lg3s(lhp,Lli6>O +li-5Plg3s:m/QDLm/QAUm-F$(m-O';li?AKli?AKm/QDNm/QAPm,%`o"4u2XfDaG&fDaD&fDaD0 +eASA<:I.63C!6DQrrE&rs8W)urrE&srrE&trr`9#s8N#t!<2lq"oeQ$s8W)pruh3DI>k2:VhTSG +H$FOUF)c,9CheEjOf#Ot]=YV,S&<,?_ZdopZG=Z:rn7A*p=]c)g=b35W_C_1rri?$rr;uhrrE&t +rrE&rs8W)urrE&srrE&trr`9#s8N#t!<2lq"oeQ$s8W)jrri?$rr;uqs*t~> +r;Hm"rr;utrr2p#rr;utrr2otrr)iurr;usrsSi+rr;utrr;utrr;uss8N)urr3-#s8W)trr33% +s8W)us8Mus!<2ip"9/?#rr2p"rr<#trr39's6c_)G-(*1rr2utqu6ZqqYpQpp\t6mrr3-#s8W)t +qu6ZqoD\giqu6ZqqYpQprr2utqu6s$s1i#><.rQSr87k>kNV9tlKdd$r9FIMlg*j5lN6A;lLsNG +lKdd$r9FFLlg"92!:'II"7#4u=EqFjBm`rrE&rs8W)urrE&srrE&t +rr`9#s8N#t!<2lq"oeQ$s8W)prttXG]!,%,>,]BV^qRIl\@/`KYH<[UCJ%8!:]sQdUWCLSa8j9[ +a90?,f])nj!93_4#NFe'j5[[Tde*PBrr;utrq$-irr2otrqufrrr;uurr)isrr2p"rr<#trr2ut +qu6j!s8N&urq-3nrr;utrqueH~> +"9/?"rqHEmrp0Rarql]srr;urrrE&rrrE&srrE&orrW3"rr2rtrqucrrqHEsrp$.sID,CSs8N!! +s8N#srrW3"rr)isrr)isrpg!lrr<#ts8Mus!<2ut!ri6!pAY-lrr2utrVulrqu7Q5s7`N]1GrXO +cHab]cd0thhWX=mlg3s(li-5Qlg3s'qdF$CjdJD8m +dF-G>dK6")bPqPArr +"9/?"rqHEmrp0Rarql]srr;urrrE&rrrE&srrE&orrW3"rr2rtrqucrrqHEsrp$.sID,CSs8N!! +s8N#srrW3"rr)isrr)isrpg!lrr<#ts8Mus!<2ut!ri6!pAY-lrr2utrVulrqu7!%s7`Zm5soP+ +fDO8.g"bTOm-O')lg3s:liZS?lg+B5"7,=?li-5klg3s'm-O')m-F$(lg3s(lg*p'lg3s(lg3s( +m-FW:"mbO@m-F!5licY@lg3s:liZS?lg+B5"7,=?li-5klg3s'm-O')m-F$(lg3s(lg*p'lg3s( +lg3s(m-FW:%dWKIm-F!(m,?UK_6h5/rn%5&qq)>.`2.fj:-h-2:6s`8rr2utrr2utrVm-%s8W)u +rr<#rrqcWprql]srr;urs8W)urtkO8I>+)gP'q\&G^":OEH#f3C1qskYdOGA!kO&PpVI0@^rtEa +g=b0Tg&Th'g&p$.9[UHoq>UHorr2utrVm-%s8W)urr<#rrqcWprql]s +rr;urs8W)urrW3"rqcWprqueH~> +"9/?"rqHEmrp0Rarql]srr;urrrE&rrrE&srrE&orrW3"rr2rtrqucrrqHEsrp$.sID,CSs8N!! +s8N#srrW3"rr)isrr)isrpg!lrr<#ts8Mus!<2ut!ri6!pAY-lrr2utrVulrqu6s$s7ip,;,Vb_ +rSRV4"leY.lg*j8lNZY?lg!g$lMKlMlKdd$lM9`GlMTrJlMKoIl2^/Kl3HY?lg!g%lK\B7!:'OK +!:'CG!:'RL#3tO?lKda#qs+CMlg*j$qZ"

    b0dOrr2utrr2utrVm-%s8W)urr<#rrqcWprql]srr;ur +s8W)urtkOE]#8niMSd9H^:_"d[^< +\QmS^s8W)urrW3"rqcWprqZQorqZQorr2otrr)j%rr<#ts8N&ur;QQm!<2lq!ri6!rVuoss8N0" +s8Mlp!<2orJ,~> +!WW/srr`9#rr2Tj!<2or%K?D-rr;uts8N#trr;uss8W)ss8W)prrE&qrrE&trrE&srrE&rrrE&p +rsJc*rr(l:EfSlOs8Muts8N#trs8W(rr;uss8W)qrrrE%rr<#trVuos!<<#ss8N-!s8N#trrE&s +rr`9#s8Mlps8E6&rr;uss8W)t!<<&ts8NT.s8N&trqa;t1G_UY_p8/*%FNeaj6#Ogl0@QulKmj4 +m/QDKliZS?lg+H7!pf4>rTjLMs6CHelep:Llg*HYi8`>?l0I]feE#oLf<u.-p6dkeYI/m+Bh; +i9]dgf$r=2m-Eojd*ge:m-E6Pj6Z-ahWsOom-O]:s6TdO"RPI?m-O`;!UT.Nln%Jhlg4!(m,-+6 +Q9%)i:3)#OS=#.]DdGRg3&EEI4&UdfqYpKorr;uss8N&qrW<-!rr2ourr;rr!WW/us8W)ts8W)t +rtGD3rr2rss8N&rWYYX:'d+M<,Tc^\$3:kk03)RqAl_-WpTb$tZbb&;da?J@df7_ndK%\ndLaft +5Kj'*s8N&ts8N&urr;uprsA])rr2rss8N&urr*0&rr;uss8N&qrW<-!rr2ourr;rr!WW/us8W)t +s8W)trso&.rr2rss8N&ts8W)urql]trr;usJ,~> +!WW/srr`9#rr2Tj!<2or%K?D-rr;uts8N#trr;uss8W)ss8W)prrE&qrrE&trrE&srrE&rrrE&p +rsJc*rr(l:EfSlOs8Muts8N#trs8W(rr;uss8W)qrrrE%rr<#trVuos!<<#ss8N-!s8N#trrE&s +rr`9#s8Mlps8E6&rr;uss8W)t!<<&ts8NT.s8N&trqaE.5s\M6bh)jH$J3q_g"kZMkih9qrosRN +m-FK6s6KRK"7,=>lhg#Mlg4!:li6>OlPAjQi7-WLleg7Nj4)cHlg36QjQbLNk5O]qlg4!%_9;33 +f[SF/m-EW]eCW^Hlfm0Ndba +!WW/srr`9#rr2Tj!<2or%K?D-rr;uts8N#trr;uss8W)ss8W)prrE&qrrE&trrE&srrE&rrrE&p +rsJc*rr(l:EfSlOs8Muts8N#trs8W(rr;uss8W)qrrrE%rr<#trVuos!<<#ss8N-!s8N#trrE&s +rr`9#s8Mlps8E6&rr;uss8W)t!<<&ts8Nu9s8N&trqaN?;,LhneDK3Ai8EMNi8Wk]kl0iFlM^&K +lMKlIlMTrulKdd$lg!g$lKdd$lg!g$lKdd$lKd`me(sr\kh=A1h1L,C-ir&iUs8W)us8Mio!<2ut"TJH#s8N#t!ri6!rr2utrr<#ts8N3#s8W)trt#,/rr<#t +WY#42*_9.+:GDGA#73e'?tNA)RJ3rgTsMS_qpGJlr6c,'da?Ljda?L75KUHorr3-#s8N&trr3'!s8N#t!<2uts8N&u"9/?#rr2p!rr;uqrrE&r +s8W'$s8N&ts*t~> +rVuosrVllsrr;usrr3-#s8N&tr;Zfrrr3?)s8N&urr2rsrr;us!rr9!pAY?rs8N&urr;usrVlls +rr2utrr;usrVm0&r76mIO5g0(NAhqmJ]m-F!5liQM>lhg#K +lhp)Lli$/Nlg4W:)slnWlcEg_h;WcY`5+WLf^.Ee5.fp#$+n?m-/+GT'Yf[OQc$/liHG=rp'aSlg3s(lhg#Zlg3s(m-F$)lg3rrf[m/nnNdRpL99M6 +s8N&urr<#tq>UHorr3-#s8N&trr3'!s8N#t!<2uts8N&u"9/?#rr2pBrr;uts8K6AJ: +rVuosrVllsrr;usrr3-#s8N&tr;Zfrrr3?)s8N&urr2rsrr;us!rr9!pAY?rs8N&urr;usrVlls +rr2utrr;usrVm0&r76mIO5g0g,lN?G +rr2utrr2utrr3K-s8W)us8N&urr2rtrr2os"9/?#rqufrrr<#urr2p,rr;uss8N&urr;uts8MTh +!<2rss8N&urr2rtrr*)NKlW@9rql^(rr;uts8N&urr<#trqcWurr;uts8Mus$NC))s8N#trr<#t +rVlrus8Mus"oeQ%rr;umrrE&prrW3"rr2otrr2p1rr;utqqQoc1H%m[[)pV=cd'l9cMPofhUq-. +kCO;5[4[!k^&SS0lD+R`X5cntbPUTKRSq`&lahZeTB^8MY0!Silb=H+]!!hKd-*k!/B6sKE9?*E +$.mJKYtHl14$#D$2\S/23]fH/R_IhRrVulss8N&urr;us!<<#sr;R*&s8W)urr;utrr2p?rr;ut +rr;uss8N#trr;utrr2rtrr0bf!!"W[AnG@.!VQKu!\#ch@6mkhpTOdoZGFr9rR(\nrmChpdf.W* +d*KqS]!%MdZL.Pgrr<#trr)lsrWN9#s8N#rrrE&trs/Q's8N&urr;us!<<#sr;R*&s8W)urr;ut +rr2p4rr;utrr;uss8N#trr;utrr2rtrr2lrs8E0$rr;usrVqB~> +rr2utrr2utrr3K-s8W)us8N&urr2rtrr2os"9/?#rqufrrr<#urr2p,rr;uss8N&urr;uts8MTh +!<2rss8N&urr2rtrr*)NKlW@9rql^(rr;uts8N&urr<#trqcWurr;uts8Mus$NC))s8N#trr<#t +rVlrus8Mus"oeQ%rr;umrrE&prrW3"rr2otrr2p0rr;utqq[3"5t"h8^!bNaf[ouP"4u2Xin3Q2 +kCO;5[4[!k^&SS0lD+R`X5cntbPUTKRSq`&lahZeTB^8MY0!Silb=H+]!!hKd-*k!/B6sKE9?*E +$/O4c\lV0b84Q/J7K5mX8If=(_W:=es8N&urr<#ts8Muts8DrprsA])s8N&ts8N&trr4eRs8N&t +s8N#trr2rss8N&trr<#trl0/1I%%OV]=",KE,KK,BP1pf@pr_PLl\@@Ui!I4^B:aUbLumKs4R8& +s4RG)%b8nF]r"K2mJHn^s8W)trVuos"TSK$rr2lr!<2ut#QFc'rr<#ts8Muts8DrprsA])s8N&t +s8N&trr3`4s8N&ts8N#trr2rss8N&trr<#trr)lsrWN9#s8N#rs*t~> +rr2utrr2utrr3K-s8W)us8N&urr2rtrr2os"9/?#rqufrrr<#urr2p,rr;uss8N&urr;uts8MTh +!<2rss8N&urr2rtrr*)NKlW@9rql^(rr;uts8N&urr<#trqcWurr;uts8Mus$NC))s8N#trr<#t +rVlrus8Mus"oeQ%rr;umrrE&prrW3"rr2otrr2p.rr;utqqmT;;,_(p`nK>-rSR\5qVVA8p$2VC +qs+CMlg!g$o]nd-lg*j!Je=BX/qE&t!">:\U]gb!j%U]?lg!g$lfsm8f';S3JfC +!<2rs!<2or!<2rs!<2ut!WN,urr2ourr;uss8N0"s8Mrr!<2Zk"oeQ%rr<#trW3&uqu6Zqrr2ut +q>UHorr3Q/qp]e2U%SHbs8N#trr<#trr<#trVllsrVm0&s8N#ts8N&tqYpQprr2utqu6cts8W)p +rrrE%rr2rsq>Ua"s8N#trr<#tqu?]q!WW/trrW)/>5g;]3+8,]_92W#"O>9;gZnY$!:'LJ"R>== +lK\<5!:'RLrp'LKs6;r:lK[^#leH#32I,8,^'Q8db;pdHX5cntbNeEZlKdV'Ic]n\la%e,i\2sW +_Un#8FsFZclCo)Sk!VTi8_HdVk3N$3rp0UL"RG@-dF$7\`4rpoZ*:gXc(7/%f\c?#r;Zfrqu6cts8W)s +rrE&srrE&ts8W)urrE&qrrE&trrrE%rr<#trr<#t"TSK$s8Mus!<2or!<2fos8Moq"oeQ%rr<"K~> +!<2rs!<2or!<2rs!<2ut!WN,urr2ourr;uss8N0"s8Mrr!<2Zk"oeQ%rr<#trW3&uqu6Zqrr2ut +q>UHorr3Q/qp]e2U%SHbs8N#trr<#trr<#trVllsrVm0&s8N#ts8N&tqYpQprr2utqu6cts8W)p +rrrE%rr2rsq>Ua"s8N#trr<#tqu?]q!WW/trrW)2A,\b+7Vna4aj\npf@\a-f\"d,i9L1)!:'LJ +"R>==lK\<5!:'RLrp'LKs6;r:lK[^#leH#32I,8,^'Q8db;pdHX5cntbNeEZlKdV'Ic]n\la%e, +i\2sW_Un#8FsFZclCo)Sk!VTi8_HdVk3N$3rp0UL"RG@*lLVGkSiUZ,"Q9g=k6Xg(N)ida$"U`4iq(cIJpgYh7k* +rqufrrql]trr<#trVllsrVllsrr<#ts8N)uqu6Zqrr30$s8N&urr2rtrWN9#s8W)srrE&rrrE&o +s8W)qrrrE%s8N&uJ,~> +!<2rs!<2or!<2rs!<2ut!WN,urr2ourr;uss8N0"s8Mrr!<2Zk"oeQ%rr<#trW3&uqu6Zqrr2ut +q>UHorr3Q/qp]e2U%SHbs8N#trr<#trr<#trVllsrVm0&s8N#ts8N&tqYpQprr2utqu6cts8W)p +rrrE%rr2rsq>Ua"s8N#trr<#tqu?]q!WW/trt,(DDc'>.iFt]#qAfp3["L(i_:T>r9=CH7t'Lul5R&RT&D@TTYf=EkB8)^lKY)[N93Mr/kO_iE9?-E!9sL@ +&']/mHJ70#]XbSif%KE]rr)isrr)isrr2rtrr;uurql]qrr2p$rr;uts8N#ts8E0$rr<#trVlls +r;QcrqYqQ(T>SO.78H`V:3ND8XfA=sUnOEOR[BD*;b'N7p;7rgd+I@dW/@o`"dgs8Moq"9/?#rr)isrr)isrr2rtrr;uurql]qrr2p$rr;uts8N#ts8E0$rr<#t +rVllsr;Qcrq>^Koqu6j!s8W)us*t~> +s8N&urr)otrVl`ps8N#t!<2uts8N&urr2os"oeQ%rr;urrrE&qs8W'"s8N&srY#81s8N&urr;ut +rr2rtrr2rtrql^(rr<#sdY2_7mf3=ds8Drss8W)us8W'"s8N#srrE&rrrE&trr`9#s8N#tr;QHj +#QFc&s8W)urr)isrqHEnrr;rrs8W,urr2utqu6Zqrr3)uf5s1T1D2ZF?YXM7R&I3iR=(@Fg$.hg +lMBfHlM^#KlMg)LlMTrLlKda6lN$5KlN$5LlP&Qg)\\n/lb4='/UCHA!3>-S+j9fL!lHJ'rTbK1 +,+e+f+<)k"TAi9fcKjf6&7a`gA!7Ri95s%ZlM^#KlM^#KlLF3?lMp/MhYth(_-o-+i;W`Prr`9# +s8Mrr!<2lqs8N&urVdE/rr<#ts8W)ts8N#ts8N&urr)j"rr;utrqufrrXo20rr;urPmdX!1.l(h +AQCJeo`-3l9/r';YHG(4Y-+t2YHOV*_9pZYdF-Fb`43+[\\#Pnaj/<5dL;^3Xk;7]o)AXgrr<#t +rr)j$rr<#ts8W)rrrE&qs8W)us8Dp/s8N&urr<#trr;uss8W)us8Mus"TJH#s8Mrrs8E6&rr2rs +s8W)trVm'#s8W)us*t~> +s8N&urr)otrVl`ps8N#t!<2uts8N&urr2os"oeQ%rr;urrrE&qs8W'"s8N&srY#81s8N&urr;ut +rr2rtrr2rtrql^(rr<#sdY2_7mf3=ds8Drss8W)us8W'"s8N#srrE&rrrE&trr`9#s8N#tr;QHj +#QFc&s8W)urr)isrqHEnrr;rrs8W,urr2utqu6Zqrr3l6fR$1U5sRkFCNb&eTs;)7UP>Glhs'Im +lMBfHlM^#KlMg)LlMTrLlKda6lN$5KlN$5LlP&Qg)\\n/lb4='/UCHA!3>-S+j9fL!lHJ'rTbK1 +,+e+f+<)k"TAi9fcKjf6&7a`gA!7Ri95s%ZlM^#KlM^#KlLF3?lMp/Mir7R5b&'FWiVriQrr`9# +s8Mrr!<2lqs8N&urVdE/rr<#ts8W)ts8N#ts8N&urr)j"rr;utrqufrrZ_CArr;urS99+*S#X'3 +]!.E9BP1pf@pr_N>[(B6OfEDn^&>YQ]tV4o^:pkfbLtS&rn.Y-cG[K6`5]mDdanBM%'!"*f[nsM +rr2rss8W)trVm*$s8W)us8Mrr!<2lqs8N&urVdE/rr<#ts8W)ts8N#ts8N&urr)j"rr;utrqufr +rW`E%rr;uts8N#rrrrE%s8N&uJ,~> +s8N&urr)otrVl`ps8N#t!<2uts8N&urr2os"oeQ%rr;urrrE&qs8W'"s8N&srY#81s8N&urr;ut +rr2rtrr2rtrql^(rr<#sdY2_7mf3=ds8Drss8W)us8W'"s8N#srrE&rrrE&trr`9#s8N#tr;QHj +#QFc&s8W)urr)isrqHEnrr;rrs8W,urr2utqu6Zqrr3)ug4WT-;%?TBG_:gAWk#pZXHKX?j8S1]IioB(0>dW/8h=CRE +s8N&urr2lr#6+Z&rr<#tr;Qcrqu?]qs8W&s&c_k1s8N&urr2rsrr<#ts8W)srri?$rr;uqs8W'& +s8N#trr<#trr)j#rr<#ts8RT~> +!WW/trs/Q'rr<#trr;rrrr2utp\t6mnG`Lfrr2utrr<#ts8N)urr2utrVm0&s8N&ts8W)trr<#t +rVm*#dBY/lKY\rQK:MGdpCgAR-tlo`,(> +2,C:HXUq/2^WXa;]X=iJ]>_t +!WW/trs/Q'rr<#trr;rrrr2utp\t6mnG`Lfrr2utrr<#ts8N)urr2utrVm0&s8N&ts8W)trr<#t +rVm*#dBY/lKY\rQK:MGdpG>?Y-0K9'o^p:VZS^rk0Tc,[Z3_8agNf%8R-g=k66g=b2[9X*1$f\>lps8Mrr!<2rss8N#t +"TJH$rr2lr"TJH$rr2lr!<2]l!<2]l!<2rs!<2rs!<2lq!<2or!<2rss8N#tJ,~> +!WW/trs/Q'rr<#trr;rrrr2utp\t6mnG`Lfrr2utrr<#ts8N)urr2utrVm0&s8N&ts8W)trr<#t +rVm*#d$"U\guIYsl2^)GlMp,Il2^)Jl2^)G +l2^)IlMp,Kl5o3TlJH4f'4K_]]c4)/)iKCMWo?_rb3J9Vl/dDGk5OWcl*DS*l/B^YGV(&\;('HL +l*;=qj@!P->nI?]jo4NFl2BoIl2U#Kl2KrJl2KuJklC#Jkm$G;lKRTuir7j=e9k)2i;W`Vrr)ls +rr2p#rr<#trr)j"rr<#trr)isrq??lrq??lrr)isrr)isrql^9rr;&L]Xt%R9hnJXD5O8/UnOEO +S!]M+P)j-EEPV:b%`-NDhVHo8d*'ecg>:cHro+">ioC$t$FsEKf[nd1n,NFer;QcrrVuosrr3-# +s8W)trVm$"s8W)trVllspAY-lpAY-lrVllsrVllsqu6Zqr;QcrrVuosrr7K~> +"98B#s8N#ms8W)qrrE&crr`9#rr2`n"TJH$rr2]m!<2rs!<2rsrr2lr#l`Y4Fe84(s8MKe!WN,t +rW3&uqZ$Tprr<#trr<#tqu6ZqrVllsrVuosq#:Eps8MQg!<2uts8E#urr2os')q=1Jo"FC1GU^A +1,C[AG0A=qpZ_bCrosLJq<@tEr9F=HpZai:0T(MpU$960Y0W]fLB+@69cgahce[j&.DY34jk8FH +'r9iHb2(NA(=ArnL"aja*OY&uADk*K!-%'!lMp,Al2p58lMg&Il2^)Jl3lk8dEg+`_I>9*hu +"98B#s8N#ms8W)qrrE&crr`9#rr2`n"TJH$rr2]m!<2rs!<2rsrr2lr#l`Y4Fe84(s8MKe!WN,t +rW3&uqZ$Tprr<#trr<#tqu6ZqrVllsrVuosq#:Eps8MQg!<2uts8E#urr2os"odu'M032)5lj5: +r]gTPJ^iE9pZ_bCrosLJq<@tEr9F=HpZai:0T(MpU$960Y0W]fLB+@69cgahce[j&.DY34jk8FH +'r9iHb2(NA(=ArnL"aja*OY&uADk*K!-%'!lMp,Al2p58lMg&Il2^)Jl3lk;g"=p/bAKUXi;W`U +!<2cnrr2rt"9/?"rr)j!rr;usrr;uss8N3#s8N#qrrE&qs8W)qrrE&srr`9#s8N#t)5D+mF*$+g)DfD0<]EkaV_o'=1c-tABg&Th)g'-0VeYl$Crn%>)h"q$LrrE&rrrE&p +s8N#trr`9#rr2lr"9/?"rr2rsrr +"98B#s8N#ms8W)qrrE&crr`9#rr2`n"TJH$rr2]m!<2rs!<2rsrr2lr#l`Y4Fe84(s8MKe!WN,t +rW3&uqZ$Tprr<#trr<#tqu6ZqrVllsrVuosq#:Eps8MQg!<2uts8E#urr2os$3'D/P(.4C;,C*e +;$2d4iTU%$!9sLJ!9s=E!9sFHs69:C4/FWgKFjjA]c4-#T$iAoWo?_o[a3:Ul,"mbl07<_gkliB +iekn7dnU\+V%n^)h"q$LrrE&rrrE&p +s8N#trr`9#rr2lr"9/?"rr2rsrr +!<<&tr;QcrpAY-lrr;usrVlrus8M]ks8Mrrs8N&us8N#t!<2ips8Mrrs8E'!rqud#roTAbSF-=S +s8W)lrrN-!rr2oss8E*"rr2iqs8Mlp!<2ips8N&u"TJH$rr2`n!<2cns8M?as8Mus')qUigrI7< +WL9-.5;RK+cedsOqs"@LlKRU!l1sWDklL)6p$)qLeLOAEcTX>6]cFPjluI'ros4Cr947Ee,@T!]3-q'kPtP]rr2`n +s8Mus!<2`m!<2ips8Mfn!<2cnrVlKi$K#7u!!!s6AQ^D_p](Hu%Kd85P4bj_TX2AWd*g=hda?M? +d0n17X-e0U[Z<5Hf[p,T!U'F[rrW3"rqQNnrr)isrqHEmrqcZprqQKnrqQNlrq-3lrr;ums*t~> +!<<&tr;QcrpAY-lrr;usrVlrus8M]ks8Mrrs8N&us8N#t!<2ips8Mrrs8E'!rqud#roTAbSF-=S +s8W)lrrN-!rr2oss8E*"rr2iqs8Mlp!<2ips8N&u"TJH$rr2`n!<2cns8M?as8Mus')qUjh93dI +Xe),C90e$Wf])2\qs"@LlKRU!l1sWDklL)6p$)qLeLOAEcTX>6]cFPjluI'ros4Cr947Fg\ob2`+;5Skl:Y^rr2`n +s8Mus!<2`m!<2ips8Mfn!<2cnrVlKi)W?BjEH$N3]!I<.A7K%T? +!<<&tr;QcrpAY-lrr;usrVlrus8M]ks8Mrrs8N&us8N#t!<2ips8Mrrs8E'!rqud#roTAbSF-=S +s8W)lrrN-!rr2oss8E*"rr2iqs8Mlp!<2ips8N&u"TJH$rr2`n!<2cns8M?as8Mus')qUjhp9HY +ZD=7Z>#C76i8s7gqs"@LlKRU!l1sWDklL)6p$)qLeLOAEcTX>6]cFPjluI'ros4CrTOCKki)O!$K''J;1.X.rr;us +q>^KorVllsp\t6mqZ$Tpq#:?nq#CojUpIM:NCco=EhfG)T:MI=QBRJlK8G%oVZ+C0_#V:K +_$A? +!ri6"rr2rt#6+Z%s8W)trVuosrr2uto`#-ps8W)us8Mus%0$;+s8N&urr<#ts8Mus!ri6!rVm!! +s8W)srrW3"rr2p#l\ohLn,E=arrN-!rr*0&rr2rss8W)rrrE&prs&K&rr<#trr2otrr)isrql^$ +rr<#ts8N#ts8N#srs&K&rr<#trqucsrr;us!rr9!rVllsrr3-#s8N&trVm'#s8W)urqufrrW_@W +1LnPQeb\P7l0@Nul08*1rTX4E!pT"8rTX:G$I6E9lKZm7dFu@erosX6^Y\2"rP'Z0fN":&lK[BG +T=3P?lJ&tEY1)V"l/fsYUsS>jl+bI*l/KM.l2KrLl0@R4l1jQDl2KrJl2Kr[l/pOAcd0n^RlW?U +pAY*lrr2Hfs8Mlp!<2lq"TJH$rr;oq!rr9"rr*N0rr;uts8N#ts8N&urr;utrr2rtrX%"O"98un +>$jAqqu@0/*@hdJ2(qj,4ApBfV>7+oT +!ri6"rr2rt#6+Z%s8W)trVuosrr2uto`#-ps8W)us8Mus%0$;+s8N&urr<#ts8Mus!ri6!rVm!! +s8W)srrW3"rr2p#l\ohLn,E=arrN-!rr*0&rr2rss8W)rrrE&prs&K&rr<#trr2otrr)isrql^$ +rr<#ts8N#ts8N#srs&K&rr<#trqucsrr;us!rr9!rVllsrr3-#s8N&trVm'#s8W)urqufrrW_@c +6#P-'g\U1=l0@Nul08*1rTX4E!pT"8rTX:G$I6E9lKZm7dFu@erosX6^Y\2"rP'Z0fN":&lK[BG +T=3P?lJ&tEY1)V"l/fsYUsS>jl+bI*l/KM.l2KrLl0@R4l1jQDl2KrJl2KrNl0$jSf`'J/V+3h- +pAY*lrr2Hfs8Mlp!<2lq"TJH$rr;oq!rr9"rr*N0rr;uts8N#ts8N&urr;utrr2rtrZ'I9D/OWi +ZaQE=@pr_N>[Vl:DM+R7AmS#5KqbsM\c]1PbLujJ$/*nUa1JLEM/uYq;\iGr]2iF\f\"g-f\ZE' +s8N#ts8N#trq$0irqcWprql]urr<#ts8;its8N&trXo20s8N&urr2rtrr<#ts8N&trr<#ts8W,u +!WW/rs*t~> +!ri6"rr2rt#6+Z%s8W)trVuosrr2uto`#-ps8W)us8Mus%0$;+s8N&urr<#ts8Mus!ri6!rVm!! +s8W)srrW3"rr2p#l\ohLn,E=arrN-!rr*0&rr2rss8W)rrrE&prs&K&rr<#trr2otrr)isrql^$ +rr<#ts8N#ts8N#srs&K&rr<#trqucsrr;us!rr9!rVllsrr3-#s8N&trVm'#s8W)urqufrrW_Cq +;0psSiqhpDl0@Nul08*1rTX4E!pT"8rTX:G$I6E9lKZm7dFu@erosX6^Y\2"rP'Z0fN":&lK[BG +T=3P?lJ&tEY1)V"l/fsYUsS>jl+bI*l/KM.l2KrLl0@R4l1jQDl2KrJl2BlLki1OYrne$b<`,"R +rr<#trpg$grqcWprql]urr<#ts8;its8N&trXo20s8N&urr2rtrr<#ts8N&trr<#t*8%!iZ'S?^ +93Rm[T:D@;O`joP@l%/-C0,&.WOho@&])iHioB(Yj5StKcbd&_NHJ5";\iH!`aiu,f\"g-f\ZE' +s8N#ts8N#trq$0irqcWprql]urr<#ts8;its8N&trXo20s8N&urr2rtrr<#ts8N&trr<#ts8W,u +!WW/rs*t~> +!rr9"qYpNp"oeQ$rr;uss8W)srrE&trrW3"s8N#rrrE&ts8W'!s8Mlps8E*"rr2fps8N&u!<2ut +!<2uts8Mrr"RMb#NTL$:s8E'!rr)lprW3&ur;Qlus8W)rrrE&prrE&frr`9#rr2corr2fps8E'! +rr)lqrr;uurqufrrqHEmrql^$rpWiB;9-u0kecQc_gBYGklU#"ci22pccKTO4gP(drVuiqp\t&o4]V.MfJe(<4NfE'h$rr2utr;Qits8Mcm!ri6!r;Qcr +rr<#trVuosr;Z]oqZ$Tprr3'!s8Mus!<2lq!<2or!ri6!rVqB~> +!rr9"qYpNp"oeQ$rr;uss8W)srrE&trrW3"s8N#rrrE&ts8W'!s8Mlps8E*"rr2fps8N&u!<2ut +!<2uts8Mrr"RMb#NTL$:s8E'!rr)lprW3&ur;Qlus8W)rrrE&prrE&frr`9#rr2corr2fps8E'! +rr)lqrr;uurqufrrqHEmrql^$rpX5[>gV-VkecQc_gBYGkmce3f[na-f[4M$9""ZtrVuiqp\t[VbLtRq_6TJbIW8cn +!rr9"qYpNp"oeQ$rr;uss8W)srrE&trrW3"s8N#rrrE&ts8W'!s8Mlps8E*"rr2fps8N&u!<2ut +!<2uts8Mrr"RMb#NTL$:s8E'!rr)lprW3&ur;Qlus8W)rrrE&prrE&frr`9#rr2corr2fps8E'! +rr)lqrr;uurqufrrqHEmrql^$rpaf$C"VA%kecQc_gBYGklKu-rnn(>i7`EQ=LnG1rVuiqp\tu +r;R!#s8W)us8Muss8N#t!<2ip%fZM.rr<#ts8W)ts8W)trr2utrVm!!s8W)ns8W'!s8N#t"oeQ$ +rr;uorrr%qF,\oQr;Zfr"98B#rr2p&rr<#ts8N&trr3*"s8W)trrE&rs8Dots8Mrrs8Mfns8E6& +rr;uts8N#t!ri6!r;Zfr"98B#rr2p&rr<#trr<#trr2utrr36&s8W)ts8W)qrseu-rr;^m1.oR4 +cf+*OrTOFJl0.@-kl^/6kih^(!9jFH!9jFHs60LI!pJn5roj@Gs60CFs6'OCgZJ@s"6f"5kl'`J +kiqo^q4Vt@9lo5 +r;R!#s8W)us8Muss8N#t!<2ip%fZM.rr<#ts8W)ts8W)trr2utrVm!!s8W)ns8W'!s8N#t"oeQ$ +rr;uorrr%qF,\oQr;Zfr"98B#rr2p&rr<#ts8N&trr3*"s8W)trrE&rs8Dots8Mrrs8Mfns8E6& +rr;uts8N#t!ri6!r;Zfr"98B#rr2p&rr<#trr<#trr2utrr36&s8W)ts8W)qrseu-rr;_$5uu=` +f];8[rTOFJl0.@-kl^/6kih^(!9jFH!9jFHs60LI!pJn5roj@Gs60CFs6'OCgZJ@s"6f"5kl'`J +kiq +r;R!#s8W)us8Muss8N#t!<2ip%fZM.rr<#ts8W)ts8W)trr2utrVm!!s8W)ns8W'!s8N#t"oeQ$ +rr;uorrr%qF,\oQr;Zfr"98B#rr2p&rr<#ts8N&trr3*"s8W)trrE&rs8Dots8Mrrs8Mfns8E6& +rr;uts8N#t!ri6!r;Zfr"98B#rr2p&rr<#trr<#trr2utrr36&s8W)ts8W)qrseu-rr;_1:h/,8 +i9'7erTOFJl0.@-kl^/6kih^(!9jFH!9jFHs60LI!pJn5roj@Gs60CFs6'OCgZJ@s"6f"5kl'`J +kiq@:rZN1dJbXI=HC>`[7`f\"g.fAHB's8Mrr +!<2uts8Mrr!<2uts8Mrr!<2uts8E3%rr<#trr2rtrqucrrr2rtrr2p&rr;uts8N&tr;Qlus8W)r +rrE&ts8W)us*t~> +rVllspAY-lqZ$Tp"98B#rqcWprqHHlrW3&uqu6Zqrr3*"s8W)trri?$rr;urrsSi+s8N#r\T<,Q +s8Mio!<2uts8Mio!<2]l!<2fos8Mrr!<2ut!<2ut!<2rs!<2Ed!<2uts8Mus!<2ut!<2Zk!<2ut +!<2uts8N&u$i4Kl1UYQTf&l5]kl0fHkj[g:kksZFkl0iHkks]Fkk=6Ekiq3>1HRKjMUMIU,hL]$d^Xa23`L-\U7e^% +_.lqNAoiESOdD)aG@O-%;I+$i\((9,!Ts@Orr`9#s8Mus!<2]l!<2ut"9/?#rqcWprqHEmrqucr +rr2otrpTjerdX~> +rVllspAY-lqZ$Tp"98B#rqcWprqHHlrW3&uqu6Zqrr3*"s8W)trri?$rr;urrsSi+s8N#r\T<,Q +s8Mio!<2uts8Mio!<2]l!<2fos8Mrr!<2ut!<2ut!<2rs!<2Ed!<2uts8Mus!<2ut!<2Zk!<2ut +!<2uts8N&u$i4g.6+tq'gudkckl0fHkj[g:kksZFkl0iHkks]Fkk=6EkiqGH&[WLS9\t5df%fDf@\a(\V+Qb?[nWPZ+\3! +CfFJKFb,@7SsPUlDcB,0B6/p>eG@euk5FlN"9/?#rr)isrq??lrr2p"rr<#tqYpQpp\t6mr;Qcr +rr2utn,ECeJ,~> +rVllspAY-lqZ$Tp"98B#rqcWprqHHlrW3&uqu6Zqrr3*"s8W)trri?$rr;urrsSi+s8N#r\T<,Q +s8Mio!<2uts8Mio!<2]l!<2fos8Mrr!<2ut!<2ut!<2rs!<2Ed!<2uts8Mus!<2ut!<2Zk!<2ut +!<2uts8N&u$i53I;9%PPiofRjkl0fHkj[g:kksZFkl0iHkks]Fkk=6Ekiq +qYpQprVllsr;Qits8Mlp#QFc&s8W)us8Dots8Mio"9/?#rr2rtrr;uurr2p#rr<#trql`qrql]u +e:)JNrVZ]qrr)j!rr;usqYpQpr;Qcrrr2utqu6Zqrr3'!s8W)trVulrr;Qlus8N#rrrE&srrE&t +rr`9#rr2lr"9/?"rquctrr;uqrrE&trrE&ts8W'!s8Mlp%fZM.V_^,ncd0tpkiq?qrosIHrojRL +l07EqrTX=Fr9=7FqWS"Dqrn+ErojFHrosIH!U8hIklg57l0.@1klBrFklBrHklBrHl2TuHklg57 +l0.@0l2KoEl2TuDklBrEl2TrNj4i,2cd2R8#L/u21J6^-rql]qrql]qrr2otrr2rtrr<#urql]q +rq-6jrql]urr<#trr)iurr;uss8W)urrE&srtbUgYAc0;%gEFu1b:[ZO1a#qf@\a-fDX>De]"8) +5X\b#UU7qKS +qYpQprVllsr;Qits8Mlp#QFc&s8W)us8Dots8Mio"9/?#rr2rtrr;uurr2p#rr<#trql`qrql]u +e:)JNrVZ]qrr)j!rr;usqYpQpr;Qcrrr2utqu6Zqrr3'!s8W)trVulrr;Qlus8N#rrrE&srrE&t +rr`9#rr2lr"9/?"rquctrr;uqrrE&trrE&ts8W'!s8Mlp%fZM.X$K%Bf[nd7kiq?qrosIHrojRL +l07EqrTX=Fr9=7FqWS"Dqrn+ErojFHrosIH!U8hIklg57l0.@1klBrFklBrHklBrHl2TuHklg57 +l0.@0l2KoEl2TuDklBrEl2TrKjl"qnf_sD,euMY5%jFkHt[Aa^=Clff\"g-rR`4B`MIoT +;.bTg_9K`hS +qYpQprVllsr;Qits8Mlp#QFc&s8W)us8Dots8Mio"9/?#rr2rtrr;uurr2p#rr<#trql`qrql]u +e:)JNrVZ]qrr)j!rr;usqYpQpr;Qcrrr2utqu6Zqrr3'!s8W)trVulrr;Qlus8N#rrrE&srrE&t +rr`9#rr2lr"9/?"rquctrr;uqrrE&trrE&ts8W'!s8Mlp%fZM.YY\2oi89"0f@\a-fDX>De]4\B +=^H-4_pI)VVk]lHI=($H;U9;8Od+6k%rR_)%"lB(Ss8W)qrrE&qrrE&trrE&ts8W)us8W)q +rrE&js8W)qrri?$s8N#rrrW3"rr2rtrr;uurql]qrql_G~> +rr3'!s8Mcms8E-#rr;u`rrE&srrW3"rqZQqrr;ulrrE&srrE&trrrD\Mfl;uq>UHorVuosp](9m +rVllsq#;H8s8W)urr2rss8N&urr<#so^1ete]PtF[BcR%[BY)&FTZ]&DK5SrLirE5"*/ +rr3'!s8Mcms8E-#rr;u`rrE&srrW3"rqZQqrr;ulrrE&srrE&trrrD\Mfl;uq>UHorVuosp](9m +rVllsq#;H8s8W)urr2rss8N&urr<#so^1ete]PtF[BcR%[BY)&FTZ]'DfYbtLirE5"*/K@PeYVsf@\a-f\"g.g=Y'Vf+ccZTl!_"?=d>1<* +rr3'!s8Mcms8E-#rr;u`rrE&srrW3"rqZQqrr;ulrrE&srrE&trrrD\Mfl;uq>UHorVuosp](9m +rVllsq#;H8s8W)urr2rss8N&urr<#so^1ete]PtF[BcR%[BY)&FTZ]'DfYeuLNW<4"*/@!E5$Gt +Idd=:rr2rrrW)utrYYIjf$:RdJTGjeR_dG'f@\a-f\"g.g=Y'Vf+cc[Uj$3KDKT\o@:j=pMPdr, +eCE.LfDjJ2f@\a-f\"g.iqWNQrVcfsrVcitrqHEmrql`qrr2rmrqHHmrp]pfrr2rrrW)usrW3&u +r;V9~> +s8Mus!<2or&H;_0rr;utrr<#ts8W)us8MrrrVl`ps8Moq#lal(rr;uts8Mlp"oeQ$rr;urrrE&t +rs/Q!TlQFfs8N#t!<2or!<2or!<2fo!<2ip!<2ip!ri6!qYpp%s8VWJcENt)Km!-0!-%jU!-%gT +!-%aR!-%mV!-%pW!-%1B!-%LK!-%mV!-%pW!-%LK!-%mV!-%pW!-%1B!-%LK!-%mV!-%pW!-%LK +!-%mV!-%pW!-%1B!-%mV!-%LK!-%@G!-%aR!-%jU#]Od'E-gsPs8Moq#lal's8W)ol.YXZ"6/h7 +htkt4d&qqAD0U`9]#rP#f`0S'fF6Baf@S[-f@\a1lMCMXrrW3"rr2p#rr<#trq$-mrr<#trq??l +rq69prr<#ts8N#t!<2rs!<2lq!ri6!rr33%s8W)ts8RT~> +s8Mus!<2or&H;_0rr;utrr<#ts8W)us8MrrrVl`ps8Moq#lal(rr;uts8Mlp"oeQ$rr;urrrE&t +rs/Q!TlQFfs8N#t!<2or!<2or!<2fo!<2ip!<2ip!ri6!qYpp%s8VWJcENt)Km!-0!-%jU!-%gT +!-%aR!-%mV!-%pW!-%1B!-%LK!-%mV!-%pW!-%LK!-%mV!-%pW!-%1B!-%LK!-%mV!-%pW!-%LK +!-%mV!-%pW!-%1B!-%mV!-%LK!-%@G!-%aR!-%jU#]Od'E-gsPs8Moq#lal's8W)ol.YXZ"6/h7 +htkt4d'8CRFao=R]?8Y$f`0S'fF6Baf@S[-f@\a1lMCMXrrW3"rr2p#rr<#trq$-mrr<#trq??l +rq69prr<#ts8N#t!<2rs!<2lq!ri6!rr33%s8W)ts8RT~> +s8Mus!<2or&H;_0rr;utrr<#ts8W)us8MrrrVl`ps8Moq#lal(rr;uts8Mlp"oeQ$rr;urrrE&t +rs/Q!TlQFfs8N#t!<2or!<2or!<2fo!<2ip!<2ip!ri6!qYpp%s8VWJcENt)Km!-0!-%jU!-%gT +!-%aR!-%mV!-%pW!-%1B!-%LK!-%mV!-%pW!-%LK!-%mV!-%pW!-%1B!-%LK!-%mV!-%pW!-%LK +!-%mV!-%pW!-%1B!-%mV!-%LK!-%@G!-%aR!-%jU#]Od'E-gsPs8Moq#lal's8W)ol.YXZ"6/h7 +htkt4dBepfIYX)l^!"q'f`0S'fF6Baf@S[-f@\a1lMCMXrrW3"rr2p#rr<#trq$-mrr<#trq??l +rq69prr<#ts8N#t!<2rs!<2lq!ri6!rr33%s8W)ts8RT~> +rr2iqs8Moq!<2rs"9/?#rqZQorquctrr;usrrE&ts8W)srrE&ns8W)rrr`9#s8Mrr&H0XkIGY#' +s8W)urr;uss8Mio!<2rs%fZM-rr;utrr;uss8N&trVm]5s8N&ts8W&mm*D>[JU2 +rr2iqs8Moq!<2rs"9/?#rqZQorquctrr;usrrE&ts8W)srrE&ns8W)rrr`9#s8Mrr&H0XkIGY#' +s8W)urr;uss8Mio!<2rs%fZM-rr;utrr;uss8N&trVm]5s8N&ts8W&mm*D>[JU2#8l:kkrknfZPL' +rr2iqs8Moq!<2rs"9/?#rqZQorquctrr;usrrE&ts8W)srrE&ns8W)rrr`9#s8Mrr&H0XkIGY#' +s8W)urr;uss8Mio!<2rs%fZM-rr;utrr;uss8N&trVm]5s8N&ts8W&mm*D>[JU2?ki_0mroaFHki_p.!9`n9!9`h7!pAe1roaIIkih4$kQC#3jO*kN +!7(Ph&^J_Ka/*E)1HL`ks8W)us8N#srrE&prrE&srs8W(rr<#ts8N#rrri?$rr<#srr2rtrWiK& +s8W)us8N#t#6+Z&rr<#trVlrus8Mrrs8N#trr2rt"T7lZjl69ss4dh8i8j4urr2lr(&n1,nEAlg +gt:92f\"g.f@\^,f\"gPfEpBmkOJKMs8N&tr;Zfrrr;usr;QcrrVm0&s8N&urr;usrVm$"s8N&u +rVlfrs8E9'rr<#ts8W)trs&K&s8N&urr)iurr;uqs8W)ts8N#qs*t~> +s8W,urr2utrr3*"s8W)ts8N!!s8N#ss8W)urrE&prr`9#s8N#trr2rt"9/?#rqucurr;usp\t6m +r;R*&g44Ier;Q]qrr2otrr)isrr)j#rr<#ts8Mfn"9/?#rr)j"rr<#trr2p/rqGHdR!!@fIu]qt +b2Msjrr)j%rr<#ts8N&tr;QcrrVllsrVm'#s8W)urqQKqrr<#tqYpQprVm6(s8W)trO>BaEm4O8 +!SQN0kQ9r2kPjZIkNM-moB6>?ki_0mroaFHki_p.!9`n9!9`h7!pAe1roaIIkih4$kQg;7k1SD> +f@TlO&_G[fd&qCT5tIF9s8W)us8N#srrE&prrE&srs8W(rr<#ts8N#rrri?$rr<#srr2rtrWiK& +s8W)us8N#t#6+Z&rr<#trVlrus8Mrrs8N#trr2rt"T7lZjl69ss4dh8i8j4urr2lr(&n1,nEAlg +gt:92f\"g.f@\^,f\"gPfEpBmkOJKMs8N&tr;Zfrrr;usr;QcrrVm0&s8N&urr;usrVm$"s8N&u +rVlfrs8E9'rr<#ts8W)trs&K&s8N&urr)iurr;uqs8W)ts8N#qs*t~> +s8W,urr2utrr3*"s8W)ts8N!!s8N#ss8W)urrE&prr`9#s8N#trr2rt"9/?#rqucurr;usp\t6m +r;R*&g44Ier;Q]qrr2otrr)isrr)j#rr<#ts8Mfn"9/?#rr)j"rr<#trr2p/rqGHdR!!@fIu]qt +b2Msjrr)j%rr<#ts8N&tr;QcrrVllsrVm'#s8W)urqQKqrr<#tqYpQprVmE-s8W)trOl90J(3E6 +i8NeokQ9r2kPjZIkNM-moB6>?ki_0mroaFHki_p.!9`n9!9`h7!pAe1roaIIkih4$kQ9r2kPF*: +hu2IFhr*GF\:%4O=.o3cs8N&urr2os!<2ip!<2rs#lal's8W)urr2lr"TJH#s8W&srr<#t#QOf' +s8N&urr2p%rr<#ts8W)srrW3"rqufrrr2rsrrrr)j3rr)W]ki1IS +f\"g.f[nd-f[na-f[ouP$/OS'nbiFerr;uqs8W)ts8N#qrrE&srs8W(rr<#ts8N#rrri?$rr<#s +rr2rtrWiK&s8W)us8N#t#6+Z&rr<#trVlrus8Mrrs8N#trr2iqJ,~> +!<2rs!<2ors8Mus!<2or!<2cn!<2Qh"TJH$rr2iq!<2rs!<2Wj#6+YnSo^e$oDejiqZ$TpqYpWr +s8N#t!<2uts8ET0rr2rnc^]f2E-%DXg$//.mf*:dq>^KoqZ$Tprr3B*s8N&ts8W)us8N&srr2ot +rr2otrr2p)ia4K(U!Cs0cdUtRkl9fLki_-mki_X&!pAe1qL,gY_&Rlga]Fr;QTn!<2]l!<2lq"9/?#rr)j!rr<#toD\gi +r;Qits8N#t!<2lqr;QTn!<2]l!ri6"J,~> +!<2rs!<2ors8Mus!<2or!<2cn!<2Qh"TJH$rr2iq!<2rs!<2Wj#6+YnSo^e$oDejiqZ$TpqYpWr +s8N#t!<2uts8ET0rr2rnc^]f2E-%DXg$//.mf*:dq>^KoqZ$Tprr3B*s8N&ts8W)us8N&srr2ot +rr2otrr2p)j(UeNWn>qTf\5Hckl9fLki_-mki_X&!pAe1qFl2e,@o-f@7a;E)Jtf5`kC5rr2otrr)lq +rr;uurql]trr<#trVm!!s8W)irrE&rrrW3"rr2otrql`nrql]qrq??prr<#tqu6Bjoa( +!<2rs!<2ors8Mus!<2or!<2cn!<2Qh"TJH$rr2iq!<2rs!<2Wj#6+YnSo^e$oDejiqZ$TpqYpWr +s8N#t!<2uts8ET0rr2rnc^]f2E-%DXg$//.mf*:dq>^KoqZ$Tprr3B*s8N&ts8W)us8N&srr2ot +rr2otrr2p)jE4=%[,9d!i8Nhskl9fLki_-mki_X&!pAe1qL,gY_&Rlga]Fr;QTn!<2]l!<2lq"9/?#rr)j!rr<#toD\gi +r;Qits8N#t!<2lqr;QTn!<2]l!ri6"J,~> +q>UQrs8W)srrrE%s8N&tqZ$Tp!WW/srrrE%rr;usqu6j!s8W)urr)isrq$-irr2p$rk*<)lMgb^ +!<2rs!<2rs"9/?"rqHEprr<#tqu7?/s8N&urr2cW["igHJsXUGq#(-frrE&qrrW3"rqcWrrr;ur +rr`9#rr2`n!WN,urr2rtrr<#urr2otrr2rtrr2p.rr<#s^H+/VaNi)WcIM%>p?2VAki_..kQ'fF +kl0`Fkl0cFkl0`Fkl0`Kki_0mkNMp.r9+=Ikih3nkN1n0kNM*lroa@Froj@E!9jFF$0'CZcHV&* +4A9SjD@Kl:4?52Q3b>ttrr;usrr2utrVllsrr2utrr3W1s8W)us8N&urr<#trr;uts8N#t!<2rs +s8Mrrs8E0$rr<#trr3<(s8W)us8N&urr2p$rr;utrr2os!<2rs!<2ut')qq2rr<#ts8W)us8N#t +rr<#trr2utrr<#ts8Doo"8_`bqY^9krVlfrrr`9#s8N#t"oeQ$s8N#srrE&srrE&trt>>2s8N&u +rr<#ts8W)ts8N&urr2otrr)lsrqufrrWN9#s8W)trsA])s8N&urr<#trr30$s8N&trr2otrr)is +rr2qJ~> +q>UQrs8W)srrrE%s8N&tqZ$Tp!WW/srrrE%rr;usqu6j!s8W)urr)isrq$-irr2p$rk*<)lMgb^ +!<2rs!<2rs"9/?"rqHEprr<#tqu7?/s8N&urr2cW["igHJsXUGq#(-frrE&qrrW3"rqcWrrr;ur +rr`9#rr2`n!WN,urr2rtrr<#urr2otrr2rtrr2p.rr<#s_+-e)dFd('f\>QOp?2VAki_..kQ'fF +kl0`Fkl0cFkl0`Fkl0`Kki_0mkNMp.r9+=Ikih3nkN1n0kNM*lroa@Froj@E!9jFF$09gmf[c-U +8Q^08Gn"F^8k)*47rH'8rr;usrr2utrVllsrr2utrr3W1s8W)us8N&urr<#trr;uts8N#t!<2rs +s8Mrrs8E0$rr<#trr3<(s8W)us8N&urr2p$rr;utrr2os!<2rs!<2ut')qq2rr<#ts8W)us8N#t +rr<#trr2utrr<#ts8Doo"8_`bqY^9krVlfrrr`9#s8N#t"oeQ$s8N#srrE&srrE&trt>>2s8N&u +rr<#ts8W)ts8N&urr2otrr)lsrqufrrWN9#s8W)trsA])s8N&urr<#trr30$s8N&trr2otrr)is +rr2qJ~> +q>UQrs8W)srrrE%s8N&tqZ$Tp!WW/srrrE%rr;usqu6j!s8W)urr)isrq$-irr2p$rk*<)lMgb^ +!<2rs!<2rs"9/?"rqHEprr<#tqu7?/s8N&urr2cW["igHJsXUGq#(-frrE&qrrW3"rqcWrrr;ur +rr`9#rr2`n!WN,urr2rtrr<#urr2otrr2rtrr2p.rr<#s`)]`Wg#1cGhr3_\p?2VAki_..kQ'fF +kl0`Fkl0cFkl0`Fkl0`Kki_0mkNMp.r9+=Ikih3nkN1n0kNM*lroa@Froj@E!9jFF$0L4(hqji) +=_<6aKFN$/=]SBs>2s8N&u +rr<#ts8W)ts8N&urr2otrr)lsrqufrrWN9#s8W)trsA])s8N&urr<#trr30$s8N&trr2otrr)is +rr2qJ~> +rr<#trr<#trVllsrVuosrr<#trr3'!s8Mio!<2Qhrr2os!<2rs!<2ut!<2ip"9#3Ga6rs-rr2rt +rr2otrpp'srr;#cKlM-r]&$krr<#trr2utqYpQprVm0&s8W)urr2rs +rVuoss8N8sA26'+bl5oid+II-k5sf(k0<&ijk'LX"NG=81G\qc!&FL/"#jPYkl1P^s8Muss8N&u +"oeQ$s8W)srrE&qs8W)urrW3"rr)isrr)j!rr;usrr<#tqu?]qrr2utrr<#ts8N3#s8N#rrr`9# +rr2os!<2ut!<2rs!<2lqs8N&u!ri6!rVllsrVm!!s8N#ss8W)qs8W)trrE&ts8W)urr`9#rr2lr +"9/?"rr2otrr2otrr)isrql`qrr +rr<#trr<#trVllsrVuosrr<#trr3'!s8Mio!<2Qhrr2os!<2rs!<2ut!<2ip"9#3Ga6rs-rr2rt +rr2otrpp'srr;#cKlM-r]&$krr<#trr2utqYpQprVm0&s8W)urr2rs +rVuoss8N8sDF$[\ec",$h<*,J!p8P*c0#,ih>Z%-c[#4M"%6dtl2LY_s8Muss8N&u"oeQ$s8W)s +rrE&qs8W)urrW3"rr)isrr)j!rr;usrr<#tqu?]qrr2utrr<#ts8N3#s8N#rrr`9#rr2os!<2ut +!<2rs!<2lqs8N&u!ri6!rVllsrVm!!s8N#ss8W)qs8W)trrE&ts8W)urr`9#rr2lr"9/?"rr2ot +rr2otrr)isrql`qrr +rr<#trr<#trVllsrVuosrr<#trr3'!s8Mio!<2Qhrr2os!<2rs!<2ut!<2ip"9#3Ga6rs-rr2rt +rr2otrpp'srr;#cKlM-r]&$krr<#trr2utqYpQprVm0&s8W)urr2rs +rVuoss8NK$GYqD9h;I5Ki8WnHk5j`,bi]2mio&_Of7j*!!)WYl"Ai$ +#ljo's8N&urr2corr2iqs8E6&rr<#ts8Mrrrr*'#rr2rsrr3*"s8W)ss8DrsrrrE%rr<#tqYpj# +s8N#gf_#1BrVm-%s8W)urr<#trqZQorqufqrqQL'rU%"IFEEnrmJR"arr;umrsA])s8N&urr<#t +q#:Eps8W)tq>UHorVm!!s8W)krrrE%s8N&trr2utrr3D:2)A(2cHjh^cdq1>rT=1CpuhS;!U&VA +k5aZ@kPjWDk6U55kN:jXdG +#ljo's8N&urr2corr2iqs8E6&rr<#ts8Mrrrr*'#rr2rsrr3*"s8W)ss8DrsrrrE%rr<#tqYpj# +s8N#gf_#1BrVm-%s8W)urr<#trqZQorqufqrqQL'rU%"IFEEnrmJR"arr;umrsA])s8N&urr<#t +q#:Eps8W)tq>UHorVm!!s8W)krrrE%s8N&trr2utrr3/76U=tcfDX>'gu[\sk5aZ>kPXHCkN;X( +!9X.@roX7D#j1=5k2kFPi9'n!s5s.?#3P+3k2tjhr9"(BpuhS;!U&VDk5j`&rR_7l@mECOr(%8l +HC2M0qZ$Tps8W)urr2otrq?Blrr2p#rr;utrr2p"rr<#trr3'!s8Mrrs8Mrr!ri6!rr2utqu6Zq +r;Qits8Mus!ri6!pAb0lrr3-#s8N&trr3*"s8W)trrW3"rqufrrquctrr;usrrE&qrrE&rrrW3" +rr)iurr;uks8W)trri?$rr;usrr`9#s8N#t!ri6!r;Zfrr;Qits8N#t!<2lq!<2or!ri6!rVlru +s8M`lJ,~> +#ljo's8N&urr2corr2iqs8E6&rr<#ts8Mrrrr*'#rr2rsrr3*"s8W)ss8DrsrrrE%rr<#tqYpj# +s8N#gf_#1BrVm-%s8W)urr<#trqZQorqufqrqQL'rU%"IFEEnrmJR"arr;umrsA])s8N&urr<#t +q#:Eps8W)tq>UHorVm!!s8W)krrrE%s8N&trr2utrr3/;;c.8Chu2I7ioT>$k5aZ>kPXHCkN;X( +!9X.@roX7D#j1=5k2t[]jQ?=%s5s.?#3P+3k2tjhr9"(BpuhS;!U&VDk5j`*rSRe&E)BR2 +rVllsmJm1brVuosqYpQpr;Zfrq>UHoqu6Zqr;Qlus8N#orrE&jrrE&trrE&srrE&qrri?$s8N#r +rrN-!rr*As^jg?ORaV07s8N&urr)itrr;rrr;Qp!s8W)tqYpQprr2utrr2utrVllsrVllsp\t9n +s8;lqs8W)srs\o,rr;usoStpf=LlcWc3DVDhra+bk5"3>k4e$Ak3(pik5ONDk5=BHk3(mhkMk(l +cN2k`r9"7GkN:pik5=BDk3(q,k5XTHk3(piq<.b>pu`%IhTsKncHi+A1OA?alN$h[rr2rtrr)j# +rr;utrr2os#lal(rr<#trr;usq>UKps8N#hrrrE%s8N&tr;Qcrrr3'!s8N#ts8N&us8N&u"9/?" +rr2p'rr<#ts8W)ts8N#nrrN-!rr2Nh"oeQ%rr;uqrrE&trrW3"rr2rtrr<#urr +rVllsmJm1brVuosqYpQpr;Zfrq>UHoqu6Zqr;Qlus8N#orrE&jrrE&trrE&srrE&qrri?$s8N#r +rrN-!rr*As^jg?ORaV07s8N&urr)itrr;rrr;Qp!s8W)tqYpQprr2utrr2utrVllsrVllsp\t9n +s8;lqs8W)srsSi+rr;usoTVg2AA\;t#1qSgk3(piq<.b>pZD\AkND!iroX:Dr9":HkN:pij4sXd +!T<, +rVllsmJm1brVuosqYpQpr;Zfrq>UHoqu6Zqr;Qlus8N#orrE&jrrE&trrE&srrE&qrri?$s8N#r +rrN-!rr*As^jg?ORaV07s8N&urr)itrr;rrr;Qp!s8W)tqYpQprr2utrr2utrVllsrVllsp\t9n +s8;lqs8W)srs\o,rr;usoUAiXEQd;=hZ`!"k3(piq<.b>pZD\AkND!iroX:Dr9":HkN:pijl-3s +!T`D@k6:#2k2tjhr9".DkNDj,s5sLHkND"'kPjW=k5sf,i;VU;i3QB[MsL<-!;ucorr<#trVm'# +s8N&trr2p'rr<#ts8W)ts8N#nrrN-!rr2Nh"oeQ%rr;uqrrE&trrW3"rr2rtrr<#urr +!<2Qhs8E#urVlcq!<2ut!WN,urql`qrr2p$rr<#ts8N#t"9/?#rr2rtrWE3"s8N#t#QFc'rr<#t +rql]trr<#trr3'!s8Mcm#6+Z&rr2rsq>^Ko$ienKG&ihoo`"mjrr2p"rr;usp](6lrr<#t!WW/s +s8W'!s8Mcm!<2ut"oeQ$s8W)qrrE&srr`9#s8N#t%fZM-s8N&ts8M%h1GWmhrm(_mcdCM.rT=1C +roX:Droa=D!pA_.qW@k@r9"(Bq<.e?'Ah3acd'k`gZ@S\k3(pikN:pik5FHCk5FKCjoOZ-r9"(B +roX:Droa=D!pA_.rT=7DgX6#Hs3:ag1,uiDqu6ZqrVm!!s8W)trs&K&rr;utrq$-irqucrrr2ot +rr2rtrWE3"s8N#ts8E'!rq-3mrr<#trr3H,s8W)ts8N&urr;utrq$-irqucrrr2otrr2rtrWE3" +s8N#ts8E'!rq-3mrr<#trr3H,s8W)ts8N&urr;utrq$-irqucrrr2otrr2rtrWE3"s8N#ts8E'! +rq-3mrr<#trr3H,s8W)ts8N&urr;utrqQMD~> +!<2Qhs8E#urVlcq!<2ut!WN,urql`qrr2p$rr<#ts8N#t"9/?#rr2rtrWE3"s8N#t#QFc'rr<#t +rql]trr<#trr3'!s8Mcm#6+Z&rr2rsq>^Ko$ienKG&ihoo`"mjrr2p"rr;usp](6lrr<#t!WW/s +s8W'!s8Mcm!<2ut"oeQ$s8W)qrrE&srr`9#s8N#t%fZM-s8N&ts8M%p5sTbCrn.8&!nlJmrT=1C +roX:Droa=D!pA_.qW@k@r9"(Bq<.e?!TMi2fF6["k3(mikN:sik3(n*k5aZCkPsZFkN;^*!9X:D +!9X:Ds5jCGk2uX*"6SLofDaD+f6oqS]`.g.!<2rs"9/?#rr2p%rr;utrr;uhrrE&rrrE&trrE&t +s8W'#s8N&trr<#t!WW/krr`9#s8N#t%K?D-rr2rss8W)urr;uhrrE&rrrE&trrE&ts8W'#s8N&t +rr<#t!WW/krr`9#s8N#t%K?D-rr2rss8W)urr;uhrrE&rrrE&trrE&ts8W'#s8N&trr<#t!WW/k +rr`9#s8N#t%K?D-rr2rss8W)urr;ums*t~> +!<2Qhs8E#urVlcq!<2ut!WN,urql`qrr2p$rr<#ts8N#t"9/?#rr2rtrWE3"s8N#t#QFc'rr<#t +rql]trr<#trr3'!s8Mcm#6+Z&rr2rsq>^Ko$ienKG&ihoo`"mjrr2p"rr;usp](6lrr<#t!WW/s +s8W'!s8Mcm!<2ut"oeQ$s8W)qrrE&srr`9#s8N#t(B4@5s8N&ts8M,(;,N)#hr*GMi8EYXrT=1C +roX:Droa=D!pA_.qW@k@r9"(Bq<.e?!T`5;i!eZ.k3(mikN:sik3(n*k5aZCkPsZFkN;^*!9X:D +!9X:Ds5jCGk2uX*!TrG?i!&"o;,tC1qu6ZqrVm!!s8W)trs&K&rr;utrq$-irqucrrr2otrr2rt +rWE3"s8N#ts8E'!rq-3mrr<#trr3H,s8W)ts8N&urr;utrq$-irqucrrr2otrr2rtrWE3"s8N#t +s8E'!rq-3mrr<#trr3H,s8W)ts8N&urr;utrq$-irqucrrr2otrr2rtrWE3"s8N#ts8E'!rq-3m +rr<#trr3H,s8W)ts8N&urr;utrqQMD~> +rr2utrVm9)s8N&ts8W)ts8W)prrE&srrE&rrrE&trs8W(s8N&trr;uqs8N#rrrE&trrE&trrE&t +s8W)urr`9#s8N#t!<2or!<2rss8E'!rql`qrWrQ'rr<#ts8N#srsJbn\9i=Nan#H2rqufrrql]t +rr;usr;Qlus8N#prrW3"rqufrrW3&uqu?]q!WW/ss8W)krrE&srso&.s8N&ts8W)O9enb]`r"'a +e(s*Ir9".DkN;R&s5s7B"6Se/k5+6Mk2Fq=cd0nZaj/5ajQ?I)"6Se/k54 +rr2utrVm9)s8N&ts8W)ts8W)prrE&srrE&rrrE&trs8W(s8N&trr;uqs8N#rrrE&trrE&trrE&t +s8W)urr`9#s8N#t!<2or!<2rss8E'!rql`qrWrQ'rr<#ts8N#srsJbn\9i=Nan#H2rqufrrql]t +rr;usr;Qlus8N#prrW3"rqufrrW3&uqu?]q!WW/ss8W)krrE&srso&.s8N&ts8W)P=$]?7ci)K" +f@\g8jlZL(!p8\.puh\>r9"1EkN:q'k5sf+h>Z%3f@/1"f\PZOroXCGkN:q(k6'l0k2uR(!9X.@ +!p8\.q<%hAjk]pg$J3q^_G!6on,NCdp&>$krVm'#s8W)urquctrr;uos8W)rrrE&mrrE&prri?$ +rr;urs8W)urrrE%rr<#trVllsr;Qp!s8N&tr;RB.s8N&mdb"O!g;NL\mE4Ymrqud"bDP3Ws8Mrr +#56lk`74GYrVuoss8N9%s8N&urr)isrqud!rr;utrquctrr;uos8W)rrrE&mrrE&prri?$rr;ur +s8W)urrrE%rr<#trVllsr;Qp!s8N&tr;Qlus8N%K~> +rr2utrVm9)s8N&ts8W)ts8W)prrE&srrE&rrrE&trs8W(s8N&trr;uqs8N#rrrE&trrE&trrE&t +s8W)urr`9#s8N#t!<2or!<2rss8E'!rql`qrWrQ'rr<#ts8N#srsJbn\9i=Nan#H2rqufrrql]t +rr;usr;Qlus8N#prrW3"rqufrrW3&uqu?]q!WW/ss8W)krrE&srt#,/s8N&ts8W)RA5QEofAHMa +"6&>'k5=BDk3(n%kPs]Bk6'l0k2uO'!p8V(rnn%=gY1QCiTB;%k6'l0k2uR("6Se/k54 +!<2ut!<2ut!WN,urXSu-s8W)urr2rtrr2rss8N#qrsA])rr;uss8W)trr2utrVuosqZ$Qoq>UZu +s8W)us8Mrrs8N&u!<2ut!<2fo"oeQ$s8W)ts8W)urrE&trsSe]QZ@APk5YJ\s8Moq!<2fo!<2rs +"9/?#rqucrrr2otrr2otrqZQtrr;uts8N#t!<2Ti!<2ut!<2uts8E'!rqud3rO>?R4atN!cHjh^ +cd1.ujlbghkND"(k5aZ@kPjWAk6C)3kN:aVd/D8ubE%:tcd1+uk3(mhn)j]5qr\(DkND"(kPsZF +i77ePs3:bhI5NgGo`"pjrr2utrr<#t!WW/jrsA])rr;utrr;usrVllsn,ECeq#:Eps8N#t!<2or +s8N#t!<2rss8Mrr%-pe\pA\V&YlCaK^&J!1"TJG*,hDhl#OmL39MI=HrV6Borr;usrrE&rs8W)t +rrE&ss8W)orsA])rr;utrr;usrVllsn,ECeq#:Eps8N#t!<2ors8N#t!<2rss8MrrJ,~> +!<2ut!<2ut!WN,urXSu-s8W)urr2rtrr2rss8N#qrsA])rr;uss8W)trr2utrVuosqZ$Qoq>UZu +s8W)us8Mrrs8N&u!<2ut!<2fo"oeQ$s8W)ts8W)urrE&trsSe]QZ@APk5YJ\s8Moq!<2fo!<2rs +"9/?#rqucrrr2otrr2otrqZQtrr;uts8N#t!<2Ti!<2ut!<2uts8E'!rqud#rOYuo8r(jmfF$6_ +gYq8WkN:sjk5+6@k5+9?k5=BGk3(pij50^d$e1Q'db*4,io]Fdk3qI5k54Ud#s8N&ts8N&trr)isrpTjerqQKprr;usrrE&rs8W)trrE&ss8W)rs*t~> +!<2ut!<2ut!WN,urXSu-s8W)urr2rtrr2rss8N#qrsA])rr;uss8W)trr2utrVuosqZ$Qoq>UZu +s8W)us8Mrrs8N&u!<2ut!<2fo"oeQ$s8W)ts8W)urrE&trsSe]QZ@APk5YJ\s8Moq!<2fo!<2rs +"9/?#rqucrrr2otrr2otrqZQtrr;uts8N#t!<2Ti!<2ut!<2uts8E'!rqud&rP2i==H_Crhr"Cj +#iXk,kND!jkN;X(!9X.@roX.A"m5"2k2kY$i!\>7QeLBUiT0.ak2u-q!9X1A"6Se0k5+9@joOQ% +qqqV2P#>,Lo`"pjrr2utrr<#t!WW/jrsA])rr;utrr;usrVllsn,ECeq#:Eps8N#t!<2ors8N#t +!<2rss8Mrr%-pe\pA\V&YlCaK^&J!1"TJG*,hDhl#OmL39MI=HrV6Borr;usrrE&rs8W)trrE&s +s8W)orsA])rr;utrr;usrVllsn,ECeq#:Eps8N#t!<2ors8N#t!<2rss8MrrJ,~> +!WW/ts8N#trrE&rrt#,/rr;uts8N&urr;uts8Mus#lal's8W)us8Mus!<2rs!<2rs"9/?#rqud! +rr;utrqZQorr2otrql`qrqZTorr2otrr2p!rr;usrs8W#`eSP`dJ!S=rrW3"s8N#trrE&rrr`9# +rr2os!ri6!rVuosqu?Woq>^Korr2utrr3-#s8W)tqYpWrs8Moqrr2rt!ri6!rr3<(p7sc*3J#5r +cMYujd+7+9jQ6O&g!]iF$dR"a5Wb@YcHjnkjP/euj4_o[ci;8scd&CW1JZO$rr2co!ri6!qu?Zp +s8N0"s8Moq!<2cn!<2or!<2cns8Mrr!<2or!<2rs!<2rs"oeQ$s8W)srrW3"rr)iurr;upruD%< +s8/'+h]2K';F5dJ`jUPFph5oqp-e`P/bMrn"%8rQV", +dJj0WZfJmbr;Qcrq#:?nr;Qcrq#CBnr;Qcrr;QcrrVllsrVm'#s8N&urr)iurr;urrrW3"rql]s +rr<"K~> +!WW/ts8N#trrE&rrt#,/rr;uts8N&urr;uts8Mus#lal's8W)us8Mus!<2rs!<2rs"9/?#rqud! +rr;utrqZQorr2otrql`qrqZTorr2otrr2p!rr;usrs8W#`eSP`dJ!S=rrW3"s8N#trrE&rrr`9# +rr2os!ri6!rVuosqu?Woq>^Korr2utrr3-#s8W)tqYpWrs8Moqrr2rt!ri6!rr39'p8CMJ7Z5XF +rn.5%"52JgjlGP*j5/JffF-<^TM.nNf@\a/hW +!WW/ts8N#trrE&rrt#,/rr;uts8N&urr;uts8Mus#lal's8W)us8Mus!<2rs!<2rs"9/?#rqud! +rr;utrqZQorr2otrql`qrqZTorr2otrr2p!rr;usrs8W#`eSP`dJ!S=rrW3"s8N#trrE&rrr`9# +rr2os!ri6!rVuosqu?Woq>^Korr2utrr3-#s8W)tqYpWrs8Moqrr2rt!ri6!rr39'pT7Ln?@l_rnmh:jkJo0jl>:Vi8EMNi8;%Q;.\J]rr2co!ri6!qu?Zp +s8N0"s8Moq!<2cn!<2or!<2cns8Mrr!<2or!<2rs!<2rs"oeQ$s8W)srrW3"rr)iurr;upruD%< +s8/'+h]2K';F5dJ`jUPFph5oqp-e`P/bMrn"%8rQV", +dJj0WZfJmbr;Qcrq#:?nr;Qcrq#CBnr;Qcrr;QcrrVllsrVm'#s8N&urr)iurr;urrrW3"rql]s +rr<"K~> +r;Qcrqu6Zqr;Qits8N#t!<2ors8Mrr!<2or!<2uts8E3%rr<#trr2rtrW;uhn*9jo=HOjlY^ek2k[ahq$-"cMc&o]n/@&1I@k]rm(bqf])#Tjo4EBjn.[GjlY^e +jlY^ek2tdejP\\;rQbkscd0n:9/AW$qYpKlrrE&ss8;lnrrE&trr`9#s8Mlp"9/?#rr)lqrr<#t +rW<-!rqQNnrr<#urW<-!rqufrrr)lprr2p"rr;usrr3'!s8Mlp(r@W(\1:fZj@4Xqkk%am-cdSSJ?%K$nqfZ1>peCn!'i_qYp[TdAl.ob2Q)cga8TU0EELoorqZQrrr<#trVuiq +s8W)t!rr9!q#CBns8W,u!rr9!r;ZfrrVufprr3*"s8N#srrW3"rql_G~> +r;Qcrqu6Zqr;Qits8N#t!<2ors8Mrr!<2or!<2uts8E3%rr<#trr2rtrW;uhn*9s5jXLk2tdfjlPR^h#5k4f@\`qMb-3#:TW.HfEKsaj5oFbroX7Bo]?JA +k2tdek2tdfk5OHCj5'[ds4@;'#hQCa5t@aIrr2iq!<2rsr;QTn!<2ut"9/?#rqcWsrr<#trVuiq +s8W)t!rr9!q#CBns8W,u!rr9!r;ZfrrVufprr3*"s8N#srrW3"rqcX3_BuLs.pPj17Xt9t6?8hs +DZ$^\L63T`nG`G8a<_jWWo!OAM*\%F-Jdtf5X'S#-cbsn;!sf2Vj&XNra\$/=P<`Rq>UQrs8W)s +s8Drss8N!!s8N#ms8W)us8W'"s8N#qs8W)ss8;lqrr`9#rr2os!ri6!qu;0~> +r;Qcrqu6Zqr;Qits8N#t!<2ors8Mrr!<2or!<2uts8E3%rr<#trr2rtrW;uhn*9ioK1^k2tdeqW@h>s5jIGk2tdfroF1@iVh[Ahr*DUQrs8W)s +s8Drss8N!!s8N#ms8W)us8W'"s8N#qs8W)ss8;lqrr`9#rr2os!ri6!qu;0~> +rr*'#rr2rsrr3*"s8W)rs8Dots8MusrVl]o!<2ut!<2ors8N&u!<2ut"odo2]"PlD^&u!imJd(a +!<2ut!<2fo"9/?#rr)j'ro]qnHF`_Ks8Mrr!<2lq#6+Z%s8N&tqZ$Tps8W,urVulr!WW/urrE&t +rrE&orrrE%s8N&trVllsrr3-#s8W)trVllsr;ZfrrVuoss8N>uY=CB)?*DNPcN)8icNhbAcdUM# +i8jn"roO1B!9O+?"m"Oof$r(DcO%n+?oTnt1GVe1r6GGngZ&"j#3G"0jlPXdrT4+AroO4BrT4:E +hq-9%cMl,scHjh]X&Uo2DX%0!rrE&trri?$s8N#rrrE&rs8W)srrE&jrrE&krr`9#s8Mrr!<2ut +s8Muss8N&u!<2ip!<2rs"TJH$rr;usr;Qcrqu7Mp-[:hfZ7!(6U&V2?TsnGQn$"(dqf4[Qrr4D; +Qq&%t4LF!,ICbgjZg.U+h!!obNT)ack>#ErXrW&hA3n;qoDejip&>$kp&>-ns8W)rrrE&ts8W)s +s8W)urrE&prrE&srri?$s8N&trqucrrqueH~> +rr*'#rr2rsrr3*"s8W)rs8Dots8MusrVl]o!<2ut!<2ors8N&u!<2ut"odo2]"PlD^&u!imJd(a +!<2ut!<2fo"9/?#rr)j'ro]qnHF`_Ks8Mrr!<2lq#6+Z%s8N&tqZ$Tps8W,urVulr!WW/urrE&t +rrE&orrrE%s8N&trVllsrr3-#s8W)trVllsr;ZfrrVuoss8N?!ZVs.UBt2agfEBpahr#ErXrW&hA3n;qoDejip&>$kp&>-ns8W)rrrE&ts8W)ss8W)urrE&prrE&s +rri?$s8N&trqucrrqueH~> +rr*'#rr2rsrr3*"s8W)rs8Dots8MusrVl]o!<2ut!<2ors8N&u!<2ut"odo2]"PlD^&u!imJd(a +!<2ut!<2fo"9/?#rr)j'ro]qnHF`_Ks8Mrr!<2lq#6+Z%s8N&tqZ$Tps8W,urVulr!WW/urrE&t +rrE&orrrE%s8N&trVllsrr3-#s8W)trVllsr;ZfrrVuoss8N?!\7&63G/<&5huM[4hui!!jQ6C' +roO1B!9O+?#j(++iSi_Pi8=Lk"3Ggf;#X;mCVfr,!o`2$puVeBk2tdek2lR(!9O4B!9O1A!p/J$ +rSR\5rnn(>hS!c';1Im1rVllsrr3-#s8W)trVllsr;ZfrrVllso`"pjp&>-ns8W)rrrE&ts8W)s +s8W)urrE&prrE&srri?$s8N&trqucrrql^4jX5;:BA%95)nPXT'&jV\um'(qIDn5iUd*Lrq69krq69nrr<#tr;Qcrrr<#trVuos +s8N)uqYpQprVm$"s8W)urr2iq!<2orJ,~> +s8N3#s8W)ss8N#ts8N!#s8N&urqucrrqufprWW?$rr;usrVllsrVllsrr33%jJ/cncd1t's3Chj +Yc6U\r;Qcrrr3'!s8W#rrVm3's8M#?F,J??s8N!%s8N#ts8N#ss8W)urrE&srrW3"rr)j!rr<#t +rVm*$s8W)us8Mrr!<2ut!ri6"r;IB0rr2rtrr;utrr<#ts8N&trr;usrrE&srrE&orsJc*q8GZW +1es7ScMZ!-cHje]cd1"ee_/a7hVmMTinrVLgtC6+d*L%`rQkMh%`4E,1G_FZC,@_?X38f6rm(br +fA,BGjQtt4jPntFd*L#:cN)8icPOis9JeY8hZ!QSs8N&ts8W)urr;uss8N#t!<2rs!<2lq!ri6! +rVllsrr36&s8N&urr;uprrE&trrE&srrN-!rVcitrr2p&rr;utrr<#trVlrus8Mio!<2ut!<2rs +!<2rs62YLS24`MUE[oE8Pq&cH[&3T%,hE!L2;J63rqQ*MeK^(,Y+\uaKK!/(1KrHM251"52H +Cq[N^aS]R=kl:Y\rrE&srrE&trs/Q'rr<#ts8Moq!<2ut!<2rs!WN,trW3&urr36&s8N&ts8W)s +rrW3"rqZQorr2otrr)isrr2qJ~> +s8N3#s8W)ss8N#ts8N!#s8N&urqucrrqufprWW?$rr;usrVllsrVllsrr33%jJ/cncd1t's3Chj +Yc6U\r;Qcrrr3'!s8W#rrVm3's8M#?F,J??s8N!%s8N#ts8N#ss8W)urrE&srrW3"rr)j!rr<#t +rVm*$s8W)us8Mrr!<2ut!ri6"r;IB0rr2rtrr;utrr<#ts8N&trr;usrrE&srrE&orsSi+q8Z8t +6<]r+f@ToP$eO%_f\+s4hVdDQj8S->iWS5thV6`_fE9aXf@^)S%Ek8I5s\>2F$`/q[+*_+fEBm_ +i8`najo=BCi7lrafDsP&fGW;netuP96YYHWs8N&ts8N&urr;utrr2rsrr2utrVllsqu6`ss8Mus +!<2ut#QFc&s8W)urql]qrr2otrr)itrr;rr!WW/urs/Q'rr;uts8Mus!ri6!q>UHorr2utrVlls +rVo1]CGRi=gb3[tci97[WP,[9pTPpos+N>cs8W)noBOhk#@bCWJ%`Fpf'<;5#_nj?7=m +]rK0OA4Pk`rr)isrr)isrr2p&rr;uts8N&tqu6Zqrr2utrVlots8Dots8N#t#QFc&s8N&urr)iu +rr;unrrE&trrE&srrE&ts*t~> +s8N3#s8W)ss8N#ts8N!#s8N&urqucrrqufprWW?$rr;usrVllsrVllsrr33%jJ/cncd1t's3Chj +Yc6U\r;Qcrrr3'!s8W#rrVm3's8M#?F,J??s8N!%s8N#ts8N#ss8W)urrE&srrW3"rr)j!rr<#t +rVm*$s8W)us8Mrr!<2ut!ri6"r;IB0rr2rtrr;utrr<#ts8N&trr;usrrE&srrE&orsJc*qT<)A +;J;u\hu)C8hr*GMhu;O7iSsjs!9F.@!9F.>!TN)5i;_[De>@"Y:gTQ=;Gh&>gu&%f!o`2#kiDj* +iVqd8hu;OOhr*@pAl;QLiVrlVs8N&ts8W)urr;uss8N#t!<2rs!<2lq!ri6!rVllsrr36&s8N&u +rr;uprrE&trrE&srrN-!rVcitrr2p&rr;utrr<#trVlrus8Mio!<2ut!<2rs!<2rs62YLS24`MU +E[oE8Pq&cH[&3T%,hE!L2;J63rqQ*MeK^(,Y+\uaKK!/(1KrHM251"52HCq[N^aS]R=kl:Y\ +rrE&srrE&trs/Q'rr<#ts8Moq!<2ut!<2rs!WN,trW3&urr36&s8N&ts8W)srrW3"rqZQorr2ot +rr)isrr2qJ~> +!WW/trrE&is8W'"s8N&trW3&urVm9)s8W)urr;utrr;uprsJc*rr2;OWQD#V=6rfh<,.Z;\!la_ +rrE&srs/Q's8N&ts8Mus"o[52EfT;]rs/Q'rr;uss8Mrr"9/?#rql]qrqZQorquctrr;usrrE&s +rrE&srrrE%s8N&to`#0qs8N&urr;usrrE&srrrE%rr<#tr;RB.s3PR@1Ga!ObKnM[cHje^cMl/h +c2l8:rm(SlrQbJhqTf/erm);$VdVA;2I=B$iaFVu6]]:6cHab]rm(_qfA#0@roF%>!9F+?#it"' +hV6]4cd2U9!RK'jci;8qbb.-U2L"!Vq#:Tus8N&urr;usrrE&srrrE%rr<#tr;Qcrrr2utrr36& +s8N&urr;umrr`9#s8Mrr!<2Zk!ri6!rr3'!s8Mio#6+Z%s8N&trVllsrr5*ms8N#t!ri6!q>UZus8N&ts8Mus!WN+L~> +!WW/trrE&is8W'"s8N&trW3&urVm9)s8W)urr;utrr;uprsJc*rr2;OWQD#V=6rfh<,.Z;\!la_ +rrE&srs/Q's8N&ts8Mus"o[52EfT;]rs/Q'rr;uss8Mrr"9/?#rql]qrqZQorquctrr;usrrE&s +rrE&srrrE%s8N&to`#0qs8N&urr;usrrE&srrrE%rr<#tr;R0(s3c!W5s]k*eCW@PfDjM'fDjM' +fDjJ+f@\^-g&9P'fDX>(f@\^,rn%b1Y\ZTj6YOR>j(^kF:mfW.fEg*]f@\g4hr3VpjSe0?jSe0Y +jQ#7Xhqd#=f[na-f[nd-f\"g*WCfHEJ):2"rs/Q'rr<#ts8N#t!<2rs"oeQ$s8W)rrrE&trrE&t +rs/Q'rr<#ts8Mfn"9/?#rqucrrq69mrr;usrrW3"rqZQurr;utrr;urrrE&ts$E4U!7:I;!(l_[ +`>=]ngV!Hg+gof_=7-"es2BK,cF#Tli^Qntil0X;!/(1Js1U?RD"R4(5Kr04eGj&Lkl:Y^rr)is +rr2otrr2p&rr;uts8N&tq#:Hqs8W)rrrE&krrW3"rr2p!rr;unrs&K&rr;utrr)itrr7K~> +!WW/trrE&is8W'"s8N&trW3&urVm9)s8W)urr;utrr;uprsJc*rr2;OWQD#V=6rfh<,.Z;\!la_ +rrE&srs/Q's8N&ts8Mus"o[52EfT;]rs/Q'rr;uss8Mrr"9/?#rql]qrqZQorquctrr;usrrE&s +rrE&srrrE%s8N&to`#0qs8N&urr;usrrE&srrrE%rr<#tr;R3)s3uKs;,E"]gu.,JrSR\5rSR\5 +pYZ&/rSRb7i8=Ij&)4X>;,L86bPgLE;,CVof_s_.hu2I7iT&tsjSe0?jSe3>j9+H%io0mp!8mY2 +#iFFC=\r(Qhu*ms8N#t!ri6!q>UZus8N&ts8Mus!<2ut6C\#Ud.^B;8b)f!(R!V/]_nuW[F@?@mJd.c +`IGkP[5X0+7T@pt`S0VXKDYZJ^,8&io^H3Pbi?sts("X`s8N&trVllsrr2utrr36&s8N&urr;um +rr`9#s8Mrr!<2Zk!ri6!rr3'!s8Mio#6+Z%s8N&trVlots*t~> +rr2utrr2utrr<#ts8W,urr2utn,ECerVllsrr2utqYpd!_1fj\6nR[S"tV`W^n/@?rr3*"s8W)t +s8N#qs8N!+hi;]@j8T&Xrr;utrr2rsrX]&.s8W)urr2rss8N&urr2oss8N#t!<2ut"TJH#s8Mrr +"9/?#rr2rsrql]qrqQKqrr;usqu6`ss8Mus!ri6"rr2iq$iT+?1G^m\HbRhPcMGiicHje^cMc&h +cMl,icMl,kcHjf7cOmg37l3"XM;8(0s42*H1I$&urm(Sirm);(cd0tee_&a8hrNt`jl"tHe^W$o +r6GMkcd'k^rQbemPt-rqQKqrr;usqu6`ss8Mus#6+Z&rr2rsp&>-ns8W)trs/Q's8N#t +rr;uss8N)ur;Qcrp&>$kq>UTss8W)trr2utr;Qcrqu8k084`7MSk+V1rq1kQ5Z;t*YZ-?K<58A2 +s8LAN==RX8kPDVg?oi/GlU[cIrr;/#9tC<&a(\a>CpX.mE9mH%!<2Zk"9/?#rr2p&rr<#trr;ut +rr2rt!<2or!<2Zk!<2fo"TJH$rr2os!<2or!<2rsJ,~> +rr2utrr2utrr<#ts8W,urr2utn,ECerVllsrr2utqYpd!_1fj\6nR[S"tV`W^n/@?rr3*"s8W)t +s8N#qs8N!+hi;]@j8T&Xrr;utrr2rsrX]&.s8W)urr2rss8N&urr2oss8N#t!<2ut"TJH#s8Mrr +"9/?#rr2rsrql]qrqQKqrr;usqu6`ss8Mus!ri6"rr2iq$iT+E5s[k>Ku_iufDF5#f+-Hbf\"g- +f\"g.f[nd.fD=,4f>N/<6:!nuhYmKSf69SJ9Rt7^f`0S'fE9g\gYVqi$0UU=kiCaZgY:H[f`0P8 +f[nd.f@S[-e"9Z,6%\;!s8Mfn"9/?"rql]srr;urrs&K&s8N#trq69nrr<#trr36&s8W)ts8N&t +rr;uurqucrrq69krqZQsrr<#trr2otrqucrrql^Ze4<."s.2c9p\si;@mEt +rr2utrr2utrr<#ts8W,urr2utn,ECerVllsrr2utqYpd!_1fj\6nR[S"tV`W^n8F@rr3*"s8W)t +s8N#qs8N!+hi;]@j8T&Xrr;utrr2rsrX]&.s8W)urr2rss8N&urr2oss8N#t!<2ut"TJH#s8Mrr +"9/?#rr2rsrql]qrqQKqrr;usqu6`ss8Mus!ri6"rr2iq#lWkL;,L5&OO*p`r87_8i8rqQKqrr;usqu6`ss8Mus#6+Z&rr2rsp&>-ns8W)trs/Q's8N#trr;uss8N)u +r;Qcrp&>$kq>UTss8W)trr2utr;Qcrqu8k084`7MSk+V1rq1kQ5Z;t*YZ-?K<58A2s8LAN==RX8 +kPDVg?oi/GlU[cIrr;/#9tC<&a(\a>CpX.mE9mH%!<2Zk"9/?#rr2p&rr<#trr;utrr2rt!<2or +!<2Zk!<2fo"TJH$rr2os!<2or!<2rsJ,~> +r;Qlus8W)lrrE&orrE&srri?$s8N#nrrE&ss8W)urrr@pS<#NZpFZS%/hSe1pFZb(13KsgpAY'k +s8N#rrrE&ts8W)urrrAYKl`RIrr2rt!ri6"rr2rtrr2rtrr*!!rr2]m!<2uts8E*"rr2corr2rt +rr2lr!<2uts8Mlp!<2or!<2uts8EE+rr;uss8N&trr;ulrttb1^1K2X1dZGd_p-NQcd0n_cHjh^ +cd'i8cNVV?cd'k_rQYhtbI<'j1bq",anl#:rr*;pOZkQX<27O\cd'i8cN)8dci;AfcP4[Ncd'k^ +cd0n_cHaD*A2Q/(M=CN@rrE&rrrE&ts8W'+s8N&trr;utrr2rsr;Qcrqu6Zqq>^Hns8N3#s8N#r +rri?$rr;ums8W'$s8N&urr)j#rr;uss8N#t#6+Z&rr2rsr;Qcrr;T"[q>($iqt^-gs8Mrlk3VpC +qt^*Sq#:9mrr;rmoAfNArr;rmm,n'@rqZHjs8W)pq>C6lrqc3GpAFseqYpKlrrE&qrrE&os8N#t +rr`9#rr2lr"TJH#s8Mfns8E0$rr<#trVm'#s8N#trr2p%rr<#trr;uqrrE&ts*t~> +r;Qlus8W)lrrE&orrE&srri?$s8N#nrrE&ss8W)urrr@pS<#NZpFZS%/hSe1pFZb(13KsgpAY'k +s8N#rrrE&ts8W)urrrAYKl`RIrr2rt!ri6"rr2rtrr2rtrr*!!rr2]m!<2uts8E*"rr2corr2rt +rr2lr!<2uts8Mlp!<2or!<2uts8EE+rr;uss8N&trr;ulrsSi$_/DY+6;N3>bguI>!8%5&!8%)" +s47\3eA.#>6:""^bPV;=rr*ArQ:aD/@'%c.f[nd.fC@JnfCRW$f?UR<6U=5'nG`:a!<2or!<2ut +s8EE+rr;uss8N&trr;uqrrE&qrrE&os8N#trr`9#rr2lr"TJH#s8Mfns8E0$rr<#trVm'#s8N#t +rr2p%rr<#trr;uqrrE&rs$-JXq>UEkq>:0krquTSm.pYXq>0FPrr2rss8Dcbj7W?Ls8Dc[k4eiR +q>:0ks8Mljr;Q`qqXW\?r;ZWirr2iq!<2lq!<2forr2rt"9/?"rr)j"rr;utrqQNnrWN9#s8W)s +rrrE%rr2rsrr33%s8W)ts8Mrr!<2utJ,~> +r;Qlus8W)lrrE&orrE&srri?$s8N#nrrE&ss8W)urrr@pS<#NZpFZS%/hSe1pFZb(13KsgpAY'k +s8N#rrrE&ts8W)urrrAYKl`RIrr2rt!ri6"rr2rtrr2rtrr*!!rr2]m!<2uts8E*"rr2corr2rt +rr2lr!<2uts8Mlp!<2or!<2uts8EE+rr;uss8N&trr;ulrtGD-`-G6X;I,9peDB-Ahr*DMhr"Cj +!T2i7hu)CDhr*DLi7uG@?Vs["J'Ilis8N!&nXWf[;Jihpr8.P5ht#\4hr*DMi8rqlNflhLJY +s8N&sq=EY>r;Q`pq<[8^Hns8N3#s8N#r +rri?$rr;ums8W'$s8N&urr)j#rr;uss8N#t#6+Z&rr2rsr;Qcrrr7K~> +s8N&us8Mlp"TJH$rr2fp!<2ip"TJH$rr2`nrr2lrs8E?)rqr7V>UhMrr;unrrE&srrrD\NH(UQrs8W)trrE&os8W)srrE&ts8W)qs8N!"s8N&trVm'#s8M2?:B!$Q5%]e^aj0P)'@+qL +cd'h^ccj"kHrMmW1K'M'rr)j,rr<#lVb]*)7^KorVllsrr<#tqu?Zpq>UNqs8W)trVm!!s8W)rrrE&trrE&srri?$rr;usrrE&o +s8W)rrr`9#s8Mio!<2`m!ri6"rr2lr"9/?#rqucrrr2otrr)j"rr;utrr2otrqZTorqucurr<#t +q>UHop\t +s8N&us8Mlp"TJH$rr2fp!<2ip"TJH$rr2`nrr2lrs8E?)rqr7V>UhMrr;unrrE&srrrD\NH(UQrs8W)trrE&os8W)srrE&ts8W)qs8N!"s8N&trVm'#s8M5G=oL\i9Q?E5ddu,kfDaG& +f*p<]`28;t5sR_AS*L"Orseu-s7WKt5s\A!ZIILXrR_,%rn.8&rn%5&rR_,%o[jJtZ$&i-5Xq+, +rr)isrqZTorr)isrr2rtrql`prqZQqrr<#trr)j!rr<#tr;Qcrrr2utrVm$"s8N&trr2utq>^Ko +r;Qlus8W)orrE&mrrW3"s8N#rrr`9#s8Mrr!<2ut!<2rs"TJH#s8N#t!<2fos8Mrr"9/?#rqZQo +rqHEorr<#trr)j!rr<#tr;Qcrrr2utrVm$"s8N&trr2utq>^Kor;Qlus8W)orrE&ns*t~> +s8N&us8Mlp"TJH$rr2fp!<2ip"TJH$rr2`nrr2lrs8E?)rqr7V>UhMrr;unrrE&srrrD\NH(UQrs8W)trrE&os8W)srrE&ts8W)qs8N!"s8N&trVm'#s8M8PB)YX4>(30bg>LoHp##i- +rSS.Bi7uP[P&=,n;/)cjrr)j,rr<#mY\6m1@#_eRi8>\6tT'cOUrrE&os8W)srrE&ts8W)qs8N#nrrW3"s8N#rrr`9#s8Mrr!<2ut!<2rs"TJH#s8N#t +!<2fos8Mrr"9/?#rqZQorqHEorr<#trr)j!rr<#tr;Qcrrr2utrVm$"s8N&trr2utq>^Kor;Qlu +s8W)orrE&mrrW3"s8N#rrr`9#s8Mrr!<2ut!<2rs"TJH#s8N#t!<2fos8Mrr"9/?#rqZQorqQMD~> +"9/?#rr2rtrr;uurr)lsrr;uurr2p#rr<#ts8N#srs/Q'rr;uts8Mrrs8N&u%fZM-s88:K81Q;E +/M8Y-r[n4'2>ffP5VF]A/M8V-/M8Y,2k,crrVllsp&>O$kEU+Skl1V^rr2rtrr2cos8N#t!<2rs +s8E*"rr2-]!<2Zk!<2rs!<2uts8N&us8Mus!<2ut!<2ut!<2uts8Mus!<2ip&GOhB5<(GT3_3G3 +XhVs"bg-(2'[G%Lbf[i1OC(UD1c%!QPM5g3rr2lr%fZM-qUB"51GqO;Y/SW1r6PDgrm(Sirm1Vi +rQbJhr6GbrbJKfY6SgMY>IX8(rrE&srrE&ts8W)us8W)srrE&trrE&trrE&ts8W)us8W)nrrE&q +rrrE%s8N&tmJd1crVuosq>UHoqYpQpr;Qlus8N#mrrE&qrrrE%s8N&to`#0qlFcQas8W)ss8W)o +rrE&prrE&rrr`9#rr2]m!<2lq"oeQ%rr;ubrrE&ss8W)orrE&prrE&rrr`9#rr2osJ,~> +"9/?#rr2rtrr;uurr)lsrr;uurr2p#rr<#ts8N#srs/Q'rr;uts8Mrrs8N&u%fZM-s88:K81Q;E +/M8Y-r[n4'2>ffP5VF]A/M8V-/M8Y,2k,crrVllsp&>O$kEU+Skl1V^rr2rtrr2cos8N#t!<2rs +s8E*"rr2-]!<2Zk!<2rs!<2uts8N&us8Mus!<2ut!<2ut!<2uts8Mus!<2ip&,4eI9LV657oa,b +[`HkFec+1sfFlcce',LnCKF.q5XJ,2g\LmKrr)j,rr;uoend]>6;Vp:cILPGfE0[WfD4(uf)s[W +f[p,T%G07aeB=_+:dIB:A\.O5rrE&srrE&ts8W)us8W)srrE&trrE&trrE&ts8W)us8W)nrrE&q +rrrE%s8N&tmJd1crVuosq>UHoqYpQpr;Qlus8N#mrrE&qrrrE%s8N&to`#0qlFcQas8W)ss8W)o +rrE&prrE&rrr`9#rr2]m!<2lq"oeQ%rr;ubrrE&ss8W)orrE&prrE&rrr`9#rr2osJ,~> +"9/?#rr2rtrr;uurr)lsrr;uurr2p#rr<#ts8N#srs/Q'rr;uts8Mrrs8N&u%fZM-s88:K81Q;E +/M8Y-r[n4'2>ffP5VF]A/M8V-/M8Y,2k,crrVllsp&>O$kEU+Skl1V^rr2rtrr2cos8N#t!<2rs +s8E*"rr2-]!<2Zk!<2rs!<2uts8N&us8Mus!<2ut!<2ut!<2uts8Mus!<2ip')11T>?"Hs +s8E'!rq?@!rr;uss8N&ts8W)ks8W)urs&K&rr2rsrqcWur0WU8.k^fQr%8%&1dV(*!^A=ir\"4& +r[nL.249Enrr2rsrqucspAOph#k=-uO7*#Irr;uspAb0l!<<#soD\pls8N#qrsA])rr<#trr;us +oDeghs8N<&s8W)ts8W)tqu?]q"TSK$rr2co!<2ut$NC)*rr<#tih^BWr\OR0'KBQEKohUdU9Cl! +R$O%nIr@k61G\qc#?HK*s8N#ts8N#prs\nlO'OOt1,W0bR^L<9cNqhBcHab]cd0o7ci;8occEYe +G=DKe"$9qonbW:brr +s8E'!rq?@!rr;uss8N&ts8W)ks8W)urs&K&rr2rsrqcWur0WU8.k^fQr%8%&1dV(*!^A=ir\"4& +r[nL.249Enrr2rsrqucspAOph#k=-uO7*#Irr;uspAb0l!<<#soD\pls8N#qrsA])rr<#trr;us +oDeghs8N<&s8W)ts8W)tqu?]q"TSK$rr2co!<2ut$NC)*rr<#tj/I)qr':o`D1I\9TqSQt]<@s& +Tot7X<;o/j5X@\DMUVV)rr<#trql]trp#b]r]pcV@uI.se(E:OfE0[WfDaD)f@\^,rR_A,f\"Tg +VLh_F5m'YnZ17\jrr2rt#6+Z&rr2rtrr2fps8E0$rr;usrVlrus8Mus!<2or!ri6!q>UTss8W)t +qu6Zqr;R$$s8W)ts8W)ps8W)srr`9#s8N#ts8Mus!ri6!rVllsr;Qits8Mio"TJH$rr2fp%K?D- +q4)K)q#C?ms8W)ps8W)srr`9#s8N#ts8Mus!ri6!rVllsr;Qits8Mio"TJH$rr2fp!<2or#QFc' +rr2rtrqcZprr)j!rr<#trr<#trVlrus8N#tJ,~> +s8E'!rq?@!rr;uss8N&ts8W)ks8W)urs&K&rr2rsrqcWur0WU8.k^fQr%8%&1dV(*!^A=ir\"4& +r[nL.249Enrr2rsrqucspAOph#k=-uO7*#Irr;uspAb0l!<<#soD\pls8N#qrsA])rr<#trr;us +oDeghs8N<&s8W)ts8W)tqu?]q"TSK$rr2co!<2ut$i^2+rr<#tjKF#<;#O65<-aCjV6$c,^r3ab +XK7tWKjmnV:f("dD3EKMrr2rtrr2fp"9.VVF8f#H;fJ&*a4oP0i8EMMi8 +qu6cts8W)srs8W(rr<#trr;ups8W)trrW3"rr2rtrr<#urW)utrqud"rqr.G74\?ir@S"$!%n+! +"Y;5X/M8XQ/d*^_R>g\8s8N!/s8N#t`PD'Ds8MbqEf/]Qs8N#qrs&K&rr2rsrql]srr;uqs8W)o +rrE&rrs&K&rr<#trr2rsrW<-!rql]qrr2otrr2rrrqucrrqucrrqud'rr;utrr;uts8N#qrr`9# +rr;us"7*dl@f%q]1B''45"eX:2#]921Aip4=-'N:p&=sgrrE&rrrE&trsee^Ro2!t1,CsgDj@]N +rQb\ncd'k_cHc@6"id^*AQ:hk1B]IDYN5ZXrrE&ts8DrprrE&rrrE&rrsA])rr;utrr<#tqu6]r +s8N!"s8N&tq>^Ko"TSK$rr2Nhr;Q`rrr2iq#lal(rr2rss8Moq!<2lq!WN,urWE3"s8Mios8E0$ +rr;usr;Qs"cusTQrr2rqrr<#trqud%rr<#trr;utrql]qrql]rrr;us"98B#rqZTorWN9#s8N#h +s8;lrs8N#qrs8W(s8N#trr;uprrE&ts*t~> +qu6cts8W)srs8W(rr<#trr;ups8W)trrW3"rr2rtrr<#urW)utrqud"rqr.G74\?ir@S"$!%n+! +"Y;5X/M8XQ/d*^_R>g\8s8N!/s8N#t`PD'Ds8MbqEf/]Qs8N#qrs&K&rr2rsrql]srr;uqs8W)o +rrE&rrs&K&rr<#trr2rsrW<-!rql]qrr2otrr2rrrqucrrqucrrqud'rr;utrr;uts8N#qrr`9# +rr;us"7*mtC\L*s935=mpH]!kQ*]3sSBT"\2mFT"WPMf`'M%fE0[W +fDaD+caT9]@7^>_")YC+rV?Hnrr2rrrqucrrqucrrqud&rr;utrr;uts8Moq!WN,urWE3"s8Mio +s8E0$rr;usoDeafs8W)tr;R'%s8W)ts8N&tqu6Zqqu6]rs8N!"s8N&tq>^Ko"TSK$rr2iq"ockl +G/sU]s8;lrs8N#qrs8W(s8N#trr;uprrE&qrrN-!rr*$"rr;uns8W'$s8N&trq$0frr<#trqud% +rr<#trr;utrql]qrr2qJ~> +qu6cts8W)srs8W(rr<#trr;ups8W)trrW3"rr2rtrr<#urW)utrqud"rqr.G74\?ir@S"$!%n+! +"Y;5X/M8XQ/d*^_R>g\8s8N!/s8N#t`PD'Ds8MbqEf/]Qs8N#qrs&K&rr2rsrql]srr;uqs8W)o +rrE&rrs&K&rr<#trr2rsrW<-!rql]qrr2otrr2rrrqucrrqucrrqud'rr;utrr;uts8N#qrr`9# +rr;us&a[T9G#;+5;,L.d;,C(mAS>?I;$'Qk;>sArCRhrjpAY'hrrE&rrrE&trri/WVeK!,;%-K@ +L8W#Di8sAoGIZf6q>UHorr;rrr;Qcrr;Qcrr;R*&s8N&ts8N&urql]r +rr;us"98B#rqZTorWN9#s8N#hs8;lrs8N#qrs8W(s8N#trr;uprrE&qrrN-!rr*$"rr;uns8W'$ +s8N&trqud"rm5h3a8Z) +!WW/qrs&K&rr<#trqufrrWrQ's8W)urr;uqrt#,/rr<#trr;utrr2rss8W)t%/cKT74Kf=.kE2% +/1^]Nr%%Lm#:h5ZR>g\9rr)isrr2p)Vf[O5meOMO1V4O*6H;m'i2uYTB4\pRMnbrLfrr2rsrr;us"98B#rr2p'rr;uss8N&urqucu +rr;utrr2lrs8MBbs8N&urVd'%rr;uss8N#orrE&lrrW3"s8Dous8N&trr<#srp9[brr<#srX]&. +s8N#trqjERJ^XMss8M`l!ri6"rVclurr;uss8W&sm/R+bs8W&s#QOf'rr2rsrqcWprq??nrr<#s +rW<-!s8N#ts8Drrs*t~> +!WW/qrs&K&rr<#trqufrrWrQ's8W)urr;uqrt#,/rr<#trr;utrr2rss8W)t%/cKT74Kf=.kE2% +/1^]Nr%%Lm#:h5ZR>g\9rr)isrr2p)Vf[O5meOM +!WW/qrs&K&rr<#trqufrrWrQ's8W)urr;uqrt#,/rr<#trr;utrr2rss8W)t%/cKT74Kf=.kE2% +/1^]Nr%%Lm#:h5ZR>g\9rr)isrr2p)Vf[O5meOM>\8s;#X>l:^U0.Anuh$g@G+>rr2p'rr;uss8N&urqud%rr;uplahFU=T2/$ + +s8W,us8N3#s8W)rrsA])s8N&urr<#trr<#ts8N)urr30$s8N#trr2rtrr)isrr2p6rqr.E9KPU, +5<_=r5t=+$4[VP'6qBO(qE,*H6V9b6N:HoIs8Moq$Cl*TFHWtZEPVJNr;Qlus8N#nrrE&rs8N#p +s8W)qrrE&prrE&ss8W)urrE&gs8W)qs8W)prrE&rrr`9#rr2iq!<2fo!ri6!r;QcrrVmZ+im>9" +M2$b3HA.*.NhF8BkkkD[rr2fps8Mlp!<2or#lal'rq5'KKO+@/r\FC-s"Xp;1,C^J@Y1f?rVl`p +!<2ips8Moqs8Mlp!<2or"9/?"rqucrrqZQorr2otrr2p"rr<#tr;Zfrqu?]qqZ$Tpqu?]qqZ$Tp +qu?]qr;Qcrq>UHorr2utrr3*"s8W)rs8W)qs8W)trrr(tEfB)Yqu?]qqZ$Tpqu?]qr;Qcrq>UHo +rr2utrr3*"s8W)rs8W)qs8W)ps8W)qs8W)ps8W)qs8W)rrrE&ss*t~> +s8W,us8N3#s8W)rrsA])s8N&urr<#trr<#ts8N)urr30$s8N#trr2rtrr)isrr2p6rqr.E9KPU, +5<_=r5t=+$4[VP'6qBO(qE,*H6V9b6N:HoIs8Moq$Cl*TFHWtZEPVJNr;Qlus8N#nrrE&rs8N#p +s8W)qrrE&prrE&ss8W)urrE&gs8W)qs8W)prrE&rrr`9#rr2iq!<2fo!ri6!r;QcrrVm2sj3bQ. +OH#6PK)U`9Q);LRl21M\rr2fps8Mlp!<2or#lal'rq5'OMeDlP!'p +s8W,us8N3#s8W)rrsA])s8N&urr<#trr<#ts8N)urr30$s8N#trr2rtrr)isrr2p5rqr.E9KPU, +5<_=s5t=+$4[VP'6qBT<4:+AI7$rr'rr<#tqu7"nEH$#_Z[Qo0qu6Nn"9/?"rqZQorqufqrql`q +rql]qrqcWprr)lsrr;uurpg$grql`qrqcWprqucurr;usr;Qcrq>UNqs8Mrr!<2rs$23H/^nI0^ +QAgb$Q3j+aa4onVs8W)tqu?]qqYpQpr;R'%s8N#khR8Yhl;7adG*BDnrVl`p!<2ips8Moqs8Mlp +!<2or"9/?"rqucrrqZQorr2otrr2p"rr<#tr;Zfrqu?]qqZ$Tpqu?]qqZ$Tpqu?]qr;Qcrq>UHo +rr2utrr3*"s8W)rs8W)qs8W)trrr(tEfB)Yqu?]qqZ$Tpqu?]qr;Qcrq>UHorr2utrr3*"s8W)r +s8W)qs8W)ps8W)qs8W)ps8W)qs8W)rrrE&ss*t~> +!<2rs"TJH$rr2lrs8N&u!<2rss8N&u"oeQ$s8W)ts8DrsrrW3"s8N!"s8N&urr*`6r0WIGH'*Q1 +Lkp@fK2tfIH$Y-jO(M/`:^^$GX_a;^nc/Ugs8Mrr$BK1GE,fo;P4JVOrr3K-s8N&ts8W)ts8N#t +s8Mlp"9/?#rqZQsrr<#trql]qrr2p%rr<#ts8W)rrrW3"rr2rsrW3&urr3-#s8W)tr;Zfrp\t6m +qu6ZqqZ$Tpqu6Zqrr3?)s8N&urV?3^o'u_R"8i)ts8Muus8N#t"TJH$rr2iqs8Mcm$i^2+rq>?a +TQ*"P2uY]M1c$pC1GUgG2`Nf`J>UNOp&G$js8N#t!<2rsrr)rurr2p#rr<#trqufrrqHEmrqucr +rqQNmrr)isrr2p!rr;uss8W'$s8N&trqucrrr)j!rr<#trVllsrVuosrVuosrVllsr;Qcrq#C?m +rVllsrr3'!s8N#ts8E0$rr;usr;R'%nW7dZq#: +!<2rs"TJH$rr2lrs8N&u!<2rss8N&u"oeQ$s8W)ts8DrsrrW3"s8N!"s8N&urr*`6r0WIGH'*Q1 +Lkp@fK2tfIH$P'iO(M/`:^^$GX_jA_nc/Ugs8Mrr$BK1GE,fo;P4JVOrr3K-s8N&ts8W)ts8N#t +s8Mlp"9/?#rqZQsrr<#trql]qrr2p%rr<#ts8W)rrrW3"rr2rsrW3&urr3-#s8W)tr;Zfrp\t6m +qu6ZqqZ$Tpqu6Zqrr3?)s8N&urV?3^o()eS"8i)ts8Muus8N#t"TJH$rr2iqs8Mcm$i^2+rq>Bf +V0GL"7K,[V6:!m95n?=N6q'R?Kr`M]p&G$js8N#t!<2rsrr)rurr2p#rr<#trqufrrqHEmrqucr +rqQNmrr)isrr2p!rr;uss8W'$s8N&trqucrrr)j!rr<#trVllsrVuosrVuosrVllsr;Qcrq#C?m +rVllsrr3'!s8N#ts8E0$rr;usr;R'%nW7dZq#: +!<2rs"TJH$rr2lrs8N&u!<2rss8N&u"oeQ$s8W)ts8DrsrrW3"s8N!"s8N&urr*`6r0WFFH'*T2 +Lkp@fK2tfIH$Y-jO(M/`:^^$GX_jA_nc/Ugs8Mrr$BK1GE,fo;P4JVOrr3K-s8N&ts8W)ts8N#t +s8Mlp"9/?#rqZQsrr<#trql]qrr2p%rr<#ts8W)rrrW3"rr2rsrW3&urr3-#s8W)tr;Zfrp\t6m +qu6ZqqZ$Tpqu6Zqrr3T0s8N&urV?6`o()PMq"t'js8Muus8N#t"TJH$rr2iqs8Mcm$i^2+rqGNn +X+=>P<;ohp;%ZW%;c?Xq +!<2cnrr2osrr2rt"9/?#rr)lrrr)lsrWN9#s8N#qruD%7BCNFQnZG"iP +r;Q`qrql^!rr;uss8Mfn!<2]l#6+Z%rr<#tqYp`us8N&urr2rtrqucrrr2rtrWW?$s8W)tq>UQr +s8W)os8W)lrr`9#rr2lr!<2rss8Mus!<2uts8Mrr!<2uts8E3%rr<#trqZQrrr<#trVm&]LiTWk +rq??orr;usrVllsrVuosrVllsrr<#tr;Qcrrr<#t"onT%s8N#nrr`9#s8Mios8M`l"9/?"rr)is +rr)lsrr)iurr<"K~> +!<2cnrr2osrr2rt"9/?#rr)lrrr)lsrWN9#s8N#qruD%W +r;Q`qrql^!rr;uss8Mfn!<2]l#6+Z%rr<#tqYp`us8N&urr2rtrqucrrr2rtrWW?$s8W)tq>UQr +s8W)os8W)lrr`9#rr2lr!<2rss8Mus!<2uts8Mrr!<2uts8E3%rr<#trqZQrrr<#trVm&]LiTWk +rq??orr;usrVllsrVuosrVllsrr<#tr;Qcrrr<#t"onT%s8N#nrr`9#s8Mios8M`l"9/?"rr)is +rr)lsrr)iurr<"K~> +!<2cnrr2osrr2rt"9/?#rr)lrrr)lsrWN9#s8N#qruD%UQr +s8W)os8W)lrr`9#rr2lr!<2rss8Mus!<2uts8Mrr!<2uts8E3%rr<#trqZQrrr<#trVm&]LiTWk +rq??orr;usrVllsrVuosrVllsrr<#tr;Qcrrr<#t"onT%s8N#nrr`9#s8Mios8M`l"9/?"rr)is +rr)lsrr)iurr<"K~> +s8W)trr;us#QOf'rr;utroa=[rW)utrr2p$r0WID:.tO[&PGkl9MJ5T8kr&R9heAU:/"=[9a+-_ +9UC_.r;Qcrrr3&qJT1U.rbr$\IAm#BrqcWprpTmerr;uurr)j$rr<#ts8W)trrE&trrE&qrrE&s +rrE&prrE&srr`9#s8M`l!<2Zk!<2`m!<2lq!<2ut!<2Ed!<2rs"9/?#rq??lrq69krqHEprUog^ +rr2utrr2utmf*:drVm!!s8W)lrrE&ks8W)nrrE&qrr`9#s8MZj!<2fo$i^2+rr<#ts8N#trqQKn +rql]urr<#trqQKnrql]trr<#to`"pjqu7-'c$arXr;Zfrs8N#trqQKnrql]urr<#trqQKnrql]t +rr<#to`"pjq>Uj%s8W)us8N&trr;umrrE&qrri?$s8N#rs*t~> +s8W)trr;us#QOf'rr;utroa=[rW)utrr2p$r0WID:.kIY!_Z9^r_Uj%s8W)us8N&trr;umrrE&qrri?$s8N#rs*t~> +s8W)trr;us#QOf'rr;utroa=[rW)utrr2p$r0WFD:.tO[!_Z9^rD!\n:.n5T:/+>U9M>@Z"\MH^ +Q](D3rrE&trrW"IE;jkVE!:60W;?PnqYpQpn,NFes8N)urVm*$s8W)us8N#t!<2ut!<2lq!<2rs +!<2ip!<2rs"9/?#rq??lrq69krqHEmrql]qrr2otrpKddrr)j!rr<#tpAY-lp&>$kp\t?op%87_ +rrE&trrE&drrE&srr`9#s8M`l!<2Zks8Mfn!<2lq"9/?#rq-3jrqZR%rr<#ts8W)urr2rsq#:?n +qu6fus8W)tq#:?nqu6cts8W)jrrE&qrsenNI=&s2s8W)urr2rsq#:?nqu6fus8W)tq#:?nqu6ct +s8W)jrrE&orsSi+s8N&urr;uss8Mfn!<2lq"TJH$rr2lrJ,~> +"oeQ$rr<#trW<-!rr)lsrr2p!rr;uqs8W'!s8N#t"9/?"rql]trr<#trr3<(s8W"aNE&\u]Df>\ +LJ*':cd0n*:3!thb/g,KB#i08Vrr;uprrE&ts8W'" +s8N&trWrQ's8N&urr;usrrE&qrso&.rr;uss8N&ts8N&ts8N#trrE&rs8N#trsA])rr;utrr<#t +rr<#ts8N<&s8W)urr2lrrVcs"rr;usrVuos!WW/us8W'!s8N#t#6+Z%s8N#trr2rts8E*"rr2os +$3'u(s8N&ts8W)ts8W)urs&K&s8N&trr)lqrWN9#s8N#rs8W'!s8N#ts8E'!rr2p%rr;utrr2rs +rr<#urW<-!rr2p(rr;utrr;uts8N#ts8N&u#6+Z&rr;usrVuiq"98B#rql]qrr2p/rr;uss8N&u +rr<#ts8N#trqucurr;usrr;usrr3*"s8W)prrrE%s8N&tr;Zfr"onT%rr;uprrE&trt,20rr2rs +s8W)us8N&trr;uqrr`9#rr2os$3'h:FF2^?s8W)prrrE%s8N&tr;Zfr"onT%rr;uprrE&trt,20 +rr2rss8W)us8N&trr;uqrr`9#rr2osrr2os"9/?#rqcWurr<#ts8Mrrs8E3%rr;utrr2qJ~> +"oeQ$rr<#trW<-!rr)lsrr2p!rr;uqs8W'!s8N#t"9/?"rql]trr<#trr3<(s8W"aNE&Z'c2Pm+ +O\9MgY-4sX9m"7qbKQYUB#i0;ca$;=Q](D5s8N#trs&K&omh"$E;ab\F->8Vrr;uprrE&ts8W'" +s8N&trWrQ's8N&urr;usrrE&qrso&.rr;uss8N&ts8N&ts8N#trrE&rs8N#trsA])rr;utrr<#t +rr<#ts8N<&s8W)urr2lrrVcs"rr;usrVuos!WW/us8W'!s8N#t#6+Z%s8N#trr2rts8E*"rr2os +$3'u(s8N&ts8W)ts8W)urs&K&s8N&trr)lqrWN9#s8N#rs8W'!s8N#ts8E'!rr2p%rr;utrr2rs +rr<#urW<-!rr2p(rr;utrr;uts8N#ts8N&u#6+Z&rr;usrVuiq"98B#rql]qrr2p/rr;uss8N&u +rr<#ts8N#trqucurr;usrr;usrr3*"s8W)prrrE%s8N&tr;Zfr"onT%rr;uprrE&trt,20rr2rs +s8W)us8N&trr;uqrr`9#rr2os$3'h:FF2^?s8W)prrrE%s8N&tr;Zfr"onT%rr;uprrE&trt,20 +rr2rss8W)us8N&trr;uqrr`9#rr2osrr2os"9/?#rqcWurr<#ts8Mrrs8E3%rr;utrr2qJ~> +"oeQ$rr<#trW<-!rr)lsrr2p!rr;uqs8W'!s8N#t"9/?"rql]trr<#trr4GHs8W"aN)`Su]Xk_d +LeMT^Y-+jU9m+Fp_TelPA]N':ca$;=Q](D5s8N#trs&K&omh"$E;ab\F->8Vrr;uprrE&ts8W'" +s8N&trWrQ's8N&urr;usrrE&qrso&.rr;uss8N&ts8N&ts8N#trrE&rs8N#trsA])rr;utrr<#t +rr<#ts8N<&s8W)urr2lrrVcs"rr;usrVuos!WW/us8W'!s8N#t#6+Z%s8N#trr2rts8E*"rr2os +$3'u(s8N&ts8W)ts8W)urs&K&s8N&trr)lqrWN9#s8N#rs8W'!s8N#ts8E'!rr2p%rr;utrr2rs +rr<#urW<-!rr2p(rr;utrr;uts8N#ts8N&u#6+Z&rr;usrVuiq"98B#rql]qrr2p/rr;uss8N&u +rr<#ts8N#trqucurr;usrr;usrr3*"s8W)prrrE%s8N&tr;Zfr"onT%rr;uprrE&trt,20rr2rs +s8W)us8N&trr;uqrr`9#rr2os$3'h:FF2^?s8W)prrrE%s8N&tr;Zfr"onT%rr;uprrE&trt,20 +rr2rss8W)us8N&trr;uqrr`9#rr2osrr2os"9/?#rqcWurr<#ts8Mrrs8E3%rr;utrr2qJ~> +"TSK$s8N#ts8E0$rr;usrVm!!s8N#prrE&srrE&srrE&mrrE&ss!@[BR#G$@NlL,AcCIY)mcs'* +aAJ5mp?hOs;)q#:B`J,=3gF/eL)rr)isrqHEprr<#trr<#tqu6cts8W)is8W'! +s8MNf"9/?#rql]qrr)isrqZQorr)iurr;ujs8W)urrE&orri?$rr;ufrrE&qrrE&srrE&orrE&s +rrW3"rq6 +"TSK$s8N#ts8E0$rr;usrVm!!s8N#prrE&srrE&srrE&mrrE&ss!@[BR#G$@ZM"%ipVfgX\%K;f +Rn]IJmH4)p=,Q:?Nk+O]8X>;)q#:B`J,=3gF/eL)rr)isrqHEprr<#trr<#tqu6cts8W)is8W'! +s8MNf"9/?#rql]qrr)isrqZQorr)iurr;ujs8W)urrE&orri?$rr;ufrrE&qrrE&srrE&orrE&s +rrW3"rq6 +"TSK$s8N#ts8E0$rr;usrVm!!s8N#prrE&srrE&srrE&mrrE&ss!@[BR#G$@Pg&4Oe>#`h[CWl^ +R7s@;_na^S=c2IAOLad`8X>;)q#:B`J,=3gF/eL)rr)isrqHEprr<#trr<#tqu6cts8W)is8W'! +s8MNf"9/?#rql]qrr)isrqZQorr)iurr;ujs8W)urrE&orri?$rr;ufrrE&qrrE&srrE&orrE&s +rrW3"rq6 +p&>-ns8W)rrri?$s8N#ps8N#qrs&K&rr2rsrqudErr<#tr0WFC:Kk$5Zb(*LW:R^7nB4a]jjBjj +Ytg(`GDLFe>=t3>nc&Ogrr)j!ronlOrGVga[.O4ps8Mfn!ri6!rr2utnc&UgqYpd!s8W)us8N#t +!<2rs!WN,urW<-!rquctrr;uirrW3"rqQKnrqHEmrr)j!rr<#tq#:?nrVllsr;Qcrqu6`ss8MZj +!ri6!q#:?np\t6mrVm!!s8W)nrrE&srrE&rrrE&qrrW3"rq-3lrr;umrri?$s8N#prrE&prrE&n +rrE&qrrE&trrE&trrE&srrE&jrrE&is8W)qrrE&prrE&nrrE&qrrE&trrE&trs/Q'rooPdV"46Z +!<2Tis8Moq!<2ip!<2cn!<2lq!<2ut!<2ut!<2rs!<2Wj!<2Tis8N#tJ,~> +p&>-ns8W)rrri?$s8N#ps8N#qrs&K&rr2rsrqudErr<#tr0WFB:SmFAkO5uUVsV++lc2kelb&eC +b#O5+J=V&3>=t3>nc&Ogrr)j!ronlOrGVga[.O4ps8Mfn!ri6!rr2utnc&UgqYpd!s8W)us8N#t +!<2rs!WN,urW<-!rquctrr;uirrW3"rqQKnrqHEmrr)j!rr<#tq#:?nrVllsr;Qcrqu6`ss8MZj +!ri6!q#:?np\t6mrVm!!s8W)nrrE&srrE&rrrE&qrrW3"rq-3lrr;umrri?$s8N#prrE&prrE&n +rrE&qrrE&trrE&trrE&srrE&jrrE&is8W)qrrE&prrE&nrrE&qrrE&trrE&trs/Q'rooPdV"46Z +!<2Tis8Moq!<2ip!<2cn!<2lq!<2ut!<2ut!<2rs!<2Wj!<2Tis8N#tJ,~> +p&>-ns8W)rrri?$s8N#ps8N#qrs&K&rr2rsrqudErr<#tr0WFC:LguJ[_d8`VsV+*lGcYo[>L0$ +_Hhr,L8oaK>=k-=nc&Ogrr)j!ronlOrGVga[.O4ps8Mfn!ri6!rr2utnc&UgqYpd!s8W)us8N#t +!<2rs!WN,urW<-!rquctrr;uirrW3"rqQKnrqHEmrr)j!rr<#tq#:?nrVllsr;Qcrqu6`ss8MZj +!ri6!q#:?np\t6mrVm!!s8W)nrrE&srrE&rrrE&qrrW3"rq-3lrr;umrri?$s8N#prrE&prrE&n +rrE&qrrE&trrE&trrE&srrE&jrrE&is8W)qrrE&prrE&nrrE&qrrE&trrE&trs/Q'rooPdV"46Z +!<2Tis8Moq!<2ip!<2cn!<2lq!<2ut!<2ut!<2rs!<2Wj!<2Tis8N#tJ,~> +s8N)ur;Qcrrr2utrr2utqYpj#s8W)urr<#trVm!!s8W)srrE&ms!7N0N)WSDMq-%(:/7kcZ^p@, +;i&lWea'J=JA$/eN5f!mQ&G2-rsRk8EH,r:N7n1/s8MNf$i^2+rr<#ts8N&urr)isro="\rr<#t +rVm$"s8N&tr;Qcrp&>$krVllsnG`LfpAb0ls8N)urVm<*s8W)us8N&ts8N&tr;Qcrp&>$krVlls +nG`LfpAb0ls8N)urVm<*s8W)us8N&ts8N&tr;Qcrp&>$krVllsnG`Lfq>UKps8N#trr`9#rr2lr +!<2rs!<2]l!<2`m!<2rs!<2Kf!<2fo!WN,urrUKps8N#trr`9#rr2lr!<2rs!<2]l!<2`m!<2rs!<2`mJ,~> +s8N)ur;Qcrrr2utrr2utqYpj#s8W)urr<#trVm!!s8W)srrE&ms!7N0N)WTKkk"B.[S3atZ^p@, +;OZU\WR/pmJA-H#O2kBqQ&G2-rsRk8EH,r:N7n1/s8MNf$i^2+rr<#ts8N&urr)isro="\rr<#t +rVm$"s8N&tr;Qcrp&>$krVllsnG`LfpAb0ls8N)urVm<*s8W)us8N&ts8N&tr;Qcrp&>$krVlls +nG`LfpAb0ls8N)urVm<*s8W)us8N&ts8N&tr;Qcrp&>$krVllsnG`Lfq>UKps8N#trr`9#rr2lr +!<2rs!<2]l!<2`m!<2rs!<2Kf!<2fo!WN,urrUKps8N#trr`9#rr2lr!<2rs!<2]l!<2`m!<2rs!<2`mJ,~> +s8N)ur;Qcrrr2utrr2utqYpj#s8W)urr<#trVm!!s8W)srrE&ms!7N0McEPLQJ0fM=&,glZ^p@, +:nk3p9l89_J\Zl3Oi^`uQ&G2-rsRk8EH,r:N7n1/s8MNf$i^2+rr<#ts8N&urr)isro="\rr<#t +rVm$"s8N&tr;Qcrp&>$krVllsnG`LfpAb0ls8N)urVm<*s8W)us8N&ts8N&tr;Qcrp&>$krVlls +nG`LfpAb0ls8N)urVm<*s8W)us8N&ts8N&tr;Qcrp&>$krVllsnG`Lfq>UKps8N#trr`9#rr2lr +!<2rs!<2]l!<2`m!<2rs!<2Kf!<2fo!WN,urrUKps8N#trr`9#rr2lr!<2rs!<2]l!<2`m!<2rs!<2`mJ,~> +!WW/rrs/Q's8N&trr;rr!WW/rrrE&os8W)urrE&trrW3"rr)jFrr;utr0WFB:JbJGCfXD.U\Ms> +ouU'hc.D"![8h=m[AgmV +!WW/rrs/Q's8N&trr;rr!WW/rrrE&os8W)urrE&trrW3"rr)jFrr;utr0WFB:8@.@l05WLU\Ms> +ouU$sm,[*ZaB*K/[]7-\<(`F6nbrIfrr2p(rnVp?E-.T/s8Mus!<2uts8E'!rqZQorr2otrq$0i +rqQKnrr2rtrqucrrr2p"rr;usqu6cts8W)rs8N#js8N#rrr`9#s8Muss8Moq$NC)*rr;utrr2rs +rVuos!WW/orr`9#s8Mrrrr2Tjrr2lr"9/?#rr)lsrql^&rr<#ts8N&trr;urs8W'!s8Mfn"9/?# +rqufqrq6 +!WW/rrs/Q's8N&trr;rr!WW/rrrE&os8W)urrE&trrW3"rr)jFrr;utr0WCB:2Q,hRYc,\U\Ms> +ouU!ujLV&"bZK&9\?*Te +!WW/rrrE&qs8N#ts8W)urr`9#s8Mus"9/?#rqQLHrr;uss8N#ts8N&rR#=p>;-mdA>uXO-Ockik +E)'YuOc#6?:/cRmJ:VT49U1P+q#:`PH>n)7nc&Rfs8W)trs8W(s8N&ts8W)srrE&qrrE&nrrE&s +s8W'$s8N&urr)lsrr;uurq$-irqQKnrr)isrr)isrr)isrr2otrr2otrq$-irqcWprqucrrr2rt +rr)j#rr<#ts8Mlp!<2rs!<2rs!<2rs!<2ut!<2ut!<2Ti!<2ip!<2or!<2uts8Mus"oeQ%rr;uo +rrE&srrE&srrE&srrE&trrE&trrE&rrrE&prrW3"rql^"rr<#ts8W)ts8W)prrE&ss8W)trrE&s +rrE&srrE&rrr`9#s8N#t!<2or!<2ip!ri6!qu6m"s8W)us8N#ts8Mlp!<2rss8N&u#5PfRL"H;& +rVllsr;Qlus8W)trrE&rrrE&prrW3"rql^"rr<#ts8W)ts8W)prrE&ss8W)trrE&srrE&srrE&r +rr`9#s8N#t!<2or!<2utJ,~> +!WW/rrrE&qs8N#ts8W)urr`9#s8Mus"9/?#rqQLHrr;uss8N#ts8N&rR#=p=@#^D4MeGdnOckik +E)']%R$*\S:/cUpJV%f69U1P+q#:`PH>n)7nc&Rfs8W)trs8W(s8N&ts8W)srrE&qrrE&nrrE&s +s8W'$s8N&urr)lsrr;uurq$-irqQKnrr)isrr)isrr)isrr2otrr2otrq$-irqcWprqucrrr2rt +rr)j#rr<#ts8Mlp!<2rs!<2rs!<2rs!<2ut!<2ut!<2Ti!<2ip!<2or!<2uts8Mus"oeQ%rr;uo +rrE&srrE&srrE&srrE&trrE&trrE&rrrE&prrW3"rql^"rr<#ts8W)ts8W)prrE&ss8W)trrE&s +rrE&srrE&rrr`9#s8N#t!<2or!<2ip!ri6!qu6m"s8W)us8N#ts8Mlp!<2rss8N&u#5PfRL"H;& +rVllsr;Qlus8W)trrE&rrrE&prrW3"rql^"rr<#ts8W)ts8W)prrE&ss8W)trrE&srrE&srrE&r +rr`9#s8N#t!<2or!<2utJ,~> +!WW/rrrE&qs8N#ts8W)urr`9#s8Mus"9/?#rqQLHrr;uss8N#ts8N&rQ]"j==)N,"Cg0VCOckik +E)']%Q&_)L:/c[sK7n2;9U1P+q#:`PH>n)7nc&Rfs8W)trs8W(s8N&ts8W)srrE&qrrE&nrrE&s +s8W'$s8N&urr)lsrr;uurq$-irqQKnrr)isrr)isrr)isrr2otrr2otrq$-irqcWprqucrrr2rt +rr)j#rr<#ts8Mlp!<2rs!<2rs!<2rs!<2ut!<2ut!<2Ti!<2ip!<2or!<2uts8Mus"oeQ%rr;uo +rrE&srrE&srrE&srrE&trrE&trrE&rrrE&prrW3"rql^"rr<#ts8W)ts8W)prrE&ss8W)trrE&s +rrE&srrE&rrr`9#s8N#t!<2or!<2ip!ri6!qu6m"s8W)us8N#ts8Mlp!<2rss8N&u#5PfRL"H;& +rVllsr;Qlus8W)trrE&rrrE&prrW3"rql^"rr<#ts8W)ts8W)prrE&ss8W)trrE&srrE&srrE&r +rr`9#s8N#t!<2or!<2utJ,~> +rVlrus8N#t#QFc'rr<#trr2otrqcX!rr;utrr;usrrE&trri?$rr;urrrE&ts!7N0McUHorVuosrr3<(s8W)urr;utrr2p$rr;uts8Mus!<2ut!ri6!qYpQpqu6cts8W)t +s8N!!s8N#nrrE&ss8W)trsA])s8N&ts8N&trr30$s8N&urr)isrr2p#p8`.kk5>5Zrql]trr<#t +rr;us!rr9!q>UHorVuosrr3<(s8W)urr;utrr2p$rr;uts8Mus!<2ut!ri6!qYpQpqu6cts8W)t +s8N!!s8N#ss*t~> +rVlrus8N#t#QFc'rr<#trr2otrqcX!rr;utrr;usrrE&trri?$rr;urrrE&ts!7N0Mc +928H&Ec,r&:/,&3Df&6E9k&-]Dd#k/Q&G2/s8W'$c?Y2crql`qrrUHorVuosrr3<(s8W)urr;utrr2p$rr;uts8Mus!<2ut!ri6!qYpQpqu6cts8W)t +s8N!!s8N#nrrE&ss8W)trsA])s8N&ts8N&trr30$s8N&urr)isrr2p#p8`.kk5>5Zrql]trr<#t +rr;us!rr9!q>UHorVuosrr3<(s8W)urr;utrr2p$rr;uts8Mus!<2ut!ri6!qYpQpqu6cts8W)t +s8N!!s8N#ss*t~> +rVlrus8N#t#QFc'rr<#trr2otrqcX!rr;utrr;usrrE&trri?$rr;urrrE&ts!7N/McEPJ:N(/J +9MSQ'Ec,r&:/,&4Df&6E9k&-]Dd#k/Q&G2/s8W'$c?Y2crql`qrrUHorVuosrr3<(s8W)urr;utrr2p$rr;uts8Mus!<2ut!ri6!qYpQpqu6cts8W)t +s8N!!s8N#nrrE&ss8W)trsA])s8N&ts8N&trr30$s8N&urr)isrr2p#p8`.kk5>5Zrql]trr<#t +rr;us!rr9!q>UHorVuosrr3<(s8W)urr;utrr2p$rr;uts8Mus!<2ut!ri6!qYpQpqu6cts8W)t +s8N!!s8N#ss*t~> +rr36&s8W)ts8W)ks8W)ts8W'"s8N#orrE&trrE&nrso&.r0WCA:J42L8Ol?J9`7Qj92A5O84cBD +:JFFZ8d%m^Q&G21rrE&trt!5:h>@3Ns8N&ts8N&ts8M`l!<2rs"TJH#s8Mus!<2Wj!WN,srr2ot +rqucrrqcZprqQKnrpg!grr2p"rr<#tn,NFe!WW/srrE&ors8W(s8N#trr9G+9*1^]rql]sgR@$r +rrE&trr`9#s8M]k!o]]prr<#t!WW/srrE&ors&K&s8N#trqcWprpg!grr2p'rr<#ts8W)urqufr +rr)j!rr;usrr3-#s8N&tr;Qcrr;Zfr!WW/qrrE&trrE&mrrE&rrrE&rrrW3"rqufrrr)j!rr;us +rr3-#s8N&tr;Qcrr;Zfr!WW/qrrrDlNcCWbq#:?nr;Qcrr;Qits8Mrrs8Mus"9/?"rr2p#rr;ut +rqucrrqufrrW3&uqYpQprr2utp\t6mr;Qcrr;Qits8N#tJ,~> +rr36&s8W)ts8W)ks8W)ts8W'"s8N#orrE&trrE&ns!IaFr0WCA:J+,K8Ol?J9M%iJ8kMlQ7n?3D +8P`&O8kDWH:.pk1nbiCerr2p.ad(]Zrr2rss8N&ts8N&tpAY-lrVm$"s8N&trVllso`"sks8;lq +rrE&rrrE&ps8W)nrrE&grrE&trr`9#s8MKes8E'!rqucrrqZR"rr<#trr;ut[f/o$T)/H`rrUrD +htm?Qrr2p"rr<#tp&>*PS^%06s8E'!rqucrrqZQurr<#trr;uorrE&grrE&trs8W(s8N&urr;uq +s8W)srr`9#rr2os"TJH#s8Mrr!<2ors8E'!rqcWprr2otrqHEmrqucrrquctrr;uqs8W)srr`9# +rr2os"TJH#s8Mrr!<2ors8E'!rqcWurpc"gSbW![!<2or!<2or!ri6!r;ZfrrVm!!s8N#srri?$ +rr;uqrrE&rs8W'!s8Mlp!<2ut!<2`m!<2or!<2or!ri6!rr7K~> +rr36&s8W)ts8W)ks8W)ts8W'"s8N#orrE&trrE&nrso&.r0N:@:J+,K8Ol?J9E%N_8cqg^8P&hP +!`)N\r^d8a:.ph/nbiCerr2p.ad(]Zrr2rss8N&ts8N&tpAY-lrVm$"s8N&trVllso`"sks8;lq +rrE&rrrE&ps8W)nrrE&grrE&trr`9#s8MKes8E'!rqucrrqZR"rr<#trr;ut[f/o$T)/H`rrUrD +htm?Qrr2p"rr<#tp&>*PS^%06s8E'!rqucrrqZQurr<#trr;uorrE&grrE&trs8W(s8N&urr;uq +s8W)srr`9#rr2os"TJH#s8Mrr!<2ors8E'!rqcWprr2otrqHEmrqucrrquctrr;uqs8W)srr`9# +rr2os"TJH#s8Mrr!<2ors8E'!rqcWurpc"gSbW![!<2or!<2or!ri6!r;ZfrrVm!!s8N#srri?$ +rr;uqrrE&rs8W'!s8Mlp!<2ut!<2`m!<2or!<2or!ri6!rr7K~> +q>UHorr2utqYpQprr3Q/s8N#ts8N&ts8N#ts8N&tr;R!#s8N&ts8N#t,lF$e<)%eR]t_.:96.>G +[C1rfE4j--a.,q4Ydq?USPDhBMXg]G!<2rs"9.?Qrr2rtrql`qrW3&urVuosrVlots8N#ss8W)u +rrE&ts8W)prrE&trrW3"rqucrrr2otrr)lsrW3&urr2utqu?Zp!rr9!rVulrrVuiqs8W,u"98B# +rq?BirW3&uq#CW4mK,I(kq=!>6ioBk4TEM4WqY]U6i:d0DjR2U*pZ:`,hXUXGqrcbo +q"_cJS)jMHs8MfnrVclurr2Tjrr*!!rr2lrrr2lrrVliss8E-#rr;ums8Muts8Muus8Mrrs8N&u +qu6 +q>UHorr2utqYpQprr3Q/s8N#ts8N&ts8N#ts8N&tr;R!#s8N&ts8N#t,lF$e<)%eQ]tV"796IbX +]Y0>#E4`up[['a!\%TGgUeOIGMXg]G!<2rs"9.?Qrr2rtrql`qrW3&urVuosrVlots8N#ss8W)u +rrE&ts8W)prrE&trrW3"rqucrrr2otrr)lsrW3&urr2utqu?Zp!rr9!rVulrrVuiqs8W,u"98B# +rq?BirW3&uq#CW4mK,I(kq=!>6ioBk4TEM4WqY]U6i:d0DjR2U*pZ:`,hXUXGqrcbo +q"_cJS)jMHs8MfnrVclurr2Tjrr*!!rr2lrrr2lrrVliss8E-#rr;ums8Muts8Muus8Mrrs8N&u +qu6 +q>UHorr2utqYpQprr3Q/s8N#ts8N&ts8N#ts8N&tr;R!#s8N&ts8N#t,lF!d<)%eP]Y:n596n7j +`5Ig6E2L+O[$FNu]u%M$W_Q0NMXg]G!<2rs"9.?Qrr2rtrql`qrW3&urVuosrVlots8N#ss8W)u +rrE&ts8W)prrE&trrW3"rqucrrr2otrr)lsrW3&urr2utqu?Zp!rr9!rVulrrVuiqs8W,u"98B# +rq?BirW3&uq#CW4mK,I(kq=!>6ioBk4TEM4WqY]U6i:d0DjR2U*pZ:`,hXUXGqrcbo +q"_cJS)jMHs8MfnrVclurr2Tjrr*!!rr2lrrr2lrrVliss8E-#rr;ums8Muts8Muus8Mrrs8N&u +qu6 +!WW/urttb8s8N#ts8N#ts8N&urr;utrr<#ts8W)qrrrE%s8N&urr2iqs8N&u-N=&CR#4j>Xh_ik +_7E=!`P]a:W(s#bn%$!M?$+NaqrPUo8sG5'rVuos!WW/krrN-!rr2lrs8Mcms8N&u"oeQ$s8W)p +s8W)trrE&trrE&trrE&qs8W'!s8Mio!<2lqrVlfrrVl`p!<2ut#lal(rr2rss8Mfn!<2lqs8N&u +!<2ut!<2or"oeQ%rr;ups#%Y +!WW/urttb8s8N#ts8N#ts8N&urr;utrr<#ts8W)qrrrE%s8N&urr2iqs8N&u-N=&CR#4j>XgPaM +[C8i#io/qY^JLEjk.eXL>(Pntjl>,u8X,,&rVuos!WW/krrN-!rr2lrs8Mcms8N&u"oeQ$s8W)p +s8W)trrE&trrE&trrE&qs8W'!s8Mio!<2lqrVlfrrVl`p!<2ut#lal(rr2rss8Mfn!<2lqs8N&u +!<2ut!<2or"oeQ%rr;ups#%Y +!WW/urttb8s8N#ts8N#ts8N&urr;utrr<#ts8W)qrrrE%s8N&urr2iqs8N&u-N=&CQ\na=Xg#7@ +YdR6,qtg3fc;]@jZejTF:l=kh_V+Na8X,,&rVuos!WW/krrN-!rr2lrs8Mcms8N&u"oeQ$s8W)p +s8W)trrE&trrE&trrE&qs8W'!s8Mio!<2lqrVlfrrVl`p!<2ut#lal(rr2rss8Mfn!<2lqs8N&u +!<2ut!<2or"oeQ%rr;ups#%Y +s8W,u#QOf'rr<#trr2rtrW<-!rql^,rr<#ts8W)us8N#trr2rtrr)lsrr;uurr2pJrqr+?<)BU( +]Y:e^9PBrfVlPeNU&=DjZ.!&_RdU1-J5T%)MXg`Hrr<#tr;Zfr!WW/ss8W'!s8Musrr2iq!ri6! +r;Zcqr;Zfr!WW/ss8W'!s8MusrVlcq"9/?#rqufrrW3&up&G!ir;Qlus8W)rs8N#rrr`9#s8Moq +!ri6!rVuos!WW/trrE&os8W'!s8Mus0#Aj's8%0F_Rq%,o:5lXk2A=^g8?UJb9qM*ZdCC;b&K#[ +i'<4UO>G>&)k5g`rr<#t!WW/trrE&os8W'!s8M]krVl`p"9/?#rqufqrr2p#rr;utrquctrr;uq +s8W'&s8N&urr;uos8Muus8MusrVl`p!<2ip"oeQ$s8W)ts8N#srri?$rr;uqrrW3"rqufrrW`E% +s8W)urqcZorW3&urVuiqrVm&u\T +s8W,u#QOf'rr<#trr2rtrW<-!rql^,rr<#ts8W)us8N#trr2rtrr)lsrr;uurr2pJrqr+?<)BWt +[CE9E9T@EHf%@?+S*K(\bL'LG>&)k5g`rr<#t!WW/trrE&os8W'!s8M]krVl`p"9/?#rqufqrr2p#rr;utrquctrr;uq +s8W'&s8N&urr;uos8Muus8MusrVl`p!<2ip"oeQ$s8W)ts8N#srri?$rr;uqrrW3"rqufrrW`E% +s8W)urqcZorW3&urVuiqrVm&u\T +s8W,u#QOf'rr<#trr2rtrW<-!rql^,rr<#ts8W)us8N#trr2rtrr)lsrr;uurr2pJrqr+?<)BZq +ZF-U<9W@d[q"`67L8)$:laTiNiI,1*ls32IMXg`Hrr<#tr;Zfr!WW/ss8W'!s8Musrr2iq!ri6! +r;Zcqr;Zfr!WW/ss8W'!s8MusrVlcq"9/?#rqufrrW3&up&G!ir;Qlus8W)rs8N#rrr`9#s8Moq +!ri6!rVuos!WW/trrE&os8W'!s8Mus0#Aj's8%0F_Rq%,o:5lXk2A=^g8?UJb9qM*ZdCC;b&K#[ +i'<4UO>G>&)k5g`rr<#t!WW/trrE&os8W'!s8M]krVl`p"9/?#rqufqrr2p#rr;utrquctrr;uq +s8W'&s8N&urr;uos8Muus8MusrVl`p!<2ip"oeQ$s8W)ts8N#srri?$rr;uqrrW3"rqufrrW`E% +s8W)urqcZorW3&urVuiqrVm&u\T +s8NE)s8W)us8N&urqHEmrr2rsrr)isrqucrrq??mrr;us-N'3e;c''u]=GVT9j;:H@;&q;Sabb2 +o%@>B<3F`-4=MkGMXg]Fr;R!#s8N#ts8N#ts8E*"rr2os!WN,urW3&urr;us"98B#rr2ourr;us +"onT%s8N#srsJc*rr2rsrr<#trqufrrqud%rr;uss8W)us8N#trrE&trrN-!rr)rurr2rsrr2rt +rW<-!rr2p$rr;utrr2lr!ri6"rr2oss8Mrr!<2ors8E#urr+bSrr;utrr0bZSH&G7!q#i):$Sq_ +])TksJ=1jR^WS"!rr:@uQ2eB=`4-A(R?(Ifdil-urr<#tr;Qcrr;Zfr!<<&t$31#)rr;uss8W)t +rrN-!rr)rurr2rsrr2rtrW<-!rr2otrr)isrr)isrr)isrr2rtrr2rsrql]qrquctrr;uss8N#s +rrE&trrE&rs8N#ps8W)trrrE%rr<#trVllsrVllsrr<#trr;usqu6Zqr;Qits8N#trr2os$3'u) +pSW+jk5PD[rql`qrr2p$rr;uts8Mus!<2rs!<2uts8N#trr2fp!<2or!ri6!rr;usrr2utrr2ut +r;Zcqqu?]qrr36&s8N&urr<"K~> +s8NE)s8W)us8N&urqHEmrr2rsrr)isrqucrrq??mrr;us-N'3e;c''kZa-s;9p3`Fb07%aSBKCK +m+, +s8NE)s8W)us8N&urqHEmrr2rsrr)isrqucrrq??mrr;us-N'3e;c'*hZ*1C39rn'`p@us3R_6i* +im_%fn>(TOmQ)h]MXg]Fr;R!#s8N#ts8N#ts8E*"rr2os!WN,urW3&urr;us"98B#rr2ourr;us +"onT%s8N#srsJc*rr2rsrr<#trqufrrqud%rr;uss8W)us8N#trrE&trrN-!rr)rurr2rsrr2rt +rW<-!rr2p$rr;utrr2lr!ri6"rr2oss8Mrr!<2ors8E#urr+bSrr;utrr0bZSH&G7!q#i):$Sq_ +])TksJ=1jR^WS"!rr:@uQ2eB=`4-A(R?(Ifdil-urr<#tr;Qcrr;Zfr!<<&t$31#)rr;uss8W)t +rrN-!rr)rurr2rsrr2rtrW<-!rr2otrr)isrr)isrr)isrr2rtrr2rsrql]qrquctrr;uss8N#s +rrE&trrE&rs8N#ps8W)trrrE%rr<#trVllsrVllsrr<#trr;usqu6Zqr;Qits8N#trr2os$3'u) +pSW+jk5PD[rql`qrr2p$rr;uts8Mus!<2rs!<2uts8N#trr2fp!<2or!ri6!rr;usrr2utrr2ut +r;Zcqqu?]qrr36&s8N&urr<"K~> +rr*'#rr<#tr;Zcqs8W,us8W&ss8N-!s8DrsrrE&qrrE&trri?$s8N#rs!7N/M,R38ZEpgATM/a2 +DfBW-8XJi+mHrA-krr2p"rr<#tqYpQpr;Qcrrr2utrr;usrr2utr;QcrqYpQp +rVuosrVuoss8N)urVllsr;Qcrrr3*"s8W)prrE&rrrN-!J,~> +rr*'#rr<#tr;Zcqs8W,us8W&ss8N-!s8DrsrrE&qrrE&trri?$s8N#rs!7N/M,R38VlHbpT1ka8 +j5]:8:R1)"l0-JqJaDL\iQi>aPD\o,rrE&rs8W'#s8N&tq#:X!s8N&urr<#trr<#t!WW/ss8N#s +rrE&trrE&ns8W'!s8Mfn!<2ors8N&us8E0$rr2rsqu6Zqrr2utrr3*"s8N#ms8W)urrE&jrr`9# +s8Mfn!<2ut2#dOSrr<#trk]nMs8%0GmJh6%lEC9"rmkrr2p"rr<#tqYpQpr;Qcrrr2utrr;usrr2utr;QcrqYpQp +rVuosrVuoss8N)urVllsr;Qcrrr3*"s8W)prrE&rrrN-!J,~> +rr*'#rr<#tr;Zcqs8W,us8W&ss8N-!s8DrsrrE&qrrE&trri?$s8N#rrsemmM,R3:USt,dTM2?^ +rqmGS;3AK4j5J-]M>d,:qX>FHP`##-rrE&rs8W'#s8N&tq#:X!s8N&urr<#trr<#t!WW/ss8N#s +rrE&trrE&ns8W'!s8Mfn!<2ors8N&us8E0$rr2rsqu6Zqrr2utrr3*"s8N#ms8W)urrE&jrr`9# +s8Mfn!<2ut2#dOSrr<#trk]nMs8%0GmJh6%lEC9"rmkrr2p"rr<#tqYpQpr;Qcrrr2utrr;usrr2utr;QcrqYpQp +rVuosrVuoss8N)urVllsr;Qcrrr3*"s8W)prrE&rrrN-!J,~> +rr2utrVllsp&>$kqu?]qs8N)uo)A^hrr2utrr4GFR#+a9A;Q(tL1j:dFa&.PAPQKkSsbpa5;,Ai +6U344,a4,Us8N&urr)j!rr<#tqu?]qs8NE)s8W)ts8W)urqZQqrr;uorrE&trs/Q's8N&urr2os +!<2ut$3'u)rr<#ts8W)srr`9#s8N#t"9/?#rql`qrr;uurr2otrql]srr;usrrE&ts8W)urr`9# +s8N#t!<2lqs8N&u#6+Z&rr<#trVllsqu8DMs1`n/6F-9>(@D*E=mF^*A\RJQ98K-lh9@mTs8UM0 +RK(5[`9q4_N1l$]lm>f6oD\dirr +rr2utrVllsp&>$kqu?]qs8N)uo)A^hrr2utrr4GFR#+a9A;Z2"LM9FlR\$%>E_Tf!S!T@X4u@A0 +I!o'(,a4,Us8N&urr)j!rr<#tqu?]qs8NE)s8W)ts8W)urqZQqrr;uorrE&trs/Q's8N&urr2os +!<2ut$3'u)rr<#ts8W)srr`9#s8N#t"9/?#rql`qrr;uurr2otrql]srr;usrrE&ts8W)urr`9# +s8N#t!<2lqs8N&u#6+Z&rr<#trVllsqu8DMs1`n/6F-9>(@D*E=mF^*A\RJQ98K-lh9@mTs8UM0 +RK(5[`9q4_N1l$]lm>f6oD\dirr +rr2utrVllsp&>$kqu?]qs8N)uo)A^hrr2utrr4GFQ\e[9AW2J'LhTOmS>2dNF\Z1`O-GcD4Z%D: +Jq@28,a4)Ts8N&urr)j!rr<#tqu?]qs8NE)s8W)ts8W)urqZQqrr;uorrE&trs/Q's8N&urr2os +!<2ut$3'u)rr<#ts8W)srr`9#s8N#t"9/?#rql`qrr;uurr2otrql]srr;usrrE&ts8W)urr`9# +s8N#t!<2lqs8N&u#6+Z&rr<#trVllsqu8DMs1`n/6F-9>(@D*E=mF^*A\RJQ98K-lh9@mTs8UM0 +RK(5[`9q4_N1l$]lm>f6oD\dirr +s8W)trr3*"s8W)ss8W'!s8Mus!<2]ls8Mfn!<2rs./s8Gs884?;bptJEHH80:.o2DEc+ZK:/c1F +7MQLC3D)h2,7Gi]M=LKC!<2Zkrr*!!rr2lr"oeQ%rr;usrrE&ns8W)mrs&K&s8N#trq$-irqQNn +rW`E%s8W)urr)isrr)isrosF_ro3tXrW(LJYUdome?JWG]Ya=6_gf>im_+%"YjLY`f)Pd8\C1E: +Yi#KG\SmP:mJk.bVY96Rs8E6&rr<#ts8Mus!<2rs!<23^"TJH#s8M3]s8Mus!ri6!q#:?nrVlls +mJd=gs8N&tkPtS]rVlrus8Moq"O)7:b5D8=!<2Bc"TJH#s8M3]s8Mus!ri6!q#:?nrVllsnGe"~> +s8W)trr3*"s8W)ss8W'!s8Mus!<2]ls8Mfn!<2rs./s8Gs884?;bptIEHH80:.o)>E,&*C:/l7G +7MZRC1IXYr*Xjim_+%"YjLY`f)Pd8\C1E: +Yi#KG\SmP:mJk.bVY96Rs8E6&rr<#ts8Mus!<2rs!<23^"TJH#s8M3]s8Mus!ri6!q#:?nrVlls +mJd=gs8N&tkPtS]rVlrus8Moq"O)7:b5D8=!<2Bc"TJH#s8M3]s8Mus!ri6!q#:?nrVllsnGe"~> +s8W)trr3*"s8W)ss8W'!s8Mus!<2]ls8Mfn!<2rs./s8Gs884><)7%IEHH80:.f#im_+%"YjLY`f)Pd8\C1E: +Yi#KG\SmP:mJk.bVY96Rs8E6&rr<#ts8Mus!<2rs!<23^"TJH#s8M3]s8Mus!ri6!q#:?nrVlls +mJd=gs8N&tkPtS]rVlrus8Moq"O)7:b5D8=!<2Bc"TJH#s8M3]s8Mus!ri6!q#:?nrVllsnGe"~> +$ig5+rr<#ts8N&urr)j#rr<#ts8Mlps8Moq"oeQ$rr;urrr`9#s8Mus#QFXfLf7)E:&Rfg:JFO\ +:'a$2)\rnk%hKBQ'FGE^,a4)Ts8N#trpp*hrr)j!rr<#tqYp]ts8W)trr2utqu6`ss8Mio!<2ut +!<2ut!<2rss8E'!rpTjerqucsrr;rrrr3*"s8N#srri?$rr;usrrrE%rr<#tr;R!#s8N#trr2lr +!<2or!<2rs!<2]l!<2or"oeQ$rqcTms8Vrqrr2p#rr;utrr2p%rr;utqYL3jrs/H"s8N#trr2lr +!<2or!<2rs!<2]l!<2or!WN,trr2p"rr;usrr3-#s8N&tr;Qs"s8W)urr2p%rr;uss8N#rrrE&r +rrE&srrE&qrrrE%rr<#tr;Qits8W)trr3*"s8W)trrW3"rqcWurr<#ts8N#t#6+Z%rr;usrVlls +r;QcrrVllsqu6j!s8N&urqud)rr;c$G)+lPs8N&urr2p!rr;uorrrE%s8N&trr<#t#Q=Ppjh7@L +DY[fSI[I=]nbN(\rr<#ts8N&urquctrr<#trr2p"rr<#trr3'!s8Mlp!WN+L~> +$ig5+rr<#ts8N&urr)j#rr<#ts8Mlps8Moq"oeQ$rr;urrr`9#s8Mus"TJ=cLf=+F!DQ8c:'a$2 +)\rnk%hKBQ'FGE^,a4)Ts8N#trpp*hrr)j!rr<#tqYp]ts8W)trr2utqu6`ss8Mio!<2ut!<2ut +!<2rss8E'!rpTjerqucsrr;rrrr3*"s8N#srri?$rr;usrrrE%rr<#tr;R!#s8N#trr2lr!<2or +!<2rs!<2]l!<2or"oeQ$rqcTms8Vrqrr2p#rr;utrr2p%rr;utqYL3jrs/H"s8N#trr2lr!<2or +!<2rs!<2]l!<2or!WN,trr2p"rr;usrr3-#s8N&tr;Qs"s8W)urr2p%rr;uss8N#rrrE&rrrE&s +rrE&qrrrE%rr<#tr;Qits8W)trr3*"s8W)trrW3"rqcWurr<#ts8N#t#6+Z%rr;usrVllsr;Qcr +rVllsqu6j!s8N&urqud)rr;c$G)+lPs8N&urr2p!rr;uorrrE%s8N&trr<#t#Q=Ppk/"!`GPQ.g +LnM0#nbW.]rr<#ts8N&urquctrr<#trr2p"rr<#trr3'!s8Mlp!WN+L~> +$ig5+rr<#ts8N&urr)j#rr<#ts8Mlps8Moq"oeQ$rr;urrr`9#s8Mus"TJ=cLfF1G!DQ8c:'a$2 +)\rnk%hKBQ'FGE^,a4)Ts8N#trpp*hrr)j!rr<#tqYp]ts8W)trr2utqu6`ss8Mio!<2ut!<2ut +!<2rss8E'!rpTjerqucsrr;rrrr3*"s8N#srri?$rr;usrrrE%rr<#tr;R!#s8N#trr2lr!<2or +!<2rs!<2]l!<2or"oeQ$rqcTms8Vrqrr2p#rr;utrr2p%rr;utqYL3jrs/H"s8N#trr2lr!<2or +!<2rs!<2]l!<2or!WN,trr2p"rr;usrr3-#s8N&tr;Qs"s8W)urr2p%rr;uss8N#rrrE&rrrE&s +rrE&qrrrE%rr<#tr;Qits8W)trr3*"s8W)trrW3"rqcWurr<#ts8N#t#6+Z%rr;usrVllsr;Qcr +rVllsqu6j!s8N&urqud)rr;c$G)+lPs8N&urr2p!rr;uorrrE%s8N&trr<#t#Q=PqkJXNrK)'a) +P,Q%@o(r7^rr<#ts8N&urquctrr<#trr2p"rr<#trr3'!s8Mlp!WN+L~> +rVuiqq>UQrs8W)prrE&srrE&nrr`9#rr2co$3'u(r0N4<:1fRdN=]u%A;6)'J6*X?HAdc?9Fqa4 +&-NIgP)8`.s8N#ts8N!#s8N&trqucrrqZR!rr;uts8N&trr<#t!<<&t!rr9!r;Qs"s8W)urr2ot +rr2otrqQNmrr<#trW`E%s8N#trr2rtrr)j#rr<#ts8W)tr;Zfr!<<#sqYpQprVllsrVm*$s8W)t +s8Musr;Q`rs8N&u"oeQ$s8W)ts8W)srrrE%s8N&urr2iqs8E#urVlZn!<2rs!<2rs#6+Z&rr2rs +rVufps8W,us8N9%s8N&urr2rtrr)j#rr<#ts8W)tr;Zfr!<<#srVm!!s8N#qrs&K&rr;uts8N#s +s8)`lrs&K&rr<#trr2otrr)j!rr;utr;QTnq#1Errr;usr;R!#s8N&ts8W)trr;ioqu6m"s8N&u +rr2os!<2rs$3'u(s8MejE/a)[s7lQrs8N&trqufrrX/AT\!1Mp2EsMr8,5[`770:$2c"Ica6 +rVuiqq>UQrs8W)prrE&srrE&nrr`9#rr2co$3'u(r0N4<:1&JLI1U!bA;6)'J6*X?HAmlB9b7j5 +&-NIgP)8`.s8N#ts8N!#s8N&trqucrrqZR!rr;uts8N&trr<#t!<<&t!rr9!r;Qs"s8W)urr2ot +rr2otrqQNmrr<#trW`E%s8N#trr2rtrr)j#rr<#ts8W)tr;Zfr!<<#sqYpQprVllsrVm*$s8W)t +s8Musr;Q`rs8N&u"oeQ$s8W)ts8W)srrrE%s8N&urr2iqs8E#urVlZn!<2rs!<2rs#6+Z&rr2rs +rVufps8W,us8N9%s8N&urr2rtrr)j#rr<#ts8W)tr;Zfr!<<#srVm!!s8N#qrs&K&rr;uts8N#s +s8)`lrs&K&rr<#trr2otrr)j!rr;utr;QTnq#1Errr;usr;R!#s8N&ts8W)trr;ioqu6m"s8N&u +rr2os!<2rs$3'u(s8MejE/a)[s7lQrs8N&trqufrrX/DX]UEh=7T!2g>kqY5>#nNq7U:A:bNf$) +rr2utrVm!!s8N&rrql`jrWW?$s8N#tJ,~> +rVuiqq>UQrs8W)prrE&srrE&nrr`9#rr2co$3'u(r0N4<:0i)CFqA+WA;6)'J6*X?HAmlB9b7j5 +&-NIgP)8`.s8N#ts8N!#s8N&trqucrrqZR!rr;uts8N&trr<#t!<<&t!rr9!r;Qs"s8W)urr2ot +rr2otrqQNmrr<#trW`E%s8N#trr2rtrr)j#rr<#ts8W)tr;Zfr!<<#sqYpQprVllsrVm*$s8W)t +s8Musr;Q`rs8N&u"oeQ$s8W)ts8W)srrrE%s8N&urr2iqs8E#urVlZn!<2rs!<2rs#6+Z&rr2rs +rVufps8W,us8N9%s8N&urr2rtrr)j#rr<#ts8W)tr;Zfr!<<#srVm!!s8N#qrs&K&rr;uts8N#s +s8)`lrs&K&rr<#trr2otrr)j!rr;utr;QTnq#1Errr;usr;R!#s8N&ts8W)trr;ioqu6m"s8N&u +rr2os!<2rs$3'u(s8MejE/a)[s7lQrs8N&trqufrrX/DZ_4c6b=(>oZDu">[D/!Ne +s8W,u"TSK$rr;usrr3'!s8N#t!ri6!r;Qcrrr2utrr2utrr2utrr2utrr2utqu7T4Q\SI6JZ#?@ +Vi=K$\)undD%^C$e_&6>*"MlX'b2IOM=LWFs8N&urr<#ts8N&urr;unrrE&prrE&srr`9#s8Mus +"9/?#rr)j!rr<#tp&>d+s8W)us8N&ts8W)us8N&ts8W)urqZQqrr;uqrr`9#s8Mus!<2rs%0$;, +rr<#ts8W)urr2lr!<2cn!<2rss8Mus!<2rs!<2`m!ri6!r;Qlus8W)srrE&srs\o,s8N&urr<#t +s8N#rrrE&nrrE&ss8W)srrE&srrE&mrrW3"rqucurr<#trVllsrVm!!s8W)ss8W'"s8N#srr`9# +s8Mus"9/?#rr)lsrql]trr<#trVllsr;QcrqYpj#s8W)urr<#trVm!!s8W)ss8W'"s8N#srr`9# +s8Mus"9/?#rr)lsrql]trr<#trVllsr;QcrqYpigO)^rfrr<#trVm!!s8W)ss8W'Fs8N#ts6m@E +=uf,Q=(6#eFa8:ZH$Xd^H?saTDJ +s8W,u"TSK$rr;usrr3'!s8N#t!ri6!r;Qcrrr2utrr2utrr2utrr2utrr2utqu7T4Q\SI6G*A)P +P^lSZ\)cV]D%^C$f%A??*"MlX'b2IOM=LWFs8N&urr<#ts8N&urr;unrrE&prrE&srr`9#s8Mus +"9/?#rr)j!rr<#tp&>d+s8W)us8N&ts8W)us8N&ts8W)urqZQqrr;uqrr`9#s8Mus!<2rs%0$;, +rr<#ts8W)urr2lr!<2cn!<2rss8Mus!<2rs!<2`m!ri6!r;Qlus8W)srrE&srs\o,s8N&urr<#t +s8N#rrrE&nrrE&ss8W)srrE&srrE&mrrW3"rqucurr<#trVllsrVm!!s8W)ss8W'"s8N#srr`9# +s8Mus"9/?#rr)lsrql]trr<#trVllsr;QcrqYpj#s8W)urr<#trVm!!s8W)ss8W'"s8N#srr`9# +s8Mus"9/?#rr)lsrql]trr<#trVllsr;QcrqYpigO)^rfrr<#trVm!!s8W)ss8W'6s8N#ts7!RR +Ak?9FEe'49R%9k@T:__ST+%0ROGS7$AlV]LQdkj/rrE&prs8W(s8N&ts8W)srr`9#s8Muss8E#u +J,~> +s8W,u"TSK$rr;usrr3'!s8N#t!ri6!r;Qcrrr2utrr2utrr2utrr2utrr2utqu7T4Q\SL8DMEk" +LNZLC\)cV]D%^C$e_&6>*"MlX'b2INM"1NEs8N&urr<#ts8N&urr;unrrE&prrE&srr`9#s8Mus +"9/?#rr)j!rr<#tp&>d+s8W)us8N&ts8W)us8N&ts8W)urqZQqrr;uqrr`9#s8Mus!<2rs%0$;, +rr<#ts8W)urr2lr!<2cn!<2rss8Mus!<2rs!<2`m!ri6!r;Qlus8W)srrE&srs\o,s8N&urr<#t +s8N#rrrE&nrrE&ss8W)srrE&srrE&mrrW3"rqucurr<#trVllsrVm!!s8W)ss8W'"s8N#srr`9# +s8Mus"9/?#rr)lsrql]trr<#trVllsr;QcrqYpj#s8W)urr<#trVm!!s8W)ss8W'"s8N#srr`9# +s8Mus"9/?#rr)lsrql]trr<#trVllsr;QcrqYpigO)^rfrr<#trVm!!s8W)ss8W'4s8N#ts7!aa +Ea!F6LmP'DZFIKV\c0/M\[o/OWM,E-HY6`9T\0) +q>UQrs8W)qrrE&rrr`9#s8N#ts8N&u!<2ut#lal(rr2rtrr2fp*<-!9Q\SI7YOLrHn%C,FdG!mO +E"$-RS=lX3*Y/)Z#nA2BM"1NEs8N#os8W)ts8W)srrE&ts8W)trrE&srrE&srr`9#rr;us"98B# +rr)isrr2p!rr;usrrE&orr`9#rr2cos8N&u!<2rs!ri6!rr2utr;QcrrVllsr;Qlus8N#rrs/Q' +rr<#ts8Mlp"9/?#rr)j#rr<#ts8Mrrrr2co!ri6!rr2utr;QcrrVllsr;Qlus8N#rrs/Q'rr<#t +s8Mlp"9/?#rr)j#rr<#ts8Mrrrr2co!ri6!rr2utr;QcrrVllsr;Qlus8N#srsA])rr2rtrr<#t +rr33%s8W)us8N#t!<2ut'`S.3rr<#ts8W)ts8W)us8N#ts8Mrr!<2ut!<2ors8N&us8E*"rr2os +$3'u(rr<#ts8W)trs&K&s8N&urr2otrr2p3rr;uss8W)us8N#ts8N&urr2rtrqucrrr2p-rnE6P +[J9b#s8W)ts8N#srtk\7rr2rtrqto:9120QDfp;LH$Xd^H?oL9!dT* +q>UQrs8W)qrrE&rrr`9#s8N#ts8N&u!<2ut#lal(rr2rtrr2fp*<-!9Q\SI7Y3bK?mCXiCdFI4A +E"$0SS=lX3*Y/)Z#nA2BM"1NEs8N#os8W)ts8W)srrE&ts8W)trrE&srrE&srr`9#rr;us"98B# +rr)isrr2p!rr;usrrE&orr`9#rr2cos8N&u!<2rs!ri6!rr2utr;QcrrVllsr;Qlus8N#rrs/Q' +rr<#ts8Mlp"9/?#rr)j#rr<#ts8Mrrrr2co!ri6!rr2utr;QcrrVllsr;Qlus8N#rrs/Q'rr<#t +s8Mlp"9/?#rr)j#rr<#ts8Mrrrr2co!ri6!rr2utr;QcrrVllsr;Qlus8N#srsA])rr2rtrr<#t +rr33%s8W)us8N#t!<2ut'`S.3rr<#ts8W)ts8W)us8N#ts8Mrr!<2ut!<2ors8N&us8E*"rr2os +$3'u(rr<#ts8W)trs&K&s8N&urr2otrr2p3rr;uss8W)us8N#ts8N&urr2rtrqucrrr2p-rnE6P +[J9b#s8W)ts8N#srtYP5rr2rtrqtrB=]8FIOI;W0StDXHoq28U$_ +q>UQrs8W)qrrE&rrr`9#s8N#ts8N&u!<2ut#lal(rr2rtrr2fp*<-!9Q\SL9PJtVdcD)d`dFI4A +E"$3US=lX3*Y&#Y#nA2BM"1NEs8N#os8W)ts8W)srrE&ts8W)trrE&srrE&srr`9#rr;us"98B# +rr)isrr2p!rr;usrrE&orr`9#rr2cos8N&u!<2rs!ri6!rr2utr;QcrrVllsr;Qlus8N#rrs/Q' +rr<#ts8Mlp"9/?#rr)j#rr<#ts8Mrrrr2co!ri6!rr2utr;QcrrVllsr;Qlus8N#rrs/Q'rr<#t +s8Mlp"9/?#rr)j#rr<#ts8Mrrrr2co!ri6!rr2utr;QcrrVllsr;Qlus8N#srsA])rr2rtrr<#t +rr33%s8W)us8N#t!<2ut'`S.3rr<#ts8W)ts8W)us8N#ts8Mrr!<2ut!<2ors8N&us8E*"rr2os +$3'u(rr<#ts8W)trs&K&s8N&urr2otrr2p3rr;uss8W)us8N#ts8N&urr2rtrqucrrr2p-rnE6P +[J9b#s8W)ts8N#srt>>2rr2rtrqtuKB4G_;WO'(D\c')>\bir<\c02?\I5mSZ(HGTAT5Q^s8Mrr +!<2ut!<2ors8N&us8E*"rr2os"oeQ$rr<"K~> +qu6`ss8Muss8N&u!<2fo')qq1s8N#trr;uss8N&urr<#trr2utr;SAJs884=;Gk"&q>'p!$mrd> +lKCeC?%.0YDKZs/%hK6_&.TqIM"1KDs8W)urr)j$rr;utrr<#trr;uurr2otrql]qrr2otrr2ot +rqcWprql]qrqQKnrqcZprr>sVY3G^945!."Qis*=Kf!dT*;r-AWoH?E[m4.>[ +qu6`ss8Muss8N&u!<2fo')qq1s8N#trr;uss8N&urr<#trr2utr;SAJs884=;Gjt!p\4Np$mrd= +kNGJ@?@I9ZDKZs/%hK6_&.TqIM"1KDs8W)urr)j$rr;utrr<#trr;uurr2otrql]qrr2otrr2ot +rqcWprql]qrqQKnrqcZprreSsY%@9;1nTrr30$s8W)urr2otrr2p" +rr<#trr<#trr;uss8RT~> +qu6`ss8Muss8N&u!<2fo')qq1s8N#trr;uss8N&urr<#trr2utr;SAJs884=;c/t,cHa\$$7_\[oA_ZBooBW:KrerrrE%s8N&trr2utrr3*"s8W)t +s8W)ts8N#ts*t~> +p&>$kq>UHorr2utp\t6mqu6ZqqYpQprVmf6Q\J=%Y5S:rrOECQ<7g&])@BcVHt8e:)\2cW#7_u@ +M"1NFrqcWurr;uts8Mus!<2rs"9/?#rr2p!rr;uss8W)trrE&ss8W)us8W)orrE&rrrE&trrE&s +rrE&prri?$rr<#trr)j)rr<#ts8W)us8N&tr;Qcrrr2utrVllsr;QcrqYpQpr;R$$s8W)ts8N#m +s8W)ss8W)srsSi+s8N&urr<#ts8Mrr!<2ut!<2rs!<2or!<2ip!<2or#QFc'rr2rsrqQNnrr)ls +rr)j)rr<#ts8W)us8N&tr;Qcrrr2utrVllsrr2utqu6Zqq>UHoqu6Zqp\t6mqYpQpr;QcrqYpQp +o)Agks8W)qrrE&orrE&qrrE&mrrE&prrE&rrrE&prs&K&qQb*lkP5&Zrr<#trVm#W@8Llfr-JBg +rH\NjH?o@5"*o3^HjrrE&hrr`9#s8MusJ,~> +p&>$kq>UHorr2utp\t6mqu6ZqqYpQprVmf6Q\J=%XS_qnrO<=P<7g&])@BcVHt8e:)\2cW#7_u@ +M"1NFrqcWurr;uts8Mus!<2rs"9/?#rr2p!rr;uss8W)trrE&ss8W)us8W)orrE&rrrE&trrE&s +rrE&prri?$rr<#trr)j)rr<#ts8W)us8N&tr;Qcrrr2utrVllsr;QcrqYpQpr;R$$s8W)ts8N#m +s8W)ss8W)srsSi+s8N&urr<#ts8Mrr!<2ut!<2rs!<2or!<2ip!<2or#QFc'rr2rsrqQNnrr)ls +rr)j)rr<#ts8W)us8N&tr;Qcrrr2utrVllsrr2utqu6Zqq>UHoqu6Zqp\t6mqYpQpr;QcrqYpQp +o)Agks8W)qrrE&orrE&qrrE&mrrE&prrE&rrrE&prs&K&qQb*lkP5&Zrr<#trVm/\CM8j%T:_^H +rgs1^r1 +p&>$kq>UHorr2utp\t6mqu6ZqqYpQprVmf6Q\J@&KttXJcBetT<7g&])@BfWHt8e:)\2cW#7_u@ +M"1NFrqcWurr;uts8Mus!<2rs"9/?#rr2p!rr;uss8W)trrE&ss8W)us8W)orrE&rrrE&trrE&s +rrE&prri?$rr<#trr)j)rr<#ts8W)us8N&tr;Qcrrr2utrVllsr;QcrqYpQpr;R$$s8W)ts8N#m +s8W)ss8W)srsSi+s8N&urr<#ts8Mrr!<2ut!<2rs!<2or!<2ip!<2or#QFc'rr2rsrqQNnrr)ls +rr)j)rr<#ts8W)us8N&tr;Qcrrr2utrVllsrr2utqu6Zqq>UHoqu6Zqp\t6mqYpQpr;QcrqYpQp +o)Agks8W)qrrE&orrE&qrrE&mrrE&prrE&rrrE&prs&K&qQb*lkP5&Zrr<#trVm)\FaU4"]"7mO +rON!>rji*?rjr-?s186@!P5i<\d#O,?`X&'rqcWprpp'krr<#trVqB~> +s8W,urr33%s8W)us8Moqs8N&u!<2uts8E0$rr<#tqZ$TpqZ$Nn-3*n0M)bksLl@4E64OYC+sRg:% +i\Yf?>`+A%hK9_%hK3qObiQ*rrE&trrN-!rVd!#rr;utrqHEnrr;oq"TSK$rr2os!ri6!q>U^!s +8N&ts8N&trr2p"rr<#tr;Qcrrr3#us8Doss8N!!s8N#mrrE&trrE&trr`9#rr2os!ri6!rVllsr +r3H,s8W)us8N#ts8N&urr2otrqucrrr2rtrr<#urr<#urW<-!rqQKnrr2otrr2p"rr;usrr3'!s +8Mus!<2ut%K?D-rr<#trr<#ts8W)trrE&rrrE&ts8W)us8W)us8W'"s8N#mrrE&trrE&trr`9#r +r2os!ri6!q>UNqs8Muss8E'!rql`qrr)lrrr2p$rr;uss8N#t!ri6!q#:X!s8W)us8N&urr2rt! +<2`m!ri6!rVuos!WW/rs8W)ss8N#srrrE%rr2rsrr3'!s8Mfn#lal(rq374NT^^7 +s'%THMr-eH2r6eH3AM>H?ji7H2`*lH"'(rq>Ua"s8W)us8N&urr2rt!<2`mJ,~> +s8W,urr33%s8W)us8Moqs8N&u!<2uts8E0$rr<#tqZ$TpqZ$Nn-3*n0M)kqtL5Lh?64OYC+sRg:% +i\Yf?>`+A%hK9_%hK3qObiQ*rrE&trrN-!rVd!#rr;utrqHEnrr;oq"TSK$rr2os!ri6!q>U^!s +8N&ts8N&trr2p"rr<#tr;Qcrrr3#us8Doss8N!!s8N#mrrE&trrE&trr`9#rr2os!ri6!rVllsr +r3H,s8W)us8N#ts8N&urr2otrqucrrr2rtrr<#urr<#urW<-!rqQKnrr2otrr2p"rr;usrr3'!s +8Mus!<2ut%K?D-rr<#trr<#ts8W)trrE&rrrE&ts8W)us8W)us8W'"s8N#mrrE&trrE&trr`9#r +r2os!ri6!q>UNqs8Muss8E'!rql`qrr)lrrr2p$rr;uss8N#t!ri6!q#:X!s8W)us8N&urr2rt! +<2`m!ri6!rVuos!WW/rs8W)ss8N#srrrE%rr2rsrr3'!s8Mfn#lal(rq374NT^ +aPG^".l-WT(S`UT)YD_T)G8]T)G8bStDU);;_3L#lal(rr<#ts8W)ts8N)up]#a~> +s8W,urr33%s8W)us8Moqs8N&u!<2uts8E0$rr<#tqZ$TpqZ$Nn-3*n0M)kthA8>sn2@^B7+sRg:% +i\Yf?>`+A%hK9_%hK3qObiQ*rrE&trrN-!rVd!#rr;utrqHEnrr;oq"TSK$rr2os!ri6!q>U^!s +8N&ts8N&trr2p"rr<#tr;Qcrrr3#us8Doss8N!!s8N#mrrE&trrE&trr`9#rr2os!ri6!rVllsr +r3H,s8W)us8N#ts8N&urr2otrqucrrr2rtrr<#urr<#urW<-!rqQKnrr2otrr2p"rr;usrr3'!s +8Mus!<2ut%K?D-rr<#trr<#ts8W)trrE&rrrE&ts8W)us8W)us8W'"s8N#mrrE&trrE&trr`9#r +r2os!ri6!q>UNqs8Muss8E'!rql`qrr)lrrr2p$rr;uss8N#t!ri6!q#:X!s8W)us8N&urr2rt! +<2`m!ri6!rVuos!WW/rs8W)ss8N#srrrE%rr2rsrr3'!s8Mfn#lal(rq374NT^Ua"s8W)us8N&urr2rt!<2`mJ,~> +s8Moq!<2ut!<2ut"oeQ%rr;umrrrE%rr;usr;R-'s8N&urr2rtrr2os-2a*d3"?6E77&1*&.KdT +75>;_&N`KQ9cXZS%hK6^&.TqIM"1KCrrE&rrrW3"rqZQorr2rtrqHEprr<#trr3'!s8Moq!<2ut +s8N&u!<2rs!<2ip!<2rs!<2or!ri6!rr2utrVllsrVllsq#CBns8W)t!WW/ks8W'*s8N&trr;ut +rr;usrrE&ls8W&us8N#rrrE&srrE&ns8W)us8Muus8MZjs8EB*rr;uss8N&ts8N#t!<2]ls8E#u +rr2lr!<2rs!<2cns8N&urr)rurquctrr;uqrrE&srs&K&s8N&trq??lrr2rsrW<-!rpBacrql]q +rr2otrr2otrqucrrr)j$rr<#ts8N#krrE&ts8N!!s8N#crrrDcP]NYnrr3-#qsaXbrr2utrr3Lp +H$Xc7H3/.WaRoN4rql]qrr2otrr2otrr2qJ~> +s8Moq!<2ut!<2ut"oeQ%rr;umrrrE%rr;usr;R-'s8N&urr2rtrr2os-2a*d3"?6E77&1*&.KdT +75>;_&N`KQ9cXZS%hK6^&.TqIM"1KCrrE&rrrW3"rqZQorr2rtrqHEprr<#trr3'!s8Moq!<2ut +s8N&u!<2rs!<2ip!<2rs!<2or!ri6!rr2utrVllsrVllsq#CBns8W)t!WW/ks8W'*s8N&trr;ut +rr;usrrE&ls8W&us8N#rrrE&srrE&ns8W)us8Muus8MZjs8EB*rr;uss8N&ts8N#t!<2]ls8E#u +rr2lr!<2rs!<2cns8N&urr)rurquctrr;uqrrE&srs&K&s8N&trq??lrr2rsrW<-!rpBacrql]q +rr2otrr2otrqucrrr)j$rr<#ts8N#krrE&ts8N!!s8N#crrrDcP]NYnrr3-#qsaXbrr2utrr3t- +E1NVmT:_^IStDUHStDXHStDUGT:V[HT:_^Hrgs:aT:VYRT)t<_b4P`6rql]qrr2otrr2otrr2qJ~> +s8Moq!<2ut!<2ut"oeQ%rr;umrrrE%rr;usr;R-'s8N&urr2rtrr2os-2a*d3"?9H7meL/&.KdT +75>;_&N`KQ9cXZS%hK6^&.TqIM"1KCrrE&rrrW3"rqZQorr2rtrqHEprr<#trr3'!s8Moq!<2ut +s8N&u!<2rs!<2ip!<2rs!<2or!ri6!rr2utrVllsrVllsq#CBns8W)t!WW/ks8W'*s8N&trr;ut +rr;usrrE&ls8W&us8N#rrrE&srrE&ns8W)us8Muus8MZjs8EB*rr;uss8N&ts8N#t!<2]ls8E#u +rr2lr!<2rs!<2cns8N&urr)rurquctrr;uqrrE&srs&K&s8N&trq??lrr2rsrW<-!rpBacrql]q +rr2otrr2otrqucrrr)j$rr<#ts8N#krrE&ts8N!!s8N#crrrDcP]NYnrr3-#qsaXbrr2utrr3D$ +Kt+_)\[o>_\[o>^qmld!kPqQr42m=rON'7DTqbQs8Moq!<2ut!<2ut!<2utJ,~> +qu?Zprr2utq>UQrs8W)srrrE%s8N&trVuos"TSK$s8N#t&cVh0s8W)ur0E1!%M03c'G1lT&-UHorr2utrr2ut +rr3'!s8MusrVliss8Mfns8N#t$3'u)rr<#ts8N#ps8W)trri?$s8N#nrrE&trrE&trrE&trrW3" +rr)lqrr<#urqQNnrr2p(rr<#ts8W)urr2fps8N#t"TJH$rr2osrr2rt!<2]l"9/?"s8)`orrE&n +s8W)urrE&trrW3"rq-3jrr)lsrWrQ'rr;uss8W)lrr`9#rr;iorr2utq#CBns8N)urr3'!s8Mfn +(B39?Fh@SOrpmA#rVlfrrr2rtrg$H+q0E0hH?jg^pNcgbq0N'ds*=lk7`bW/s8MZj!<2rss8E<( +rr2rsrr<#tJ,~> +qu?Zprr2utq>UQrs8W)srrrE%s8N&trVuos"TSK$s8N#t&cVh0s8W)ur0E1!%M03c'G1lT&-UHorr2utrr2ut +rr3'!s8MusrVliss8Mfns8N#t$3'u)rr<#ts8N#ps8W)trri?$s8N#nrrE&trrE&trrE&trrW3" +rr)lqrr<#urqQNnrr2p(rr<#ts8W)urr2fps8N#t"TJH$rr2osrr2rt!<2]l"9/?"s8)`orrE&n +s8W)urrE&trrW3"rq-3jrr)lsrWrQ'rr;uss8W)lrr`9#rr;iorr2utq#CBns8N)urr3'!s8Mfn +(B39?Fh@SOrpmA#rVlfrrr2rtrgR\npR_Y]T:V[HT:c+Sqk*n[".u0VTDb>cQX%]5rr;uirrE&s +s8W'(s8N#trr2rtrdX~> +qu?Zprr2utq>UQrs8W)srrrE%s8N&trVuos"TSK$s8N#t&cVh0s8W)ur0E-u%M03c'G1lT&-UHorr2utrr2ut +rr3'!s8MusrVliss8Mfns8N#t$3'u)rr<#ts8N#ps8W)trri?$s8N#nrrE&trrE&trrE&trrW3" +rr)lqrr<#urqQNnrr2p(rr<#ts8W)urr2fps8N#t"TJH$rr2osrr2rt!<2]l"9/?"s8)`orrE&n +s8W)urrE&trrW3"rq-3jrr)lsrWrQ'rr;uss8W)lrr`9#rr;iorr2utq#CBns8N)urr3'!s8Mfn +(B39?Fh@SOrpmA#rVlfrrr2rtrh>"Rq76R:r4;g:!4r0?!kPqQqmud;#J.3Zbl@\Brq-3jrr)ls +rWrQ'rr;uss8W(K~> +s8W&srr2utrr;rrq>UNqs8VrpqZ$Qo&-)Y.s8N#trr2rsr0E-u%f6e;&,m+?&,HhH%hK6_%hK6_ +&.TqHM"1?As8Mus!<2ut!<2ut&H;_0rr2rsrr<#trr<#ts8W)trVuosqZ$Qo"TSK#s8W)tnGiOf +rVllsq>^Ems8NE)s8W)urr;uts8N#rs8Dp%s8N&urr;usrr3-#s8N&trVllsp\tU"s8W)urr<#t +s8MoqrVlis$3'u)rr;utrr<#trr)lqrWiK&s8W)urr2os"TJH#s8Mus!<2`m$NC)*rr;uts8N&t +qu?Wos8NE)s8W)urr;uts8N#rs8Dp%s8N#trr;usr;Zfrr;Qcrrr3'!s8Mus!WN,trr +s8W&srr2utrr;rrq>UNqs8VrpqZ$Qo&-)Y.s8N#trr2rsr0E-u%f6e;&,m+?&,HhH%hK6_%hK6_ +&.TqHM"1?As8Mus!<2ut!<2ut&H;_0rr2rsrr<#trr<#ts8W)trVuosqZ$Qo"TSK#s8W)tnGiOf +rVllsq>^Ems8NE)s8W)urr;uts8N#rs8Dp%s8N&urr;usrr3-#s8N&trVllsp\tU"s8W)urr<#t +s8MoqrVlis$3'u)rr;utrr<#trr)lqrWiK&s8W)urr2os"TJH#s8Mus!<2`m$NC)*rr;uts8N&t +qu?Wos8NE)s8W)urr;uts8N#rs8Dp%s8N#trr;usr;Zfrr;Qcrrr3'!s8Mus!WN,trr +s8W&srr2utrr;rrq>UNqs8VrpqZ$Qo&-)Y.s8N#trr2rsr0E-u%f6e;&,m+?&,HhH%hK6_%hK6_ +&.TqHL[k6@s8Mus!<2ut!<2ut&H;_0rr2rsrr<#trr<#ts8W)trVuosqZ$Qo"TSK#s8W)tnGiOf +rVllsq>^Ems8NE)s8W)urr;uts8N#rs8Dp%s8N&urr;usrr3-#s8N&trVllsp\tU"s8W)urr<#t +s8MoqrVlis$3'u)rr;utrr<#trr)lqrWiK&s8W)urr2os"TJH#s8Mus!<2`m$NC)*rr;uts8N&t +qu?Wos8NE)s8W)urr;uts8N#rs8Dp%s8N#trr;usr;Zfrr;Qcrrr3'!s8Mus!WN,trr +rjhs +!<2or!<2fo!<2or!<2lq!<2cn!<2ut"oeQ%rr;unrsJ[iLc>kU&.]<`&+pM5&-!1@&,m+D%O7'j +nc/UfpAb0lq#:?nmf*:dpAb$hrr2utrr<#trr;uspAY-lj8T,Yr;Qits8Mlprr2rt#QFc&s8N#t +rr2otrqcWprnm_Urquctrr;uos8N#trs/Q'rr;uss8N#t!<2ip!<1mU!<2lqs8Mus!ri6!r;Qit +s8Mio"9/?#rr)isrql]qrp9Xbrqucurr;usrr<#trVlrus8Mrr!ri6!q>UQrs8W)srrE&qrrE&c +rsJM,Fbm_fE,^Wnrr2rtrr-7rrE&r +rr`9#rr2oss8N&uJ,~> +!<2or!<2fo!<2or!<2lq!<2cn!<2ut"oeQ%rr;unrsJ[iLc>kU&.]<`&+pM5&-!1@&,m+D%O7'j +nc/UfpAb0lq#:?nmf*:dpAb$hrr2utrr<#trr;uspAY-lj8T,Yr;Qits8Mlprr2rt#QFc&s8N#t +rr2otrqcWprnm_Urquctrr;uos8N#trs/Q'rr;uss8N#t!<2ip!<1mU!<2lqs8Mus!ri6!r;Qit +s8Mio"9/?#rr)isrql]qrp9Xbrqucurr;usrr<#trVlrus8Mrr!ri6!q>UQrs8W)srrE&qrrE&c +rsJM,Fbm_fE,^Wnrr2rtrr'"!<2or"9/?"rr2rtrr<"K~> +!<2or!<2fo!<2or!<2lq!<2cn!<2ut"oeQ%rr;unrsJ[iLc>kU&.]<`&+pM5&-!1@&,m+D%O7'j +nc/UfpAb0lq#:?nmf*:dpAb$hrr2utrr<#trr;uspAY-lj8T,Yr;Qits8Mlprr2rt#QFc&s8N#t +rr2otrqcWprnm_Urquctrr;uos8N#trs/Q'rr;uss8N#t!<2ip!<1mU!<2lqs8Mus!ri6!r;Qit +s8Mio"9/?#rr)isrql]qrp9Xbrqucurr;usrr<#trVlrus8Mrr!ri6!q>UQrs8W)srrE&qrrE&c +rsJM,Fbm_fE,^Wnrr2rtrr +qu6Zqq#CBn#64]&s8N&tr;QcrrVuosr;Qlus8W)qs8W'&s8Mq^Lc5hB&-*70&-*7?&-NIfO,*9) +rr`9#s8Mlprr)rurqucrrqcWurr<#ts8N#t"9/?"rqZTnrr)lsrW<-!rqucrrr2otrr2p"rr<#t +qZ$Tp$ig5*s8W)us8N&urql`qrqucrrqHF!rr<#ts8W)us8Mfn!<2uts8E*"rr2]m%K?D-rr2rt +rr<#ts8W)qs8W)rrrE&mrsA])s8N&urr<#tq#:?nrr<#t!rr9!q#:g&s8W)ts8W)us8N&urql`q +rqucrrqHEsrr<#ts8W)jrrN-!rr*!!rr2fp%K?D-rr<#trr<#ts8W)trrE&rs8W)us8W'!s8Moq +!<2ut#6+Z&rr<#to`"sks8N!!s8N#prseu-s8N&urr2rtrr<#trr2utr;Zfrs8W,u"8JF,F8g+k +F3OX`s8N&urr896,q:ZLBl\ItH4Y@JH?jg_H$Xd^H$Xd^H?sl8H3nh;Bi?o>-8*C=rr2utr;Zfr +s8W,u!WW/rrrE&trri?$s8N%K~> +qu6Zqq#CBn#64]&s8N&tr;QcrrVuosr;Qlus8W)qs8W'&s8Mq^Lc5hB&-*70&-*7?&-NIfO,*9) +rr`9#s8Mlprr)rurqucrrqcWurr<#ts8N#t"9/?"rqZTnrr)lsrW<-!rqucrrr2otrr2p"rr<#t +qZ$Tp$ig5*s8W)us8N&urql`qrqucrrqHF!rr<#ts8W)us8Mfn!<2uts8E*"rr2]m%K?D-rr2rt +rr<#ts8W)qs8W)rrrE&mrsA])s8N&urr<#tq#:?nrr<#t!rr9!q#:g&s8W)ts8W)us8N&urql`q +rqucrrqHEsrr<#ts8W)jrrN-!rr*!!rr2fp%K?D-rr<#trr<#ts8W)trrE&rs8W)us8W'!s8Moq +!<2ut#6+Z&rr<#to`"sks8N!!s8N#prseu-s8N&urr2rtrr<#trr2utr;Zfrs8W,u"8JF,F8g+k +F3OX`s8N&urr8HW:f^qNOI2U:T)G;\T(S]^SX>Lc@9-,kb5VD?!<2ors8N&us8E'!rql]qrr2p# +rr<#ts*t~> +qu6Zqq#CBn#64]&s8N&tr;QcrrVuosr;Qlus8W)qs8W'&s8Mq^Lc>nC&-*70&-*7?&-NIfO,*9) +rr`9#s8Mlprr)rurqucrrqcWurr<#ts8N#t"9/?"rqZTnrr)lsrW<-!rqucrrr2otrr2p"rr<#t +qZ$Tp$ig5*s8W)us8N&urql`qrqucrrqHF!rr<#ts8W)us8Mfn!<2uts8E*"rr2]m%K?D-rr2rt +rr<#ts8W)qs8W)rrrE&mrsA])s8N&urr<#tq#:?nrr<#t!rr9!q#:g&s8W)ts8W)us8N&urql`q +rqucrrqHEsrr<#ts8W)jrrN-!rr*!!rr2fp%K?D-rr<#trr<#ts8W)trrE&rs8W)us8W'!s8Moq +!<2ut#6+Z&rr<#to`"sks8N!!s8N#prseu-s8N&urr2rtrr<#trr2utr;Zfrs8W,u"8JF,F8g+k +F3OX`s8N&urr8^+Jqo>ZYdM%?\cTFR\c0/B\[oA_pUU[A[BQ?cLjraTrr2otrqufrrr<#urW3&u +qu6Zqrr3-#s8W)uJ,~> +s8N?'s8N&ts8N#orrE&ts8W)trrE&trrE&srs/Q'rr;utrr2iqs8N&u$NC)*rqr(<2\$B0rX]&? +rX]&?q%*N:rX]DI&.f?_%O7$inc&Of!<2lq!<2cn!<2ip%fZM-s8W)us8N&urr;usq>UQrs8W)p +rrW3"rqQKnrr2otrql]qrqZQqrr;uss8W'!s8Mus!<2ut"TJH#s8MBb!<20]!<2ut!ri6!rr<#t +!WW/trrE&trri?$rr;uarrE&]rrE&trrW3"rr2rtrW3&urVllsrr3-#s8N&tmf3=dq#:?np&>$k +oD\gir;Qits8Mrr"9/?#rpTmerqQKnrq69krq$-irquctrr;uqrr_Y]E,bbq!P&((rsY2C,q1E# +3_EOeDfp@%H2r6hHN/9jH4P:DDJ33G3&*!6-8*C>s8Mrr!ri6!r;Qlus8W)js*t~> +s8N?'s8N&ts8N#orrE&ts8W)trrE&trrE&srs/Q'rr;utrr2iqs8N&u$NC)*rqr(<2\$B0rX]&? +rX]&?q%*N:rX]DI&.f?_%O7$inc&Of!<2lq!<2cn!<2ip%fZM-s8W)us8N&urr;usq>UQrs8W)p +rrW3"rqQKnrr2otrql]qrqZQqrr;uss8W'!s8Mus!<2ut"TJH#s8MBb!<20]!<2ut!ri6!rr<#t +!WW/trrE&trri?$rr;uarrE&]rrE&trrW3"rr2rtrW3&urVllsrr3-#s8N&tmf3=dq#:?np&>$k +oD\gir;Qits8Mrr"9/?#rpTmerqQKnrq69krq$-irquctrr;uqrr_Y]E,bbq!P&((rsYAd:fU\+ +B6JrhQCFKBT)bJ[T+RZeSsu",KQ_!8>#e +s8N?'s8N&ts8N#orrE&ts8W)trrE&trrE&srs/Q'rr;utrr2iqs8N&u$NC)*rqr(;3"?K1rX]&? +rX]&?q%*N:rX]DI&.f?_%O7$inc&Of!<2lq!<2cn!<2ip%fZM-s8W)us8N&urr;usq>UQrs8W)p +rrW3"rqQKnrr2otrql]qrqZQqrr;uss8W'!s8Mus!<2ut"TJH#s8MBb!<20]!<2ut!ri6!rr<#t +!WW/trrE&trri?$rr;uarrE&]rrE&trrW3"rr2rtrW3&urVllsrr3-#s8N&tmf3=dq#:?np&>$k +oD\gir;Qits8Mrr"9/?#rpTmerqQKnrq69krq$-irquctrr;uqrr_Y]E,bbq!P&((rsYW8Jqo8F +Q(FtY[(!U<])T;P]",;WYc47ZO,JdC?HiHLrquctrr;uqrr`9#s8MZjJ,~> +rr2utrVuos"98B#rquctrr;unrrW3"rr)lsrr2otrr2rtrr;uurqud!r0E*s%fHq=&,m+?&+:&9% +O7$inc/Xgs8Moqs8Mrr!<2Qh!<2lqs8Mus!<2ip!<2rs!<2rss8N#t"9/?#rr2p!rr;ups8W)or +rW3"rr2otrq-3jrquctrr;uqrri?$s8N#rrrE&rrr`9#s8Mlp!<2or!<2fo!ri6!rr2uto`"pjr +;Qits8Mrr"TJH$rr2lr!<2or"9/?#rqcWprqucrrqZQqrr;usrrE&jrrE&rrrW3"rr2p&rr;uts +8N&tm/I7gs8W)urr)isrqucrrr)isrr2otrq$-irqud$rr;uts8N&tm/I7gs8W)urr)isrqucrr +r)isrr2otrqud(rSNr^E,]f:E,_?Crr4SLs8N%a.O?Mq0f:sS78-T_A85t$FE_tTH$FOTEboDu> +#J!^4ZG;R/L`#!aSl,=rr2otrq$-irqucurr;utJ,~> +rr2utrVuos"98B#rquctrr;unrrW3"rr)lsrr2otrr2rtrr;uurqud!r0E*s%fHq=&,m+?&+:&9% +O7$inc/Xgs8Moqs8Mrr!<2Qh!<2lqs8Mus!<2ip!<2rs!<2rss8N#t"9/?#rr2p!rr;ups8W)or +rW3"rr2otrq-3jrquctrr;uqrri?$s8N#rrrE&rrr`9#s8Mlp!<2or!<2fo!ri6!rr2uto`"pjr +;Qits8Mrr"TJH$rr2lr!<2or"9/?#rqcWprqucrrqZQqrr;usrrE&jrrE&rrrW3"rr2p&rr;uts +8N&tm/I7gs8W)urr)isrqucrrr)isrr2otrq$-irqud$rr;uts8N&tm/I7gs8W)urr)isrqucrr +r)isrr2otrqud(rSNr^E,]f:E,_?Crr3c5s8N%f7Sm)g?Y!kgG'nq"Od;B(SY#eP&tYY`R?`nlK +7%l\Bk:XT +rr2utrVuos"98B#rquctrr;unrrW3"rr)lsrr2otrr2rtrr;uurqud!r0E*t%fHq=&,m+?&+:&9% +O7$inc/Xgs8Moqs8Mrr!<2Qh!<2lqs8Mus!<2ip!<2rs!<2rss8N#t"9/?#rr2p!rr;ups8W)or +rW3"rr2otrq-3jrquctrr;uqrri?$s8N#rrrE&rrr`9#s8Mlp!<2or!<2fo!ri6!rr2uto`"pjr +;Qits8Mrr"TJH$rr2lr!<2or"9/?#rqcWprqucrrqZQqrr;usrrE&jrrE&rrrW3"rr2p&rr;uts +8N&tm/I7gs8W)urr)isrqucrrr)isrr2otrq$-irqud$rr;uts8N&tm/I7gs8W)urr)isrqucrr +r)isrr2otrqud(rSNr^E,]f:E,_?Crr4SLs8N%mBS)"tO->p"TV\ZkZaRBT]=PSc]=PSc]"#2TY +,\=lS!K8!Mhcdgbl.PArr2otrq$-irqucurr;utJ,~> +$ig5+s8N&trr;utrquctrr;umrrrE%rr<#trr;us!WW/trseu-rr2rtrr2rqQA7C/r=Ar>rX]&? +rX]&?q@EW;q[`l?,E@QLq#:Eps8Mus!<2cns8Mlp!<2Qhs8N&u"TJH$rr2fp!<2ut!<2ut!<2cn +!ri6!rVm*$s8N&ts8Mus!<2or"oeQ$rr;uss8W)rrrN-!rr2fp!<2or!ri6"rr2os!ri6!qu6`s +s8Mus#6+Z%s8N&trVllsr;Qs"s8N#trr2rtrqucsrr;usqu6Zqr;Qits8W)trr3'!s8Moq!ri6! +rVm*$s8N&ts8Mus!<2or"oeQ$rr;uss8W)rrrE&ls8W)trs/Q's8N#ts8N#t!<2Tirr2co!<2rs +s8E*"rr2lr!ri6!nGiOfrr36&s8W)ts8W)trrE&is8N#orrE&ss8W''s8N#nc$jVNrGhjV!I+)1 +s!a6`,q1E#2*!fc7S6ER#nKp8ju$/3&NEB.4-[grr2utrVuos!rr9!rVlru +s8MZjJ,~> +$ig5+s8N&trr;utrquctrr;umrrrE%rr<#trr;us!WW/trseu-rr2rtrr2rqQA7C/r=Ar>rX]&? +rX]&?q@EW;q[`l?,E@QLq#:Eps8Mus!<2cns8Mlp!<2Qhs8N&u"TJH$rr2fp!<2ut!<2ut!<2cn +!ri6!rVm*$s8N&ts8Mus!<2or"oeQ$rr;uss8W)rrrN-!rr2fp!<2or!ri6"rr2os!ri6!qu6`s +s8Mus#6+Z%s8N&trVllsr;Qs"s8N#trr2rtrqucsrr;usqu6Zqr;Qits8W)trr3'!s8Moq!ri6! +rVm*$s8N&ts8Mus!<2or"oeQ$rr;uss8W)rrrE&ls8W)trs/Q's8N#ts8N#t!<2Tirr2co!<2rs +s8E*"rr2lr!ri6!nGiOfrr36&s8W)ts8W)trrE&is8N#orrE&ss8W''s8N#nc$jVNrGhjV!I+)1 +s!aF,:fU\+A8,q&G^Y1!Mia3mTVSQdV4X6BOGnsHI<]gNBk:XT +$ig5+s8N&trr;utrquctrr;umrrrE%rr<#trr;us!WW/trseu-rr2rtrr2rqQA7F0r=Ar>rX]&? +rX]&?q@EW;q[`l?,E@NKq#:Eps8Mus!<2cns8Mlp!<2Qhs8N&u"TJH$rr2fp!<2ut!<2ut!<2cn +!ri6!rVm*$s8N&ts8Mus!<2or"oeQ$rr;uss8W)rrrN-!rr2fp!<2or!ri6"rr2os!ri6!qu6`s +s8Mus#6+Z%s8N&trVllsr;Qs"s8N#trr2rtrqucsrr;usqu6Zqr;Qits8W)trr3'!s8Moq!ri6! +rVm*$s8N&ts8Mus!<2or"oeQ$rr;uss8W)rrrE&ls8W)trs/Q's8N#ts8N#t!<2Tirr2co!<2rs +s8E*"rr2lr!ri6!nGiOfrr36&s8W)ts8W)trrE&is8N#orrE&ss8W''s8N#nc$jVNrGhjV!I+)1 +s!a[UJqo8FPF%c1USk/rZF7B[_oKpBa25R&\$N6;Vk]lRQBRAfLOWXSrr2utrVuos!rr9!rVlru +s8MZjJ,~> +!<2rs!<2cn!ri6!rVm!!s8W)rrrE&rrrE&ts8W)trrE&prs&K&r0E*r$i:D'%/^PC$mCXdnc&Rf +s8N&urr2p!rr;usrr`9#s8N#t!<2uts8E'!rr)isrr)lsrWE3"s8Mrrs8Mio!ri6!rr3'!s8Mus +#QFc&s8N&urr2p&rr;uts8N&tr;QcrrVm!!s8N#rs8W)urrE&ss8W'!s8Mrr!<2rs#lal'rr<#t +s8Mio!<2fo#QFc&s8N#trqucrrr)j!rr;usrVuoss8N)urVuos!WW/srrE&srs8W(rr2rtrr;un +rrE&ors/Q'rr;uss8Mrr!<2rs"9/?"rr)lsrr;uurr)lsrWiK&s8W)us8Mfns8E-#rr;uprrE&t +rrE&ts8W'#s8N&trr2utrVllsrr3'!s8Moq!ri6!qu?]qrVm!!s8W)ns8W'#s8N&tqu6Zqrr2ut +rr<#t"98B#rr2otrr)isrr2p!rr;uprrVr.HN%m\EAH;Ks8N&urr896,q1E#2*!fc7S6ER#nKp8ju$/3&NEB.4-[grr2p!rr;uprrW3"rql`qrr)j"rr<#ts*t~> +!<2rs!<2cn!ri6!rVm!!s8W)rrrE&rrrE&ts8W)trrE&prs&K&r0E*r$i:D'%/^PC$mCXdnc&Rf +s8N&urr2p!rr;usrr`9#s8N#t!<2uts8E'!rr)isrr)lsrWE3"s8Mrrs8Mio!ri6!rr3'!s8Mus +#QFc&s8N&urr2p&rr;uts8N&tr;QcrrVm!!s8N#rs8W)urrE&ss8W'!s8Mrr!<2rs#lal'rr<#t +s8Mio!<2fo#QFc&s8N#trqucrrr)j!rr;usrVuoss8N)urVuos!WW/srrE&srs8W(rr2rtrr;un +rrE&ors/Q'rr;uss8Mrr!<2rs"9/?"rr)lsrr;uurr)lsrWiK&s8W)us8Mfns8E-#rr;uprrE&t +rrE&ts8W'#s8N&trr2utrVllsrr3'!s8Moq!ri6!qu?]qrVm!!s8W)ns8W'#s8N&tqu6Zqrr2ut +rr<#t"98B#rr2otrr)isrr2p!rr;uprrVr.HN%m\EAH;Ks8N&urr8HW:fU\+A8,q&G^Y1!Mia3m +TVSQdV4X6BOGnsHI<]gNBk:XT +!<2rs!<2cn!ri6!rVm!!s8W)rrrE&rrrE&ts8W)trrE&prs&K&r0E*s$iUV&%/gVD$mCXcnc&Rf +s8N&urr2p!rr;usrr`9#s8N#t!<2uts8E'!rr)isrr)lsrWE3"s8Mrrs8Mio!ri6!rr3'!s8Mus +#QFc&s8N&urr2p&rr;uts8N&tr;QcrrVm!!s8N#rs8W)urrE&ss8W'!s8Mrr!<2rs#lal'rr<#t +s8Mio!<2fo#QFc&s8N#trqucrrr)j!rr;usrVuoss8N)urVuos!WW/srrE&srs8W(rr2rtrr;un +rrE&ors/Q'rr;uss8Mrr!<2rs"9/?"rr)lsrr;uurr)lsrWiK&s8W)us8Mfns8E-#rr;uprrE&t +rrE&ts8W'#s8N&trr2utrVllsrr3'!s8Moq!ri6!qu?]qrVm!!s8W)ns8W'#s8N&tqu6Zqrr2ut +rr<#t"98B#rr2otrr)isrr2p!rr;uprrVr.HN%m\EAH;Ks8N&urr8^+Jqo8FPF%c1USk/rZF7B[ +_oKpBa25R&\$N6;Vk]lRQBRAfLOWXSrr2p!rr;uprrW3"rql`qrr)j"rr<#ts*t~> +s8N)urr2utqYpQpr;Qcrrr2utqZ$Tprr2utrVm!!s8W)trrE&ts8W'0s881:5q"35/1iJ,0JP== +1]'!F1GU[=0.e_*.Ocf&NJ@!'rr;uts8N&tr;Zfrrr3'!s8N#t!<2rs!<2rs#lal(rr2rss8Mio +!ri6!rVllsr;QcrrVllsr;R$$s8N&urr;uqs8W'#s8N&tr;QcrrVm*$s8W)urr2lr#6+Z&rr<#t +rVlrus8MWis8Mlp"oeQ%rr;uqrrrE%s8N&tr;QcrrVm*$s8W)urr2lr#6+Z&rr<#trVlrus8MWi +s8Mlp"oeQ%rr;uqrrrE%s8N&tr;QcrrVm*$s8W)urr2lr#6+Z&rr<#tp&>$krr2utrVuosrVm!! +s8W)rrrrE%rr<#trr2utrr3*"s8W)prrrE%rr2rsr;Qlus8W)krrE&trrE&ss8W)srr`9#s8Mrr +"oeQ$s8W)trrE&trr`9#s8Mlp!WN,urWW2\X+GA2rc.sW!4Vh)/!_n<.4m833B]Yt8kr8a=^GQL +C2Ig&ARSnK<`)R`76s'r2)-[3.Pf*FrqcWurr;uss8Mrr"9/?#rqQMD~> +s8N)urr2utqYpQpr;Qcrrr2utqZ$Tprr2utrVm!!s8W)trrE&ts8W'3s881:67OH9/1iM.0etOA +1c7-Kr\YKK1GU[=0.nh-.Om97L@P$kfSDKC&NJqo8G +Q("AAWMu_dS!B(oLOsr!F)G]'?WpH,8':l2qYp`us8N#trqucurr<#tq#>j~> +s8N)urr2utqYpQpr;Qcrrr2utqZ$Tprr2utrVm!!s8W)trrE&ts8W'+s881:67XT>0/,+9r\OX5 +2Z,N62AS/,1GU[=0.nh,23!@\s8N&ts8W)urqufrrr2p!rr;usrrE&srrE&srs8W(s8N#trr;un +rrW3"rr)isrqucrrr)isrqud$rr;uts8N&tr;Zfr"98B#rqucrrr)j$rr<#ts8N#rrs&K&s8N&u +rr)iurr;uhs8W)prrrE%s8N&tr;Qs"s8W)urqucrrr)j$rr<#ts8N#rrs&K&s8N&urr)iurr;uh +s8W)prrrE%s8N&tr;Qs"s8W)urqucrrr)j$rr<#ts8N#rrs&K&s8N&urq69krr2otrr)lsrr)j! +rr<#tr;Qs"s8N&urr2otrr2p"rr<#tqYp`us8N#trqucurr<#tp&>$krr2utrVuosrVm!!s8W)r +rrrE%rr<#trr2utrr3*"s8W)prrN-!rr*)ujf +s8E'!rr2p+rr;uss8W)urr2rtrql`qrW3&ur;Qcrrr2utrVuoss8N0"s8N#ts8F;AQ@`=TIA*=/ +UlK_ZWN3,&S;36-X/W.gH\8]8\$_oD>E+C-rr2utr;ZfrrVllsrr3*"s8N#is8W)trrE&krrE&o +rrE&ts8N#trrW3"rr2otrqufrrr)j#rr;utrr2fps8N&u!<2rs#QFc&s8W)urr)isrr2p!rr;ur +rrE&trrE&ts8W'%s8N&ts8N#t!ri6!rr2utqYpZss8N#ps8W)urrE&srs/Q'rr<#ts8Mus!<2ut +!ri6!rVllsrr2utrr<#t"onT%rr;usrrW3"rr2otrqcWsrr;usqu?]qs8N)urVm-%s8N&urr;ur +rrE&ls8W)urri?$s8N#prs/Q's8N&ts8N#t!<2lq!<2Zk!<2rs!<2ut!<2fo!ri6!q>^Kos8N6$ +s8W)tqu6p#s8W)urr;usrrE&qrrE&krrE&srrE&trr`5WX+1+g"E8@DqYpEm.@*n,0.en93B]Yt +8kr8a=^GQLC2Ig&ARSnK<`)R`76s'r2)-[<;Feh)rrE&srrE&trrE&orrW3"rqueH~> +s8E'!rr2p+rr;uss8W)urr2rtrql`qrW3&ur;Qcrrr2utrVuoss8N0"s8N#ts8F;AQ@`CYL9e.m +[@2Q-Z*^mHUl:YI[C!B:J;1;8ZE^$^Kos8N6$ +s8W)tqu6p#s8W)urr;usrrE&qrrE&krrE&srrE&trr`5WX+1+g"E8@DqYpEm.@Xmb=B]'BBl8!: +I=d64OHl9-UoC>iT:;+-N/*"5G]Rb:ARAVEDHG!WrrE&srrE&trrE&orrW3"rqueH~> +s8E'!rr2p+rr;uss8W)urr2rtrql`qrW3&ur;Qcrrr2utrVuoss8N0"s8N#ts8F;AQ@`IaKVkTD +WKi+)]YVG$Xc]3i_SO-jKnu\.X/VM,@#]p2rr2utr;ZfrrVllsrr3*"s8N#is8W)trrE&krrE&o +rrE&ts8N#trrW3"rr2otrqufrrr)j#rr;utrr2fps8N&u!<2rs#QFc&s8W)urr)isrr2p!rr;ur +rrE&trrE&ts8W'%s8N&ts8N#t!ri6!rr2utqYpZss8N#ps8W)urrE&srs/Q'rr<#ts8Mus!<2ut +!ri6!rVllsrr2utrr<#t"onT%rr;usrrW3"rr2otrqcWsrr;usqu?]qs8N)urVm-%s8N&urr;ur +rrE&ls8W)urri?$s8N#prs/Q's8N&ts8N#t!<2lq!<2Zk!<2rs!<2ut!<2fo!ri6!q>^Kos8N6$ +s8W)tqu6p#s8W)urr;usrrE&qrrE&krrE&srrE&trr`5WX+1+g"E8@DqYpEm.AD6ULl7=XQ^aSA +VlR#,[_';la3)QF_S3XkZ`^=+US"$APE1WZQ#+\@rrE&srrE&trrE&orrW3"rqueH~> +qZ$TprVuiqrVuiqs8N)uq#:Qts8W)us8Mrr"9/?"rr2p:r0DnBGa>bFXfe@ST!c)<\#YjgY-#+D +WJI\Trr*5sIU\:knc/Xgrr)isrql]trr<#trVuoss8W&sq>UNqs8MTh"9/?#rr2p"rr<#trVlls +rVuosrVllsqu6`ss8N#t"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ts8W)ts8W)srrE&trsSi+ +s8N&ts8N&ts8Mus!<2fo!<2ut"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ts8W)ts8W)srrE&t +rsSi+s8N&ts8N&ts8Mus!<2fo!<2ut"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ss8W)us8W)s +rrE&trsSi+s8N&urr<#ts8N#t!<2forr2lrs8N#ts8N#ts8N&u!<2uts8Mus!<2ors8N&us8Mus +!<2ut$i^2+rr<#ts8W)urr2otrqZTnrr)lsrr2rtrr2rtrr;uurr2pYrqP?DF`DD?L?eg=rr2rt +Q<8EJ;D^9l4[DP0:/Y(p?=IM]D/F$!@:!,<;,'YO5s71b2c=R=9$%#2s8W)ts8W)urrE&ts8W)s +rrE&rs8W)us*t~> +qZ$TprVuiqrVuiqs8N)uq#:Qts8W)us8Mrr"9/?"rr2pGr0DnCHb/S.kj$EOZe!g^fZ'Gjg=Y'! +b*&X^kiV$[J7OXonc/Xgrr)isrql]trr<#trVuoss8W&sq>UNqs8MTh"9/?#rr2p"rr<#trVlls +rVuosrVllsqu6`ss8N#t"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ts8W)ts8W)srrE&trsSi+ +s8N&ts8N&ts8Mus!<2fo!<2ut"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ts8W)ts8W)srrE&t +rsSi+s8N&ts8N&ts8Mus!<2fo!<2ut"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ss8W)us8W)s +rrE&trsSi+s8N&urr<#ts8N#t!<2forr2lrs8N#ts8N#ts8N&u!<2uts8Mus!<2ors8N&us8Mus +!<2ut$i^2+rr<#ts8W)urr2otrqZTnrr)lsrr2rtrr2rtrr;uurr2pYrqP?DF`DD?L?eg=rr2rt +Rq[n9Ea`KmDKC&NJqo8GQ("AAWMu_dS!B(oLOsr!F)G]'@WI3]=j$aCs8W)ts8W)urrE&ts8W)s +rrE&rs8W)us*t~> +qZ$TprVuiqrVuiqs8N)uq#:Qts8W)us8Mrr"9/?"rr2pGr0DnFJXsB`ZF$Tpa7oB(q;J*iqYBg? +k+%sQb/_N.JnU*snc/Xgrr)isrql]trr<#trVuoss8W&sq>UNqs8MTh"9/?#rr2p"rr<#trVlls +rVuosrVllsqu6`ss8N#t"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ts8W)ts8W)srrE&trsSi+ +s8N&ts8N&ts8Mus!<2fo!<2ut"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ts8W)ts8W)srrE&t +rsSi+s8N&ts8N&ts8Mus!<2fo!<2ut"9/?"rr2rsrr<#urr;uurr2p!rr;uss8W)ss8W)us8W)s +rrE&trsSi+s8N&urr<#ts8N#t!<2forr2lrs8N#ts8N#ts8N&u!<2uts8Mus!<2ors8N&us8Mus +!<2ut$i^2+rr<#ts8W)urr2otrqZTnrr)lsrr2rtrr2rtrr;uurr2pYrqP?DF`DD?L?eg=rr2rt +U4KJFRZN`"S"?CQX08h;]>)8(b0%cA^:Uk\Y,\CpT:;.1Odi>LDTr+Zs8W)ts8W)urrE&ts8W)s +rrE&rs8W)us*t~> +&c_k0s8N&ts8N&ts8N&ts8W)rrrW3"rqucrrr)j"rr;uts8Muus8Mrrs8N#t.f>T`@UHorr2utr;Qp!s8W)trr;uss8N)u +rVllsrVulrs8W,us8W,urVllsrr2utrr<#t!rr9!rVuosrVllsrr3-#s8W)tr;Qlus8W)qrr`9# +s8Mus!<2rs"oeQ$s8W)ts8W'$s8N&urr2otrr)isrr2otrr2rtrr2otrr)j"rr<#trqucurr<#t +qu6cts8W)srrE&srrrE%rr<#trr<#t"TSK$s8N#t!<2rs!<2ut!<2uts8N#t!<2rs"TJH$rr2iq +"9/?#rql]trr<#trVllsrVm'#s8N&urqQKnrr2p$rr;uss8Mus"9/?#rr)j'rr;utrr2rtrr2fp +!ri6!r;Qp!s8N&tqu6s$s8W)urr<#tq#:?nrr30$s8N#trr)j!rr<#trVm3's8N&trr<#trql]s +rr;uqs#g;\rr;urjJIEGHdMfmrr;utQ<8ThLjEZ6:eO8M:/Y(p?=IM]D/F$!@:!,<;,'YP8P`>u +I>EQ'9$%#/rrW3"rqud!rr;utrql^"rr<#ts8N%K~> +&c_k0s8N&ts8N&ts8N&ts8W)rrrW3"rqucrrr)j"rr;uts8Muus8Mrrs8N#t.f>T`@XP?=kg\1t +NM+emo&[0JVSgldZEfU``RiJb]ROLPL@PUHorr2utr;Qp!s8W)trr;uss8N)u +rVllsrVulrs8W,us8W,urVllsrr2utrr<#t!rr9!rVuosrVllsrr3-#s8W)tr;Qlus8W)qrr`9# +s8Mus!<2rs"oeQ$s8W)ts8W'$s8N&urr2otrr)isrr2otrr2rtrr2otrr)j"rr<#trqucurr<#t +qu6cts8W)srrE&srrrE%rr<#trr<#t"TSK$s8N#t!<2rs!<2ut!<2uts8N#t!<2rs"TJH$rr2iq +"9/?#rql]trr<#trVllsrVm'#s8N&urqQKnrr2p$rr;uss8Mus"9/?#rr)j'rr;utrr2rtrr2fp +!ri6!r;Qp!s8N&tqu6s$s8W)urr<#tq#:?nrr30$s8N#trr)j!rr<#trVm3's8N&trr<#trql]s +rr;uqs#g;\rr;urjJIEGHdMfmrr;utRq\%PRui8LH$FR^Jqo8GQ("AAWMu_dS!B(oLOsr!G^4Xg +Od_Vs=j$a@rrW3"rqud!rr;utrql^"rr<#ts8N%K~> +&c_k0s8N&ts8N&ts8N&ts8W)rrrW3"rqucrrr)j"rr;uts8Muus8Mrrs8N#t.f>Q^AV+BXZts;d +PfE@eoC_%:a7o5.c/t[FC8-lV@!l[IL%53Brr;usrVuosq>UHorr2utr;Qp!s8W)trr;uss8N)u +rVllsrVulrs8W,us8W,urVllsrr2utrr<#t!rr9!rVuosrVllsrr3-#s8W)tr;Qlus8W)qrr`9# +s8Mus!<2rs"oeQ$s8W)ts8W'$s8N&urr2otrr)isrr2otrr2rtrr2otrr)j"rr<#trqucurr<#t +qu6cts8W)srrE&srrrE%rr<#trr<#t"TSK$s8N#t!<2rs!<2ut!<2uts8N#t!<2rs"TJH$rr2iq +"9/?#rql]trr<#trVllsrVm'#s8N&urqQKnrr2p$rr;uss8Mus"9/?#rr)j'rr;utrr2rtrr2fp +!ri6!r;Qp!s8N&tqu6s$s8W)urr<#tq#:?nrr30$s8N#trr)j!rr<#trVm3's8N&trr<#trql]s +rr;uqs"XNQrr;urjJIEGHdMfmrr;utU4KSW\$)[(U7n?[X08h;]>)8(b0%cA^:Uk\Y,\Cprh9Xp +Yd_$ADTr+WrrW3"rqud!rr;utrql^"rr<#ts8N%K~> +s8N&urr2rt%0$;+s8N&ts8N&ts8Mcm"TJH#s8Mrr!<2rs!<2ut!<2rs/Gtc`@qLSTCc$LErr)copOH_3L@P9Bs8W)urr2iq!<2rs!<2cnrr2iq!ri6!p&G'kqu?]qrVlot +s82fqs8W)urr`9#rr2iq!<2ip!<2lqrr2iq!ri6!rr2utrVuoss8N)uqYpQprVlots8Dp#s8N#t +rr2iqs8Mrr!<2ip!<2lqrr2iq!ri6!rr2utrVuoss8N)uqYpQprVlots8Dp#s8N#trr2iqs8Mrr +!<2ip!<2lqrr2iq!ri6!rr2utrVuosp](9m!WW/us8Dots8N#t!<2ips8N#t!<2uts8N&us8Mrr +"9/?#rr)j#rr;uss8Mrrrr)rurqcZprW3&urr;rr!WW/urrE&ps8W)trrE&ts8W)us8W)rrr`9# +s8Mus"oeQ$rr;urrrr5JVKKBHr;S43=FPpZN0'3]K6D0HA6rGG@V0@lD/*Wj? +s8N&urr2rt%0$;+s8N&ts8N&ts8Mcm"TJH#s8Mrr!<2rs!<2ut!<2rs/Gtc`@XY9'i8<1sNgn,T +kMW_=Ts;SRf;Xgu[F!7?Xaao@L@P9Bs8W)urr2iq!<2rs!<2cnrr2iq!ri6!p&G'kqu?]qrVlot +s82fqs8W)urr`9#rr2iq!<2ip!<2lqrr2iq!ri6!rr2utrVuoss8N)uqYpQprVlots8Dp#s8N#t +rr2iqs8Mrr!<2ip!<2lqrr2iq!ri6!rr2utrVuoss8N)uqYpQprVlots8Dp#s8N#trr2iqs8Mrr +!<2ip!<2lqrr2iq!ri6!rr2utrVuosp](9m!WW/us8Dots8N#t!<2ips8N#t!<2uts8N&us8Mrr +"9/?#rr)j#rr;uss8Mrrrr)rurqcZprW3&urr;rr!WW/urrE&ps8W)trrE&ts8W)us8W)rrr`9# +s8Mus"oeQ$rr;urrrr5JVKKBHr;R.oBp+gPSt`!PS!9'7NuF+FR\6IUWMQ5VQ&praNfoWqT;/*O +R[9%;b5M>Brr<#trVm'#s8N#trqufqrW3&ur;V9~> +s8N&urr2rt%0$;+s8N&ts8N&ts8Mcm"TJH#s8Mrr!<2rs!<2ut!<2rs/Gtc`AV*-$M2#%hQcJXb +mIB)0aReTLp>hrW++&6=(3s\SL%50As8W)urr2iq!<2rs!<2cnrr2iq!ri6!p&G'kqu?]qrVlot +s82fqs8W)urr`9#rr2iq!<2ip!<2lqrr2iq!ri6!rr2utrVuoss8N)uqYpQprVlots8Dp#s8N#t +rr2iqs8Mrr!<2ip!<2lqrr2iq!ri6!rr2utrVuoss8N)uqYpQprVlots8Dp#s8N#trr2iqs8Mrr +!<2ip!<2lqrr2iq!ri6!rr2utrVuosp](9m!WW/us8Dots8N#t!<2ips8N#t!<2uts8N&us8Mrr +"9/?#rr)j#rr;uss8Mrrrr)rurqcZprW3&urr;rr!WW/urrE&ps8W)trrE&ts8W)us8W)rrr`9# +s8Mus"oeQ$rr;urrrr5JVKKBHr;R+uJ[)Vl]"G_g\@)=B)mm&c^Ve+7b/_B5]=5,OZ*^mJ]"Pbe +\$`;Tbl.PDrr<#trVm'#s8N#trqufqrW3&ur;V9~> +!<<#srr<#ts8W,us8W)ts8NH*s8N&urr<#ts8N#t!WN,urr<#urr2p!rr<#trrUHorr<#to)A^hr;Qp!s8W)trr30$s8W)ts8N#srrE&trrE&ors&K&rr;utrpTjerqQKn +rqucrrql]trr;utrr)otrr2os!<2ut!<2fo#6+Z%s8N&tn,ECeq#:?nr;Qcrqu6cts8N&trW)ut +rr2otrr2otrqZQurr;utrr;uas8N#rrrE&rrrE&os8;irs8DrorrE&orrrE%rr;uspAY-lp](6l +rVllsr;Qcrq>^Bl!<<#squ6Zqq>UWts8N&trqcWtrqP6lq#(.BQ<8ThLl@F[R%'_@TqeE\WMQ;Y +T:h^GUT(,cU7n6OS=#M%N/3.69$%&3q>UWts8N&trq??lrqueH~> +!<<#srr<#ts8W,us8W)ts8NH*s8N&urr<#ts8N#t!WN,urr<#urr2p!rr<#trrUHorr<#to)A^hr;Qp!s8W)trr30$s8W)ts8N#srrE&trrE&ors&K&rr;utrpTjerqQKn +rqucrrql]trr;utrr)otrr2os!<2ut!<2fo#6+Z%s8N&tn,ECeq#:?nr;Qcrqu6cts8N&trW)ut +rr2otrr2otrqZQurr;utrr;uas8N#rrrE&rrrE&os8;irs8DrorrE&orrrE%rr;uspAY-lp](6l +rVllsr;Qcrq>^Bl!<<#squ6Zqq>UWts8N&trqcWtrqP6lq#(.BRq\%PS"?@MW2m&(Yd:dJ]=GM` +]tLtd]">J[ZE^U8X/MhfSsl"+=j$dDq>UWts8N&trq??lrqueH~> +!<<#srr<#ts8W,us8W)ts8NH*s8N&urr<#ts8N#t!WN,urr<#urr2p!rr<#trrDI*+U!EH.p\*XMcLg]'qWP#$-@UJR-A6AtL%53Bs8W)trr3E+s8W)ts8N&urr<#trr;rrr;Qcr +r;Qcrq>UHorr<#to)A^hr;Qp!s8W)trr30$s8W)ts8N#srrE&trrE&ors&K&rr;utrpTjerqQKn +rqucrrql]trr;utrr)otrr2os!<2ut!<2fo#6+Z%s8N&tn,ECeq#:?nr;Qcrqu6cts8N&trW)ut +rr2otrr2otrqZQurr;utrr;uas8N#rrrE&rrrE&os8;irs8DrorrE&orrrE%rr;uspAY-lp](6l +rVllsr;Qcrq>^Bl!<<#squ6Zqq>UWts8N&trqcWtrqP6lq#(.BU4KSW\%95d_8F73a2uKKcd0tb +e'l^icHjbYaN)<=_nj("\[SuJDTr.[q>UWts8N&trq??lrqueH~> +')qq1rr;uss8N&urr2rtrr<#trVuos!WW/srrE&trsA])rr;utrr2rtrVl`p0E1m7Iqtp1]!o#LX/D_cS=#M%N/3.69$%&3 +s8N&ts8N&ts8W)srrE&rrsA])rr2rtrr2rtJ,~> +')qq1rr;uss8N&urr2rtrr<#trVuos!WW/srrE&trsA])rr;utrr2rtrVl`p#6+OcIr(FBrj*oZ +YH57WaMu05]=l/"^VdXbWirY1Xeh;*MhU^#s8N&urr;uss8)]qs8N#t"TJH$rr2fp!ri6"rr2rt +"9/?#rr)j!rr<#tpAb0ls8N)urr3E+s8W)urr<#ts8N#tqu6Qos8N#t"9/?"rr)j!rr<#trVulr +rr2utrVlrus8Mus#lal's8N&urr;us#64]&rr<#trVuoss8N3#s8N#qs8W)trr`9#rr2lr"9/?# +rr)lrrr2otrr)iurr;urrs8W(rr;uts8N&trW`E%s8N&urr)lsrr +')qq1rr;uss8N&urr2rtrr<#trVuos!WW/srrE&trsA])rr;utrr2rtrVl`p0E1m7Ir:a7H[C!c +QEe$FcHabW^VeCEcHX86U1e4W@VhKXN.pg$s8N&urr;uss8)]qs8N#t"TJH$rr2fp!ri6"rr2rt +"9/?#rr)j!rr<#tpAb0ls8N)urr3E+s8W)urr<#ts8N#tqu6Qos8N#t"9/?"rr)j!rr<#trVulr +rr2utrVlrus8Mus#lal's8N&urr;us#64]&rr<#trVuoss8N3#s8N#qs8W)trr`9#rr2lr"9/?# +rr)lrrr2otrr)iurr;urrs8W(rr;uts8N&trW`E%s8N&urr)lsrr +p\t6mrVm$"s8N&to`+sj!WW/us8W)is!7N-IqOUoOdDH'S"QIKWN4li-tarr2utqu;0~> +p\t6mrVm$"s8N&to`+sj!WW/us8W)is!7N-IqXh!P*VH&S=uaTX/rG,Z*:@6X/DehT9u(5Oc56< +N.pg$rquctrr;urs8W)irrE&prrE&trri?$s8N#prrE&trrW3"rqud!rr<#trr2rrrquctrr;ur +rrE&as8W)qrrE&rrrE&jrrE&trrE&trrE&orrE&Zs8W)qrrE&rrrE&jrrE&trrE&trrE&orrE&Z +s8W)qrrE&drrE&prrE&ps8W)mrrE&]rrE&trrE&hrrE&prrE&ps8W)mrrE&]rrE&trrE&qs!aFO +P*_Z0U84`gY-G@D]>)5%air)WbfIf@^Uq"`Z*(.+UnOBKQ]>4kli-tarr2utqu;0~> +p\t6mrVm$"s8N&to`+sj!WW/us8W)is!7N-Iqk(+QC=;6Tr+ceYHP1:[Bm*CY,\FuUn4-EP`UrH +MhU^#rquctrr;urs8W)irrE&prrE&trri?$s8N#prrE&trrW3"rqud!rr<#trr2rrrquctrr;ur +rrE&as8W)qrrE&rrrE&jrrE&trrE&trrE&orrE&Zs8W)qrrE&rrrE&jrrE&trrE&trrE&orrE&Z +s8W)qrrE&drrE&prrE&ps8W)mrrE&]rrE&trrE&hrrE&prrE&ps8W)mrrE&]rrE&trrE&qs!a[n +Z*h'P]Y;5"`Q-*EcHt%jf\5-9g=Om(d*BkXaMl'5^:_"c[B+8ili-tarr2utqu;0~> +s8W,urVm!!s8W)srrE&srrE&ts8W)orsSi+s8N&urr2rtrr2fp'E8%3r0;h5@q'7rF`;/7E,p>U +Gl;gsI=??ZDf'91FDPJt-ns8W)trrE&qrrW3"rql]qrqZQorqcX$rr<#ts8W)us8M]k +!<2Zk"9/?#rr2rtrq$-mrr<#trqZQorql]trr<#tkPkP]q>^KooD\sms8W)tq>UHoqu6cts8W)] +rrE&os8W)irri?$s8N#nrrE&rs8W)urs&K&rr2rsrqQKnrqcWprqQKnrr2otrq-3jrq$0irr<#u +rrulKSYSKPaIr5USk/qZF@H\ +_oB^6^:Le[YH+RrTU_C5OGo!KCHT]3rrE&is8W)us8W&us*t~> +s8W,urVm!!s8W)srrE&srrE&ts8W)orsSi+s8N&urr2rtrr2fp-iX/Gr0;h7An>k&GB.S@Eccb\ +H?jg^H%1^KooD\sms8W)tq>UHor;Zfrs8N<&s8N#trr2]m!<2ip!<2cn!<2ut!<2Wj!<2Tis8N&u +s8N&u#6+Z%rr;usq#:?nqYpQpq#:?nrr2uto`"pjoDejis8W,u.fYu>LmOU&U84`gY-G@D]>)5% +air)WbfIf@^Uq"`Z*(.+UnOBKQ@VfRpAY-loDejis8W,u!<7Q~> +s8W,urVm!!s8W)srrE&srrE&ts8W)orsSi+s8N&urr2rtrr2fp-iX/Gr0;h8BkMC/G]e%KG'ALi +IXQZmI"HrtGBItHG'@n>B31"Fnb)narr<#trr2utqu6`ss8Moq!<2fo!<2ip$3'u)rr<#ts8W)k +rrE&krr`9#s8N#ts8MWi"TJH$rr2`n!<2lq"9/?#roa:]rqZTorq$-mrr<#trqZQorql]trr<#t +kPkP]q>^KooD\sms8W)tq>UHor;Zfrs8N<&s8N#trr2]m!<2ip!<2cn!<2ut!<2Wj!<2Tis8N&u +s8N&u#6+Z%rr;usq#:?nqYpQpq#:?nrr2uto`"pjoDejis8W,u.fZ5bWO94H]Y;5"`Q-*EcHt%j +f\5-9g=Om(d*BkXaMl'5^:_"c[A%9WpAY-loDejis8W,u!<7Q~> +rVllsrVm!!s8N#rrrE&ts8N#trrE&srri?$s8N#rs8W)srrW3"rr)lsrX&W&Q%_4B,U4KWrZ_Cg +r?DCi,9nK-,6T2?N.pg$rrE&nrrE&rrrW3"rqHErrr<#ts8M]k!<2cn"9/?#rr)iurr;uorrE&n +rrE&rrr`9#s8N#t!<2fo"TJH$rr2Tj"9/?#rq69mrr;urrs&K&s8N&urql]qrqucurr<#trr2ut +q>UTss8W)tp&>-ns8W)krrW3"rr)j$rr<#ts8W)qrrE&rrr`9#s8N#t!<2fo"TJH$rr2Tj"9/?# +rqQKqrr<#tqu7!%s8W)us8N&urr2p%rr<#ts8W)qrsA])s8N&urr<#trr3*"s8W)rrrE&trr`9# +s8Mfn"9/?#rql^%rr<#ts8W)us8N#t#6+Z&rr<#tqu7!%s8W)us8N&urr2p"rr<#tr;Qcrrr5%Y +s8W)uQ7>(0J;fSSR%'bDVlQu+\%BDm`l>p1]!o#LX/D_cS=#M%N.>@u0$+(mrr<#ts8W)us8N#t +"9/?#rqucrrr2p#rr<#ts*t~> +rVllsrVm!!s8N#rrrE&ts8N#trrE&srri?$s8N#rs8W)srrW3"rr)lsrW`E#Q%_4B,lJtd,lT"l +,U4NZ,:!+3rZ_Rl+tAP*nc&OgrqQKnrquctrr;ulrrrE%s8N&tp&>$kq#:Hqs8W)srrW3"rqcWp +rqQKnrqucurr<#trr2utq>UTss8W)tp&>-ns8W)krrW3"rr)j$rr<#ts8W)qrrE&rrr`9#s8N#t +!<2fo"TJH$rr2Tj"9/?#rq69mrr;urrs&K&s8N&urql]qrqucurr<#trr2utq>UTss8W)tp&>-n +s8W)nrr`9#s8Moq$3'u)rr<#ts8W)trs&K&s8N&urql^%rr<#ts8W)us8N#t"9/?#rqucrrr2p" +rr<#tq#:Hqs8W)qrsA])s8N&urr<#trr33%s8W)us8Moq$3'u)rr<#ts8W)trr`9#s8Mrr!<2ut +3r]0Zrr8HW@=ON5U84`gY-G@D]>)5%air)WbfIf@^Uq"`Z*(.+UnOBDHsB(^s8W)us8N&urr<#t +rr3*"s8W)rrrE&trri?$s8N%K~> +rVllsrVm!!s8N#rrrE&ts8N#trrE&srri?$s8N#rs8W)srrW3"rr)lsrW`E#Q%V.A,lT%d,l]+h +,l](j,U4Q3,lT"l,U+^sL%50B!<2cn!<2or!ri6!p\tErs8W)urq69krqQKqrr<#trVlrus8Mlp +!<2cn!<2or"9/?#rr2otrqZQsrr<#trq69nrr<#tp&>*ms8Mus#6+Z&rr<#tqu6Zqr;Qlus8W)t +rrE&orri?$s8N#jrr`9#s8M]k!ri6!rVm*$s8W)us8Moq!<2or"9/?#rr2otrqZQsrr<#trq69n +rr<#tq#:Hqs8W)qrsA])s8N&urr<#trr33%s8W)us8Moq$3'u)rr<#ts8W)trr`9#s8Mrr!<2ut +"9/?#rqQKqrr<#tqu7!%s8W)us8N&urr2p%rr<#ts8W)qrsA])s8N&urr<#trr3*"s8W)rrrE&t +s#U/Zs8N%mBT8dm]"Gbn_o9[_7mRmZD!(\bl@_Bs8W)us8N&u +rr2p"rr<#tr;Qcrrr3-#s8W)uJ,~> +s8E'!rr)isrr2otrr)isrr2otrpp'krr;usq>UHor;Qs"r0;po*VCKV)AX,/p)aS]-]EcLrr2rt +rql]qrqufrrrS"QOSX0/b;]>)8'`l#O%\$N9=Vk]oTQB-c:5qXK:aSu5>rqucrrr2rtrr2otrqucrrr)j! +rr;utJ,~> +s8E'!rr)isrr2otrr)isrr2otrpp'krr;usq>UHor;Qs"r0;po*VCKV)AX,/p)aS]-]EcLrr2rt +rql]qrqufrrr +s8E'!rr)isrr2otrr)isrr2otrpp'krr;usq>UHor;Qs"r0;po*VCKV)AX,/p)aS]-]EcLrr2rt +rql]qrqufrrr^q@.TPDOcqbl7YBrqucrrr2rtrr2otrqucrrr)j! +rr;utJ,~> +rr;us!<<&t$NL,*rr2rss8W)tqu6j!s8W)urquctrr;ugrri7bKJsqK+93M^+9ri&+!)1<+UHorr3-#s8N&trr3'!s8N#t"TJH$rr2fp!<2ut!ri6!rr2ut +r;Qlus8W)trrN-!rr**$rr2rtrr2otrqZQorr2p#rr;utrr2otrqucurr<#tqYpQprr2utr;Qcr +rVllsrVm'#s8W)urqud"rr;uts8Mfnrr2iq!<2cn"9/?#rqcWprr2otrqucrrr)isrr)j#rr<#t +s8Mrr"oeQ$s8W)ns8N#qrrE&ns"FBOQ7=10/MTChC4VJ8UT:Q'\%BDm`l>p1]!o#LWhc)FK54IL +0eFh$0$+%ls8Mfnrr2iq!<2cn!WN+L~> +rr;us!<<&t$NL,*rr2rss8W)tqu6j!s8W)urquctrr;ugrri7bKJsqK+93M^+9ri&+!)1<+UHorr3-#s8N&trr3'!s8N#t"TJH$rr2fp!<2ut!ri6!rr2ut +r;Qlus8W)trrN-!rr**$rr2rtrr2otrqZQorr2p#rr;utrr2otrqucurr<#tqYpQprr2utr;Qcr +rVllsrVm'#s8W)urqud"rr;uts8Mfnrr2iq!<2cn"9/?#rqcWprr2otrqucrrr)isrr)j#rr<#t +s8Mrr"oeQ$s8W)ns8N#qrrE&ns"FBORmp4S>$kuhM413?Z+.E\_SsX@cd0hV`koL&\$E'0RYlB( +?WpH)7*>N/s8Mfnrr2iq!<2cn!WN+L~> +rr;us!<<&t$NL,*rr2rss8W)tqu6j!s8W)urquctrr;ugrri7bKJsqK+93M^+9ri&+!)1<+UHorr3-#s8N&trr3'!s8N#t"TJH$rr2fp!<2ut!ri6!rr2ut +r;Qlus8W)trrN-!rr**$rr2rtrr2otrqZQorr2p#rr;utrr2otrqucurr<#tqYpQprr2utr;Qcr +rVllsrVm'#s8W)urqud"rr;uts8Mfnrr2iq!<2cn"9/?#rqcWprr2otrqucrrr)isrr)j#rr<#t +s8Mrr"oeQ$s8W)ns8N#qrrE&ns"FBOU1f.6MiX0uXLGp]aNVrVe(*+)gt^W8e^MmjbfI]9\?2Hi +O,JdC?HiEKs8Mfnrr2iq!<2cn!WN+L~> +rVllsqZ$Qorr2utq>UHoo)Jah&-)Y/s8N&urr;utr0;sp*W@2]+9!Ag+!;[B*Z?1=)YbEY+!)eg +L%50Aq#:?nrVllsr;R6*s8N#trr2rss8W)urr2otrr2otrql`qrrrr;usrr3-#s8N&trr2utq>UNqs8N#tJ,~> +rVllsqZ$Qorr2utq>UHoo)Jah&-)Y/s8N&urr;utr0;sp*W@2]+9!Ag+!;[B*Z?1=)YbEY+!)eg +L%50Aq#:?nrVllsr;R6*s8N#trr2rss8W)urr2otrr2otrql`qrr#eUNqs8N#tJ,~> +rVllsqZ$Qorr2utq>UHoo)Jah&-)Y/s8N&urr;utr0;po*W@2]+9!Ag+!;[B*Z?1=)YbEY+!)eg +K^o'@q#:?nrVllsr;R6*s8N#trr2rss8W)urr2otrr2otrql`qrrp"Tr>-$ +\\>u&c.(@ug"4]taMYj*['$@$S!K8!Mhcdgbl@\Brr;usrr3-#s8N&trr2utq>UNqs8N#tJ,~> +!<2lq!<2ut!<2rs!ri6!o`"pjrVm'#s8N&urq-3nr/lIs)uLfj+!;[J+UNqs8N#ts8N#t"TJH#s8Moq#QFc&s8N&urr2p!rr;ur +s!j?Fct8ju$/3&NEB.4-[grr2p#rr;utrql^#rr;ut +rr<#trr3'!s8MusJ,~> +!<2lq!<2ut!<2rs!ri6!o`"pjrVm'#s8N&urq-3nr/lIs)uLfj+!;[J+UNqs8N#ts8N#t"TJH#s8Moq#QFc&s8N&urr2p!rr;ur +s!jL-:fU\+A8,q&G^Y1!N00EqU8FulVP0NGOc>-JI<]gNBk:XT +!<2lq!<2ut!<2rs!ri6!o`"pjrVm'#s8N&urq-3nr/lIs)uLfj+!;[J+UNqs8N#ts8N#t"TJH#s8Moq#QFc&s8N&urr2p!rr;ur +s!jaVJqo8FPF%c1USk/rZF@H\`5g'Ea2>[(\$N9 +s8W,urr3*"s8W)trrW3"s8DrqrrW3"rql`prqHEqrr<#trr2p&rr%shD&499q&fn`0MYD?80oAR ++9`i+<-`i_rr<#tp\t?ps8W)prri?$s8N#prrE&qrrW3"rqcZprW)usrr)isrr2rtrqcZprqHEm +rqucrrr)j"rr<#trpp'hrqHEprr<#trVuoss8W)ts8N)urr<#ts8N3#s8W)srrE&rrrE&srri?$ +s8N#grrE&mrr`9#s8Muss8N&urr2rt!<2uts8N&u"9/?#rr)isrqucrrr)j"rr<#trpp'hrqcX" +rr<#ts8W)trVm'#s8W)urql`qrr;uurr2otrr2p#rr<#trql]urr<#trqcWprr)j$rr<#ts8W)s +rs/Q's8N&urr2lr"oeQ%rr;ups8W)urrE&trrE&trri?$s8N#prri?$s8N#orrE&srs&K&s8N&u +rr)jQrr<"a.O?Mq0f:sS5t4IA;H6k+@V0@lD/*Wj?s8W)tqYpQp +rVm*$s8W)us8Mus!ri6"J,~> +s8W,urr3*"s8W)trrW3"s8DrqrrW3"rql`prqHEqrr<#trr2p&rr%shD&499q&fn`0MYD?80oAR ++9`i+<-`i_rr<#tp\t?ps8W)prri?$s8N#prrE&qrrW3"rqcZprW)usrr)isrr2rtrqcZprqHEm +rqucrrr)j"rr<#trpp'hrqHEprr<#trVuoss8W)ts8N)urr<#ts8N3#s8W)srrE&rrrE&srri?$ +s8N#grrE&mrr`9#s8Muss8N&urr2rt!<2uts8N&u"9/?#rr)isrqucrrr)j"rr<#trpp'hrqcX" +rr<#ts8W)trVm'#s8W)urql`qrr;uurr2otrr2p#rr<#trql]urr<#trqcWprr)j$rr<#ts8W)s +rs/Q's8N&urr2lr"oeQ%rr;ups8W)urrE&trrE&trri?$s8N#prri?$s8N#orrE&srs&K&s8N&u +rr)jQrr<"f7Sm)g?Y!kgF*N+bLPq7ZR\6IUWMQ5VQ&pr[JphlbDJ#e +s8W,urr3*"s8W)trrW3"s8DrqrrW3"rql`prqHEqrr<#trr2p&rr%sgD&499q&fn`0MYD?80oAR ++9`i+<-`f^rr<#tp\t?ps8W)prri?$s8N#prrE&qrrW3"rqcZprW)usrr)isrr2rtrqcZprqHEm +rqucrrr)j"rr<#trpp'hrqHEprr<#trVuoss8W)ts8N)urr<#ts8N3#s8W)srrE&rrrE&srri?$ +s8N#grrE&mrr`9#s8Muss8N&urr2rt!<2uts8N&u"9/?#rr)isrqucrrr)j"rr<#trpp'hrqcX" +rr<#ts8W)trVm'#s8W)urql`qrr;uurr2otrr2p#rr<#trql]urr<#trqcWprr)j$rr<#ts8W)s +rs/Q's8N&urr2lr"oeQ%rr;ups8W)urrE&trrE&trri?$s8N#prri?$s8N#orrE&srs&K&s8N&u +rr)jQrr<"mBS)"tO->p"Sti3aYHkUK^Ve+7b/_B5]=5,LWi)VaS!K8!Mhcdgbl@_Bs8W)tqYpQp +rVm*$s8W)us8Mus!ri6"J,~> +!<2lqs8Mlp!<2rs"9/?"rr)j*rr<#ts8W)us8N#trr2rtrr)isrr)j#riebH3udo9"<]Hh67V^O +"W]+H;PsUHorr3*"s8W)trrE&qrrE&ns8W)rs8W)urrE&qrr`9# +s8Moq!<2fo"9/?#rql]qrr2p"rr<#trr2utqu6Zqq#CBnr;Zfrs8N)uqu6cts8W)qrrE&orr`9# +s8Moq.@)tE.4m833B]Yt8kr8a=^GQLC2Ig&ARSnK<`)R`76s'r2)-[3/iLfLrr`9#s8Moq!<2fo +"9/?#rql_G~> +!<2lqs8Mlp!<2rs"9/?"rr)j*rr<#ts8W)us8N#trr2rtrr)isrr)j#riebH3udo9"<]Hh67V^O +"W]+H;PsUHorr3*"s8W)trrE&qrrE&ns8W)rs8W)urrE&qrr`9# +s8Moq!<2fo"9/?#rql]qrr2p"rr<#trr2utqu6Zqq#CBnr;Zfrs8N)uqu6cts8W)qrrE&orr`9# +s8Moq.@X+4iT:;+-N/*"5G]Rb:ARAV@<(Y72rr`9#s8Moq!<2fo +"9/?#rql_G~> +!<2lqs8Mlp!<2rs"9/?"rr)j*rr<#ts8W)us8N#trr2rtrr)isrr)j#rie_G3udo9"<]Hh67V^O +"W]+H;PsUHorr3*"s8W)trrE&qrrE&ns8W)rs8W)urrE&qrr`9# +s8Moq!<2fo"9/?#rql]qrr2p"rr<#trr2utqu6Zqq#CBnr;Zfrs8N)uqu6cts8W)qrrE&orr`9# +s8Moq.AC^5LPq4WQ^aSAVlR#,[_';la3)QF_S3XkZ`^=+US"$APE1WWK4<('rr`9#s8Moq!<2fo +"9/?#rql_G~> +oD\girr3'!s8N#t%0$;+s8N&urr;uts8M]k!ri6!rVm0&l"iq@80]2tq&]\Z)B0an*t02721&P0 +jT#5Zrr2rmrWW?$s8W)tpAY-lnG`LfqYpQprVmK/s8W)urr<#ts8N&urr;uss7lQps8N&trr;uu +rqucrrr)isrr)isrr2otrr)isrr)j(rr;uts8N&ts8W)srrE&srrE&ts8N!!s8N&srWE3"rr;oq +s8N)ur;QcrrVllsrVllsrr2utrVllsrVm6(s8N&urr;uts8Mus!<2rs!<2utrr*!!rr;rr"98B" +s8;lrrrE&rrrE&srrE&srrE&trrE&srrE&nrrE&ss8W)trrE&rrrW3"s8Muts8Drrs8W&us8Dp! +s8N&tr;QcrrVllsrVllsq>UHoq#:?nrVuosrr2utr;Qits8W)t!<<#srr<#t!<<#s"98B#rqucr +rr)isrr)isrqZQorqQLBQ<7?Q0JPFF4[DP0:/Y(p?=IM]D/F$!@:!,<;,'YO5s71b0etpt8]^l1 +!<2rs!<2rs!<2fo!<2cnJ,~> +oD\girr3'!s8N#t%0$;+s8N&urr;uts8M]k!ri6!rVm0&l"iq@80]2tq&]\Z)B0an*t02721&P0 +jT#5Zrr2rmrWW?$s8W)tpAY-lnG`LfqYpQprVmK/s8W)urr<#ts8N&urr;uss7lQps8N&trr;uu +rqucrrr)isrr)isrr2otrr)isrr)j(rr;uts8N&ts8W)srrE&srrE&ts8N!!s8N&srWE3"rr;oq +s8N)ur;QcrrVllsrVllsrr2utrVllsrVm6(s8N&urr;uts8Mus!<2rs!<2utrr*!!rr;rr"98B" +s8;lrrrE&rrrE&srrE&srrE&trrE&srrE&nrrE&ss8W)trrE&rrrW3"s8Muts8Drrs8W&us8Dp! +s8N&tr;QcrrVllsrVllsq>UHoq#:?nrVuosrr2utr;Qits8W)t!<<#srr<#t!<<#s"98B#rqucr +rr)isrr)isrqZQorqQLBRq["R?!h,VDKC&NJqo8GQ("AAWMu_dS!B(oLOsr!F)G]'?X7/a=j$^C +!<2rs!<2rs!<2fo!<2cnJ,~> +oD\girr3'!s8N#t%0$;+s8N&urr;uts8M]k!ri6!rVm0&l"iq@80]2tq&]\Z)B0an*t02721&P0 +jT#5Zrr2rmrWW?$s8W)tpAY-lnG`LfqYpQprVmK/s8W)urr<#ts8N&urr;uss7lQps8N&trr;uu +rqucrrr)isrr)isrr2otrr)isrr)j(rr;uts8N&ts8W)srrE&srrE&ts8N!!s8N&srWE3"rr;oq +s8N)ur;QcrrVllsrVllsrr2utrVllsrVm6(s8N&urr;uts8Mus!<2rs!<2utrr*!!rr;rr"98B" +s8;lrrrE&rrrE&srrE&srrE&trrE&srrE&nrrE&ss8W)trrE&rrrW3"s8Muts8Drrs8W&us8Dp! +s8N&tr;QcrrVllsrVllsq>UHoq#:?nrVuosrr2utr;Qits8W)t!<<#srr<#t!<<#s"98B#rqucr +rr)isrr)isrqZQorqQLBU4JhqN/s0hS"?CQX08h;]>)8(b0%cA^:Uk\Y,\CpT:;.1O,]6iDTr(Z +!<2rs!<2rs!<2fo!<2cnJ,~> +!<2or!WN,trr<#urr<#srqQNlrWE3"s8Mlp!ri6"rr2oss8E9$bYpf9>"D'K70Z4^A4T>*r;HWq +rr2otrpg!grqZQorr)isrr2rtrr)j#rr<#ts8N#t!<2uts8Mrrs8N#ts8N#t!<2ut!<2`m!<2or +!<2]l!<2Ti!<2or!<2rs!ri6!rr;uss8W,urr;us!WW/nrrE&rrrE&lrrE&irrE&rrrE&srrW3" +rr2rsrr<#urr2rsrW3&up\t6mr;QcrpAY-lnc&Ugrr33%s8W)us8Muss8N#t!<2rsrr2lr!<2ip +!<2or!<2rs!ri6!rVllsrVllsqZ$Tps8N)urr33%s8W)us8Muss8N#t!<2rsrr2lr!<2ip!<2or +!<2rs!ri6!rVllsrVllsqZ$Tps8N)urr4I6=FG@&4uG>`5t4IA;H6k+@V0@lD/*Wj? +!<2or!WN,trr<#urr<#srqQNlrWE3"s8Mlp!ri6"rr2oss8E9$bYpf9>"D'K70Z4^A4T>*r;HWq +rr2otrpg!grqZQorr)isrr2rtrr)j#rr<#ts8N#t!<2uts8Mrrs8N#ts8N#t!<2ut!<2`m!<2or +!<2]l!<2Ti!<2or!<2rs!ri6!rr;uss8W,urr;us!WW/nrrE&rrrE&lrrE&irrE&rrrE&srrW3" +rr2rsrr<#urr2rsrW3&up\t6mr;QcrpAY-lnc&Ugrr33%s8W)us8Muss8N#t!<2rsrr2lr!<2ip +!<2or!<2rs!ri6!rVllsrVllsqZ$Tps8N)urr33%s8W)us8Muss8N#t!<2rsrr2lr!<2ip!<2or +!<2rs!ri6!rVllsrVllsqZ$Tps8N)urr4I;Bp"='An5UnF*N+bLPq7ZR\6IUWMQ5VQ&pr[Jphlb +DJ!ri6!rVllsrVllsqZ$Tps8N)urr7K~> +!<2or!WN,trr<#urr<#srqQNlrWE3"s8Mlp!ri6"rr2oss8E9$bYpc8>"D'K70Z4^A4T>*r;HWq +rr2otrpg!grqZQorr)isrr2rtrr)j#rr<#ts8N#t!<2uts8Mrrs8N#ts8N#t!<2ut!<2`m!<2or +!<2]l!<2Ti!<2or!<2rs!ri6!rr;uss8W,urr;us!WW/nrrE&rrrE&lrrE&irrE&rrrE&srrW3" +rr2rsrr<#urr2rsrW3&up\t6mr;QcrpAY-lnc&Ugrr33%s8W)us8Muss8N#t!<2rsrr2lr!<2ip +!<2or!<2rs!ri6!rVllsrVllsqZ$Tps8N)urr33%s8W)us8Muss8N#t!<2rsrr2lr!<2ip!<2or +!<2rs!ri6!rVllsrVllsqZ$Tps8N)urr4IBJZu5NP`qH'Sti3aYHkUK^Ve+7b/_B5]=5,LWi)Va +S!K8'Uope:bl7S@!ri6!rVllsrVllsqZ$Tps8N)urr7K~> +#64]&rr;utrr)rurr2rtrr;uurr)isrr2p"rr;usrVm$"s8N#trr*$"rr2rqrX&W(rr;urfRupd +l9tnF7XrVWrr2iq!ri6!qYp]ts8W)ur;H]rqu6Wq"TJH#s8MKe"9/?"s8Dous8N#ss8W'!s8Mrr +!ri6!qYpQprVm$"s8W)trr;iorr2utn,ECerr<#trr<#t!<<#ss8N)uqu6Zqp&>0os8W)trr;io +rr2utn,ECerr<#trr<#t!<<#ss8N)uqu6Zqp&>0os8W)trr;iorr2utn,EFfs8N#ts8Dp!s8N&t +rr2utnG`LfrVuosrr33%s8W)urr2iq!<2`m!<2or!WN,urr<#srWE3"s8N#t!<2Kf!<2rss8N#t +#6+Z&rr;usr;Qcrp\t6mr;S74=FPpYKR%959MJ5V;H6k+@V0@lD/*Wj? +#64]&rr;utrr)rurr2rtrr;uurr)isrr2p"rr;usrVm$"s8N#trr*$"rr2rqrX&W(rr;urfRupd +l9tnF7XrVWrr2iq!ri6!qYp]ts8W)ur;H]rqu6Wq"TJH#s8MKe"9/?"s8Dous8N#ss8W'!s8Mrr +!ri6!qYpQprVm$"s8W)trr;iorr2utn,ECerr<#trr<#t!<<#ss8N)uqu6Zqp&>0os8W)trr;io +rr2utn,ECerr<#trr<#t!<<#ss8N)uqu6Zqp&>0os8W)trr;iorr2utn,EFfs8N#ts8Dp!s8N&t +rr2utnG`LfrVuosrr33%s8W)urr2iq!<2`m!<2or!WN,urr<#srWE3"s8N#t!<2Kf!<2rss8N#t +#6+Z&rr;usr;Qcrp\t6mr;S79Bp+gOR#m#MH$k*nLPq7ZR\6IUWMQ5VQ&pr[Jq&,mHA7NLR?rq: +b5VD?#6+Z&rr;usr;Qcrp\t6mr;V9~> +#64]&rr;utrr)rurr2rtrr;uurr)isrr2p"rr;usrVm$"s8N#trr*$"rr2rqrX&W(rr;urfRlga +ksP\DJ'7Zerquctrr;uorri?$s8N&rrW)uqrr[B+8i +rr2p%rr<#ts8N#qrrE&mrrE&rs*t~> +!rr9"rVl]os8E'!rqucurr<#tqu6Zqqu6cts8W)srrE&ms8W'"pYsK`b6?2Go`"miqYpQprVlls +rr;usqu6Zqrr2uto`"pjg]%9QrVllsrr2utq>UHorr2utr;Qcrrr2utrr2utlMgk`q#:Hqs8W)d +rrE&trrE&rrrE&trrE&trrE&`rrE&nrr`9#s8MHd!<2ut!<2or!<2ut!<2ut!<2Bc"9/?#rqQKs +rr<#ts8MNf!<2cn!<2or!<2`m!<2]l"9/?#rqQKsrr<#ts8MNf!<2cn!<2or!<2`m!<2or.[F1c +KSYSKPa%,\HZX=LEclA;C2Ig&BQ/'6DK'ZEKT).ZOGo!KHV2BYq#:?nr;Qcrp\t6mr;V9~> +!rr9"rVl]os8E'!rqucurr<#tqu6Zqqu6cts8W)srrE&ms8W'"pYsK`b6?2Go`"miqYpQprVlls +rr;usqu6Zqrr2uto`"pjg]%9QrVllsrr2utq>UHorr2utr;Qcrrr2utrr2utlMgk`q#:Hqs8W)d +rrE&trrE&rrrE&trrE&trrE&`rrE&nrr`9#s8MHd!<2ut!<2or!<2ut!<2ut!<2Bc"9/?#rqQKs +rr<#ts8MNf!<2cn!<2or!<2`m!<2]l"9/?#rqQKsrr<#ts8MNf!<2cn!<2or!<2`m!<2or)OkH( +Q^aS@Uo'fTR?s;0S=cLLUoC>iTV8!Jrg+%^S"HOQTq7^>N`jO(q#:?nr;Qcrp\t6mr;V9~> +!rr9"rVl]os8E'!rqucurr<#tqu6Zqqu6cts8W)srrE&ms8W'"pYsK`ap$&Eo`"miqYpQprVlls +rr;usqu6Zqrr2uto`"pjg]%9QrVllsrr2utq>UHorr2utr;Qcrrr2utrr2utlMgk`q#:Hqs8W)d +rrE&trrE&rrrE&trrE&trrE&`rrE&nrr`9#s8MHd!<2ut!<2or!<2ut!<2ut!<2Bc"9/?#rqQKs +rr<#ts8MNf!<2cn!<2or!<2`m!<2]l"9/?#rqQKsrr<#ts8MNf!<2cn!<2or!<2`m!<2or.\_L! +[C<`[^;%:k\@B)\]thM'a3)QF_nj.%\[],Z\\#Vj]XbMZXDZ8]q#:?nr;Qcrp\t6mr;V9~> +!rr9!r;Qp!s8W)trr30$s8W)urqQNnrr)isrr)lsrqud&rr<#ts8W)us8N#tkl(_brr2rsq#:Kr +s8N&urr2os!<2rs!<2rss8Mcms8Muss8Mrr!<2fo!<2uts8E'!rq69orr;uts8N!!s8N&trW<-! +rr)lsrW`E%s8N&urr2rsrr2otrq69krquforr2p!rr;urs8N#trrN-!rr*!!rr;us!rr9!rVuos +#64]&rr<#trr;usrr2utp&>$kr;Z]orr3'!s8Musrr2rt!WN,urW<-!s8N!!s8N#rs8W'&s8N&t +s8W)ts8N#srrE&trr`9#rr2`n!ri6"rVd$$rr;utrr2]m!WN,urr;uurr)lsrr<#trWiK&rr;ut +s8Mfn!WN,urW<-!rqZQqrr<#srW`E%s8N&trqQKorr;uss8N)urVuoss8W)t#QOf&s8N&urqQKo +rr;us+92?>s8SBeIY,X/N)#WW&_(US+-EPE:`ZKR6>4rr<#trWiK& +rr;uts8Mfn!WN,urWN9#rr<"K~> +!rr9!r;Qp!s8W)trr30$s8W)urqQNnrr)isrr)lsrqud&rr<#ts8W)us8N#tkl(_brr2rsq#:Kr +s8N&urr2os!<2rs!<2rss8Mcms8Muss8Mrr!<2fo!<2uts8E'!rq69orr;uts8N!!s8N&trW<-! +rr)lsrW`E%s8N&urr2rsrr2otrq69krquforr2p!rr;urs8N#trrN-!rr*!!rr;us!rr9!rVuos +#64]&rr<#trr;usrr2utp&>$kr;Z]orr3'!s8Musrr2rt!WN,urW<-!s8N!!s8N#rs8W'&s8N&t +s8W)ts8N#srrE&trr`9#rr2`n!ri6"rVd$$rr;utrr2]m!WN,urr;uurr)lsrr<#trWiK&rr;ut +s8Mfn!WN,urW<-!rqZQqrr<#srW`E%s8N&trqQKorr;uss8N)urVuoss8W)t#QOf&s8N&urqQKo +rr;us1&q7Ps8SR&P*_Z0U84`gY-G=@\%0/b^VRn._S3as\[JlOZ*(.+UnOBKQ]>4krr<#trWiK& +rr;uts8Mfn!WN,urWN9#rr<"K~> +!rr9!r;Qp!s8W)trr30$s8W)urqQNnrr)isrr)lsrqud&rr<#ts8W)us8N#tkl(_brr2rsq#:Kr +s8N&urr2os!<2rs!<2rss8Mcms8Muss8Mrr!<2fo!<2uts8E'!rq69orr;uts8N!!s8N&trW<-! +rr)lsrW`E%s8N&urr2rsrr2otrq69krquforr2p!rr;urs8N#trrN-!rr*!!rr;us!rr9!rVuos +#64]&rr<#trr;usrr2utp&>$kr;Z]orr3'!s8Musrr2rt!WN,urW<-!s8N!!s8N#rs8W'&s8N&t +s8W)ts8N#srrE&trr`9#rr2`n!ri6"rVd$$rr;utrr2]m!WN,urr;uurr)lsrr<#trWiK&rr;ut +s8Mfn!WN,urW<-!rqZQqrr<#srW`E%s8N&trqQKorr;uss8N)urVuoss8W)t#QOf&s8N&urqQKo +rr;us1&q7Ps8SgEZ*h'P]Y;5"`Q-*CbK\D]e(*(&e^Djlc-+5NaMl'5^:_"c[B+8irr<#trWiK& +rr;uts8Mfn!WN,urWN9#rr<"K~> +s8N)uqYpQpr;Qcrq>UHorVm*$s8W)us8Mus$3'u)rr;utrr;uqrrE&qrrE&rrrW3"rr2p!rr<#s +rrUHorr<#tr;Zcqr;Qits8N#t +rr2fprr2fp!<2Tis8Mrrs8Mio!<2uts8Mrrrr2iq!ri6!rr3'!s8MTh!ri6!pAY-lqZ$Tprr<#t +rr2utrr3'!s8Muss8Moq"9/?"rr)isrpp'jrr;ukrrE&ps8W)ts8W)trrE&trrW3"rr)lsrql]t +rr;usrVllsrr4O8=FPpZN0'9kS"QOSX0/b;]>)8'`l#O%\$N9=Vk]oTR$3VjLkL+IaT);>rr3'! +s8Muss8Moq"9/?"rr)isrr2qJ~> +s8N)uqYpQpr;Qcrq>UHorVm*$s8W)us8Mus$3'u)rr;utrr;uqrrE&qrrE&rrrW3"rr2p!rr<#s +rrUHorr<#tr;Zcqr;Qits8N#t +rr2fprr2fp!<2Tis8Mrrs8Mio!<2uts8Mrrrr2iq!ri6!rr3'!s8MTh!ri6!pAY-lqZ$Tprr<#t +rr2utrr3'!s8Muss8Moq"9/?"rr)isrpp'jrr;ukrrE&ps8W)ts8W)trrE&trrW3"rr)lsrql]t +rr;usrVllsrr4O=Bp+gPSt`$ZX0/_7\@]Mm`Q??MccjJM_S<^m[BZm8W2-,YR[9%;b5_M@rr3'! +s8Muss8Moq"9/?"rr)isrr2qJ~> +s8N)uqYpQpr;Qcrq>UHorVm*$s8W)us8Mus$3'u)rr;utrr;uqrrE&qrrE&rrrW3"rr2p!rr<#s +rrUHorr<#tr;Zcqr;Qits8N#t +rr2fprr2fp!<2Tis8Mrrs8Mio!<2uts8Mrrrr2iq!ri6!rr3'!s8MTh!ri6!pAY-lqZ$Tprr<#t +rr2utrr3'!s8Muss8Moq"9/?"rr)isrpp'jrr;ukrrE&ps8W)ts8W)trrE&trrW3"rr)lsrql]t +rr;usrVllsrr4ODJ[)Vl]"Gbn_o9[_7mRm\$`;Tbl@_Brr3'! +s8Muss8Moq"9/?"rr)isrr2qJ~> +s8E<(rr2rsrr;usrr2utrVllsqu?]qrVllsrr3*"s8W)srrE&rrrE&rs8W'"s8N#rrrE&nrrW3" +s8N#es8W)js8W)_rsA])s8N&urr;usqu6cts8W)is8W)nrrE&ss8W)srrE&trrW3"rqucrrr)iu +rr;uprrE&ps8W)orrE&trrW3"rq6UHorr2utq>UHorVllsr;Qlus8W)ts8W)t +s8W)qrrE&srrE&qrrE&trrW3"rr2otrql^EQp1]!o#LX/D_c +S=#M%N/3.58]^l1!<2rs!<2lq!<2ut!ri6!rr2utqu;0~> +s8E<(rr2rsrr;usrr2utrVllsqu?]qrVllsrr3*"s8W)srrE&rrrE&rs8W'"s8N#rrrE&nrrW3" +s8N#es8W)js8W)_rsA])s8N&urr;usqu6cts8W)is8W)nrrE&ss8W)srrE&trrW3"rqucrrr)iu +rr;uprrE&ps8W)orrE&trrW3"rq6UHorr2utq>UHorVllsr;Qlus8W)ts8W)t +s8W)qrrE&srrE&qrrE&trrW3"rr2otrql^ERqRtOS"?@MW2m)+[(*`__SsX@cd0hV`koL&\@&TE +X/MhfSsl"+=j$^C!<2rs!<2lq!<2ut!ri6!rr2utqu;0~> +s8E<(rr2rsrr;usrr2utrVllsqu?]qrVllsrr3*"s8W)srrE&rrrE&rs8W'"s8N#rrrE&nrrW3" +s8N#es8W)js8W)_rsA])s8N&urr;usqu6cts8W)is8W)nrrE&ss8W)srrE&trrW3"rqucrrr)iu +rr;uprrE&ps8W)orrE&trrW3"rq6UHorr2utq>UHorVllsr;Qlus8W)ts8W)t +s8W)qrrE&srrE&qrrE&trrW3"rr2otrql^EU4BMV\%95d_8F74air&We(*+)gt^W8e^Mmjbf\#G +_nj("\[SuID9VtY!<2rs!<2lq!<2ut!ri6!rr2utqu;0~> +qYpQprVm'#s8N&trql]qrr)isrr)isrr)lsrql]qrqufqrpg!grql`prr;uurr2rtrr)isrqcWp +rqcWprr2otrqud!rr;utrr2p#rr;utrql]qrql`qrqucurr;usqu?]qrVllsqYpQpo`"pjr;R!# +s8W)urr2os!<2lqs8Mus!<2or!<2ut!<2lq!<2or!<2ut#lal's8W)us8Mcm!<2or#6+Z&rr;us +rr2utqu?]qrVllsr;Qcrrr2utqu6Zqr;Qcrrr39's8N&urr<#tp\t6mr;R!#s8W)urr2os!<2lq +s8Mcm"9/?#rqcWprqucrrr2p!rr;usrrW3"rr2otrql]qrqZQrrr;usrr2utqu?]qp\t?ps8W)p +rrE&rrrE&trrW3"rr2p!rr;usrrE&qrrE&orr`9#rr2os!<2lqs8Mfn.@)r0Jqo;HPaIr5USk/q +ZF@H\_oB^6^:Le[YH+RrTU_C5OGo!H@lDF(rr`9#rr2os!<2lqs8MfnJ,~> +qYpQprVm'#s8N&trql]qrr)isrr)isrr)lsrql]qrqufqrpg!grql`prr;uurr2rtrr)isrqcWp +rqcWprr2otrqud!rr;utrr2p#rr;utrql]qrql`qrqucurr;usqu?]qrVllsqYpQpo`"pjr;R!# +s8W)urr2os!<2lqs8Mus!<2or!<2ut!<2lq!<2or!<2ut#lal's8W)us8Mcm!<2or#6+Z&rr;us +rr2utqu?]qrVllsr;Qcrrr2utqu6Zqr;Qcrrr39's8N&urr<#tp\t6mr;R!#s8W)urr2os!<2lq +s8Mcm"9/?#rqcWprqucrrr2p!rr;usrrW3"rr2otrql]qrqZQrrr;usrr2utqu?]qp\t?ps8W)p +rrE&rrrE&trrW3"rr2p!rr;usrrE&qrrE&orr`9#rr2os!<2lqs8Mfn.@X+bQ(";=Uo:>sZ*_$Q +^V[t3bg4VZaMu*3]=>8RY,eLsTq7^;H:c9Trr`9#rr2os!<2lqs8MfnJ,~> +qYpQprVm'#s8N&trql]qrr)isrr)isrr)lsrql]qrqufqrpg!grql`prr;uurr2rtrr)isrqcWp +rqcWprr2otrqud!rr;utrr2p#rr;utrql]qrql`qrqucurr;usqu?]qrVllsqYpQpo`"pjr;R!# +s8W)urr2os!<2lqs8Mus!<2or!<2ut!<2lq!<2or!<2ut#lal's8W)us8Mcm!<2or#6+Z&rr;us +rr2utqu?]qrVllsr;Qcrrr2utqu6Zqr;Qcrrr39's8N&urr<#tp\t6mr;R!#s8W)urr2os!<2lq +s8Mcm"9/?#rqcWprqucrrr2p!rr;usrrW3"rr2otrql]qrqZQrrr;usrr2utqu?]qp\t?ps8W)p +rrE&rrrE&trrW3"rr2p!rr;usrrE&qrrE&orr`9#rr2os!<2lqs8Mfn.AC^V[(!WZ^;7_+a2uQN +d*pOtg>(K;f@A?scHOGP`P]O+]XbMXSRTh=rr`9#rr2os!<2lqs8MfnJ,~> +s8E'!rquctrr;urrs&K&rr;utrqZQqrr;usrrE&ts8W)urrE&srrE&pruV1>rr2rss8N#trr;ut +rr2rtrr<#ts8V?JqZ$Qprr2rtrW<-!rr2p#rr;utrr)j!rr<#tq#:?nq>UHorr<#tqu6`ss8Mrr +!<2rs!ri6!rVllsrVm!!s8N#srri?$rr;uorr`9#s8N#t"9/?#rqQKqrr<#tqu6Zqr;Qlus8W)g +rt#,/s8N&urr<#ts8W)us8N#t"9/?#rr2p"rr<#tq#:Hqs8W)qrrE&rrr`9#s8MQg&,uV/rr<#t +s8W)us8N&urr2p"rr<#trr3*"s8W)nrr`9#s8Moq!<2ut#QFc&s8W)urr2otrqHEsrr<#ts8W)r +rrrE%s8N&tq>UHor;QcrqYpQpq>UHorr36&s8N&urr;usrrE&mrs&K&s8N&urqud"rr<#ts8Mio +!<2or!<2ip!<2fo!<2ut0`M+Os->,k=*':]PaIr5USk/qZF@H\_oB^6^:Le[YH+RrTU_C5OG\*Y +0eUQIs8Mrr!<2ip!<2fo!<2ut"9/?"s*t~> +s8E'!rquctrr;urrs&K&rr;utrqZQqrr;usrrE&ts8W)urrE&srrE&pruV1>rr2rss8N#trr;ut +rr2rtrr<#ts8V?JqZ$Qprr2rtrW<-!rr2p#rr;utrr)j!rr<#tq#:?nq>UHorr<#tqu6`ss8Mrr +!<2rs!ri6!rVllsrVm!!s8N#srri?$rr;uorr`9#s8N#t"9/?#rqQKqrr<#tqu6Zqr;Qlus8W)g +rt#,/s8N&urr<#ts8W)us8N#t"9/?#rr2p"rr<#tq#:Hqs8W)qrrE&rrr`9#s8MQg&,uV/rr<#t +s8W)us8N&urr2p"rr<#trr3*"s8W)nrr`9#s8Moq!<2ut#QFc&s8W)urr2otrqHEsrr<#ts8W)r +rrrE%s8N&tq>UHor;QcrqYpQpq>UHorr36&s8N&urr;usrrE&mrs&K&s8N&urqud"rr<#ts8Mio +!<2or!<2ip!<2fo!<2ut0`M+Os-lJ\Fc)`aUo:>sZ*_$Q^V[t3bg4VZaMu*3]=>8RY,eLsTq$s[ + +s8E'!rquctrr;urrs&K&rr;utrqZQqrr;usrrE&ts8W)urrE&srrE&pruV1>rr2rss8N#trr;ut +rr2rtrr<#ts8V?JqZ$Qprr2rtrW<-!rr2p#rr;utrr)j!rr<#tq#:?nq>UHorr<#tqu6`ss8Mrr +!<2rs!ri6!rVllsrVm!!s8N#srri?$rr;uorr`9#s8N#t"9/?#rqQKqrr<#tqu6Zqr;Qlus8W)g +rt#,/s8N&urr<#ts8W)us8N#t"9/?#rr2p"rr<#tq#:Hqs8W)qrrE&rrr`9#s8MQg&,uV/rr<#t +s8W)us8N&urr2p"rr<#trr3*"s8W)nrr`9#s8Moq!<2ut#QFc&s8W)urr2otrqHEsrr<#ts8W)r +rrrE%s8N&tq>UHor;QcrqYpQpq>UHorr36&s8N&urr;usrrE&mrs&K&s8N&urqud"rr<#ts8Mio +!<2or!<2ip!<2fo!<2ut0`M+Os.X1_SZB<6^;7_+a2uQNd*pOtg>(K;f@A?scHOGP`P]O+]XY#3 +K3le%s8Mrr!<2ip!<2fo!<2ut"9/?"s*t~> +rVuosjo5>[qu6ibWL&sFir/lWrqufrrqHEsrnFF=s8W)qrrSR'lMUY^rr2p!rr;unrrE&prrE&r +rrE&trrE&trrE&rrrW3"rr)isrr2otrr2otrr2otrr2otrqHEqrr;utrqZQorqucrrr2otrqcWp +rqcWtrr;utrr)j"rr;utrr2otrr2otrr2otrql]qrqufqrW3&ur;Qcrrr3*"s8W)trrE&prrE&p +rri?$rr;urrri?$rr;usrrE&trrE&trrE&qrrE&rs8Muus8Mrr!<2ut"9/?#rr2otrqcWprqcWt +rr;utrr)j&rr;utrr;utrqcWprq6p1]!o#LX/D_cS +rVuosjo5>[qu6ibWL&sFir/lWrqufrrqHEsrnFF=s8W)qrrSR'lMUY^rr2p!rr;unrrE&prrE&r +rrE&trrE&trrE&rrrW3"rr)isrr2otrr2otrr2otrr2otrqHEqrr;utrqZQorqucrrr2otrqcWp +rqcWtrr;utrr)j"rr;utrr2otrr2otrr2otrql]qrqufqrW3&ur;Qcrrr3*"s8W)trrE&prrE&p +rri?$rr;urrri?$rr;usrrE&trrE&trrE&qrrE&rs8Muus8Mrr!<2ut"9/?#rr2otrqcWprqcWt +rr;utrr)j&rr;utrr;utrqcWprq6K.!ri6!pAb0lrr2utr;Qlus8N%K~> +rVuosjo5>[qu6ibWL&sFir/lWrqufrrqHEsrnFF=s8W)qrrSR'lMUY^rr2p!rr;unrrE&prrE&r +rrE&trrE&trrE&rrrW3"rr)isrr2otrr2otrr2otrr2otrqHEqrr;utrqZQorqucrrr2otrqcWp +rqcWtrr;utrr)j"rr;utrr2otrr2otrr2otrql]qrqufqrW3&ur;Qcrrr3*"s8W)trrE&prrE&p +rri?$rr;urrri?$rr;usrrE&trrE&trrE&qrrE&rs8Muus8Mrr!<2ut"9/?#rr2otrqcWprqcWt +rr;utrr)j&rr;utrr;utrqcWprq6 +rr<#trr3*"s8W)srrE&hrrE&ps$c0R;4a@bZMsIcpZV;Mo'?/OrUB%7o`+pcmel_PP68bor:'1I +lLFlRJjSJ`nGN=cp?(T3s8MWXq<[SLs8VlZj7`KOrr;rrrVm!!s8W)rrs&K&s8N&urr)j/rr<#t +rr;uts8N&ts8W)ts8N#t!<2ip!ri6!rr3-#s8W)urr)rurr2p!rr;urrrE&rrrW3"rr2p"rr;us +rr3?)s8N&trr<#ts8Mus"TJH#s8N#t!<2rs"TJH#s8N#t$3'u(s8W)ts8W)trrW3"rr)isrquct +rr;usrr`9#rr2os$NC))s8N#ts8N&trVm$"s8N&trr2utrVm$"s8N&trr3<(s8N&urr2rtrr2p! +rr;urrrE&rrrW3"rr2p"rr;usrr3'!s8N#t"TJH#s8Mus"TJH#s8N#t$3'u(s8W)urr;urrrE&t +s8W&us8Dp!s8N&trr3'!s8Mus$3'u(s8N&urr;uss8;j"s8N&ts8Mus"TJH#s8N#t$3'u(s8W)u +rr;urrrE&ts8W&us8Dp!s8N&trr3'!s8Mus$3'u(s8N&urr;uss8;jKs8N&ts->,\.4m;54B?Z[ +Od`#CY-Y^S_oB^6^:CSQWhZ&FKm-`^2DHd4-8*C=rrW3"rr)j'rr;utrr<#ts8N#tr;Hj!rr;ut +J,~> +rr<#trr3*"s8W)srrE&hrrE&ps$c0R;4a@bZMsIcpZV;Mo'?/OrUB%7o`+pcmel_PP68bor:'1I +lLFlRJjSJ`nGN=cp?(T3s8MWXq<[SLs8VlZj7`KOrr;rrrVm!!s8W)rrs&K&s8N&urr)j/rr<#t +rr;uts8N&ts8W)ts8N#t!<2ip!ri6!rr3-#s8W)urr)rurr2p!rr;urrrE&rrrW3"rr2p"rr;us +rr3?)s8N&trr<#ts8Mus"TJH#s8N#t!<2rs"TJH#s8N#t$3'u(s8W)ts8W)trrW3"rr)isrquct +rr;usrr`9#rr2os$NC))s8N#ts8N&trVm$"s8N&trr2utrVm$"s8N&trr3<(s8N&urr2rtrr2p! +rr;urrrE&rrrW3"rr2p"rr;usrr3'!s8N#t"TJH#s8Mus"TJH#s8N#t$3'u(s8W)urr;urrrE&t +s8W&us8Dp!s8N&trr3'!s8Mus$3'u(s8N&urr;uss8;j"s8N&ts8Mus"TJH#s8N#t$3'u(s8W)u +rr;urrrE&ts8W&us8Dp!s8N&trr3'!s8Mus$3'u(s8N&urr;uss8;jKs8N&ts-lJS +rr<#trr3*"s8W)srrE&hrrE&ps$c0R;4a@bZMsIcpZV;Mo'?/OrUB%7o`+pcmel_PP68bor:'1I +lLFlRJjSJ`nGN=cp?(T3s8MWXq<[SLs8VlZj7`KOrr;rrrVm!!s8W)rrs&K&s8N&urr)j/rr<#t +rr;uts8N&ts8W)ts8N#t!<2ip!ri6!rr3-#s8W)urr)rurr2p!rr;urrrE&rrrW3"rr2p"rr;us +rr3?)s8N&trr<#ts8Mus"TJH#s8N#t!<2rs"TJH#s8N#t$3'u(s8W)ts8W)trrW3"rr)isrquct +rr;usrr`9#rr2os$NC))s8N#ts8N&trVm$"s8N&trr2utrVm$"s8N&trr3<(s8N&urr2rtrr2p! +rr;urrrE&rrrW3"rr2p"rr;usrr3'!s8N#t"TJH#s8Mus"TJH#s8N#t$3'u(s8W)urr;urrrE&t +s8W&us8Dp!s8N&trr3'!s8Mus$3'u(s8N&urr;uss8;j"s8N&ts8Mus"TJH#s8N#t$3'u(s8W)u +rr;urrrE&ts8W&us8Dp!s8N&trr3'!s8Mus$3'u(s8N&urr;uss8;jKs8N&ts.X1YLPq4XR&%(" +^r4=;cdL@rg>(K;f@A +s8N9%s8N&trr)j,rr<#ts8N&trr;utrr;uqs8W'!s8N#t7K14CHKtM!jnOXJKM@'7AQ#E*kAc5^ +ERt&s=KH#O2ulR0nW%p3;-`,\JhhOM>g*-,FCAL'kk_&VQ;q5Ds6u4uDM@?QrrE&trs&K&s8N#t +rql]qrqucrrr2p"rr<#tr;Qits8Mus!<2ut!ri6!qYpg"s8W)ts8W)irs&K&s8N#trqHEmrql]u +rr;utrr2p#rr<#trql]qrqZTorp9Xhrr<#trr;ulrrE&qrri?$rr;usrri?$s8N#prrE&os8W)b +rs&K&s8N#trqHEmrql]qrr)j&rr<#ts8N#trqucrrql]trr;usrr2utrr2utqu6`ss8Mus!<2Wj +!<2Ti#lal(rr;uss8Mrr!<2lq"9/?"rr2otrr2otrql]srr;urrrE&jrrE&is"=,\.4m83 +3B]Yt;IF9]H[psBUSao`Ru)ZBGAUbc76s'r2)-[3-8*C>rq-3jrq$-krr<"K~> +s8N9%s8N&trr)j,rr<#ts8N&trr;utrr;uqs8W'!s8N#t7K14CHKtM!jnOXJKM@'7AQ#E*kAc5^ +ERt&s=KH#O2ulR0nW%p3;-`,\JhhOM>g*-,FCAL'kk_&VQ;q5Ds6u4uDM@?QrrE&trs&K&s8N#t +rql]qrqucrrr2p"rr<#tr;Qits8Mus!<2ut!ri6!qYpg"s8W)ts8W)irs&K&s8N#trqHEmrql]u +rr;utrr2p#rr<#trql]qrqZTorp9Xhrr<#trr;ulrrE&qrri?$rr;usrri?$s8N#prrE&os8W)b +rs&K&s8N#trqHEmrql]qrr)j&rr<#ts8N#trqucrrql]trr;usrr2utrr2utqu6`ss8Mus!<2Wj +!<2Ti#lal(rr;uss8Mrr!<2lq"9/?"rr2otrr2otrql]srr;urrrE&jrrE&is"= +s8N9%s8N&trr)j,rr<#ts8N&trr;utrr;uqs8W'!s8N#t7K14CHKtM!jnOXJKM@'7AQ#E*kAc5^ +ERt&s=KH#O2ulR0nW%p3;-`,\JhhOM>g*-,FCAL'kk_&VQ;q5Ds6u4uDM@?QrrE&trs&K&s8N#t +rql]qrqucrrr2p"rr<#tr;Qits8Mus!<2ut!ri6!qYpg"s8W)ts8W)irs&K&s8N#trqHEmrql]u +rr;utrr2p#rr<#trql]qrqZTorp9Xhrr<#trr;ulrrE&qrri?$rr;usrri?$s8N#prrE&os8W)b +rs&K&s8N#trqHEmrql]qrr)j&rr<#ts8N#trqucrrql]trr;usrr2utrr2utqu6`ss8Mus!<2Wj +!<2Ti#lal(rr;uss8Mrr!<2lq"9/?"rr2otrr2otrql]srr;urrrE&jrrE&is"=e(*!tcH*r>]XP)DUS"$APE1WWIpUA!rq-3jrq$-krr<"K~> +#6+Z%rr;usrVmB,s8W)us8N&urr2rtrr2os!<2or?iL**rr1e$'I\L6nb#I#X*G%oW^[itlbV>b +5BZOY!-EJ0F9%f[qHl@ePoc.gJhE[N"d&Ft,/Cc'Idq[fU6QgergHBr_aB[gs8N&trr;uts8N&u +rr<#ts8N#trqZR(rr<#ts8N&urr<#ts8W)jrtGD3rr<#ts8W)urr2rss8N#ts8Mus&,uV/rr<#t +s8W)urr2rsrqcWprr)isrr2p$rr;uts8MWis8N&u%fZM-s8W)us8N&trr<#trVmE-s8W)us8N&u +rr;uss8N#orrE&srrE&trrrE%rr<#toDejis8NT.s8N&urr<#ts8N#ts8Mus&,uV/rr<#ts8W)u +rr2rsrqcWprr)isrr2p$rr;uts8MWis8N&u$i^2*rr;uts8N&trr)lsrY,>2s8W)us8N&urr;us +s8N#trr2lr!<2fo"oeQ$s8W)is8W)ursSi+rr2rss8W)urr2lrs8E]3rr<#ts8W)us8N&trr;us +s8N#rrrE&os#pA]Q7O=2/MT+C4[DP0:/Y(p?=IYfEcZ/6@:!,<;,'YO5s71b0eFh&0['Lrrr<#t +s8W)urr2rsrr;usrVllsq>UKps*t~> +#6+Z%rr;usrVmB,s8W)us8N&urr2rtrr2os!<2or?iL**rr1e$'I\L6nb#I#X*G%oW^[itlbV>b +5BZOY!-EJ0F9%f[qHl@ePoc.gJhE[N"d&Ft,/Cc'Idq[fU6QgergHBr_aB[gs8N&trr;uts8N&u +rr<#ts8N#trqZR(rr<#ts8N&urr<#ts8W)jrtGD3rr<#ts8W)urr2rss8N#ts8Mus&,uV/rr<#t +s8W)urr2rsrqcWprr)isrr2p$rr;uts8MWis8N&u%fZM-s8W)us8N&trr<#trVmE-s8W)us8N&u +rr;uss8N#orrE&srrE&trrrE%rr<#toDejis8NT.s8N&urr<#ts8N#ts8Mus&,uV/rr<#ts8W)u +rr2rsrqcWprr)isrr2p$rr;uts8MWis8N&u$i^2*rr;uts8N&trr)lsrY,>2s8W)us8N&urr;us +s8N#trr2lr!<2fo"oeQ$s8W)is8W)ursSi+rr2rss8W)urr2lrs8E]3rr<#ts8W)us8N&trr;us +s8N#rrrE&os#pA]Rm^%P>$kfSDKC&NJqo8GQ("GEX/i.lS!B(oLOsr!F)G]'?WpH(6I#Q1rr<#t +s8W)urr2rsrr;usrVllsq>UKps*t~> +#6+Z%rr;usrVmB,s8W)us8N&urr2rtrr2os!<2or?iL**rr1e$'I\L6nb#I#X*G%oW^[itlbV>b +5BZOY!-EJ0F9%f[qHl@ePoc.gJhE[N"d&Ft,/Cc'Idq[fU6QgergHBr_aB[gs8N&trr;uts8N&u +rr<#ts8N#trqZR(rr<#ts8N&urr<#ts8W)jrtGD3rr<#ts8W)urr2rss8N#ts8Mus&,uV/rr<#t +s8W)urr2rsrqcWprr)isrr2p$rr;uts8MWis8N&u%fZM-s8W)us8N&trr<#trVmE-s8W)us8N&u +rr;uss8N#orrE&srrE&trrrE%rr<#toDejis8NT.s8N&urr<#ts8N#ts8Mus&,uV/rr<#ts8W)u +rr2rsrqcWprr)isrr2p$rr;uts8MWis8N&u$i^2*rr;uts8N&trr)lsrY,>2s8W)us8N&urr;us +s8N#trr2lr!<2fo"oeQ$s8W)is8W)ursSi+rr2rss8W)urr2lrs8E]3rr<#ts8W)us8N&trr;us +s8N#rrrE&os#pA]U1Ae0MiX'gS"?CQX08h;]>);*bKIuE^:Uk\Y,\CpT:;.1O,Jd==jR-Jrr<#t +s8W)urr2rsrr;usrVllsq>UKps*t~> +"9/?#rr2ourr;usrVuos!WW/qs8W)urri?$rr<#trr-md$'gL]V2Y +O9")9rL3f6rr6=tlfg]IpOY`ojZ[PE8oF\/>>4+'7.]\!9(>YCUnV.Bs8W)srri?$rr2rsrr2p! +rr;usrs/Q'rr;uts8Mus%0$;+s8W)ts8W)urr2lr!<2lqs8E0$rr<#trVllsr;QcrrVm$"s8N#t +rr)otrr2rt"9/?#rr2p#rr<#trr2p'rr<#ts8N#trqZQorql`qrr;uurr)j&rr;uts8N&urr)j" +rr;uss8Muts8N#trr`9#s8N#t"TJH$rr2os#lal(rr;uss8Mio!<2lqs8N&u!<2rs#lal's8W)u +s8Mus"TJH#rr;us!<<&ts8N3#s8W)trri?$s8N#rs8Muts8N!$s8N#ts8N#t!<2ut#6+Z&rr2rt +qu-`urr<#trVm$"s8W)urr2rts8E<(rr2rtrr<#trr39's8W)us8N#trr)otrr**$rr2rtrr2ot +rr2p%rr<#trr<#qrWN9#s8W)srri?$s8N&trr<#urWrQ'rr<#ts8W)trs8W(s8N&urr2rsr[\#Q +4t8!50f:sS5t4IA;H6k+@V0@lD/*Wj? +"9/?#rr2ourr;usrVuos!WW/qs8W)urri?$rr<#trr-md$'gL]V2Y +O9")9rL3f6rr6=tlfg]IpOY`ojZ[PE8oF\/>>4+'7.]\!9(>YCUnV.Bs8W)srri?$rr2rsrr2p! +rr;usrs/Q'rr;uts8Mus%0$;+s8W)ts8W)urr2lr!<2lqs8E0$rr<#trVllsr;QcrrVm$"s8N#t +rr)otrr2rt"9/?#rr2p#rr<#trr2p'rr<#ts8N#trqZQorql`qrr;uurr)j&rr;uts8N&urr)j" +rr;uss8Muts8N#trr`9#s8N#t"TJH$rr2os#lal(rr;uss8Mio!<2lqs8N&u!<2rs#lal's8W)u +s8Mus"TJH#rr;us!<<&ts8N3#s8W)trri?$s8N#rs8Muts8N!$s8N#ts8N#t!<2ut#6+Z&rr2rt +qu-`urr<#trVm$"s8W)urr2rts8E<(rr2rtrr<#trr39's8W)us8N#trr)otrr**$rr2rtrr2ot +rr2p%rr<#trr<#qrWN9#s8W)srri?$s8N&trr<#urWrQ'rr<#ts8W)trs8W(s8N&urr2rsr[\#T +9M/;g?Y!kgF*N+bLPq7ZR\6IUWMQ5VQ&pr[JphlbDJ#RjnmJm1bs8W,u#ljo's8W)us8N#t +#lal(rr<#trr;us!<7Q~> +"9/?#rr2ourr;usrVuos!WW/qs8W)urri?$rr<#trr-md$'gL]V2Y +O9")9rL3f6rr6=tlfg]IpOY`ojZ[PE8oF\/>>4+'7.]\!9(>YCUnV.Bs8W)srri?$rr2rsrr2p! +rr;usrs/Q'rr;uts8Mus%0$;+s8W)ts8W)urr2lr!<2lqs8E0$rr<#trVllsr;QcrrVm$"s8N#t +rr)otrr2rt"9/?#rr2p#rr<#trr2p'rr<#ts8N#trqZQorql`qrr;uurr)j&rr;uts8N&urr)j" +rr;uss8Muts8N#trr`9#s8N#t"TJH$rr2os#lal(rr;uss8Mio!<2lqs8N&u!<2rs#lal's8W)u +s8Mus"TJH#rr;us!<<&ts8N3#s8W)trri?$s8N#rs8Muts8N!$s8N#ts8N#t!<2ut#6+Z&rr2rt +qu-`urr<#trVm$"s8W)urr2rts8E<(rr2rtrr<#trr39's8W)us8N#trr)otrr**$rr2rtrr2ot +rr2p%rr<#trr<#qrWN9#s8W)srri?$s8N&trr<#urWrQ'rr<#ts8W)trs8W(s8N&urr2rsr[\#Y +?#k[XO->p"Sti3aYHkUK^Ve+7b/_B5]=5,LWi)VaS!K8!Mh5AQn,NCds8W,u#ljo's8W)us8N#t +#lal(rr<#trr;us!<7Q~> +r;Zcqrr2utrr2utr;Zfro`"pjrr5CEnb_a^-#E6G2tP`'P5'>-m'%b3e2Cq/O9")9rL3f6s8QFu +lfLEIqLV&skXT1I95ae0>#"('7.^"/8aoPJaOJ_pnG`LfrVllsq#CBn#QOf's8N&urql`qroj@^ +rr)isrq$-irqHHmrr;uurqucrrp0Rarr)isrqHEmrq$-irqHHmrr;uurqucrrp0Rarr)isrqHEm +rq$-irqHHmrr2otrr)j#rr;uts8M]k!<2rss8N#t!<2cn!<2`m!<2rs!<2rs!<2or!<2rs!<2rs +"oeQ$s8W)krrE&ss8W)trrE&nrrE&mrrE&srrE&srrE&rrrE&srrE&ss!dJr2D$L82*!fc7S6ER +#nKp8ju$/3&NEC01iVLqYpQprVllsrVllsr;QcrrVllsrVqB~> +r;Zcqrr2utrr2utr;Zfro`"pjrr5CEnb_a^-#E6G2tP`'P5'>-m'%b3e2Cq/O9")9rL3f6s8QFu +lfLEIqLV&skXT1I95ae0>#"('7.^"/8aoPJaOJ_pnG`LfrVllsq#CBn#QOf's8N&urql`qroj@^ +rr)isrq$-irqHHmrr;uurqucrrp0Rarr)isrqHEmrq$-irqHHmrr;uurqucrrp0Rarr)isrqHEm +rq$-irqHHmrr2otrr)j#rr;uts8M]k!<2rss8N#t!<2cn!<2`m!<2rs!<2rs!<2or!<2rs!<2rs +"oeQ$s8W)krrE&ss8W)trrE&nrrE&mrrE&srrE&srrE&rrrE&srrE&ss!dN$7S?ijA8,q&G^Y1! +Mia3mTVSQdV4X6BOGnsHI<]gNBk:XO7od.tqYpQprVllsrVllsr;QcrrVllsrVqB~> +r;Zcqrr2utrr2utr;Zfro`"pjrr5CEnb_a^-#E6G2tP`'P5'>-m'%b3e2Cq/O9")9rL3f6s8QFu +lfLEIqLV&skXT1I95ae0>#"('7.^"/8aoPJaOJ_pnG`LfrVllsq#CBn#QOf's8N&urql`qroj@^ +rr)isrq$-irqHHmrr;uurqucrrp0Rarr)isrqHEmrq$-irqHHmrr;uurqucrrp0Rarr)isrqHEm +rq$-irqHHmrr2otrr)j#rr;uts8M]k!<2rss8N#t!<2cn!<2`m!<2rs!<2rs!<2or!<2rs!<2rs +"oeQ$s8W)krrE&ss8W)trrE&nrrE&mrrE&srrE&srrE&rrrE&srrE&ss!dN,>&B"TPF%c1USk/r +ZF7B[_oKpBa25R&\$N6;Vk]lRQBRA[@V!:PqYpQprVllsrVllsr;QcrrVllsrVqB~> +#ljo(s8N&ts8M]k!<2rs!<2or"9/?#rr)jb\oiXnC*TqT8N67p!0[,'#4&<7R_M[2nW3b+s8L(i +J&_+f0:Q5`^]&gOkNGEHqL1&dSKip\Gsq8q2bE\@(i-OKS,<3crr)isrqZTnrpTjerpp'krr<#t +oDejirVllsrVllsrVllsp\t6mrr2utrVllsrVuosr;Qcrr;R0(s8W)us8N&urr;urs8W)ts8W)s +rrE&srrE&srrE&mrrE&trrE&srrE&ss8W)rrrE&rrsSi+s8N&urr<#ts8Muss8N#ts8Mus!<2rs +!<2rs!<2`m!<2ut!<2ut!ri6!rr<#tnG`Uis8W)qs8W)is8W)trrE&prrE&qrs&K&s8N#trr2rt +rp]pirr<#tqu?]qoDejirr2utqYpQpqu6m"s8W)ts8N#t./rq9:,Oa_3B]Yt8kr8a=^GQLC2Ig& +ARSnK<`)R`76s'r1GLpsbl%G>s8N#t!<2ip!<2lq#6+Z&rr2rsrr7K~> +#ljo(s8N&ts8M]k!<2rs!<2or"9/?#rr)jb\oiXnC*TqT8N67p!0[,'#4&<7R_M[2nW3b+s8L(i +J&_+f0:Q5`^]&gOkNGEHqL1&dSKip\Gsq8q2bE\@(i-OKS,<3crr)isrqZTnrpTjerpp'krr<#t +oDejirVllsrVllsrVllsp\t6mrr2utrVllsrVuosr;Qcrr;R0(s8W)us8N&urr;urs8W)ts8W)s +rrE&srrE&srrE&mrrE&trrE&srrE&ss8W)rrrE&rrsSi+s8N&urr<#ts8Muss8N#ts8Mus!<2rs +!<2rs!<2`m!<2ut!<2ut!ri6!rr<#tnG`Uis8W)qs8W)is8W)trrE&prrE&qrs&K&s8N#trr2rt +rp]pirr<#tqu?]qoDejirr2utqYpQpqu6m"s8W)ts8N#t./rq>>";CqB5Vd8I=d64OHl9-UoC>i +T:;+-N/*"5G]Rb7=@l)!ci!bAs8N#t!<2ip!<2lq#6+Z&rr2rsrr7K~> +#ljo(s8N&ts8M]k!<2rs!<2or"9/?#rr)jb\oiXnC*TqT8N67p!0[,'#4&<7R_M[2nW3b+s8L(i +J&_+f0:Q5`^]&gOkNGEHqL1&dSKip\Gsq8q2bE\@(i-OKS,<3crr)isrqZTnrpTjerpp'krr<#t +oDejirVllsrVllsrVllsp\t6mrr2utrVllsrVuosr;Qcrr;R0(s8W)us8N&urr;urs8W)ts8W)s +rrE&srrE&srrE&mrrE&trrE&srrE&ss8W)rrrE&rrsSi+s8N&urr<#ts8Muss8N#ts8Mus!<2rs +!<2rs!<2`m!<2ut!<2ut!ri6!rr<#tnG`Uis8W)qs8W)is8W)trrE&prrE&qrs&K&s8N#trr2rt +rp]pirr<#tqu?]qoDejirr2utqYpQpqu6m"s8W)ts8N#t./rtEBNoJ5Pae8>VlR#,[_';la3)QF +_S3XkZ`^=+US"!;I:ZT,eboCGs8N#t!<2ip!<2lq#6+Z&rr2rsrr7K~> +!<2ip"TJH#rr;uss8N3#s8W)trrE&ss8W)ts%34irr;uXX(bmk`qfJ#Onn<`_u$lcp>gL1W1'd] +_K,#Cs6c.]S+U,6C1O4>s0e6`nsH?TnZ?;0[dEt"Pkb':S,2lVCL:knrr3'!s8Mrr!<2ut!<2or +!<2or!<2?b!<2lqs8N&urVlcq!ri6!qu?]q!WW/srrE&\rrE&prsJc*s8N&urr<#trr2rtrqucr +rqZTorW3&ur;Qcrk5PG\qYpp%s8W)us8N&urr2oss8Mrr!<2fos8E'!rqucrroX4\rqHEqrr<#t +s8N!#s8N&trr2ourr;usf)GaLp\tBqs8W)urr*'#rr;usrr3#us8N#KrrE&ts!7QsQrPmu2`sK# +:/Y(p?=IM]D/F$!@:!,<;,'VI4#\uTEN/?_rrN-!J,~> +!<2ip"TJH#rr;uss8N3#s8W)trrE&ss8W)ts%34irr;uXX(bmk`qfJ#Onn<`_u$lcp>gL1W1'd] +_K,#Cs6c.]S+U,6C1O4>s0e6`nsH?TnZ?;0[dEt"Pkb':S,2lVCL:knrr3'!s8Mrr!<2ut!<2or +!<2or!<2?b!<2lqs8N&urVlcq!ri6!qu?]q!WW/srrE&\rrE&prsJc*s8N&urr<#trr2rtrqucr +rqZTorW3&ur;Qcrk5PG\qYpp%s8W)us8N&urr2oss8Mrr!<2fos8E'!rqucrroX4\rqHEqrr<#t +s8N!#s8N&trr2ourr;usf)GaLp\tBqs8W)urr*'#rr;usrr3#us8N#KrrE&ts!7QtSmY#a=CcK$ +Jqo8GQ("AAWMu_dS!B(oLOshg@96/nH`leorrN-!J,~> +!<2ip"TJH#rr;uss8N3#s8W)trrE&ss8W)ts%34irr;uXX(bmk`qfJ#Onn<`_u$lcp>gL1W1'd] +_K,#Cs6c.]S+U,6C1O4>s0e6`nsH?TnZ?;0[dEt"Pkb':S,2lVCL:knrr3'!s8Mrr!<2ut!<2or +!<2or!<2?b!<2lqs8N&urVlcq!ri6!qu?]q!WW/srrE&\rrE&prsJc*s8N&urr<#trr2rtrqucr +rqZTorW3&ur;Qcrk5PG\qYpp%s8W)us8N&urr2oss8Mrr!<2fos8E'!rqucrroX4\rqHEqrr<#t +s8N!#s8N&trr2ourr;usf)GaLp\tBqs8W)urr*'#rr;usrr3#us8N#KrrE&ts!7R!VJTRSG_hid +X08h;]>)8(b0%cA^:Uk\Y,\7[K6Cj0LU?O-rrN-!J,~> +rr<#t!WW/rrr`9#s8Moq!<2lq!<2rs!ri6!rr3o9p$heUs8Molrr2`lrquTls7c-_q>:0hq>UBn +-2[9.raJUaoDJXgqYU9kqYL6lqss:Ts8Mrlrr2cks8W&knb2t[rrE&ss8W'"s8N#frrW3"rr2ot +rql]qrr2otrr2otrr)isrquctrr;u`s8W)urrE&trrE&frs&K&s8N&urr2p!rr<#trrujZk6Td=h4$eG5mJ[(arqcWsrr<#trr2uto`"pjrr3#us*t~> +rr<#t!WW/rrr`9#s8Moq!<2lq!<2rs!ri6!rr3o9p$heUs8Molrr2`lrquTls7c-_q>:0hq>UBn +-2[9.raJUaoDJXgqYU9kqYL6lqss:Ts8Mrlrr2cks8W&knb2t[rrE&ss8W'"s8N#frrW3"rr2ot +rql]qrr2otrr2otrr)isrquctrr;u`s8W)urrE&trrE&frs&K&s8N&urr2p!rr<#trr +rr<#t!WW/rrr`9#s8Moq!<2lq!<2rs!ri6!rr3o9p$heUs8Molrr2`lrquTls7c-_q>:0hq>UBn +-2[9.raJUaoDJXgqYU9kqYL6lqss:Ts8Mrlrr2cks8W&knb2t[rrE&ss8W'"s8N#frrW3"rr2ot +rql]qrr2otrr2otrr)isrquctrr;u`s8W)urrE&trrE&frs&K&s8N&urr2p!rr<#trr$bZRIZKVcY.;p1 +[],[XM0*99>[ +s8Mus!<2rs!<2$Y"9/?#rq$-jrr;rrrVllsrVm&,Xn2Smrr)isrqcWprqZTmrr)j#rr;utrr2`n +!<2orrVcitrqQNnrWrQ's8W)us8N#ss8W)rs8N#ns8DrorrW3"rqucrrr2p"rr<#trVuos!WW/o +s8W)qs8N#rrs/Q's8N&urr2co!ri6!q#:Eps8Mrr!<2ut"9/?#rr)lsrW3&uq#CBnqu?ZprVm-% +s8W)us8N#orrW3"rqQKprr;uqrrE&trr`9#s8Muss8E'!rqQNmrqufrrqucurr<#trr2utqYpWr +s8MHd"oeQ$s8W)prrE&rs8W)us8N#qs8W)rrr`9#s8N#t!<2ip!ri6!mf*Iis8N&urqcWprqufr +rr<#trqufrrr2p)qV7cbBjb:G5r:b(579Y:1eV"[AT!79jS\ZM"oeQ$s8W)prrE&rs8W)us8N#t +s*t~> +s8Mus!<2rs!<2$Y"9/?#rq$-jrr;rrrVllsrVm&,Xn2Smrr)isrqcWprqZTmrr)j#rr;utrr2`n +!<2orrVcitrqQNnrWrQ's8W)us8N#ss8W)rs8N#ns8DrorrW3"rqucrrr2p"rr<#trVuos!WW/o +s8W)qs8N#rrs/Q's8N&urr2co!ri6!q#:Eps8Mrr!<2ut"9/?#rr)lsrW3&uq#CBnqu?ZprVm-% +s8W)us8N#orrW3"rqQKprr;uqrrE&trr`9#s8Muss8E'!rqQNmrqufrrqucurr<#trr2utqYpWr +s8MHd"oeQ$s8W)prrE&rs8W)us8N#qs8W)rrr`9#s8N#t!<2ip!ri6!mf*Iis8N&urqcWprqufr +rr<#trqufrrr2p8qVA#qF)#Do9h&2d>$>'-6<7W3Dg78Wjo"cN"oeQ$s8W)prrE&rs8W)us8N#t +s*t~> +s8Mus!<2rs!<2$Y"9/?#rq$-jrr;rrrVllsrVm&,Xn2Smrr)isrqcWprqZTmrr)j#rr;utrr2`n +!<2orrVcitrqQNnrWrQ's8W)us8N#ss8W)rs8N#ns8DrorrW3"rqucrrr2p"rr<#trVuos!WW/o +s8W)qs8N#rrs/Q's8N&urr2co!ri6!q#:Eps8Mrr!<2ut"9/?#rr)lsrW3&uq#CBnqu?ZprVm-% +s8W)us8N#orrW3"rqQKprr;uqrrE&trr`9#s8Muss8E'!rqQNmrqufrrqucurr<#trr2utqYpWr +s8MHd"oeQ$s8W)prrE&rs8W)us8N#qs8W)rrr`9#s8N#t!<2ip!ri6!mf*Iis8N&urqcWprqufr +rr<#trqufrrr2p8qqeE/IWfjJ>?G]YDJj<';.FQgH@qO%kPb&Q"oeQ$s8W)prrE&rs8W)us8N#t +s*t~> +s8N3#s8N#qrrW3"rr2p)rr<#ts8N#ts8N#srrE&qrrE&ms8W)prrE&srrE&trrE&trsJc*rr;us +s8N#trr2rtrr;uurr2otrqucrrr)j!rr;usrVuosrr3*"s8N#rs8W)trr`9#rr2Qi!<2rss8Moq +!ri6!rr3'!s8Mrr!<2rs"9/?"rr)lsrr2p!rr;uqrrW3"rqucrrqQKnrr2otrql]qrqucrrquct +rr;urrrE&ps8W)ss8W)trrW3"rquctrr;uqrrE&nrrE&trrE&qrrE&rrrE&rrrW3"rr)isrqcZp +rr)lsrr2p!rr;uqrrW3"rqucrrqQKnrr2otrr)isrqcWprr)j!rr<#trVllsqZ$Tpr;Qcrrr3'! +s8Mlp!<2rs!<2Ti!<2rs!<2ip!<2rs"9/?#rr)isrqcZprqucrrr2p!rr;uorrE&srrE&irrE&s +rrE&prs/Q"nE&`]_5[@($)+ZKhW=(srVlforrE&trrW3"rqcWprr)isrq$-krr<"K~> +s8N3#s8N#qrrW3"rr2p)rr<#ts8N#ts8N#srrE&qrrE&ms8W)prrE&srrE&trrE&trsJc*rr;us +s8N#trr2rtrr;uurr2otrqucrrr)j!rr;usrVuosrr3*"s8N#rs8W)trr`9#rr2Qi!<2rss8Moq +!ri6!rr3'!s8Mrr!<2rs"9/?"rr)lsrr2p!rr;uqrrW3"rqucrrqQKnrr2otrql]qrqucrrquct +rr;urrrE&ps8W)ss8W)trrW3"rquctrr;uqrrE&nrrE&trrE&qrrE&rrrE&rrrW3"rr)isrqcZp +rr)lsrr2p!rr;uqrrW3"rqucrrqQKnrr2otrr)isrqcWprr)j!rr<#trVllsqZ$Tpr;Qcrrr3'! +s8Mlp!<2rs!<2Ti!<2rs!<2ip!<2rs"9/?#rr)isrqcZprqucrrr2p!rr;uorrE&srrE&irrE&s +rrE&prs/Q"nE/i``39*6$)Y/Vhra;!rVlforrE&trrW3"rqcWprr)isrq$-krr<"K~> +s8N3#s8N#qrrW3"rr2p)rr<#ts8N#ts8N#srrE&qrrE&ms8W)prrE&srrE&trrE&trsJc*rr;us +s8N#trr2rtrr;uurr2otrqucrrr)j!rr;usrVuosrr3*"s8N#rs8W)trr`9#rr2Qi!<2rss8Moq +!ri6!rr3'!s8Mrr!<2rs"9/?"rr)lsrr2p!rr;uqrrW3"rqucrrqQKnrr2otrql]qrqucrrquct +rr;urrrE&ps8W)ss8W)trrW3"rquctrr;uqrrE&nrrE&trrE&qrrE&rrrE&rrrW3"rr)isrqcZp +rr)lsrr2p!rr;uqrrW3"rqucrrqQKnrr2otrr)isrqcWprr)j!rr<#trVllsqZ$Tpr;Qcrrr3'! +s8Mlp!<2rs!<2Ti!<2rs!<2ip!<2rs"9/?#rr)isrqcZprqucrrr2p!rr;uorrE&srrE&irrE&s +rrE&prs/Q"n`T&eaL1rG$*Ckfi90M$rVlforrE&trrW3"rqcWprr)isrq$-krr<"K~> +s8W,us8N<&s8W)ts8N#t!ri6!rr30$s8N&urr)isrqufqrW<-!rr2p!rr;uorri?$rr;usrrE&q +rrW3"s8Doss8Muus8M]k!<2rs!ri6!rr2utrVuos!WW/urrE&trrE&srr`9#s8N#t#6+Z%s8N&t +r;Qcrqu6m"s8N#ts8Mcm!<2rs!ri6!rr2utr;Qits8Mlps8Mus!<2ip!<2fo!<2ip!<2or!ri6! +rVllsq>UHor;Qcrr;Qits8Mlps8Mus!<2ip!<2fo!<2ip!<2or!ri6!rVllsq>UHor;Qcrr;Qit +s8Mlps8Mus!<2ip!<2or"9/?#rqZTorr2p"rr<#tq#CBns8N)urVllsrVm!!s8W)orrE&srrE&t +s8W)urrE&ts8W)trrE&os8W)trr`9#s8Mfns8N&u!<2rs!<2rs"9/?#rqZQorr)isrr2rtrr;uu +rr2rtrr2otrqZTorr2p%rr<#ts8W&qqZZosrr<#trVllsrVm!!s8W)orrE&srrE&ts8W)urrE&t +s8W)trrW3"s*t~> +s8W,us8N<&s8W)ts8N#t!ri6!rr30$s8N&urr)isrqufqrW<-!rr2p!rr;uorri?$rr;usrrE&q +rrW3"s8Doss8Muus8M]k!<2rs!ri6!rr2utrVuos!WW/urrE&trrE&srr`9#s8N#t#6+Z%s8N&t +r;Qcrqu6m"s8N#ts8Mcm!<2rs!ri6!rr2utr;Qits8Mlps8Mus!<2ip!<2fo!<2ip!<2or!ri6! +rVllsq>UHor;Qcrr;Qits8Mlps8Mus!<2ip!<2fo!<2ip!<2or!ri6!rVllsq>UHor;Qcrr;Qit +s8Mlps8Mus!<2ip!<2or"9/?#rqZTorr2p"rr<#tq#CBns8N)urVllsrVm!!s8W)orrE&srrE&t +s8W)urrE&ts8W)trrE&os8W)trr`9#s8Mfns8N&u!<2rs!<2rs"9/?#rqZQorr)isrr2rtrr;uu +rr2rtrr2otrqZTorr2p%rr<#ts8W&qqZZosrr<#trVllsrVm!!s8W)orrE&srrE&ts8W)urrE&t +s8W)trrW3"s*t~> +s8W,us8N<&s8W)ts8N#t!ri6!rr30$s8N&urr)isrqufqrW<-!rr2p!rr;uorri?$rr;usrrE&q +rrW3"s8Doss8Muus8M]k!<2rs!ri6!rr2utrVuos!WW/urrE&trrE&srr`9#s8N#t#6+Z%s8N&t +r;Qcrqu6m"s8N#ts8Mcm!<2rs!ri6!rr2utr;Qits8Mlps8Mus!<2ip!<2fo!<2ip!<2or!ri6! +rVllsq>UHor;Qcrr;Qits8Mlps8Mus!<2ip!<2fo!<2ip!<2or!ri6!rVllsq>UHor;Qcrr;Qit +s8Mlps8Mus!<2ip!<2or"9/?#rqZTorr2p"rr<#tq#CBns8N)urVllsrVm!!s8W)orrE&srrE&t +s8W)urrE&ts8W)trrE&os8W)trr`9#s8Mfns8N&u!<2rs!<2rs"9/?#rqZQorr)isrr2rtrr;uu +rr2rtrr2otrqZTorr2p%rr<#ts8W)qr;ZcrrrE&srrE&srr`9#s8Mio!<2rs!<2uts8N&u!<2ut +s8N#t!ri6"J,~> +r;Zfrrr3<(s8W)ts8W)us8N#qrrN-!rr2os!<2ut"TJH#s8Mrrs8N#t!<2or!<2ut!<2rsrr2os +!<2ut!<2or!ri6!rr33%s8W)us8Mlp!<2He!<2orrr2rt!<2uts8MZjs8Musrr2fp"9/?#rqcWp +rqZQorqucrrq??lrqcWprr)iurr;urrri?$rr;usrrE&lrrE&prrE&orrE&rrrE&lrrE&prrE&s +rrW3"rr)j"rr;utrr2otrq??lrqcWprqZQorqucrrq??lrqcWprr)iurr;urrrE&srr`9#s8M`l +#lal's8W)us8Mlp!<2or!<23^!ri6!rVllsrVm!!s8W)lrs8W(rr<#ts8W)prrE&rrrE&^rrW3" +rr)isrr)j!rr<#tpAYEts8N&urr<#tqYpQpr;Qcrkl1bas8N%K~> +r;Zfrrr3<(s8W)ts8W)us8N#qrrN-!rr2os!<2ut"TJH#s8Mrrs8N#t!<2or!<2ut!<2rsrr2os +!<2ut!<2or!ri6!rr33%s8W)us8Mlp!<2He!<2orrr2rt!<2uts8MZjs8Musrr2fp"9/?#rqcWp +rqZQorqucrrq??lrqcWprr)iurr;urrri?$rr;usrrE&lrrE&prrE&orrE&rrrE&lrrE&prrE&s +rrW3"rr)j"rr;utrr2otrq??lrqcWprqZQorqucrrq??lrqcWprr)iurr;urrrE&srr`9#s8M`l +#lal's8W)us8Mlp!<2or!<23^!ri6!rVllsrVm!!s8W)lrs8W(rr<#ts8W)prrE&rrrE&^rrW3" +rr)isrr)j!rr<#tpAYEts8N&urr<#tqYpQpr;Qcrkl1bas8N%K~> +r;Zfrrr3<(s8W)ts8W)us8N#qrrN-!rr2os!<2ut"TJH#s8Mrrs8N#t!<2or!<2ut!<2rsrr2os +!<2ut!<2or!ri6!rr33%s8W)us8Mlp!<2He!<2orrr2rt!<2uts8MZjs8Musrr2fp"9/?#rqcWp +rqZQorqucrrq??lrqcWprr)iurr;urrri?$rr;usrrE&lrrE&prrE&orrE&rrrE&lrrE&prrE&s +rrW3"rr)j"rr;utrr2otrq??lrqcWprqZQorqucrrq??lrqcWprr)iurr;urrrE&srr`9#s8M`l +#lal's8W)us8Mlp!<2or!<23^!ri6!rVllsrVm!!s8W)lrs8W(rr<#ts8W)prrE&rrrE&^rrW3" +rr)isrr)j!rr<#tpAYEts8N&urr<#tqYpQpr;Qcrkl1bas8N%K~> +!<2ut!<2]ls8E0$rr<#tqu?]q!WW/ursA])rr2rtrr<#trVm!!s8W)trrE&lrr`9#s8Mus"9/?# +rqHEmrr)j$rr<#ts8W)trrE&nrs&K&rr2rtrqucrrr2rtrqcWsrr<#tqYpZss8W)rrrE&ts8W)s +rs&K&s8N&urr2p"rr<#tr;R-'s8W)ts8W)urr;usrr<#trr2utrVlrus8Moqs8N&urr2oss8E#u +rr*9)rr<#ts8W)ts8N#t"9/?#rqud'rr<#trr<#ts8N&trr2rtrr2otrr)iurr;ups8W)us8N#s +s8W&us8N!)s8N&urr<#trr;usrr`9#s8Mrr$NC)*rr2rtrr;utrr2oss8N#t!<2rs"TJH$rr2lr +"9/?"rql`prr)j!rr<#tr;Zfrs8N0"s8W)t!WW/ts8W'%s8N&ts8W)trVm$"s8W)trr30$s8N&t +rr)j!rr;usqu?ZprVm!!s8W)rs8W)urrW3"s8Muus8Muss8E3%rr;uts8N#rrri?$s8N#srrrE% +rr;usrVm!!s8N#ps8N#rrr`9#s8Mrrs8N&u!ri6"rr)rurr)lsrWW?$s8N&urr2lr"TJH$rr2os +"oeQ$s8N#ss*t~> +!<2ut!<2]ls8E0$rr<#tqu?]q!WW/ursA])rr2rtrr<#trVm!!s8W)trrE&lrr`9#s8Mus"9/?# +rqHEmrr)j$rr<#ts8W)trrE&nrs&K&rr2rtrqucrrr2rtrqcWsrr<#tqYpZss8W)rrrE&ts8W)s +rs&K&s8N&urr2p"rr<#tr;R-'s8W)ts8W)urr;usrr<#trr2utrVlrus8Moqs8N&urr2oss8E#u +rr*9)rr<#ts8W)ts8N#t"9/?#rqud'rr<#trr<#ts8N&trr2rtrr2otrr)iurr;ups8W)us8N#s +s8W&us8N!)s8N&urr<#trr;usrr`9#s8Mrr$NC)*rr2rtrr;utrr2oss8N#t!<2rs"TJH$rr2lr +"9/?"rql`prr)j!rr<#tr;Zfrs8N0"s8W)t!WW/ts8W'%s8N&ts8W)trVm$"s8W)trr30$s8N&t +rr)j!rr;usqu?ZprVm!!s8W)rs8W)urrW3"s8Muus8Muss8E3%rr;uts8N#rrri?$s8N#srrrE% +rr;usrVm!!s8N#ps8N#rrr`9#s8Mrrs8N&u!ri6"rr)rurr)lsrWW?$s8N&urr2lr"TJH$rr2os +"oeQ$s8N#ss*t~> +!<2ut!<2]ls8E0$rr<#tqu?]q!WW/ursA])rr2rtrr<#trVm!!s8W)trrE&lrr`9#s8Mus"9/?# +rqHEmrr)j$rr<#ts8W)trrE&nrs&K&rr2rtrqucrrr2rtrqcWsrr<#tqYpZss8W)rrrE&ts8W)s +rs&K&s8N&urr2p"rr<#tr;R-'s8W)ts8W)urr;usrr<#trr2utrVlrus8Moqs8N&urr2oss8E#u +rr*9)rr<#ts8W)ts8N#t"9/?#rqud'rr<#trr<#ts8N&trr2rtrr2otrr)iurr;ups8W)us8N#s +s8W&us8N!)s8N&urr<#trr;usrr`9#s8Mrr$NC)*rr2rtrr;utrr2oss8N#t!<2rs"TJH$rr2lr +"9/?"rql`prr)j!rr<#tr;Zfrs8N0"s8W)t!WW/ts8W'%s8N&ts8W)trVm$"s8W)trr30$s8N&t +rr)j!rr;usqu?ZprVm!!s8W)rs8W)urrW3"s8Muus8Muss8E3%rr;uts8N#rrri?$s8N#srrrE% +rr;usrVm!!s8N#ps8N#rrr`9#s8Mrrs8N&u!ri6"rr)rurr)lsrWW?$s8N&urr2lr"TJH$rr2os +"oeQ$s8N#ss*t~> +s8N#t!<2ut!WN,trWW?$s8W)to`#!ls8N#t!ri6!oD\gipAY-lrr3*"s8W)trrE&nrrE&trrE&q +rs&K&rr;utrr2p/rr;utrr;utrr;utrr;utrr2rtrqcX!rr;utrr<#trr)lsrWN9#s8W)rs8W'! +s8Moq#6+Z%s8N&trr3'!s8N#t!<2ut#6+Z%s8W)trr<#trr2utrr2utrr2utrVmQ1s8W)ts8N&t +s8N#ts8N&urr;uors&K&rr2rtrr2p!rr;usrrE&trs&K&rr<#trr2rtrr2otrr2otrr2otrr)j1 +rr<#trr;utrr;uss8W)us8N&tqYpd!s8N#ts8N#t!ri6!rr2utrr33%s8N&urr2oss8N#t!<2ut +!<2ut!<2rs!<2ut!<2ut"9/?"rr)iurr;ums8W)trrE&nrsJc*s8N&ts8N&trr)iurr;uqrrW3" +rql]qrr2otrr2p"rr;usrVlrus8Mfns8N#t!<2cn$NC)*rr;utrr;usrVlrus8Mrr!ri6!qu6Zq +rr2utrr3*"s8N#rrrW3"rqQNnrr2otrqQL#rr<#ts8N&ts8N#rrrW3"rquctrr;uprrE%K~> +s8N#t!<2ut!WN,trWW?$s8W)to`#!ls8N#t!ri6!oD\gipAY-lrr3*"s8W)trrE&nrrE&trrE&q +rs&K&rr;utrr2p/rr;utrr;utrr;utrr;utrr2rtrqcX!rr;utrr<#trr)lsrWN9#s8W)rs8W'! +s8Moq#6+Z%s8N&trr3'!s8N#t!<2ut#6+Z%s8W)trr<#trr2utrr2utrr2utrVmQ1s8W)ts8N&t +s8N#ts8N&urr;uors&K&rr2rtrr2p!rr;usrrE&trs&K&rr<#trr2rtrr2otrr2otrr2otrr)j1 +rr<#trr;utrr;uss8W)us8N&tqYpd!s8N#ts8N#t!ri6!rr2utrr33%s8N&urr2oss8N#t!<2ut +!<2ut!<2rs!<2ut!<2ut"9/?"rr)iurr;ums8W)trrE&nrsJc*s8N&ts8N&trr)iurr;uqrrW3" +rql]qrr2otrr2p"rr;usrVlrus8Mfns8N#t!<2cn$NC)*rr;utrr;usrVlrus8Mrr!ri6!qu6Zq +rr2utrr3*"s8N#rrrW3"rqQNnrr2otrqQL#rr<#ts8N&ts8N#rrrW3"rquctrr;uprrE%K~> +s8N#t!<2ut!WN,trWW?$s8W)to`#!ls8N#t!ri6!oD\gipAY-lrr3*"s8W)trrE&nrrE&trrE&q +rs&K&rr;utrr2p/rr;utrr;utrr;utrr;utrr2rtrqcX!rr;utrr<#trr)lsrWN9#s8W)rs8W'! +s8Moq#6+Z%s8N&trr3'!s8N#t!<2ut#6+Z%s8W)trr<#trr2utrr2utrr2utrVmQ1s8W)ts8N&t +s8N#ts8N&urr;uors&K&rr2rtrr2p!rr;usrrE&trs&K&rr<#trr2rtrr2otrr2otrr2otrr)j1 +rr<#trr;utrr;uss8W)us8N&tqYpd!s8N#ts8N#t!ri6!rr2utrr33%s8N&urr2oss8N#t!<2ut +!<2ut!<2rs!<2ut!<2ut"9/?"rr)iurr;ums8W)trrE&nrsJc*s8N&ts8N&trr)iurr;uqrrW3" +rql]qrr2otrr2p"rr;usrVlrus8Mfns8N#t!<2cn$NC)*rr;utrr;usrVlrus8Mrr!ri6!qu6Zq +rr2utrr3*"s8N#rrrW3"rqQNnrr2otrqQL#rr<#ts8N&ts8N#rrrW3"rquctrr;uprrE%K~> +rr2utrVuosrVm!!s8W)rrrW3"s8N#qrrE&rs8Muus8N#t"oeQ%rr2rsrWE3"s8Mio"9/?#rr)ls +rr;uurqud%rr<#trr;utrq69qrr<#ts8N#hs8W)prrE&rrr`9#s8N#t!<2`m#lal(rr;uss8M]k +#QFc'rr;utrr2p!rr;uqrrE&ps8W''s8N&ts8N&trr2utrr<#tq#:Eps8N#ts8N&u!<2or!<2ut +#QFc'rr;utrr2p!rr;uqrrE&ps8W''s8N&ts8N&trr2utrr<#tq#:Eps8N#ts8N&u!<2or!<2ut +#QFc'rr;utrr2p!rr;uqrrE&ps8W'%s8N&ts8Mrr!<2ut"oeQ$rr;uqrrE&rs8W)urrW3"rqcWp +rqHEorr<#trr;uurr2otrr)j&rr;utrr<#trr2otrr2p$rr;uss8Mrr!<2ors8N&u!ri6!qYpQp +p\t +rr2utrVuosrVm!!s8W)rrrW3"s8N#qrrE&rs8Muus8N#t"oeQ%rr2rsrWE3"s8Mio"9/?#rr)ls +rr;uurqud%rr<#trr;utrq69qrr<#ts8N#hs8W)prrE&rrr`9#s8N#t!<2`m#lal(rr;uss8M]k +#QFc'rr;utrr2p!rr;uqrrE&ps8W''s8N&ts8N&trr2utrr<#tq#:Eps8N#ts8N&u!<2or!<2ut +#QFc'rr;utrr2p!rr;uqrrE&ps8W''s8N&ts8N&trr2utrr<#tq#:Eps8N#ts8N&u!<2or!<2ut +#QFc'rr;utrr2p!rr;uqrrE&ps8W'%s8N&ts8Mrr!<2ut"oeQ$rr;uqrrE&rs8W)urrW3"rqcWp +rqHEorr<#trr;uurr2otrr)j&rr;utrr<#trr2otrr2p$rr;uss8Mrr!<2ors8N&u!ri6!qYpQp +p\t +rr2utrVuosrVm!!s8W)rrrW3"s8N#qrrE&rs8Muus8N#t"oeQ%rr2rsrWE3"s8Mio"9/?#rr)ls +rr;uurqud%rr<#trr;utrq69qrr<#ts8N#hs8W)prrE&rrr`9#s8N#t!<2`m#lal(rr;uss8M]k +#QFc'rr;utrr2p!rr;uqrrE&ps8W''s8N&ts8N&trr2utrr<#tq#:Eps8N#ts8N&u!<2or!<2ut +#QFc'rr;utrr2p!rr;uqrrE&ps8W''s8N&ts8N&trr2utrr<#tq#:Eps8N#ts8N&u!<2or!<2ut +#QFc'rr;utrr2p!rr;uqrrE&ps8W'%s8N&ts8Mrr!<2ut"oeQ$rr;uqrrE&rs8W)urrW3"rqcWp +rqHEorr<#trr;uurr2otrr)j&rr;utrr<#trr2otrr2p$rr;uss8Mrr!<2ors8N&u!ri6!qYpQp +p\t +rVd*&rr<#ts8W)trr;us!WW/ms8W)rrs&K&s8N&urr)lrrqucrrqHEorr;uss8W)trsA])rr<#t +s8W)trr;us!WW/urrE&srrE&srr`9#s8N#t!ri6!qu6cts8W)trrE&rrrN-!rr)rurr2rrrW3&u +rr2utrr<#ts8W&s!WW/urrE&srrE&ts8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p%rr;utrr;us +rrE&ss8N#qrrE&nrs8W(s8N&urr;uss8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p%rr;utrr;us +rrE&ss8N#qrrE&nrs8W(s8N&urr;uss8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p!rr;uorrE&k +rrE&srrE&srrW3"rr2p!rr;urrrW3"rr)j!rr;usr;Qlus8W)rrrE&trr`9#s8Moq!<2Zk!<2rs +!<2rs!ri6!rr3'!s8Mus!ri6!rVm!!s8N#qrr`9#s8Mrr!<2ut$NC)*rr2lnqu-Qop&>$krVm-% +s8Vraq#C?mrrW3"rr)iurr;urrr`9#rr2iq"9/?#rqucrrr2p"rr<#tqu;0~> +rVd*&rr<#ts8W)trr;us!WW/ms8W)rrs&K&s8N&urr)lrrqucrrqHEorr;uss8W)trsA])rr<#t +s8W)trr;us!WW/urrE&srrE&srr`9#s8N#t!ri6!qu6cts8W)trrE&rrrN-!rr)rurr2rrrW3&u +rr2utrr<#ts8W&s!WW/urrE&srrE&ts8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p%rr;utrr;us +rrE&ss8N#qrrE&nrs8W(s8N&urr;uss8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p%rr;utrr;us +rrE&ss8N#qrrE&nrs8W(s8N&urr;uss8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p!rr;uorrE&k +rrE&srrE&srrW3"rr2p!rr;urrrW3"rr)j!rr;usr;Qlus8W)rrrE&trr`9#s8Moq!<2Zk!<2rs +!<2rs!ri6!rr3'!s8Mus!ri6!rVm!!s8N#qrr`9#s8Mrr!<2ut$NC)*rr2lnqu-Qop&>$krVm-% +s8Vraq#C?mrrW3"rr)iurr;urrr`9#rr2iq"9/?#rqucrrr2p"rr<#tqu;0~> +rVd*&rr<#ts8W)trr;us!WW/ms8W)rrs&K&s8N&urr)lrrqucrrqHEorr;uss8W)trsA])rr<#t +s8W)trr;us!WW/urrE&srrE&srr`9#s8N#t!ri6!qu6cts8W)trrE&rrrN-!rr)rurr2rrrW3&u +rr2utrr<#ts8W&s!WW/urrE&srrE&ts8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p%rr;utrr;us +rrE&ss8N#qrrE&nrs8W(s8N&urr;uss8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p%rr;utrr;us +rrE&ss8N#qrrE&nrs8W(s8N&urr;uss8W)qrs\o,s8N&urr<#ts8W)trrW3"rr2p!rr;uorrE&k +rrE&srrE&srrW3"rr2p!rr;urrrW3"rr)j!rr;usr;Qlus8W)rrrE&trr`9#s8Moq!<2Zk!<2rs +!<2rs!ri6!rr3'!s8Mus!ri6!rVm!!s8N#qrr`9#s8Mrr!<2ut$NC)*rr2lnqu-Qop&>$krVm-% +s8Vraq#C?mrrW3"rr)iurr;urrr`9#rr2iq"9/?#rqucrrr2p"rr<#tqu;0~> +s8N)uqu?]q#ljo's8N#trr;oqrr2utr;Zfr"onT%s8N#ss8W'!s8N#t!<2or!WN,rrr;uurr)j$ +rr<#ts8W)trr`9#rr;us%0->,rr;uts8N&urr;rrrr3-#s8N&trr;rrs8N)uqu?Zps8N<&s8W)u +s8N#t!<2utrVl]o&cVh1rr;uss8N&ts8W)us8N&srr2p!rr;usrt581rr2rss8W)us8N&urr2rs +r;Qlus8W)srr`9#s8Mrrs8E<(rr2rss8W)trr33%s8W)urr2lr#6+Z&rr2rsrr3T0s8N#trr<#t +s8W)us8N#trqucurr<#trVm!!s8W)rs8W'(s8N#trr<#trr2p%rr<#ts8N#rrs&K&s8N#trr2p0 +rr;uss8N&urr<#ts8W)ts8Mrr#6+Z&rr;usrVllsrr;uss8W,u%0->,rr<#ts8W)us8Mus"9/?# +rqud'rr<#trr;uss8N#rrr`9#s8Muss8N&u#6+Z&rr;usrVllsrr;uss8W,u%0->,rr<#ts8W)u +s8Mus"9/?#rqud'rr<#trr;uss8N#rrr`9#s8Muss8N&u$i^2+rr;r8LPMS>jSo2Yrr +s8N)uqu?]q#ljo's8N#trr;oqrr2utr;Zfr"onT%s8N#ss8W'!s8N#t!<2or!WN,rrr;uurr)j$ +rr<#ts8W)trr`9#rr;us%0->,rr;uts8N&urr;rrrr3-#s8N&trr;rrs8N)uqu?Zps8N<&s8W)u +s8N#t!<2utrVl]o&cVh1rr;uss8N&ts8W)us8N&srr2p!rr;usrt581rr2rss8W)us8N&urr2rs +r;Qlus8W)srr`9#s8Mrrs8E<(rr2rss8W)trr33%s8W)urr2lr#6+Z&rr2rsrr3T0s8N#trr<#t +s8W)us8N#trqucurr<#trVm!!s8W)rs8W'(s8N#trr<#trr2p%rr<#ts8N#rrs&K&s8N#trr2p0 +rr;uss8N&urr<#ts8W)ts8Mrr#6+Z&rr;usrVllsrr;uss8W,u%0->,rr<#ts8W)us8Mus"9/?# +rqud'rr<#trr;uss8N#rrr`9#s8Muss8N&u#6+Z&rr;usrVllsrr;uss8W,u%0->,rr<#ts8W)u +s8Mus"9/?#rqud'rr<#trr;uss8N#rrr`9#s8Muss8N&u$i^2+rr;r8LPMS>jSo2Yrr +s8N)uqu?]q#ljo's8N#trr;oqrr2utr;Zfr"onT%s8N#ss8W'!s8N#t!<2or!WN,rrr;uurr)j$ +rr<#ts8W)trr`9#rr;us%0->,rr;uts8N&urr;rrrr3-#s8N&trr;rrs8N)uqu?Zps8N<&s8W)u +s8N#t!<2utrVl]o&cVh1rr;uss8N&ts8W)us8N&srr2p!rr;usrt581rr2rss8W)us8N&urr2rs +r;Qlus8W)srr`9#s8Mrrs8E<(rr2rss8W)trr33%s8W)urr2lr#6+Z&rr2rsrr3T0s8N#trr<#t +s8W)us8N#trqucurr<#trVm!!s8W)rs8W'(s8N#trr<#trr2p%rr<#ts8N#rrs&K&s8N#trr2p0 +rr;uss8N&urr<#ts8W)ts8Mrr#6+Z&rr;usrVllsrr;uss8W,u%0->,rr<#ts8W)us8Mus"9/?# +rqud'rr<#trr;uss8N#rrr`9#s8Muss8N&u#6+Z&rr;usrVllsrr;uss8W,u%0->,rr<#ts8W)u +s8Mus"9/?#rqud'rr<#trr;uss8N#rrr`9#s8Muss8N&u$i^2+rr;r8LPMS>jSo2Yrr +r;Zfrs8W,u!rr9!qu6Zqrr3'!s8Moq!<2rs!ri6!r;Qcrr;Zfrs8W,uq#:?nrVllsq#:?nrVlls +r;Qcrr;Zfrrr<#tqu6Zqrr<#trr<#t#QOf's8N#trqZTorpg!lrr;uts8Mrr!<2ors8N#ts8Moq +!<2uts8Mus!<2or"9/?#rr)j!rr<#tqYpQprr;usrVuoss8W,uq#:?no`"pjrr<#trVllsr;Qlu +s8W)srr`9#s8Mlp!<2utrr2lrs8N&us8Mfn!<2Wj!<2uts8Mus!<2or"9/?#rr)j!rr<#tqYpQp +rr2utrVuos#QOf's8N&urqcWprr2otrq-6jrr)isrqud!rr<#trql]qrr)j!rr<#trr2utrVuos +#QOf's8N&urqcWprr2otrq-6jrr)isrqud!rr<#trql]qrr)j%qg\ZD@Pq- +r;Zfrs8W,u!rr9!qu6Zqrr3'!s8Moq!<2rs!ri6!r;Qcrr;Zfrs8W,uq#:?nrVllsq#:?nrVlls +r;Qcrr;Zfrrr<#tqu6Zqrr<#trr<#t#QOf's8N#trqZTorpg!lrr;uts8Mrr!<2ors8N#ts8Moq +!<2uts8Mus!<2or"9/?#rr)j!rr<#tqYpQprr;usrVuoss8W,uq#:?no`"pjrr<#trVllsr;Qlu +s8W)srr`9#s8Mlp!<2utrr2lrs8N&us8Mfn!<2Wj!<2uts8Mus!<2or"9/?#rr)j!rr<#tqYpQp +rr2utrVuos#QOf's8N&urqcWprr2otrq-6jrr)isrqud!rr<#trql]qrr)j!rr<#trr2utrVuos +#QOf's8N&urqcWprr2otrq-6jrr)isrqud!rr<#trql]qrr)j%qg\ZD@Pq- +r;Zfrs8W,u!rr9!qu6Zqrr3'!s8Moq!<2rs!ri6!r;Qcrr;Zfrs8W,uq#:?nrVllsq#:?nrVlls +r;Qcrr;Zfrrr<#tqu6Zqrr<#trr<#t#QOf's8N#trqZTorpg!lrr;uts8Mrr!<2ors8N#ts8Moq +!<2uts8Mus!<2or"9/?#rr)j!rr<#tqYpQprr;usrVuoss8W,uq#:?no`"pjrr<#trVllsr;Qlu +s8W)srr`9#s8Mlp!<2utrr2lrs8N&us8Mfn!<2Wj!<2uts8Mus!<2or"9/?#rr)j!rr<#tqYpQp +rr2utrVuos#QOf's8N&urqcWprr2otrq-6jrr)isrqud!rr<#trql]qrr)j!rr<#trr2utrVuos +#QOf's8N&urqcWprr2otrq-6jrr)isrqud!rr<#trql]qrr)j%qg\ZD@Pq- +rVllsrr<#trr2uto`#!ls8Muss8Mlp!ri6!l2Lb_r;Qits8Mus%K?D-rr;uts8N&urr;uqrrE&s +s8W'!s8M]k!<2He!<2ip"9/?#rql`qrX&W(s8W)us8N&tr;QcrrVuosrVllsqu6j!s8W)urr)is +rqucrrr2rtrr2otrr)lsrqud!rr<#trr)lsrr2rsrr2otrr)isrqucrrql^!rr<#ts8Mus!<2or +!<2uts8N#t!<2rss8Mrr"TJH$rr2lrs8N#trr2os!<2rs!<2or!<2lq"oeQ%rr;urrrE&rrrE&t +s8W)trrE&ss8W)srrE&ts8W)ns8N#srrE&srrE&arrE&nrrE&srrE&ss8W)srrE&ts8W)ns8N#s +rrE&srrE&arrE&nrrE&ts"sV'!6tDq)-?7XM0*Klm`.mFFg:b4HuO5LqoC(IKke$mmuM^0IbFbd +N-g5VnF38sEJ`uVrrE&nrrE&srrE&ss*t~> +rVllsrr<#trr2uto`#!ls8Muss8Mlp!ri6!l2Lb_r;Qits8Mus%K?D-rr;uts8N&urr;uqrrE&s +s8W'!s8M]k!<2He!<2ip"9/?#rql`qrX&W(s8W)us8N&tr;QcrrVuosrVllsqu6j!s8W)urr)is +rqucrrr2rtrr2otrr)lsrqud!rr<#trr)lsrr2rsrr2otrr)isrqucrrql^!rr<#ts8Mus!<2or +!<2uts8N#t!<2rss8Mrr"TJH$rr2lrs8N#trr2os!<2rs!<2or!<2lq"oeQ%rr;urrrE&rrrE&t +s8W)trrE&ss8W)srrE&ts8W)ns8N#srrE&srrE&arrE&nrrE&srrE&ss8W)srrE&ts8W)ns8N#s +rrE&srrE&arrE&nrrE&ts"sV'!6tDq)-?7XM0*Klm`.mFFg:b4HuO5LqoC(IKke$mmuM^0IbFbd +N-g5VnF38sEJ`uVrrE&nrrE&srrE&ss*t~> +rVllsrr<#trr2uto`#!ls8Muss8Mlp!ri6!l2Lb_r;Qits8Mus%K?D-rr;uts8N&urr;uqrrE&s +s8W'!s8M]k!<2He!<2ip"9/?#rql`qrX&W(s8W)us8N&tr;QcrrVuosrVllsqu6j!s8W)urr)is +rqucrrr2rtrr2otrr)lsrqud!rr<#trr)lsrr2rsrr2otrr)isrqucrrql^!rr<#ts8Mus!<2or +!<2uts8N#t!<2rss8Mrr"TJH$rr2lrs8N#trr2os!<2rs!<2or!<2lq"oeQ%rr;urrrE&rrrE&t +s8W)trrE&ss8W)srrE&ts8W)ns8N#srrE&srrE&arrE&nrrE&srrE&ss8W)srrE&ts8W)ns8N#s +rrE&srrE&arrE&nrrE&ts"sV'!6tDq)-?7XM0*Klm`.mFFg:b4HuO5LqoC(IKke$mmuM^0IbFbd +N-g5VnF38sEJ`uVrrE&nrrE&srrE&ss*t~> +!WW/ss8W)ursJc*s8N&trr;uts8N#qrrE&srrE&trrE&ns8W)ts8W)nrrE&is8N!'s8N&ts8N&u +rqufqrqZTnrq-3jrr)lsrqHEmrq-3nrr;uts8Drms8N#nrrE&rrrE&srrE&grrE&rrs&K&s8N&u +rql^"rr;uts8N#krrE&rrrE&nrrE&srrE&grrE&rrs&K&s8N&urql^"rr;uts8N#krrE&rrrE&n +rrE&srrE&grrE&rrrE&rrrE&srrE&qs8W'!s8Mfnrr2`n!<2cn!<2Zk!<2cns8Mus!<2rs!<2lq +s8E'!rqQNmrqZQorqQKnrq69krqQNnr\XM&!7:`FFrT#i[_dqBXPlVkS'C`A^:ZF)m)UK5[So*? +o!?3,.sLi9.(.",m@m1QVC%i-rrE&ns8W)srrN-!J,~> +!WW/ss8W)ursJc*s8N&trr;uts8N#qrrE&srrE&trrE&ns8W)ts8W)nrrE&is8N!'s8N&ts8N&u +rqufqrqZTnrq-3jrr)lsrqHEmrq-3nrr;uts8Drms8N#nrrE&rrrE&srrE&grrE&rrs&K&s8N&u +rql^"rr;uts8N#krrE&rrrE&nrrE&srrE&grrE&rrs&K&s8N&urql^"rr;uts8N#krrE&rrrE&n +rrE&srrE&grrE&rrrE&rrrE&srrE&qs8W'!s8Mfnrr2`n!<2cn!<2Zk!<2cns8Mus!<2rs!<2lq +s8E'!rqQNmrqZQorqQKnrq69krqQNnr\XM&!7:`FFrT#i[_dqBXPlVkS'C`A^:ZF)m)UK5[So*? +o!?3,.sLi9.(.",m@m1QVC%i-rrE&ns8W)srrN-!J,~> +!WW/ss8W)ursJc*s8N&trr;uts8N#qrrE&srrE&trrE&ns8W)ts8W)nrrE&is8N!'s8N&ts8N&u +rqufqrqZTnrq-3jrr)lsrqHEmrq-3nrr;uts8Drms8N#nrrE&rrrE&srrE&grrE&rrs&K&s8N&u +rql^"rr;uts8N#krrE&rrrE&nrrE&srrE&grrE&rrs&K&s8N&urql^"rr;uts8N#krrE&rrrE&n +rrE&srrE&grrE&rrrE&rrrE&srrE&qs8W'!s8Mfnrr2`n!<2cn!<2Zk!<2cns8Mus!<2rs!<2lq +s8E'!rqQNmrqZQorqQKnrq69krqQNnr\XM&!7:`FFrT#i[_dqBXPlVkS'C`A^:ZF)m)UK5[So*? +o!?3,.sLi9.(.",m@m1QVC%i-rrE&ns8W)srrN-!J,~> +s8E*"rr2os"9/?"rr)iurr<#trr,s8N&urr2rsrr;rrqu6s$s8N#trr<#tp&>6qs8W)us8Mus +2#De'd/O&o"j?/5RY2iTrcgT`rqjZpN?(LOa^WI@8U\A3uiQ5Buo%#6+Z& +rr<#tq>UKps*t~> +s8E*"rr2os"9/?"rr)iurr<#trr,s8N&urr2rsrr;rrqu6s$s8N#trr<#tp&>6qs8W)us8Mus +2#De'd/O&o"j?/5RY2iTrcgT`rqjZpN?(LOa^WI@8U\A3uiQ5Buo%#6+Z& +rr<#tq>UKps*t~> +s8E*"rr2os"9/?"rr)iurr<#trr,s8N&urr2rsrr;rrqu6s$s8N#trr<#tp&>6qs8W)us8Mus +2#De'd/O&o"j?/5RY2iTrcgT`rqjZpN?(LOa^WI@8U\A3uiQ5Buo%#6+Z& +rr<#tq>UKps*t~> +rr<#trr30$s8N&urr2rsrql`qrW3&urVllsqu?]q!WW/os8W)srs&K&s8N&urr)lrrr)isrr)ls +rqHEmrr2p&rr;utrr<#tn,ECerVm'#s8W)urp'Lcrr<#trr2utrr2utrr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus!ri6!rVm'#s8W)urqQNnrWW?$s8N&trr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus!ri6!rVm'#s8W)urqQNnrWW?$s8N&trr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus$NC))s8N#trr<#trVlrus8Mfn!ri6!p\tKts8W)urr;ulrrE&s +rrE&qrrE&srrW3"s8N!#s8N&urr)iurr;umrrW3"rqHEtrr<#ts8N&tp\t6mrVllsqu6ZqrVnqX +s8VtH!7:`.0MLPM+hbT>Sc +rr<#trr30$s8N&urr2rsrql`qrW3&urVllsqu?]q!WW/os8W)srs&K&s8N&urr)lrrr)isrr)ls +rqHEmrr2p&rr;utrr<#tn,ECerVm'#s8W)urp'Lcrr<#trr2utrr2utrr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus!ri6!rVm'#s8W)urqQNnrWW?$s8N&trr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus!ri6!rVm'#s8W)urqQNnrWW?$s8N&trr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus$NC))s8N#trr<#trVlrus8Mfn!ri6!p\tKts8W)urr;ulrrE&s +rrE&qrrE&srrW3"s8N!#s8N&urr)iurr;umrrW3"rqHEtrr<#ts8N&tp\t6mrVllsqu6ZqrVnqX +s8VtH!7:`.0MLPM+hbT>Sc +rr<#trr30$s8N&urr2rsrql`qrW3&urVllsqu?]q!WW/os8W)srs&K&s8N&urr)lrrr)isrr)ls +rqHEmrr2p&rr;utrr<#tn,ECerVm'#s8W)urp'Lcrr<#trr2utrr2utrr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus!ri6!rVm'#s8W)urqQNnrWW?$s8N&trr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus!ri6!rVm'#s8W)urqQNnrWW?$s8N&trr36&s8N&ts8W)trri?$ +s8N#prrE&prrE&trr`9#s8Mus$NC))s8N#trr<#trVlrus8Mfn!ri6!p\tKts8W)urr;ulrrE&s +rrE&qrrE&srrW3"s8N!#s8N&urr)iurr;umrrW3"rqHEtrr<#ts8N&tp\t6mrVllsqu6ZqrVnqX +s8VtH!7:`.0MLPM+hbT>Sc +#6+Z%s8N&tr;ZfrrVm!!s8W)lrrE&qs8N#srrE&nrsSi+s8N&trr;uss8Mrr!<2lq#lal's8N#t +s8MZj!<2ut!<2`m!<2ut$NC)*rr2rss8W)trr<#t!WW/hrrW3"rqucurr<#tp\t6mrr3*"s8W)r +s8N#srrE&rrrE&mrr`9#s8Mcm"9/?#rqcX0rr<#ts8W)us8N#trr;uss8W)us8Mrrrr2os!<2or +!<2`m"9/?#rqHEprr<#tqYq<0s8W)us8N&urr2rss8N#ts8N&urqufqrr2otrqucrrqHEprr<#t +rr;usq>UHoq>UHorr3-#s8W)tqYpZss8W)qs8W)prrW3"rr2p&rr;uss8N&tqu?Zpq>UHoq>UHo +rr3-#s8W)tqYpZss8W)qs8W)prrW3"rr2p&rr;uss8N&tr;SVNJ,k:prr3'!s8N#t#QFc&rr;utrql`prr<"K~> +#6+Z%s8N&tr;ZfrrVm!!s8W)lrrE&qs8N#srrE&nrsSi+s8N&trr;uss8Mrr!<2lq#lal's8N#t +s8MZj!<2ut!<2`m!<2ut$NC)*rr2rss8W)trr<#t!WW/hrrW3"rqucurr<#tp\t6mrr3*"s8W)r +s8N#srrE&rrrE&mrr`9#s8Mcm"9/?#rqcX0rr<#ts8W)us8N#trr;uss8W)us8Mrrrr2os!<2or +!<2`m"9/?#rqHEprr<#tqYq<0s8W)us8N&urr2rss8N#ts8N&urqufqrr2otrqucrrqHEprr<#t +rr;usq>UHoq>UHorr3-#s8W)tqYpZss8W)qs8W)prrW3"rr2p&rr;uss8N&tqu?Zpq>UHoq>UHo +rr3-#s8W)tqYpZss8W)qs8W)prrW3"rr2p&rr;uss8N&tr;SVNJ,k:prr3'!s8N#t#QFc&rr;utrql`prr<"K~> +#6+Z%s8N&tr;ZfrrVm!!s8W)lrrE&qs8N#srrE&nrsSi+s8N&trr;uss8Mrr!<2lq#lal's8N#t +s8MZj!<2ut!<2`m!<2ut$NC)*rr2rss8W)trr<#t!WW/hrrW3"rqucurr<#tp\t6mrr3*"s8W)r +s8N#srrE&rrrE&mrr`9#s8Mcm"9/?#rqcX0rr<#ts8W)us8N#trr;uss8W)us8Mrrrr2os!<2or +!<2`m"9/?#rqHEprr<#tqYq<0s8W)us8N&urr2rss8N#ts8N&urqufqrr2otrqucrrqHEprr<#t +rr;usq>UHoq>UHorr3-#s8W)tqYpZss8W)qs8W)prrW3"rr2p&rr;uss8N&tqu?Zpq>UHoq>UHo +rr3-#s8W)tqYpZss8W)qs8W)prrW3"rr2p&rr;uss8N&tr;SVNJ,k:prr3'!s8N#t#QFc&rr;utrql`prr<"K~> +s8N0"s8W#rrr3*"s8W)prr`9#s8Mlp!WN,urr)isrr2otrr2otrquctrr;uqrrE&rrrW3"s8N#q +rrW3"rr2otrr2p&rr;utrr;usr;Qcrr;Qits8Mrrs8N#t!ri6!rr3#us8N#srrW3"rqufrrqucr +rqucrrqud&rr;utrr;utrr2iq!<2or!<2fo!<2or!<2ors8Mus!ri6!rr3*"s8W)rrrE&rrt#,/ +s8N&urr;uss8W)us8Mrr!<2or!<2fo!<2or!<2ors8Mus!ri6!rr3*"s8W)rrrE&rrt#,/s8N&u +rr;uss8W)us8Mrr!<2or!<2fo!<2or!<2ors8Mus!ri6!qu6ZqrVllsrr39's8W)us8N&trr30$ +s8W)urql]qrr)iurr;uirrE&srrW3"rr)isrqZQorr)isrr2p'rr<#ts8W)urr2p$rr<#ts8Moq +!<2rs!ri6!o`"pjrVlrus8Mus!<2rs2#O\2Ll%8Hr;P)A<3(t_s5Jo3YOI6LV3[M;dtFH,F5-]Z +C-&5ZPkhD+4aP-Gn=t_$BXn!?!<2rs!ri6!rVllsq>UKps*t~> +s8N0"s8W#rrr3*"s8W)prr`9#s8Mlp!WN,urr)isrr2otrr2otrquctrr;uqrrE&rrrW3"s8N#q +rrW3"rr2otrr2p&rr;utrr;usr;Qcrr;Qits8Mrrs8N#t!ri6!rr3#us8N#srrW3"rqufrrqucr +rqucrrqud&rr;utrr;utrr2iq!<2or!<2fo!<2or!<2ors8Mus!ri6!rr3*"s8W)rrrE&rrt#,/ +s8N&urr;uss8W)us8Mrr!<2or!<2fo!<2or!<2ors8Mus!ri6!rr3*"s8W)rrrE&rrt#,/s8N&u +rr;uss8W)us8Mrr!<2or!<2fo!<2or!<2ors8Mus!ri6!qu6ZqrVllsrr39's8W)us8N&trr30$ +s8W)urql]qrr)iurr;uirrE&srrW3"rr)isrqZQorr)isrr2p'rr<#ts8W)urr2p$rr<#ts8Moq +!<2rs!ri6!o`"pjrVlrus8Mus!<2rs2#O\2Ll%8Hr;P)A<3(t_s5Jo3YOI6LV3[M;dtFH,F5-]Z +C-&5ZPkhD+4aP-Gn=t_$BXn!?!<2rs!ri6!rVllsq>UKps*t~> +s8N0"s8W#rrr3*"s8W)prr`9#s8Mlp!WN,urr)isrr2otrr2otrquctrr;uqrrE&rrrW3"s8N#q +rrW3"rr2otrr2p&rr;utrr;usr;Qcrr;Qits8Mrrs8N#t!ri6!rr3#us8N#srrW3"rqufrrqucr +rqucrrqud&rr;utrr;utrr2iq!<2or!<2fo!<2or!<2ors8Mus!ri6!rr3*"s8W)rrrE&rrt#,/ +s8N&urr;uss8W)us8Mrr!<2or!<2fo!<2or!<2ors8Mus!ri6!rr3*"s8W)rrrE&rrt#,/s8N&u +rr;uss8W)us8Mrr!<2or!<2fo!<2or!<2ors8Mus!ri6!qu6ZqrVllsrr39's8W)us8N&trr30$ +s8W)urql]qrr)iurr;uirrE&srrW3"rr)isrqZQorr)isrr2p'rr<#ts8W)urr2p$rr<#ts8Moq +!<2rs!ri6!o`"pjrVlrus8Mus!<2rs2#O\2Ll%8Hr;P)A<3(t_s5Jo3YOI6LV3[M;dtFH,F5-]Z +C-&5ZPkhD+4aP-Gn=t_$BXn!?!<2rs!ri6!rVllsq>UKps*t~> +!WW/ss8;j(s8N#ts8N#trr2rsnc/Xgs8N)uqZ$Tps8W,u!WW/urrE&irrW3"s8N!$s8N&urr2Zl +s8Mcm%0$;,rr<#ts8W)urr2os!<2or!<2rs"9/?#rq$-orr<#ts8W)ls8W)mrrE&rs8W'"s8N&t +rX]&.rr;uss8W)urr<#ts8Moq!<2]l!<2Tis8E'!rqZQorqufrrW<-!s8N!.s8N#trr2rtrr;ut +s8N&tqu6ZqpAY-loDeji!WW/prrE&rs8W'"s8N&trX]&.rr;uss8W)urr<#ts8Moq!<2lq!<2rs +!<2Qh!<2fo"TJH#s8N#ts8E*"rr2lrs8E#urr2rt!<2ut!<2ut!<2rs!<2lq!<2rs!<2Qh!<2fo +"TJH#s8N#ts8E*"rr2lrs8E#urr2rt!<2ut!<2ut!<2rs!<2or!VuNhrs/Q$o`+sip&4df#Pn;s +s8Vuirr2p#rqQ'^rr2p#qXaU`rr)lsrW)utrr;uurr2otrr2otrr)itrr7K~> +!WW/ss8;j(s8N#ts8N#trr2rsnc/Xgs8N)uqZ$Tps8W,u!WW/urrE&irrW3"s8N!$s8N&urr2Zl +s8Mcm%0$;,rr<#ts8W)urr2os!<2or!<2rs"9/?#rq$-orr<#ts8W)ls8W)mrrE&rs8W'"s8N&t +rX]&.rr;uss8W)urr<#ts8Moq!<2]l!<2Tis8E'!rqZQorqufrrW<-!s8N!.s8N#trr2rtrr;ut +s8N&tqu6ZqpAY-loDeji!WW/prrE&rs8W'"s8N&trX]&.rr;uss8W)urr<#ts8Moq!<2lq!<2rs +!<2Qh!<2fo"TJH#s8N#ts8E*"rr2lrs8E#urr2rt!<2ut!<2ut!<2rs!<2lq!<2rs!<2Qh!<2fo +"TJH#s8N#ts8E*"rr2lrs8E#urr2rt!<2ut!<2ut!<2rs!<2or!VuNhrs/Q$o`+sip&4df#Pn;s +s8Vuirr2p#rqQ'^rr2p#qXaU`rr)lsrW)utrr;uurr2otrr2otrr)itrr7K~> +!WW/ss8;j(s8N#ts8N#trr2rsnc/Xgs8N)uqZ$Tps8W,u!WW/urrE&irrW3"s8N!$s8N&urr2Zl +s8Mcm%0$;,rr<#ts8W)urr2os!<2or!<2rs"9/?#rq$-orr<#ts8W)ls8W)mrrE&rs8W'"s8N&t +rX]&.rr;uss8W)urr<#ts8Moq!<2]l!<2Tis8E'!rqZQorqufrrW<-!s8N!.s8N#trr2rtrr;ut +s8N&tqu6ZqpAY-loDeji!WW/prrE&rs8W'"s8N&trX]&.rr;uss8W)urr<#ts8Moq!<2lq!<2rs +!<2Qh!<2fo"TJH#s8N#ts8E*"rr2lrs8E#urr2rt!<2ut!<2ut!<2rs!<2lq!<2rs!<2Qh!<2fo +"TJH#s8N#ts8E*"rr2lrs8E#urr2rt!<2ut!<2ut!<2rs!<2or!VuNhrs/Q$o`+sip&4df#Pn;s +s8Vuirr2p#rqQ'^rr2p#qXaU`rr)lsrW)utrr;uurr2otrr2otrr)itrr7K~> +!rr9"rr2iq%K?D,s8N#ts8N&ts8W)srrE&srr`9#s8Mrr!ri6!rVllsqZ$Tpo`"pjr;R*&s8W)u +s8N&urqucrrq$.$rr;uts8N#trr<#ts8W)urr2rrrql`qrW3&urVllsr;Qcrq#:?nr;Qcrm/R+b +s8N3#s8W)rrrE&rrrE&trrW3"rqQKnrql]qrr2p!rr;uqrrE&orrE&ls8W)urr`9#s8Mrr!<2or +!<2ut!ri6!q#:?nqu6Zqrr3'!s8Mrr!<2fo!<2]ls8N&u"9/?#rqucrrqucrrr2p!rr;usrrE&r +rrE&rs8W)ts8Muus8N#t!<2fo!<2lq!<2rss8N&u"9/?"rqucrrr2otrqucrrr)lsrqucrrqufr +rr2rsrW3&urr2utq>UHoqu6ZqrVuoss8N3#s8N#qrrE&trrE&rrrE&ss8W)rrrE&rs8W)ts8Muu +s8N#t!<2fo!<2lq!<2rss8N&u"9/?"rqucrrr2otrqucrrr)lsrr)kI~> +!rr9"rr2iq%K?D,s8N#ts8N&ts8W)srrE&srr`9#s8Mrr!ri6!rVllsqZ$Tpo`"pjr;R*&s8W)u +s8N&urqucrrq$.$rr;uts8N#trr<#ts8W)urr2rrrql`qrW3&urVllsr;Qcrq#:?nr;Qcrm/R+b +s8N3#s8W)rrrE&rrrE&trrW3"rqQKnrql]qrr2p!rr;uqrrE&orrE&ls8W)urr`9#s8Mrr!<2or +!<2ut!ri6!q#:?nqu6Zqrr3'!s8Mrr!<2fo!<2]ls8N&u"9/?#rqucrrqucrrr2p!rr;usrrE&r +rrE&rs8W)ts8Muus8N#t!<2fo!<2lq!<2rss8N&u"9/?"rqucrrr2otrqucrrr)lsrqucrrqufr +rr2rsrW3&urr2utq>UHoqu6ZqrVuoss8N3#s8N#qrrE&trrE&rrrE&ss8W)rrrE&rs8W)ts8Muu +s8N#t!<2fo!<2lq!<2rss8N&u"9/?"rqucrrr2otrqucrrr)lsrr)kI~> +!rr9"rr2iq%K?D,s8N#ts8N&ts8W)srrE&srr`9#s8Mrr!ri6!rVllsqZ$Tpo`"pjr;R*&s8W)u +s8N&urqucrrq$.$rr;uts8N#trr<#ts8W)urr2rrrql`qrW3&urVllsr;Qcrq#:?nr;Qcrm/R+b +s8N3#s8W)rrrE&rrrE&trrW3"rqQKnrql]qrr2p!rr;uqrrE&orrE&ls8W)urr`9#s8Mrr!<2or +!<2ut!ri6!q#:?nqu6Zqrr3'!s8Mrr!<2fo!<2]ls8N&u"9/?#rqucrrqucrrr2p!rr;usrrE&r +rrE&rs8W)ts8Muus8N#t!<2fo!<2lq!<2rss8N&u"9/?"rqucrrr2otrqucrrr)lsrqucrrqufr +rr2rsrW3&urr2utq>UHoqu6ZqrVuoss8N3#s8N#qrrE&trrE&rrrE&ss8W)rrrE&rs8W)ts8Muu +s8N#t!<2fo!<2lq!<2rss8N&u"9/?"rqucrrr2otrqucrrr)lsrr)kI~> +rVllsr;Qlus8W)trrE&qrrE&orrE&ts8W'#s8N&trr<#ts8N)urr33%s8W)us8N#t!<2or!<2lq +!<2]ls8M`ls8Mrr!<2ut%0$;+rr;uss8W)ts8N#t"TJH#s8Muss8N#t!<2fo!ri6!rr2utr;Zfr +!WW/os8W)rrrE&trseu-rr2rss8N&trr<#tqu6Zqrr;uss8N<&s8W)us8Mrr"9/?#rqcWprqQL" +rr;utrr2rtrr2os%K?D,rr;utrr;uss8W)qrrE&ts8N#trs&K&s8N&urqucurr<#tqYpQpq#:[" +s8N&trr<#trr2p,rr;uss8N&ts8N#ts8Moq!<2utrr2rt!<2or!<2or!ri6!q>UHoq>UHorr36& +s8N&urr;uqrrrE%rr;usrr<#trVllsr;Zcq!rr9!r;Qcrr;Qits8Mio!<2fo!<2ut#QFc&s8W)u +rqud"rr;utrr2oss8Mus!<2orrr*!!rr2iq!<2or!ri6!q>UHoq>UHorr36&s8N&urr;uqrrrE% +rr;usrr<#trVllsr;Zcq!rr9!r;Qfss*t~> +rVllsr;Qlus8W)trrE&qrrE&orrE&ts8W'#s8N&trr<#ts8N)urr33%s8W)us8N#t!<2or!<2lq +!<2]ls8M`ls8Mrr!<2ut%0$;+rr;uss8W)ts8N#t"TJH#s8Muss8N#t!<2fo!ri6!rr2utr;Zfr +!WW/os8W)rrrE&trseu-rr2rss8N&trr<#tqu6Zqrr;uss8N<&s8W)us8Mrr"9/?#rqcWprqQL" +rr;utrr2rtrr2os%K?D,rr;utrr;uss8W)qrrE&ts8N#trs&K&s8N&urqucurr<#tqYpQpq#:[" +s8N&trr<#trr2p,rr;uss8N&ts8N#ts8Moq!<2utrr2rt!<2or!<2or!ri6!q>UHoq>UHorr36& +s8N&urr;uqrrrE%rr;usrr<#trVllsr;Zcq!rr9!r;Qcrr;Qits8Mio!<2fo!<2ut#QFc&s8W)u +rqud"rr;utrr2oss8Mus!<2orrr*!!rr2iq!<2or!ri6!q>UHoq>UHorr36&s8N&urr;uqrrrE% +rr;usrr<#trVllsr;Zcq!rr9!r;Qfss*t~> +rVllsr;Qlus8W)trrE&qrrE&orrE&ts8W'#s8N&trr<#ts8N)urr33%s8W)us8N#t!<2or!<2lq +!<2]ls8M`ls8Mrr!<2ut%0$;+rr;uss8W)ts8N#t"TJH#s8Muss8N#t!<2fo!ri6!rr2utr;Zfr +!WW/os8W)rrrE&trseu-rr2rss8N&trr<#tqu6Zqrr;uss8N<&s8W)us8Mrr"9/?#rqcWprqQL" +rr;utrr2rtrr2os%K?D,rr;utrr;uss8W)qrrE&ts8N#trs&K&s8N&urqucurr<#tqYpQpq#:[" +s8N&trr<#trr2p,rr;uss8N&ts8N#ts8Moq!<2utrr2rt!<2or!<2or!ri6!q>UHoq>UHorr36& +s8N&urr;uqrrrE%rr;usrr<#trVllsr;Zcq!rr9!r;Qcrr;Qits8Mio!<2fo!<2ut#QFc&s8W)u +rqud"rr;utrr2oss8Mus!<2orrr*!!rr2iq!<2or!ri6!q>UHoq>UHorr36&s8N&urr;uqrrrE% +rr;usrr<#trVllsr;Zcq!rr9!r;Qfss*t~> +qu6ZqrVuiq!<<&t"onT$s8N#srs/Q's8N&ts8N#t%0$;+s8N&ts8N&ts8N#t!<2ip!<2utrr2os +$NC))s8W)ts8N&tqZ$QorVm*$s8N&urr;usrr;rrqYpQprr2utrr36&s8N&ts8W)rs8W)frrE&r +rrE&srs&K&rr<#ts8N!$s8N&urr;usr;Qcrrr2utr;Qits8Mfn!<2Zk!<2rs!<2Zk!<2rsrVlfr +!WN,urqucrrr2otrquctrr;umrrE&krrE&srrE&krrE&ss8DrrrrN-!rr2iq!<2ut!<2or!ri6! +q#:Hqs8W)qs8W'!s8Muss8E'!rq$0grW3&ur;Qcrr;Qp!s8N&tqYpWrs8Mlp"9/?#rql`qrW3&u +rVuos!WW/js8Dots8Mrr!<2or"TJH#s8Mlp!ri6!qYpZss8W)qs8W'!s8Muss8E'!rq$0grW3&u +r;Qcrr;Qp!s8N&tqYpWrs8Mlp"oeQ%rr<"K~> +qu6ZqrVuiq!<<&t"onT$s8N#srs/Q's8N&ts8N#t%0$;+s8N&ts8N&ts8N#t!<2ip!<2utrr2os +$NC))s8W)ts8N&tqZ$QorVm*$s8N&urr;usrr;rrqYpQprr2utrr36&s8N&ts8W)rs8W)frrE&r +rrE&srs&K&rr<#ts8N!$s8N&urr;usr;Qcrrr2utr;Qits8Mfn!<2Zk!<2rs!<2Zk!<2rsrVlfr +!WN,urqucrrr2otrquctrr;umrrE&krrE&srrE&krrE&ss8DrrrrN-!rr2iq!<2ut!<2or!ri6! +q#:Hqs8W)qs8W'!s8Muss8E'!rq$0grW3&ur;Qcrr;Qp!s8N&tqYpWrs8Mlp"9/?#rql`qrW3&u +rVuos!WW/js8Dots8Mrr!<2or"TJH#s8Mlp!ri6!qYpZss8W)qs8W'!s8Muss8E'!rq$0grW3&u +r;Qcrr;Qp!s8N&tqYpWrs8Mlp"oeQ%rr<"K~> +qu6ZqrVuiq!<<&t"onT$s8N#srs/Q's8N&ts8N#t%0$;+s8N&ts8N&ts8N#t!<2ip!<2utrr2os +$NC))s8W)ts8N&tqZ$QorVm*$s8N&urr;usrr;rrqYpQprr2utrr36&s8N&ts8W)rs8W)frrE&r +rrE&srs&K&rr<#ts8N!$s8N&urr;usr;Qcrrr2utr;Qits8Mfn!<2Zk!<2rs!<2Zk!<2rsrVlfr +!WN,urqucrrr2otrquctrr;umrrE&krrE&srrE&krrE&ss8DrrrrN-!rr2iq!<2ut!<2or!ri6! +q#:Hqs8W)qs8W'!s8Muss8E'!rq$0grW3&ur;Qcrr;Qp!s8N&tqYpWrs8Mlp"9/?#rql`qrW3&u +rVuos!WW/js8Dots8Mrr!<2or"TJH#s8Mlp!ri6!qYpZss8W)qs8W'!s8Muss8E'!rq$0grW3&u +r;Qcrr;Qp!s8N&tqYpWrs8Mlp"oeQ%rr<"K~> +q>UHoqYpZss8N&trql`qrX/])s8W)urr;utrqcWprqcWsrr<#trVllsrr3?)s8N#ts8N&urr;us +!WW/drso&.rr2rsrr<#ts8W)us8N!+s8N&urr;utrr2rtrr2ourr;rrs8NW/s8W)urr<#ts8W)u +s8N#ers\o,rr2rtrr;utrr;urrrE&trrE&ss8W)srr`9#rr2os!ri6!rr2utrVllsrr3*"s8N#q +rrE&srrE&orsJc*rr;utrr;utrr)isrr2otrr)lsrr)j!rr;usrr3'!s8N#t!<2rs!<2ut"9/?" +rqucrrr)isrqZR$rr;utrr;utrr;urrrE&trrE&ss8W)srr`9#rr2os!<2or!<2uts8E0$rr;ut +rr2lr!<2rs"oeQ$rr;usrrE&nrrE&trrrE%s8N&tp\tErs8N#trqcWprr2rtrWN9#s8N&trr)is +rr)j#rr;uss8N#t!<2cn!<2ut"oeQ%rr;ulrrrE%rr2rsqYpQprr<#t"TSK$rr;usrVllsrVm'# +s8N#trr2otrqQKnrr2p$rr<#ts8Mcm"oeQ$rr;uos*t~> +q>UHoqYpZss8N&trql`qrX/])s8W)urr;utrqcWprqcWsrr<#trVllsrr3?)s8N#ts8N&urr;us +!WW/drso&.rr2rsrr<#ts8W)us8N!+s8N&urr;utrr2rtrr2ourr;rrs8NW/s8W)urr<#ts8W)u +s8N#ers\o,rr2rtrr;utrr;urrrE&trrE&ss8W)srr`9#rr2os!ri6!rr2utrVllsrr3*"s8N#q +rrE&srrE&orsJc*rr;utrr;utrr)isrr2otrr)lsrr)j!rr;usrr3'!s8N#t!<2rs!<2ut"9/?" +rqucrrr)isrqZR$rr;utrr;utrr;urrrE&trrE&ss8W)srr`9#rr2os!<2or!<2uts8E0$rr;ut +rr2lr!<2rs"oeQ$rr;usrrE&nrrE&trrrE%s8N&tp\tErs8N#trqcWprr2rtrWN9#s8N&trr)is +rr)j#rr;uss8N#t!<2cn!<2ut"oeQ%rr;ulrrrE%rr2rsqYpQprr<#t"TSK$rr;usrVllsrVm'# +s8N#trr2otrqQKnrr2p$rr<#ts8Mcm"oeQ$rr;uos*t~> +q>UHoqYpZss8N&trql`qrX/])s8W)urr;utrqcWprqcWsrr<#trVllsrr3?)s8N#ts8N&urr;us +!WW/drso&.rr2rsrr<#ts8W)us8N!+s8N&urr;utrr2rtrr2ourr;rrs8NW/s8W)urr<#ts8W)u +s8N#ers\o,rr2rtrr;utrr;urrrE&trrE&ss8W)srr`9#rr2os!ri6!rr2utrVllsrr3*"s8N#q +rrE&srrE&orsJc*rr;utrr;utrr)isrr2otrr)lsrr)j!rr;usrr3'!s8N#t!<2rs!<2ut"9/?" +rqucrrr)isrqZR$rr;utrr;utrr;urrrE&trrE&ss8W)srr`9#rr2os!<2or!<2uts8E0$rr;ut +rr2lr!<2rs"oeQ$rr;usrrE&nrrE&trrrE%s8N&tp\tErs8N#trqcWprr2rtrWN9#s8N&trr)is +rr)j#rr;uss8N#t!<2cn!<2ut"oeQ%rr;ulrrrE%rr2rsqYpQprr<#t"TSK$rr;usrVllsrVm'# +s8N#trr2otrqQKnrr2p$rr<#ts8Mcm"oeQ$rr;uos*t~> +qZ$Qop](3k!WW/rrri?$rr;uqs8W)urri?$s8N#qrs8W(s8N&urr;urrrW3"rql]qrr)isrr2rs +rqucrrr)j!rr<#trr3?)s8W)ts8N#trr2fp!<2orr;Q]qs8N&u!ri6!p&G'krVulr"TSK$s8Mus +"9/?#rr2otrr2p)rr;utrr;uts8N#rs8W'#s8N#trr*6(rr;uss8N#trr2otrr2p!rr;urrs&K& +s8N#trqcWprr)j!rr;utrr*<*rr;utrr;uts8N#rs8W'#s8N#trr*6(rr;uss8N#trr2otrr2p! +rr;urrs&K&s8N#trqcWprr)j!rr;utrr*<*rr;utrr;uts8N#rs8W'#s8N#trr*0&rr;uss8N#s +rrW3"rr)isrqucurr<#tp\t +qZ$Qop](3k!WW/rrri?$rr;uqs8W)urri?$s8N#qrs8W(s8N&urr;urrrW3"rql]qrr)isrr2rs +rqucrrr)j!rr<#trr3?)s8W)ts8N#trr2fp!<2orr;Q]qs8N&u!ri6!p&G'krVulr"TSK$s8Mus +"9/?#rr2otrr2p)rr;utrr;uts8N#rs8W'#s8N#trr*6(rr;uss8N#trr2otrr2p!rr;urrs&K& +s8N#trqcWprr)j!rr;utrr*<*rr;utrr;uts8N#rs8W'#s8N#trr*6(rr;uss8N#trr2otrr2p! +rr;urrs&K&s8N#trqcWprr)j!rr;utrr*<*rr;utrr;uts8N#rs8W'#s8N#trr*0&rr;uss8N#s +rrW3"rr)isrqucurr<#tp\t +qZ$Qop](3k!WW/rrri?$rr;uqs8W)urri?$s8N#qrs8W(s8N&urr;urrrW3"rql]qrr)isrr2rs +rqucrrr)j!rr<#trr3?)s8W)ts8N#trr2fp!<2orr;Q]qs8N&u!ri6!p&G'krVulr"TSK$s8Mus +"9/?#rr2otrr2p)rr;utrr;uts8N#rs8W'#s8N#trr*6(rr;uss8N#trr2otrr2p!rr;urrs&K& +s8N#trqcWprr)j!rr;utrr*<*rr;utrr;uts8N#rs8W'#s8N#trr*6(rr;uss8N#trr2otrr2p! +rr;urrs&K&s8N#trqcWprr)j!rr;utrr*<*rr;utrr;uts8N#rs8W'#s8N#trr*0&rr;uss8N#s +rrW3"rr)isrqucurr<#tp\t +'EA(3rr;uss8N&urr;uts8N#trqcWurr<#ts8Mus!<2rs!<2or!<2ut"9/?#rqud!rr;utrr2rt +rr +'EA(3rr;uss8N&urr;uts8N#trqcWurr<#ts8Mus!<2rs!<2or!<2ut"9/?#rqud!rr;utrr2rt +rr +'EA(3rr;uss8N&urr;uts8N#trqcWurr<#ts8Mus!<2rs!<2or!<2ut"9/?#rqud!rr;utrr2rt +rr +s8W,us8N)urr<#tq>U^!s8W)us8N#lrrW3"rqufrrr)isrr)lsrWE3"s8Moq!<2Ngs8N#trr2os +"9/?#rr)isrr)lsrqcWsrr<#tq#CUHorr2utrr2utpAY-lp\t?ps8W)trrE&lrr`9#s8N#t!<2ut"oeQ%rr;unrrE&t +rrE&trrE&lrrE&qs*t~> +s8W,us8N)urr<#tq>U^!s8W)us8N#lrrW3"rqufrrr)isrr)lsrWE3"s8Moq!<2Ngs8N#trr2os +"9/?#rr)isrr)lsrqcWsrr<#tq#CUHorr2utrr2utpAY-lp\t?ps8W)trrE&lrr`9#s8N#t!<2ut"oeQ%rr;unrrE&t +rrE&trrE&lrrE&qs*t~> +s8W,us8N)urr<#tq>U^!s8W)us8N#lrrW3"rqufrrr)isrr)lsrWE3"s8Moq!<2Ngs8N#trr2os +"9/?#rr)isrr)lsrqcWsrr<#tq#CUHorr2utrr2utpAY-lp\t?ps8W)trrE&lrr`9#s8N#t!<2ut"oeQ%rr;unrrE&t +rrE&trrE&lrrE&qs*t~> +r;Qcrq>UWts8W)ts8N!%s8N#ts8N#srrW3"s8;lqs8W)prrE&mrr`9#s8Mrr!<2ip!<2rs#6+Z& +rr<#trr2utp\t6mrr2utr;Qits8N#ts8N&us8N&us8E'!rr2otroj@arr<#trr2utp\t?ps8W)r +s8W)urri?$s8N#ss8W)srrE&trrE&prrE&srrE&qrrE&trrW3"rql]qrqHEprr;usr;Zfrs8N6$ +s8W)trr<#trVllsrr2utqYpQprVllsqu6Zqrr3'!s8Moq!<2`m"9/?"rqufrrr +r;Qcrq>UWts8W)ts8N!%s8N#ts8N#srrW3"s8;lqs8W)prrE&mrr`9#s8Mrr!<2ip!<2rs#6+Z& +rr<#trr2utp\t6mrr2utr;Qits8N#ts8N&us8N&us8E'!rr2otroj@arr<#trr2utp\t?ps8W)r +s8W)urri?$s8N#ss8W)srrE&trrE&prrE&srrE&qrrE&trrW3"rql]qrqHEprr;usr;Zfrs8N6$ +s8W)trr<#trVllsrr2utqYpQprVllsqu6Zqrr3'!s8Moq!<2`m"9/?"rqufrrr +r;Qcrq>UWts8W)ts8N!%s8N#ts8N#srrW3"s8;lqs8W)prrE&mrr`9#s8Mrr!<2ip!<2rs#6+Z& +rr<#trr2utp\t6mrr2utr;Qits8N#ts8N&us8N&us8E'!rr2otroj@arr<#trr2utp\t?ps8W)r +s8W)urri?$s8N#ss8W)srrE&trrE&prrE&srrE&qrrE&trrW3"rql]qrqHEprr;usr;Zfrs8N6$ +s8W)trr<#trVllsrr2utqYpQprVllsqu6Zqrr3'!s8Moq!<2`m"9/?"rqufrrr +s8N)urr3'!s8Mlps8N#t$i^2+rr2rss8N#trquctrr;uprrE&srrE&rs8N#rrrE&rs8W)us8W'. +s8N&urr;uts8N&urr;urs8W)ss8W)srrE&srrE&rrrrE%rr<#tp\t6mrVllsp\t6mp\t6mrr2ut +rVuosrVuosrVllsqu6ZqrVllsoD\girVuosrVllsrVllsoD\girVuosrVlrus8Mus!<2or!<2rs +!<2Ti!<2rss8Mus!<2rs!<2Ti!<2rss8Mus!ri6!rVllsr;QcrrVllsoD\girVuosq#:Eps8Mfn +s8E'!rr)lsrq??lrqHEorr;uls8W)rs8W)nrrW3"rqQNnrW3&urVuospAY-lp\t +s8N)urr3'!s8Mlps8N#t$i^2+rr2rss8N#trquctrr;uprrE&srrE&rs8N#rrrE&rs8W)us8W'. +s8N&urr;uts8N&urr;urs8W)ss8W)srrE&srrE&rrrrE%rr<#tp\t6mrVllsp\t6mp\t6mrr2ut +rVuosrVuosrVllsqu6ZqrVllsoD\girVuosrVllsrVllsoD\girVuosrVlrus8Mus!<2or!<2rs +!<2Ti!<2rss8Mus!<2rs!<2Ti!<2rss8Mus!ri6!rVllsr;QcrrVllsoD\girVuosq#:Eps8Mfn +s8E'!rr)lsrq??lrqHEorr;uls8W)rs8W)nrrW3"rqQNnrW3&urVuospAY-lp\t +s8N)urr3'!s8Mlps8N#t$i^2+rr2rss8N#trquctrr;uprrE&srrE&rs8N#rrrE&rs8W)us8W'. +s8N&urr;uts8N&urr;urs8W)ss8W)srrE&srrE&rrrrE%rr<#tp\t6mrVllsp\t6mp\t6mrr2ut +rVuosrVuosrVllsqu6ZqrVllsoD\girVuosrVllsrVllsoD\girVuosrVlrus8Mus!<2or!<2rs +!<2Ti!<2rss8Mus!<2rs!<2Ti!<2rss8Mus!ri6!rVllsr;QcrrVllsoD\girVuosq#:Eps8Mfn +s8E'!rr)lsrq??lrqHEorr;uls8W)rs8W)nrrW3"rqQNnrW3&urVuospAY-lp\t +r;Hj!rr;utrr2fp!<2or!<2rs#lal's8N&ts8Mrr!<2Qh!<2rs!<2$Y!<2]l!<2fo!<2Ng!<2lq +!<2Zk!<2ut!<2lq!<2or!<2]l!<2orrVl?e!<2Wj"9/?#rqcWprr2p'rr;uts8N&urq?Blrr)lq +rpg!grq-3mrr<#tqYpQprr39's8N&urr<#tpAb0lrVuiqnc&Ugq#:Tus8W)ts8W)trrE&trrE&l +rrE&ls8W)qs8W)urrE&krrE&mrs/Q's8N#ts8N#t!<2ut!<2]l!<2]ls8Moqs8N&u!<2Zk!<2`m +#QFc'rr2rtrr2otrr2otrq??lrq?Blrql`qrr;uurq69krqHErrr<#trr7K~> +r;Hj!rr;utrr2fp!<2or!<2rs#lal's8N&ts8Mrr!<2Qh!<2rs!<2$Y!<2]l!<2fo!<2Ng!<2lq +!<2Zk!<2ut!<2lq!<2or!<2]l!<2orrVl?e!<2Wj"9/?#rqcWprr2p'rr;uts8N&urq?Blrr)lq +rpg!grq-3mrr<#tqYpQprr39's8N&urr<#tpAb0lrVuiqnc&Ugq#:Tus8W)ts8W)trrE&trrE&l +rrE&ls8W)qs8W)urrE&krrE&mrs/Q's8N#ts8N#t!<2ut!<2]l!<2]ls8Moqs8N&u!<2Zk!<2`m +#QFc'rr2rtrr2otrr2otrq??lrq?Blrql`qrr;uurq69krqHErrr<#trr7K~> +r;Hj!rr;utrr2fp!<2or!<2rs#lal's8N&ts8Mrr!<2Qh!<2rs!<2$Y!<2]l!<2fo!<2Ng!<2lq +!<2Zk!<2ut!<2lq!<2or!<2]l!<2orrVl?e!<2Wj"9/?#rqcWprr2p'rr;uts8N&urq?Blrr)lq +rpg!grq-3mrr<#tqYpQprr39's8N&urr<#tpAb0lrVuiqnc&Ugq#:Tus8W)ts8W)trrE&trrE&l +rrE&ls8W)qs8W)urrE&krrE&mrs/Q's8N#ts8N#t!<2ut!<2]l!<2]ls8Moqs8N&u!<2Zk!<2`m +#QFc'rr2rtrr2otrr2otrq??lrq?Blrql`qrr;uurq69krqHErrr<#trr7K~> +rVllsrr3E+s8W)urr<#ts8N&tr;QcrrVm$"s8W)tnG`Uis8N#srrE&qrrE&srrE&rrrE&srrE&q +rrE&ss8W)ts8W)ss8W)ts8N#qrrE&trs8W(s8N&ts8N#srrE&ss8N#trrW3"rr)isrqcZprr<#u +rr)lsrr2rtrr)lsrW)uqrqZQorr)iurr;uarrE&rrrN-!qu6Tprr*'#rr;usrVuZlq>UHorVlru +s8MBb!<2or!WN,rrr2rsrWN9#s8N#rs7lThrrE&srrW3"rq-6jrW3&uqu?]q"98B"s8N#ps8N!' +s8N&ts8N&ts8Dots8Miorr*6(rr2rtrr;utrqZQurr<#trr;ups8W'#s8N#trr2fprr*3'rr;ut +rr;utrVcitrqZTnrX&W(rr<#ts8N&tq>UZus8W)ts8Moqs8E-#rr2rsrql`prWrQ's8N&ts8N&s +rW3&uq>^Hn$31#(s8W)urr;unrs8W(s8N#trr<"K~> +rVllsrr3E+s8W)urr<#ts8N&tr;QcrrVm$"s8W)tnG`Uis8N#srrE&qrrE&srrE&rrrE&srrE&q +rrE&ss8W)ts8W)ss8W)ts8N#qrrE&trs8W(s8N&ts8N#srrE&ss8N#trrW3"rr)isrqcZprr<#u +rr)lsrr2rtrr)lsrW)uqrqZQorr)iurr;uarrE&rrrN-!qu6Tprr*'#rr;usrVuZlq>UHorVlru +s8MBb!<2or!WN,rrr2rsrWN9#s8N#rs7lThrrE&srrW3"rq-6jrW3&uqu?]q"98B"s8N#ps8N!' +s8N&ts8N&ts8Dots8Miorr*6(rr2rtrr;utrqZQurr<#trr;ups8W'#s8N#trr2fprr*3'rr;ut +rr;utrVcitrqZTnrX&W(rr<#ts8N&tq>UZus8W)ts8Moqs8E-#rr2rsrql`prWrQ's8N&ts8N&s +rW3&uq>^Hn$31#(s8W)urr;unrs8W(s8N#trr<"K~> +rVllsrr3E+s8W)urr<#ts8N&tr;QcrrVm$"s8W)tnG`Uis8N#srrE&qrrE&srrE&rrrE&srrE&q +rrE&ss8W)ts8W)ss8W)ts8N#qrrE&trs8W(s8N&ts8N#srrE&ss8N#trrW3"rr)isrqcZprr<#u +rr)lsrr2rtrr)lsrW)uqrqZQorr)iurr;uarrE&rrrN-!qu6Tprr*'#rr;usrVuZlq>UHorVlru +s8MBb!<2or!WN,rrr2rsrWN9#s8N#rs7lThrrE&srrW3"rq-6jrW3&uqu?]q"98B"s8N#ps8N!' +s8N&ts8N&ts8Dots8Miorr*6(rr2rtrr;utrqZQurr<#trr;ups8W'#s8N#trr2fprr*3'rr;ut +rr;utrVcitrqZTnrX&W(rr<#ts8N&tq>UZus8W)ts8Moqs8E-#rr2rsrql`prWrQ's8N&ts8N&s +rW3&uq>^Hn$31#(s8W)urr;unrs8W(s8N#trr<"K~> +q>^Ko"TSK#s8Mus"oeQ%rr;uhrrW3"rqZQrrr<#tr;Qcrrr<#tr;QcrrVllsrr2utr;Zcqs8N)u +rr39's8N&urr<#tp](9m#64]%s8N#trVlis#6+Z&rr<#tp&>$krVllspAYU$s8N&urr;uts8N&u +rqcZprr2rsrr +q>^Ko"TSK#s8Mus"oeQ%rr;uhrrW3"rqZQrrr<#tr;Qcrrr<#tr;QcrrVllsrr2utr;Zcqs8N)u +rr39's8N&urr<#tp](9m#64]%s8N#trVlis#6+Z&rr<#tp&>$krVllspAYU$s8N&urr;uts8N&u +rqcZprr2rsrr +q>^Ko"TSK#s8Mus"oeQ%rr;uhrrW3"rqZQrrr<#tr;Qcrrr<#tr;QcrrVllsrr2utr;Zcqs8N)u +rr39's8N&urr<#tp](9m#64]%s8N#trVlis#6+Z&rr<#tp&>$krVllspAYU$s8N&urr;uts8N&u +rqcZprr2rsrr +r;ZfrrVuoss8N-!s8Drrs8N#prrE&trrE&ms8W)rrrrE%rr2rsq>^Ems8N0"s8N#t!<2rs!<2ut +!<2or!<2lqs8N&u!<2or"9/?#rqucurr<#tq>^Kos8NH*s8W)us8N&urr2oss8Moq!<2ut!ri6! +rVllsqu?]qs8N)uq>UHorr30$s8N&urr)isrr2otrr2otrqucsrr;uspAY-lr;QcrrVllsqu6Zq +rr;usqu6Zqrr30$s8N&urr)isrr2otrr2otrqucsrr;uspAY-lr;QcrrVllsqu6Zqrr;usqu6Zq +rr30$s8N&urr)isrr2otrr2otrqZTorr2rtrql]qrr)isrqucrrqHHlrr;uurr2otrr)isrqZQq +rr;uqrrE&trrE&ss8W)ts8W)qrrE&srrE&rrrE&ms8N#trrE&trrE&srrE&orrW3"rqucrrr2ot +rr)lsrr2rtrql]qrr)isrqucrrqHHlrr;uurr2otrr)isrqZQqrr;uqrrE&trrE&ss8W&us*t~> +r;ZfrrVuoss8N-!s8Drrs8N#prrE&trrE&ms8W)rrrrE%rr2rsq>^Ems8N0"s8N#t!<2rs!<2ut +!<2or!<2lqs8N&u!<2or"9/?#rqucurr<#tq>^Kos8NH*s8W)us8N&urr2oss8Moq!<2ut!ri6! +rVllsqu?]qs8N)uq>UHorr30$s8N&urr)isrr2otrr2otrqucsrr;uspAY-lr;QcrrVllsqu6Zq +rr;usqu6Zqrr30$s8N&urr)isrr2otrr2otrqucsrr;uspAY-lr;QcrrVllsqu6Zqrr;usqu6Zq +rr30$s8N&urr)isrr2otrr2otrqZTorr2rtrql]qrr)isrqucrrqHHlrr;uurr2otrr)isrqZQq +rr;uqrrE&trrE&ss8W)ts8W)qrrE&srrE&rrrE&ms8N#trrE&trrE&srrE&orrW3"rqucrrr2ot +rr)lsrr2rtrql]qrr)isrqucrrqHHlrr;uurr2otrr)isrqZQqrr;uqrrE&trrE&ss8W&us*t~> +r;ZfrrVuoss8N-!s8Drrs8N#prrE&trrE&ms8W)rrrrE%rr2rsq>^Ems8N0"s8N#t!<2rs!<2ut +!<2or!<2lqs8N&u!<2or"9/?#rqucurr<#tq>^Kos8NH*s8W)us8N&urr2oss8Moq!<2ut!ri6! +rVllsqu?]qs8N)uq>UHorr30$s8N&urr)isrr2otrr2otrqucsrr;uspAY-lr;QcrrVllsqu6Zq +rr;usqu6Zqrr30$s8N&urr)isrr2otrr2otrqucsrr;uspAY-lr;QcrrVllsqu6Zqrr;usqu6Zq +rr30$s8N&urr)isrr2otrr2otrqZTorr2rtrql]qrr)isrqucrrqHHlrr;uurr2otrr)isrqZQq +rr;uqrrE&trrE&ss8W)ts8W)qrrE&srrE&rrrE&ms8N#trrE&trrE&srrE&orrW3"rqucrrr2ot +rr)lsrr2rtrql]qrr)isrqucrrqHHlrr;uurr2otrr)isrqZQqrr;uqrrE&trrE&ss8W&us*t~> +$i^2+rr2rtrr2rtrr)j!rr<#trr<#trVm!!s8W)ts8W)trrE&trr`9#s8N#t$NC))s8W)ts8W)t +qu6Zqr;Qs"s8W)ts8DrirrE&os8W)urrE&srrE&rs8N#srs8W(s8N#trr2rrrr)lrrr)j!rr<#t +rr;rrrVllsr;Qcrq>^Ko"TSK#s8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)j%rr<#ts8W)u +rr2lrs8E3%rr<#trr)lsrWiK&rr;uss8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)j%rr<#t +s8W)urr2lrs8E3%rr<#trr)lsrWiK&rr;uss8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)is +rr2rsrW)utrr<#trWN9#rr<#trr<#urr<#urW)utrr<#trr2rtrr +$i^2+rr2rtrr2rtrr)j!rr<#trr<#trVm!!s8W)ts8W)trrE&trr`9#s8N#t$NC))s8W)ts8W)t +qu6Zqr;Qs"s8W)ts8DrirrE&os8W)urrE&srrE&rs8N#srs8W(s8N#trr2rrrr)lrrr)j!rr<#t +rr;rrrVllsr;Qcrq>^Ko"TSK#s8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)j%rr<#ts8W)u +rr2lrs8E3%rr<#trr)lsrWiK&rr;uss8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)j%rr<#t +s8W)urr2lrs8E3%rr<#trr)lsrWiK&rr;uss8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)is +rr2rsrW)utrr<#trWN9#rr<#trr<#urr<#urW)utrr<#trr2rtrr +$i^2+rr2rtrr2rtrr)j!rr<#trr<#trVm!!s8W)ts8W)trrE&trr`9#s8N#t$NC))s8W)ts8W)t +qu6Zqr;Qs"s8W)ts8DrirrE&os8W)urrE&srrE&rs8N#srs8W(s8N#trr2rrrr)lrrr)j!rr<#t +rr;rrrVllsr;Qcrq>^Ko"TSK#s8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)j%rr<#ts8W)u +rr2lrs8E3%rr<#trr)lsrWiK&rr;uss8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)j%rr<#t +s8W)urr2lrs8E3%rr<#trr)lsrWiK&rr;uss8W&srr3*"s8N#srri?$rr2rsrr2rrrr<#trr)is +rr2rsrW)utrr<#trWN9#rr<#trr<#urr<#urW)utrr<#trr2rtrr +qu6Zqr;ZfrrVulrs8N3#s8N#rs8W'!s8Mrr!<2rss8Musrr2os$3'u(rr;uts8N#ms8W)qrr`9# +rr2lr"oeQ%rr2rsrY5D3s8N&ts8W)us8N&urr<#ts8W)ss8DrqrrE&qrrE&ts8W'#s8N&urVlfr +!<2ut!<2ut!<2uts8E#urr**$rr;utrqucrrqud%rr<#ts8W)us8;lrrr`9#s8Mus!<2rss8Mio +!<2rs!<2ut(&n75rr;uss8W)urr2rtrr<#ts8W)rrs8W(s8N&urr<#rrrUHorVllsrr3`4s8W)urr2rtrr;uss8W)us8N&urqud%rr<#ts8W)us8;lrrr`9#s8Mus#6+Z& +rr<#tr;QcrqYpQpqu6j!s8N#ts8Drsrr`9#s8Mrr$i^2+rr<#trr;uts8Drps8W)srs&K&s8N&u +rqucrrqcWprql^!rr;uss8W&ss8N3#s8W)rrsSi+s8N&urr2rss8W&sr;ZfrrVm*$s8W)us8Mrr +!<2ip!<2lq"oeQ$rr<#srr +qu6Zqr;ZfrrVulrs8N3#s8N#rs8W'!s8Mrr!<2rss8Musrr2os$3'u(rr;uts8N#ms8W)qrr`9# +rr2lr"oeQ%rr2rsrY5D3s8N&ts8W)us8N&urr<#ts8W)ss8DrqrrE&qrrE&ts8W'#s8N&urVlfr +!<2ut!<2ut!<2uts8E#urr**$rr;utrqucrrqud%rr<#ts8W)us8;lrrr`9#s8Mus!<2rss8Mio +!<2rs!<2ut(&n75rr;uss8W)urr2rtrr<#ts8W)rrs8W(s8N&urr<#rrrUHorVllsrr3`4s8W)urr2rtrr;uss8W)us8N&urqud%rr<#ts8W)us8;lrrr`9#s8Mus#6+Z& +rr<#tr;QcrqYpQpqu6j!s8N#ts8Drsrr`9#s8Mrr$i^2+rr<#trr;uts8Drps8W)srs&K&s8N&u +rqucrrqcWprql^!rr;uss8W&ss8N3#s8W)rrsSi+s8N&urr2rss8W&sr;ZfrrVm*$s8W)us8Mrr +!<2ip!<2lq"oeQ$rr<#srr +qu6Zqr;ZfrrVulrs8N3#s8N#rs8W'!s8Mrr!<2rss8Musrr2os$3'u(rr;uts8N#ms8W)qrr`9# +rr2lr"oeQ%rr2rsrY5D3s8N&ts8W)us8N&urr<#ts8W)ss8DrqrrE&qrrE&ts8W'#s8N&urVlfr +!<2ut!<2ut!<2uts8E#urr**$rr;utrqucrrqud%rr<#ts8W)us8;lrrr`9#s8Mus!<2rss8Mio +!<2rs!<2ut(&n75rr;uss8W)urr2rtrr<#ts8W)rrs8W(s8N&urr<#rrrUHorVllsrr3`4s8W)urr2rtrr;uss8W)us8N&urqud%rr<#ts8W)us8;lrrr`9#s8Mus#6+Z& +rr<#tr;QcrqYpQpqu6j!s8N#ts8Drsrr`9#s8Mrr$i^2+rr<#trr;uts8Drps8W)srs&K&s8N&u +rqucrrqcWprql^!rr;uss8W&ss8N3#s8W)rrsSi+s8N&urr2rss8W&sr;ZfrrVm*$s8W)us8Mrr +!<2ip!<2lq"oeQ$rr<#srr +"onT$s8W)rrrW3"rql]trr<#trVllsp&>*ms8Mlp!ri6!rr3'!s8Mlp"9/?#rr)isrqcZprW3&u +r;QcrpAY-lrr3-#s8W)trr2utrVllsrVlrus8Mrr"TJH$rr2]m!<2rss8Mrr!<2ors8M`l!<2ut +!WN,trqud"rr;uts8N#ts8E<(rr<#ts8W)trr33%s8W)us8N#t!<2ut"TJH#s8Mrr#6+Z%s8N&t +qu6Zqr;Z`pr;Qs"s8N&urr2rtrWrQ's8W)us8N#srs&K&s8N&urr2otrr2p#rr;utrqud#rr;ut +rr;uprrE&rs8DrprrrE%rr<#trr<#t#ljo(s8N&urr2os!<2rss8Mus!<2lq!<2rsrr2rt"oeQ$ +s8W)trrE&prrE&qrrW3"rql`qrW3&ur;Zfrq>^KorVllsqu6ZqrVulrs8N9%s8N&urr2otrqcWp +rql]srr;ups8W'!s8Mrrs8Mios8Mus!<2lq!<2rsrr2rt"oeQ$s8W)trrE&prrE&qrrW3"rql`q +rW3&ur;Zfrq>^Ko!<7Q~> +"onT$s8W)rrrW3"rql]trr<#trVllsp&>*ms8Mlp!ri6!rr3'!s8Mlp"9/?#rr)isrqcZprW3&u +r;QcrpAY-lrr3-#s8W)trr2utrVllsrVlrus8Mrr"TJH$rr2]m!<2rss8Mrr!<2ors8M`l!<2ut +!WN,trqud"rr;uts8N#ts8E<(rr<#ts8W)trr33%s8W)us8N#t!<2ut"TJH#s8Mrr#6+Z%s8N&t +qu6Zqr;Z`pr;Qs"s8N&urr2rtrWrQ's8W)us8N#srs&K&s8N&urr2otrr2p#rr;utrqud#rr;ut +rr;uprrE&rs8DrprrrE%rr<#trr<#t#ljo(s8N&urr2os!<2rss8Mus!<2lq!<2rsrr2rt"oeQ$ +s8W)trrE&prrE&qrrW3"rql`qrW3&ur;Zfrq>^KorVllsqu6ZqrVulrs8N9%s8N&urr2otrqcWp +rql]srr;ups8W'!s8Mrrs8Mios8Mus!<2lq!<2rsrr2rt"oeQ$s8W)trrE&prrE&qrrW3"rql`q +rW3&ur;Zfrq>^Ko!<7Q~> +"onT$s8W)rrrW3"rql]trr<#trVllsp&>*ms8Mlp!ri6!rr3'!s8Mlp"9/?#rr)isrqcZprW3&u +r;QcrpAY-lrr3-#s8W)trr2utrVllsrVlrus8Mrr"TJH$rr2]m!<2rss8Mrr!<2ors8M`l!<2ut +!WN,trqud"rr;uts8N#ts8E<(rr<#ts8W)trr33%s8W)us8N#t!<2ut"TJH#s8Mrr#6+Z%s8N&t +qu6Zqr;Z`pr;Qs"s8N&urr2rtrWrQ's8W)us8N#srs&K&s8N&urr2otrr2p#rr;utrqud#rr;ut +rr;uprrE&rs8DrprrrE%rr<#trr<#t#ljo(s8N&urr2os!<2rss8Mus!<2lq!<2rsrr2rt"oeQ$ +s8W)trrE&prrE&qrrW3"rql`qrW3&ur;Zfrq>^KorVllsqu6ZqrVulrs8N9%s8N&urr2otrqcWp +rql]srr;ups8W'!s8Mrrs8Mios8Mus!<2lq!<2rsrr2rt"oeQ$s8W)trrE&prrE&qrrW3"rql`q +rW3&ur;Zfrq>^Ko!<7Q~> +!ri6!rr;us"98B#rr2otrr)lrrW3&urr<#ts8W,us8W#rrVm!!s8W)trrE&prrE&prrE&mrrE&p +rrW3"rr2otrqud!rr;utrr2p!rr<#srWN9#s8N&trW3&urr<#ts8N3#s8N&trX8c*s8W)ts8N&t +s8N#trVd3)rr<#trr;utrr;uqrri?$rr;usrrE&trrE&rrtPJ4rr;utrr;utrr<#trr;utrr;us +rrW3"rr2p!rr;uss8W'!s8Mlp!ri6!qYp]ts8N&trr2utrr2utr;RK1s8N&ts8N&ts8N&urr2rs +s8N&trr3'!s8N#t!ri6!rr<#t!WW/qrrW3"rqcWtrr;utrr2otrr2otrqud1rr;utrr;utrr;ut +s8N#trr;utrr2p'rr;utrr;utrr2rrrp]pfrqcWprr2otrqucrrr2p%rr;utrr;uss8N!"s8N&t +rr39's8N&ts8N&trr;rrnG`LfqYpQprr2utr;Qcrrr33%s8N&ts8N#trr*$"rr;usrs8W(rr;ut +rr;uss8DrdrrE&prrE&trrE&rrrE&trs&K&rr;utrr2rsrWE3"s8N#t#QFc&s8N&ts*t~> +!ri6!rr;us"98B#rr2otrr)lrrW3&urr<#ts8W,us8W#rrVm!!s8W)trrE&prrE&prrE&mrrE&p +rrW3"rr2otrqud!rr;utrr2p!rr<#srWN9#s8N&trW3&urr<#ts8N3#s8N&trX8c*s8W)ts8N&t +s8N#trVd3)rr<#trr;utrr;uqrri?$rr;usrrE&trrE&rrtPJ4rr;utrr;utrr<#trr;utrr;us +rrW3"rr2p!rr;uss8W'!s8Mlp!ri6!qYp]ts8N&trr2utrr2utr;RK1s8N&ts8N&ts8N&urr2rs +s8N&trr3'!s8N#t!ri6!rr<#t!WW/qrrW3"rqcWtrr;utrr2otrr2otrqud1rr;utrr;utrr;ut +s8N#trr;utrr2p'rr;utrr;utrr2rrrp]pfrqcWprr2otrqucrrr2p%rr;utrr;uss8N!"s8N&t +rr39's8N&ts8N&trr;rrnG`LfqYpQprr2utr;Qcrrr33%s8N&ts8N#trr*$"rr;usrs8W(rr;ut +rr;uss8DrdrrE&prrE&trrE&rrrE&trs&K&rr;utrr2rsrWE3"s8N#t#QFc&s8N&ts*t~> +!ri6!rr;us"98B#rr2otrr)lrrW3&urr<#ts8W,us8W#rrVm!!s8W)trrE&prrE&prrE&mrrE&p +rrW3"rr2otrqud!rr;utrr2p!rr<#srWN9#s8N&trW3&urr<#ts8N3#s8N&trX8c*s8W)ts8N&t +s8N#trVd3)rr<#trr;utrr;uqrri?$rr;usrrE&trrE&rrtPJ4rr;utrr;utrr<#trr;utrr;us +rrW3"rr2p!rr;uss8W'!s8Mlp!ri6!qYp]ts8N&trr2utrr2utr;RK1s8N&ts8N&ts8N&urr2rs +s8N&trr3'!s8N#t!ri6!rr<#t!WW/qrrW3"rqcWtrr;utrr2otrr2otrqud1rr;utrr;utrr;ut +s8N#trr;utrr2p'rr;utrr;utrr2rrrp]pfrqcWprr2otrqucrrr2p%rr;utrr;uss8N!"s8N&t +rr39's8N&ts8N&trr;rrnG`LfqYpQprr2utr;Qcrrr33%s8N&ts8N#trr*$"rr;usrs8W(rr;ut +rr;uss8DrdrrE&prrE&trrE&rrrE&trs&K&rr;utrr2rsrWE3"s8N#t#QFc&s8N&ts*t~> +rr33%s8W)us8N#trr2fp!<2fo!<2Qhs8E'!rqZQorr2p!rr;uprs/Q's8N&urr2*\!<2ut%0$;+ +rr<#ts8W)us8LsV!<26_!<2or!<2ut!<2ut!ri6!rr2uthZ!TTqu6ZqpAY-lr;Qcrrr2utrr3'! +s8N#t!<1jT!<2lq!<2]l!<2or!<2ut!<2ut!ri6!rr2utkl1Y^q#:?nqu6Zqq#:Eps8Mfn!<2cn +!<23^!<2cn!<2lq!<2cn!ri6!q#:?nq#:?nkl1Y^q#:?nqu6Zqq#:Eps8Mfn!<2cn!<29`J,~> +rr33%s8W)us8N#trr2fp!<2fo!<2Qhs8E'!rqZQorr2p!rr;uprs/Q's8N&urr2*\!<2ut%0$;+ +rr<#ts8W)us8LsV!<26_!<2or!<2ut!<2ut!ri6!rr2uthZ!TTqu6ZqpAY-lr;Qcrrr2utrr3'! +s8N#t!<1jT!<2lq!<2]l!<2or!<2ut!<2ut!ri6!rr2utkl1Y^q#:?nqu6Zqq#:Eps8Mfn!<2cn +!<23^!<2cn!<2lq!<2cn!ri6!q#:?nq#:?nkl1Y^q#:?nqu6Zqq#:Eps8Mfn!<2cn!<29`J,~> +rr33%s8W)us8N#trr2fp!<2fo!<2Qhs8E'!rqZQorr2p!rr;uprs/Q's8N&urr2*\!<2ut%0$;+ +rr<#ts8W)us8LsV!<26_!<2or!<2ut!<2ut!ri6!rr2uthZ!TTqu6ZqpAY-lr;Qcrrr2utrr3'! +s8N#t!<1jT!<2lq!<2]l!<2or!<2ut!<2ut!ri6!rr2utkl1Y^q#:?nqu6Zqq#:Eps8Mfn!<2cn +!<23^!<2cn!<2lq!<2cn!ri6!q#:?nq#:?nkl1Y^q#:?nqu6Zqq#:Eps8Mfn!<2cn!<29`J,~> +!WW/rs8W)srrW3"rr)j$rr<#ts8W)srr`9#s8Mlp!<2rs!<2ors8Mio!<2lq!<2cn!<2lq!WN,u +rr2rtrr)j!rr<#tr;Qcrr;R!#s8N#ts8N#t!<2uts8Mlp!<2lqs8Mcm!<2ut!<2ips8Mus"9/?# +rqZR#rr<#ts8W)us8N#t!<2fo!<2rs!<2'Zs8E0$rr<#tpAYHus8W)us8N&urr2otrqZQorr)is +roF+ZrWN9#s8W)lrsA])s8N&urr<#trr2utq>UHorVllsp](9mpAY-lr;Zfrp&>$krr3*"s8W)s +rrrE%s8N&tqYpQpnc/XgpAY-lr;Zfrp&>$krr3*"s8W)srrrE%s8N&tqYpQpnc/XgpAY-lr;Zfr +p&>$krr3*"s8W)srrrE%s8N&tqYpQpoDa=~> +!WW/rs8W)srrW3"rr)j$rr<#ts8W)srr`9#s8Mlp!<2rs!<2ors8Mio!<2lq!<2cn!<2lq!WN,u +rr2rtrr)j!rr<#tr;Qcrr;R!#s8N#ts8N#t!<2uts8Mlp!<2lqs8Mcm!<2ut!<2ips8Mus"9/?# +rqZR#rr<#ts8W)us8N#t!<2fo!<2rs!<2'Zs8E0$rr<#tpAYHus8W)us8N&urr2otrqZQorr)is +roF+ZrWN9#s8W)lrsA])s8N&urr<#trr2utq>UHorVllsp](9mpAY-lr;Zfrp&>$krr3*"s8W)s +rrrE%s8N&tqYpQpnc/XgpAY-lr;Zfrp&>$krr3*"s8W)srrrE%s8N&tqYpQpnc/XgpAY-lr;Zfr +p&>$krr3*"s8W)srrrE%s8N&tqYpQpoDa=~> +!WW/rs8W)srrW3"rr)j$rr<#ts8W)srr`9#s8Mlp!<2rs!<2ors8Mio!<2lq!<2cn!<2lq!WN,u +rr2rtrr)j!rr<#tr;Qcrr;R!#s8N#ts8N#t!<2uts8Mlp!<2lqs8Mcm!<2ut!<2ips8Mus"9/?# +rqZR#rr<#ts8W)us8N#t!<2fo!<2rs!<2'Zs8E0$rr<#tpAYHus8W)us8N&urr2otrqZQorr)is +roF+ZrWN9#s8W)lrsA])s8N&urr<#trr2utq>UHorVllsp](9mpAY-lr;Zfrp&>$krr3*"s8W)s +rrrE%s8N&tqYpQpnc/XgpAY-lr;Zfrp&>$krr3*"s8W)srrrE%s8N&tqYpQpnc/XgpAY-lr;Zfr +p&>$krr3*"s8W)srrrE%s8N&tqYpQpoDa=~> +rr3<(s8N#ts8N&urr)isrqQKprr<#trWN9#s8N#ps8N#rs8W'+s8N#ts8N#ts8N#trr2rt#6+Z& +rr<#tr;Qcrq>^Kos8N)ur;QcrqYpZss8W)qrrE&es8W'!s8M-[!<2or!<2ips8E0$rr;usrr<#t +rr3'!s8N#t!<2or"9/?"rp0Uarql]qrr)lsrr<#urr2rtrWN9#s8N#ss8W)trrW3"rr2otrqucu +rr;usli7"aqu6ZqrVuoss8W,urr<#t"TSK$rr2oss8N#t!ri6!rr2utr;Qlus8N#hrrE&prr`9# +s8Mus!<2ut!<2rss8N#ts8Mus!<2utrr2rt!ri6!rr2utqZ$TpoD\giqYpZss8W)srrE&trrE&s +s8W)ts8W)srrE&ts8N#trrW3"rr2otrqcZprq$-irqcWsrr<#trVllsrr2utrVuosrr<#trVlls +rr;uss8N0"s8N#t!<2ips8McmJ,~> +rr3<(s8N#ts8N&urr)isrqQKprr<#trWN9#s8N#ps8N#rs8W'+s8N#ts8N#ts8N#trr2rt#6+Z& +rr<#tr;Qcrq>^Kos8N)ur;QcrqYpZss8W)qrrE&es8W'!s8M-[!<2or!<2ips8E0$rr;usrr<#t +rr3'!s8N#t!<2or"9/?"rp0Uarql]qrr)lsrr<#urr2rtrWN9#s8N#ss8W)trrW3"rr2otrqucu +rr;usli7"aqu6ZqrVuoss8W,urr<#t"TSK$rr2oss8N#t!ri6!rr2utr;Qlus8N#hrrE&prr`9# +s8Mus!<2ut!<2rss8N#ts8Mus!<2utrr2rt!ri6!rr2utqZ$TpoD\giqYpZss8W)srrE&trrE&s +s8W)ts8W)srrE&ts8N#trrW3"rr2otrqcZprq$-irqcWsrr<#trVllsrr2utrVuosrr<#trVlls +rr;uss8N0"s8N#t!<2ips8McmJ,~> +rr3<(s8N#ts8N&urr)isrqQKprr<#trWN9#s8N#ps8N#rs8W'+s8N#ts8N#ts8N#trr2rt#6+Z& +rr<#tr;Qcrq>^Kos8N)ur;QcrqYpZss8W)qrrE&es8W'!s8M-[!<2or!<2ips8E0$rr;usrr<#t +rr3'!s8N#t!<2or"9/?"rp0Uarql]qrr)lsrr<#urr2rtrWN9#s8N#ss8W)trrW3"rr2otrqucu +rr;usli7"aqu6ZqrVuoss8W,urr<#t"TSK$rr2oss8N#t!ri6!rr2utr;Qlus8N#hrrE&prr`9# +s8Mus!<2ut!<2rss8N#ts8Mus!<2utrr2rt!ri6!rr2utqZ$TpoD\giqYpZss8W)srrE&trrE&s +s8W)ts8W)srrE&ts8N#trrW3"rr2otrqcZprq$-irqcWsrr<#trVllsrr2utrVuosrr<#trVlls +rr;uss8N0"s8N#t!<2ips8McmJ,~> +#64]&rr<#trr3B*s8W)ts8W)ts8W)trrW3"s8N!#s8N&urr)isrquctrr;urs8W)trrE&trrE&t +s8W)trrE&rs8W)urrE&qrs/Q's8N&urr2`n!<2uts8Mfn!<2lq!ri6!rVllsr;QcrqYp`us8W)u +rqucrrr)isrqufrrqZQorr2p%rr<#ts8N#lrr`9#rr2lr!<2orrr2`n"9/?#rr2otrq69krqZQo +rql]trr;usp\t?ps8N#rrrE&rs8N#nrr`9#s8N#t!<2Zk!<2fo!<2lq"9/?"rqHEprr;usrVlls +r;Zcqrr<#trr2utp&G'k!WW/urrE&qs8W)ms8W)ls8W)rrrE&ss8W)urr`9#rr2os!<2Zks8E'! +rr2otrql`qrqHHmrq?Blrqucrrr)lsrr +#64]&rr<#trr3B*s8W)ts8W)ts8W)trrW3"s8N!#s8N&urr)isrquctrr;urs8W)trrE&trrE&t +s8W)trrE&rs8W)urrE&qrs/Q's8N&urr2`n!<2uts8Mfn!<2lq!ri6!rVllsr;QcrqYp`us8W)u +rqucrrr)isrqufrrqZQorr2p%rr<#ts8N#lrr`9#rr2lr!<2orrr2`n"9/?#rr2otrq69krqZQo +rql]trr;usp\t?ps8N#rrrE&rs8N#nrr`9#s8N#t!<2Zk!<2fo!<2lq"9/?"rqHEprr;usrVlls +r;Zcqrr<#trr2utp&G'k!WW/urrE&qs8W)ms8W)ls8W)rrrE&ss8W)urr`9#rr2os!<2Zks8E'! +rr2otrql`qrqHHmrq?Blrqucrrr)lsrr +#64]&rr<#trr3B*s8W)ts8W)ts8W)trrW3"s8N!#s8N&urr)isrquctrr;urs8W)trrE&trrE&t +s8W)trrE&rs8W)urrE&qrs/Q's8N&urr2`n!<2uts8Mfn!<2lq!ri6!rVllsr;QcrqYp`us8W)u +rqucrrr)isrqufrrqZQorr2p%rr<#ts8N#lrr`9#rr2lr!<2orrr2`n"9/?#rr2otrq69krqZQo +rql]trr;usp\t?ps8N#rrrE&rs8N#nrr`9#s8N#t!<2Zk!<2fo!<2lq"9/?"rqHEprr;usrVlls +r;Zcqrr<#trr2utp&G'k!WW/urrE&qs8W)ms8W)ls8W)rrrE&ss8W)urr`9#rr2os!<2Zks8E'! +rr2otrql`qrqHHmrq?Blrqucrrr)lsrr +rVm$"s8W)tr;Qcrqu6Zqrr3'!s8MHd!<2ut"TJH#s8Mus!<2or&H;_/rr<#ts8W)us8N&urr;rr +s8N9%s8N&urqcWprqucrrr)lsrr)lqrr +rVm$"s8W)tr;Qcrqu6Zqrr3'!s8MHd!<2ut"TJH#s8Mus!<2or&H;_/rr<#ts8W)us8N&urr;rr +s8N9%s8N&urqcWprqucrrr)lsrr)lqrr +rVm$"s8W)tr;Qcrqu6Zqrr3'!s8MHd!<2ut"TJH#s8Mus!<2or&H;_/rr<#ts8W)us8N&urr;rr +s8N9%s8N&urqcWprqucrrr)lsrr)lqrr +"9/?"s8Dp%s8N&ts8W)urVlfr"9/?#rql]srr;urrrW3"rqud/rr;uts8N&urr<#ts8N&urr;us +s8W)ts8W'%s8N&urr2lrs8N#trr2]m!<2uts8N&u!WN,trW3&uq>Ua"s8W)urr2rsrr;usrr2ut +qu6Zqrr2utrVuosrVuosq#:?nrr;us#64]&rr;usrr3-#s8W)urVlisrVcs"rr<#trVm<*s8W)u +s8N&ts8W)tqu6cts8W)rrrE&srso&.rr<#ts8N&ts8N&trr2p#rr<#ts8Drss8Dp"s8N&urr)j* +rr<#ts8W)urr<#trql]trr<#tr;QcrrVmB,s8N&urr;utrr;utrr2os"TJH$rr;rrs8W&s"TSK$ +s8Mlp!ri6"rVlTls8N&u!<2rs!<2utrVliss8MusrVlcq!<2utrVlZn#6+Z&rr;usrVlrus8W&s +q#CBns8N)urVllsrr;rrs8W,urVuiqrVllsrr;rrqYpd!s8W)urr2lr!ri6"rVlTls8N&u!<2rs +!<2utrVliss8MusrVlcq!<2utrVlZn#6+Z&rr;usrVlots*t~> +"9/?"s8Dp%s8N&ts8W)urVlfr"9/?#rql]srr;urrrW3"rqud/rr;uts8N&urr<#ts8N&urr;us +s8W)ts8W'%s8N&urr2lrs8N#trr2]m!<2uts8N&u!WN,trW3&uq>Ua"s8W)urr2rsrr;usrr2ut +qu6Zqrr2utrVuosrVuosq#:?nrr;us#64]&rr;usrr3-#s8W)urVlisrVcs"rr<#trVm<*s8W)u +s8N&ts8W)tqu6cts8W)rrrE&srso&.rr<#ts8N&ts8N&trr2p#rr<#ts8Drss8Dp"s8N&urr)j* +rr<#ts8W)urr<#trql]trr<#tr;QcrrVmB,s8N&urr;utrr;utrr2os"TJH$rr;rrs8W&s"TSK$ +s8Mlp!ri6"rVlTls8N&u!<2rs!<2utrVliss8MusrVlcq!<2utrVlZn#6+Z&rr;usrVlrus8W&s +q#CBns8N)urVllsrr;rrs8W,urVuiqrVllsrr;rrqYpd!s8W)urr2lr!ri6"rVlTls8N&u!<2rs +!<2utrVliss8MusrVlcq!<2utrVlZn#6+Z&rr;usrVlots*t~> +"9/?"s8Dp%s8N&ts8W)urVlfr"9/?#rql]srr;urrrW3"rqud/rr;uts8N&urr<#ts8N&urr;us +s8W)ts8W'%s8N&urr2lrs8N#trr2]m!<2uts8N&u!WN,trW3&uq>Ua"s8W)urr2rsrr;usrr2ut +qu6Zqrr2utrVuosrVuosq#:?nrr;us#64]&rr;usrr3-#s8W)urVlisrVcs"rr<#trVm<*s8W)u +s8N&ts8W)tqu6cts8W)rrrE&srso&.rr<#ts8N&ts8N&trr2p#rr<#ts8Drss8Dp"s8N&urr)j* +rr<#ts8W)urr<#trql]trr<#tr;QcrrVmB,s8N&urr;utrr;utrr2os"TJH$rr;rrs8W&s"TSK$ +s8Mlp!ri6"rVlTls8N&u!<2rs!<2utrVliss8MusrVlcq!<2utrVlZn#6+Z&rr;usrVlrus8W&s +q#CBns8N)urVllsrr;rrs8W,urVuiqrVllsrr;rrqYpd!s8W)urr2lr!ri6"rVlTls8N&u!<2rs +!<2utrVliss8MusrVlcq!<2utrVlZn#6+Z&rr;usrVlots*t~> +s8N3#s8W)trr`9#s8Mio!<2Kf"9/?#rkna9rmC`Grq69krq69kro="YrjVn-rjVn-rdk*5s*t~> +s8N3#s8W)trr`9#s8Mio!<2Kf"9/?#rkna9rmC`Grq69krq69kro="YrjVn-rjVn-rdk*5s*t~> +s8N3#s8W)trr`9#s8Mio!<2Kf"9/?#rkna9rmC`Grq69krq69kro="YrjVn-rjVn-rdk*5s*t~> +%%EndData +showpage +%%Trailer +end +%%EOF diff --git a/lessons/misc/REST/cgiarch.eps b/lessons/misc/REST/cgiarch.eps new file mode 100644 index 000000000..ffa089f9b --- /dev/null +++ b/lessons/misc/REST/cgiarch.eps @@ -0,0 +1,2041 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner +%%Title: cgiarch.eps +%%CreationDate: Thu Nov 5 00:26:02 2015 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 14 14 426 488 +%%EndComments +%%BeginProlog +% Use own dictionary to avoid conflicts +10 dict begin +%%EndProlog +%%Page: 1 1 +% Translate for offset +14.173228346456694 14.173228346456694 translate +% Translate to begin of first scanline +0 472.99456290591422 translate +410.99527559055122 -472.99456290591422 scale +% Image geometry +411 473 8 +% Transformation matrix +[ 411 0 0 473 0 0 ] +% Strings to hold RGB-samples per scanline +/rstr 411 string def +/gstr 411 string def +/bstr 411 string def +{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} +true 3 +%%BeginData: 104905 ASCII Bytes +colorimage +JcERds83&r3WT!Rr.4mNs*t~> +JcERds83&r3WT!Rr.4mNs*t~> +JcERds83&r3ro*Sr.4mNs*t~> +JcERd#Q4Dh3WSdIr.4mNs*t~> +JcERd#Q4Dh3WSdIr.4mNs*t~> +JcERd#Q4Dh3rnmJr.4mNs*t~> +JcERd#lODa3WSUAr;;-GYQ'+~> +JcERd#lODa3WSUAr;;-GYQ'+~> +JcERd#lODa3rn^Br;;-GYQ'+~> +JcEUe$2jVjkW/_-oD/<8s0)HQ~> +JcEUe$2jVjkW/_-oD/<8s0)HQ~> +JcEUe$2jVjkW8e.oD/<8s0)HQ~> +JcEUe$2jVjkW/_-meQd3s0)HQ~> +JcEUe$2jVjkW/_-meQd3s0)HQ~> +JcEUe$2jVjkW8e.meQd3s0)HQ~> +JcEUe$2jVekW/_-meQd3s0)HQ~> +JcEUe$2jVekW/_-meQd3s0)HQ~> +JcEUe$2jVekW8e.meQd3s0)HQ~> +JcEUe$2jVekW/_!meQd3s0)HQ~> +JcEUe$2jVekW/_!meQd3s0)HQ~> +JcEUe$2jVekW8e"meQd3s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW/_!me6R0s0)HQ~> +JcEUe$2jVekW8e"me6R0s0)HQ~> +JcEUe$2jVjkW/_!me6R0s0)HQ~> +JcEUe$2jVjkW/_!me6R0s0)HQ~> +JcEUe$2jVjkW8e"me6R0s0)HQ~> +JcEUe$2jVjkW/_!me6R0s0)HQ~> +JcEUe$2jVjkW/_!me6R0s0)HQ~> +JcEUe$2jVjkW8e"me6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW/^dme6R0s0)HQ~> +JcEUe$2jVjkW8deme6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6R0s0)HQ~> +JcEUe$2jVjkYqQ)me6R0s0)HQ~> +JcEUe$2jVjkYhK(me6S:rrW#=OF^@!;Z`''q<7j/~> +JcEUe$2jVjkYhK(me6S:rrW#=OF^@!;Z`''q<7j/~> +JcEUe$2jVjkYqQ)me6S:rrW#=OF^C" +JcEUe$2jVjkYhK(me6S=rs&DV;]>]U3e:6";[,9%!#nklr9OB5~> +JcEUe$2jVjkYhK(me6S=rs&DV;]PiY3e:6";[,9'!$,"nr9OB5~> +JcEUe$2jVjkYqQ)me6S=rs&DV<#krZ4+UB$ +JcEUe$2jVjkYhK(me6S?rs/Ji;ZIbub4C2Pn*UGPb)dPB;ssSNs*t~> +JcEUe$2jVjkYhK(me6S?rs/Ji;ZIi"b4C2Pn*UGPb)dVD;ssSNs*t~> +JcEUe$2jVjkYqQ)me6S?rs/Ji;udr#b4C2Pn*UGPb)dVD<:9\Os*t~> +JcEUe$2jVjkYhK(me6S@rs&DD)]On,mXaTfkl:&RO;f.]r9jT8~> +JcEUe$2jVjkYhK(me6S@rs&DD*?C70mXaTfkl:&RO<#@ar9jT8~> +JcEUe$2jVjkYqQ)me6S@rs&DD*?C70mXaTfkl:&RO<#@ar9jT8~> +JcEUe$2jVjkYhK(me6SArrr>C!'8p'J`u:\"n(/,!6Y6.s*t~> +JcEUe$2jVjkYhK(me6SArrr>C!'8p'J`u:\"n(/,!6Y6.s*t~> +JcEUe$2jVjkYqQ)me6SArrr>C!'B!(J`u:\"n(/-!6Y6.s*t~> +JcEUe$2jVjkYhK(me6SBrr`2A!)nI4iTLAB!6Y6/s*t~> +JcEUe$2jVjkYhK(me6SBrr`2A!)nI4iTLAB!6Y6/s*t~> +JcEUe$2jVjkYqQ)me6SBrr`2A!*"O5iTLAC!6Y6/s*t~> +JcEUe$2jVjkYhK(me6SCrr`2_)`ml[s6bI0n+6SIqre,C)sI4is*t~> +JcEUe$2jVjkYhK(me6SCrr`2_*BO)]s6bI0n+6SIqre,C*U*Fks*t~> +JcEUe$2jVjkYqQ)me6SCrr`2_*BX/^s6bI0n+6SIqre,D*U*Fks*t~> +JcEUe$2jVjkYhK(me6SDrri8q;]FNjkQC8Ep@a(5n+m"W!V>aXkQKZ[;u-@^s*t~> +JcEUe$2jVjkYhK(me6SDrri8q;]XZlkQC8Ep@a(5n+m"W!V>aXkQKZ];u-@^s*t~> +JcEUe$2jVjkYqQ)me6SDrri8q<#scmkQC8Ep@a(5n+m"W!V>aXkQKZ]<;HI_s*t~> +JcEUe$2jVjkYhK(me6SEs8VuuaoIP&kQL>FpA+N8r9aF^q#^9]mf)DQO9!H$r:Br=~> +JcEUe$2jVjkYhK(me6SEs8VuuaoIP&kQL>FpA+N8r9aF^q#^9]mf)DQO9!H$r:Br=~> +JcEUe$2jVjkYqQ)me6SEs8VuuaoIP&kQL>FpA+N8r9aF^q#^9]mf)DQO9!H$r:Br=~> +JcEUe$2jVjkYhK(me6SErr`2p;]G`""n)!Uq>C/As6]jdquccgoBuVA!uk27r:Br=~> +JcEUe$2jVjkYhK(me6SErr`2p;]Yl$"n)!Uq>C/As6]jdquccgoBuVA"!(>9r:Br=~> +JcEUe$2jVjkYqQ)me6SErr`2p<#tu%"n)!Uq>C/As6]jdquccgoBuVA"!(A:r:Br=~> +JcEUe$2jVjkYhK(me6SFrsSc#o,EeTkjJ' +JcEUe$2jVjkYhK(me6SFrsSc#o,WqVkjJ' +JcEUe$2jVjkYqQ)me6SFrsSc#o,WqVkjJ' +JcEUe$2jVjkYhK(me6SFrsJ]"aoKTJmdp/Mr.4n2s8W!&p@I_9aoKT[r:L#>~> +JcEUe$2jVjkYhK(me6SFrsJ]"aoKTJmdp/Mr.4n2s8W!&p@I_9aoKT[r:L#>~> +JcEUe$2jVjkYqQ)me6SFrsJ]"aoKTJmdp/Mr.4n2s8W!&p@I_9aoKT[r:L#>~> +JcEUe$2jVjkYhK(me6SFrsAVsO;mEIme6JSJcFj3$2jVmmc`jROS8VEs*t~> +JcEUe$2jVjkYhK(me6SFrsAVsO<*QKme6JSJcFj3$2jVmmc`jTOS8VEs*t~> +JcEUe$2jVjkYqQ)me6SFrsAVsO<*QKme6JSJcFj3$2jVmmc`jTOS8VEs*t~> +JcEUe$2jVjkYhK(me6SGrsAW!o2@^6mdp8PJcFd1$2jVjmcZ]1oD/=Ws*t~> +JcEUe$2jVjkYhK(me6SGrsAW!o2@^6mdp8PJcFd1$2jVjmcZ]1oD/=Ws*t~> +JcEUe$2jVjkYqQ)me6SGrsAW!o2Ig8mdp8PJcFd1$2jVjmcZ`3oD/=Ws*t~> +JcEUe$2jVjkYhK(me6SGrsAW!o2@^6me6SVJcFd1s83,qmcZ]1oD/=Ws*t~> +JcEUe$2jVjkYhK(me6SGrsAW!o2@^6me6SVJcFd1s83,qmcZ]1oD/=Ws*t~> +JcEUe$2jVjkYqQ)me6SGrsAW!o2Ig8me6SVJcFd1s83,qmcZ`3oD/=Ws*t~> +JcEUe$2jVjkYhK(me6SGrs8PrmSd'JoD/<8s5Et`r;#sJ;cE,Xr:U)?~> +JcEUe$2jVjkYhK(me6SGrs8PrmSd'JoD/<8s5Et`r;#sJ;cE,Xr:U)?~> +JcEUe$2jVjkYqQ)me6SGrs8PrmSm0LoD/<8s5Et`r;#sJ<)i;Zr:U)?~> +JcEUe$2jVjkYhK(me6SHs8W!%p?kjXkk"WJJcF^/$2jVjkYkFJpAFj^s*t~> +JcEUe$2jVjkYhK(me6SHs8W!%p?kjXkk"WJJcF^/$2jVjkYkFJpAFj^s*t~> +JcEUe$2jVjkYqQ)me6SHs8W!%p?kmZkk"WJJcF^/$2jVjkYtOLpAFj^s*t~> +JcEUe$2jVjkYhK(me6SHs8W!%p?kjXmdp8PJcF^/$2jVjmSd'PpAFj^s*t~> +JcEUe$2jVjkYhK(me6SHs8W!%p?kjXmdp8PJcF^/$2jVjmSd'PpAFj^s*t~> +JcEUe$2jVjkYqQ)me6SHs8W!%p?kmZmdp8PJcF^/$2jVjmSm0RpAFj^s*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCme6SHrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDme6SHrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCkk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCkk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDkk=rBrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCkk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCkk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDkk=rBrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjkYhJCkk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYhJCkk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjkYqPDkk=rBrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rBrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rBrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rBrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjk`>e+kk=rOrrr>oOHB)3qYpm"q=F#Q;ss8Qr8mtYq>C6nr;$6i!;Z +JcEUe$2jVjk`>e+kk=rOrrr>oOHB)3qYpm"q=F#Q;ss8Qr8mtYq>C6nr;$6i!;Z +JcEUe$2jVjk`>e+kk=rOrrr>oOHB)3qYpm"q=F#R<:9ARr8mtYq>C6nr;$6i!;Z?g"7Z?kn+6P\ +mcaAHrsAW!oBoRWmdp8PpA]X~> +JcEUe$2jVjk`>e+kk=rQs8W!$ar:<\;uHRjrsAW!oBoOUmdp8Pk5PP^:&rK:rr`7G!0dB]!ndQA +pAY2d!0d*U!SL6I!!-$AYQ"q,q=F#Q;ss8Qr:^/@~> +JcEUe$2jVjk`>e+kk=rQs8W!$arLH^;uHRjrsAW!oBoOUmdp8Pk5PPP!!)Thrr`*Y!6b?@!jVf^ +pAY1m!6b'8!4)P'!E8QmrsAW!oBoOUmdp8PpA]X~> +JcEUe$2jVjk`>e+kk=rQs8W!$arLH^<;c[krsAW!oBoRWmdp8Pk5PM%!)WXo"5EkVn,<7fIfRC\ +rr_ck!:TU\!.XqI!*$-$$2jVjmSm0RoD/=Xs*t~> +JcEUe&,c7pk`>e+kk=rSs8;fY;uH[u3qiLLr;R*$q=F#Q;ss8Qr9""]rcnL-rr3*!:&m]\rrSem +G4tq;T)b)Krs/)p!#ni:!0aVd$2jVjmSd'PoD/=Xs*t~> +JcEUe&,c7pk`>e+kk=rSs8;fY;uH[u3qiLLr;R*$q=F#Q;ss8Qr9""]qDnW"rr3)h!!%iRrrQ+! +X7lPp;ZP#7rs-sP!$+u +JcEUe&,c7pk`>e+kk=rSs8;fY<;ce!48/UMr;R*$q=F#R<:9ARr9""]g].?Crr3)>!!'q9rr_ck +!7poE"7Z?kn+QbdR/d4-;ucpeYQ"q,q=F#R<:9ARr:^/@~> +JcEUe%fH.ok`>e+kk=iMr:uEnqu?h\oD/=^rsAW!oBoOUmdp8Pjo5D$!(?hd!87>O#2]C[r_BsdJ,~> +JcEUe%fH.ok`>e+kk=iMr:uEpqu?h\oD/=^rsAW!oBoOUmdp8Pjo5CD!/UXS!4)S(#5eH#q>^NO +pAY1m!6b*9#ESqAs8VqWh66hbr;#sP;cE,Uq>BsdJ,~> +JcEUe%fH.ok`>e+kk=iMr:uEpqu?h\oD/=^rsAW!oBoRWmdp8Pjo5BX!5ng9"+L:N;#^Isg]11B +p\t?c!!)K]rs)="_uKblORo[U$2jVjmSm0RoD/=Xs*t~> +JcEUe%/fqmk`>e+kk"WGgcG?5"Zjf]me6SVrsAW!oBoOUmdp8Pjo5PU!!)Ngs2Fs;%^l?:nc/[Z +s8W%Z3]^3Irr34q!0bA_3fr4qrrU.>G5;.LrK''$;mlZ*rDRmm3]bD^G5_FR`Dat[s4L=3;g.[1 +s2@pl;`]*UrsAW!oBoOUmdp8PpA]X~> +JcEUe%/fqmk`>e+kk"WGgcG?5"Zjf]me6SVrsAW!oBoOUmdp8Pjo5D1!(?hd!0I0["l94YdJu]7 +rrqkQ3]^3qrr34%!6^Hb3fs79rrS8^X82c,muTRk;r.KRmo-9m3]bD^X8W&)OAk`Ms0>Qa;lfot +"cu[<;`^u5rsAW!oBoOUmdp8PpA]X~> +JcEUe%/fqmk`>e+kk"WGgcPE6"Zsl^me6SVrsAW!oBoRWmdp8Pjo5CM!0dE^#u:O$;"O_eR/iHM +rt!)14$-F5s8VTh!:N]F4-9==!`&gIq>V#FO?5O'oDej0<7ZO\43CORrVm1"<<*!gIoJL/f)G[Q +:K6+K44`-c$2jVjmSm0RoD/=Xs*t~> +JcEUe$N0_kk`>e+kk"D-qu@!AONP`$kk=rPrVm3%q=F#Q;ss8Qr8mqkrD!@#s8Gan;ZM"@s2=t+ +s8VZh!!Z0u!0dH_TDANfnGN:g`;fn%qu6ZerW!*s!!&5_o)&ItaoDFbs8W'n!4Dj!!!#(Z!!;Zi +TDSZhnD!sLr;#sP;cE,Uq>BsdJ,~> +JcEUe$N0_kk`>e+kk"D-qu@!CONP`$kk=rPrVm3%q=F#Q;ss8Qr8mqkmf3@Ds7u^`;ZNlus,[5: +s8UOE!!CFEs&8dp!(?_a"-dea"GbQ$#g!#3QU!:p0iq>^NOs&/mt3WK.Js8Q$q!8@GZ +r;#sP;cE,Uq>BsdJ,~> +JcEUe$N0_kk`>e+kk"D-qu@!CONP`$kk=rPrVm3%q=F#R<:9ARr8mqn`;ia+s4dU<;ukMLs%`X4 +s8SJe!)WXp!q60Zq>^MZqu6ao!)W.]rr\Yh!)WXp!q6/Wqu?f@!)W[p"P`uRoC;e["Zl\aPQ11N +!!#jLrsAW!oBoRWmdp8PpA]X~> +JcEUe$2jVjk`>e+kfOkB!!#sraogGepA+U`#l4)U;cE,Uq>B=R,G+sZs8;otnc/[fs.9:Ts8R?E +7.C5q!!)rsT)\k7nC[dAPPkF]rD*=l!0dB]$$cM=nGgH-!;uEe!#r>gmWeers8UaP!:]OZ!4Dk* +:&pLXT)\k7gt^W`$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjk`>e+kfOqD!!#sraogGepA+U`#l4)U;cE,Uq>B=R,?"TCs6fqUdJu]5s&/p@s8P+[ +M#[L:!(?bb;ZHfus0;V)bP_A?n,<:f7*GQ/-oq?as8S/\7/YI5!(>YcmQ(?ks8TA)7/t[8!8[\D +!!(4B;ZHfugt^W`$2jVjmSd'PoD/=Xs*t~> +JcEUe$2jVjk`>e+kfOqD!!$!saogGepA+U`#l4)U<)i;Wq>B@S)t +JcEUe#Q4Dhk`>e+;u?Ur)cQNnr)[mhZ*WT:&rK.!!(4ArsQdG!<<(k!-\C]!-\AA#/pR1s.99Z +fDc0Tq=F#Q;ss8Qr:^/@~> +JcEUe#Q4Dhk`>e+;u?Ur*E2`pr)Pg!:osd!:p0Y!!)ors7u]q +o)DVgX8`,#;ZMXNrrMRerW!Ktqu?*b!;lfrq>^NddJs:BsdJ,~> +JcEUe#Q4Dhk`>e+<;Z^s*E;fqr)EYW"s!\Ckk"WJjSojB!5nhd!7o*h;#f;N;#gR7!)W[p#M];U +s7$'hf)G^L!!'q6rrC%:!!SSds2=t7rr32X!)W]`!)WXo$Vpbds8N'!f)JMGf)G[R:B8<&!!'pg +rsAW!oBoRWmdp8PpA]X~> +JcEUe#5n;gk`>c`jo>N_kk"WJjSoei!!(lp!4Dj!!0csR!<<)iq#CQ@s.9:Trr3&=!(?Y_!V1O8 +!!3,jq#CQ@nc/[Zrr3<':&rK::&rK;TDANj7/rkZPLog@r;#sP;cE,Uq>BsdJ,~> +JcEUe#5n;gk`>cbjo>N_kk"WJjSoe[!!)nX!8[ZR!6`dj70!;8q#CQgs&/p@rr3%]!/UIN#1>O4 +!(?k8q#CNfdJu]6rsA,o!:osd!:p.gq>^YSs&/p@fDc0Tq=F#Q;ss8Qr:^/@~> +JcEUe#5n;gk`>cbjo>N`kk"WJjSoe1!)W\k!;#^\!:Q^[qs7$'hn,E=g:B8<.rrAJd +!!8AaRJHmd;#cp`PPtLe`;ia7g]11NnbE.f_sm^,n(7RGr;#sP<)i;Wq>BsdJ,~> +JcEUe#5n;gk`>c`qZ$U8rDWTTr6"uns&0$`oD/=Frt> +JcEUe#5n;gk`>cbqZ$U:rDWTTr6"uns&0$`oD/=Frt>/h!8T[9qu;`XX,m=^s8ULI!;ob!M#73N +!6bBA!g!DBsdJ,~> +JcEUe#5n;gk`>cbqZ$U:rD`ZUr6"uns&9*aoD/=Frt=)e;"FZ`s8PjpekZ:ss8SJe!;oe"_uK6, +!:Tpe!`&g6p\tFn!)W]`!!)pr"N18-!0dB]%.O;tn!O0>r:'ae:ltWT"Rkj\!:SP>$2jVjmSm0R +oD/=Xs*t~> +JcEUe#lOMik`>e+O;n)t!uk1]b4FBmauWJboD/=Ert<9N;bd>ms7--iGlY8Ps7--inG<.dT)b)S +rrU.>7/-]drD!@Lnc/[Zqu6ch!!)NersIEZ7)].is8S\kPPY:\T)b),rsAW!oBoOUmdp8PpA]X~> +JcEUe#lOMik`>e+O<+6!"!(=_b4FBmauWJboD/=Ert1=m;ZK5cs3^m83WS"9s3^m8q>ULp!6bBA +!g!D +JcEUe#lOMik`>e+O<+6!"!(@`b4FBmau`SdoD/=Ert/$,;ui-^s-WkN!)W:es-WkNqYpZf!!)Ke +rrPsr_tX08`;ia7R/iHIrrSSgPPkFfIfRA^!:TsX!!)Kbrr_ck!:SP>$2jVjmSm0RoD/=Xs*t~> +JcEUe$2jVjk`>e+b0!Z[!!+%#o@sPm3`G86q>B:Q!:p*h"EshFr_EFm#4VZmr_ +JcEUe$2jVjk`>e+b0!Z[!!++%o@sPm3`G86q>B:Q!7LiH"0;J%qYgHp7/m2gq>^Mrrr3Dph#ICQ +!!(jTmf3@2rVlrq;lfot#ESpRs7u]qX8`,&mbIij!(?bb!:Tjd#4hfoZ2d;irr3/Ws8Q!tbLcb# +r;#sP;cE,Uq>BsdJ,~> +JcEUe$2jVjk`>e+b0!]\!!++%o@sPm4&kG8q>B:Q!1Efd"4mMPh#79RPQ(Rag].?*rr3Dph#HmE +!)W:e`;fo,rVm>^<7_*LnP9.Ks4dSSf)G[QmbIi1!0d?\!6+p;!)W[p!e136rr32mh#HmE!:SP> +$2jVjmSm0RoD/=Xs*t~> +JcEUe#5n;gk`>e+rlP8';u6Os3fr.Pq<7h5s&0$`oD/=Erri +JcEUe#5n;gk`>e+rlP8';u6Os3fr.Pq<7h5s&0$`oD/=ErrDop!!(jSrrZ1"!/UUR$BP5f;ijoX +M#[KRrW!("!!#FarVllorVupsrW!G/s8S/\!)ntX!/U['!(?_a"&f1"M#RDSn,<:mOAc,Zo)DVg +bLcb#r;#sP;cE,Uq>BsdJ,~> +JcEUe#5n;gk`>e+rlP8'<;QXt4-87Qq<7h5s&9*aoD/=ErrCjR!!)Wis8Duu_u9TA:B1AoOAl4t +s7-$f"&o7#PPkF`g].=N<;lk-f)PbG!!#u[;uji9R/iHKrrDTg!!'q9rsZjH!)SbV!!*&h!!)K> +rsAW!oBoRWmdp8PpA]X~> +JcEUe#5n;gk`>e+r5o&%;u6Or;s@!SL6I!!XC+s7--inGN:gnc/ZRrVlosH2R^H7,Is9!0c%7$2jVj +mSd'PoD/=Xs*t~> +JcEUe#5n;gk`>e+r5o&%;u6Or;sI9QZMab-*R"K_ +;ZMpY!!,LYqu6]F3rK$YX8W%uZMab,*R"K2!(?_a"4@/LbPhGAmlLCI"c3'U;ZP"mrsAW!oBoOU +mdp8PpA]X~> +JcEUe#5n;gk`>e+r5o&%<;QXs<9WQBmf2JTgf.8:oD/=Err_ck!)WXo"+L:NoDJUgJ,K?O*Uj$u +!)SdV!!&5ZrrJNLrVusqf)>UKJ,K?N*Uj#r!0d<[".9,hn,<7d`V]]>_uK6,!:SP>$2jVjmSm0R +oD/=Xs*t~> +JcEUe#lOMik`>e+b1up;!K]A?!!176rq??e$23uYkYkFJoD/=2s8VKepAFpnr;Zfbme?__p?qAE +s8VKep?V_[p?qP!rsAW!oBoOUmdp8PpA]X~> +JcEUe#lOMik`>e+b1up;!K]A?!!176rq??e$23uYkYkFJoD/=2s8VKepAFpnr;Zfbme?__p?qAE +s8VKep?V_[p?qP!rsAW!oBoOUmdp8PpA]X~> +JcEUe#lOMik`>e+b1up;!K]D@!!176rq??e$23uYkYtOLoD/=2s8VKepAFpnr;Z +JcEUe#5n;gk`>e+rS7=n!K]AA!!:=7q>:'qq=EfK;ss8Qr.4n,rsAW!oBoOUmdp8PpA]X~> +JcEUe#5n;gk`>e+rS7=n!K]AA!!:=7q>:'qq=EfK;ss8Qr.4n,rsAW!oBoOUmdp8PpA]X~> +JcEUe#5n;gk`>e+rS7=n!K]DB!!:=7q>:'qq=EfL<:9ARr.4n,rsAW!oBoRWmdp8PpA]X~> +JcERd$i0DXO8tC+kjIZuh#,;!OAh8)oD/=_rsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$i0DXO8tC+kjIZuh#,;!OAh8)oD/=_rsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$i0DXO8tC+kjIZuh#,;!OAq>*oD/=_rsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd%JfVZO8tC+mdp& +JcERd%JfVZO8tC+mdp& +JcERd%JfVZO8tC+mdp& +JcERd#PmuTO8tC+oD\Oop?q/.gt^'-h!"A*r;HX%r;#sP;cE,Uq>>gDiVs5^q=F#Q;ss8Qr:^/@~> +JcERd#PmuTO8tC+oD\Oop?q/.gt^'-h!"A*r;HX%r;#sP;cE,Uq>>gDiVs5^q=F#Q;ss8Qr:^/@~> +JcERd#PmuTO8tC+oD\Oop?q/.gt^'-h!"A*r;HX%r;#sP<)i;Wq>>gDiVs5^q=F#R<:9ARr:^/@~> +JcERd#l4)UO8tC+oD/C`$Mj;]kiggckjJ0Br;R*$q=F#Q;ss8Qr.4n,rsAW!oBoOUmdp8PpA]X~> +JcERd#l4)UO8tC+oD/C`$Mj;]kiggckjJ0Br;R*$q=F#Q;ss8Qr.4n,rsAW!oBoOUmdp8PpA]X~> +JcERd#l4)UO8tC+oD/C`$Mj;]kiggckjJ0Br;R*$q=F#R<:9ARr.4n,rsAW!oBoRWmdp8PpA]X~> +JcERd#l4)UO8tC+oD/Ccs83/uoCMD +JcERd#l4)UO8tC+oD/Ccs83/uoCMD +JcERd#l4)UO8tC+oD/Ccs83/uoCMD +JcERd#l4)UO8tC+oD/=as8;iks8;co$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD/=as8;iks8;co$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD/=as8;iks8;co$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#l4)UO8tC+oD/7_rVZKk$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD/7_rVZKk$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD/7_rVZKk$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#l4)UO8tC+oD.hS$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd#lO;XO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#lO;XO8tC+oD.hS$2jVjmSd'PoD/<8s5Etar;#sP;cE,Uq>BsdJ,~> +JcERd#lO;XO8tC+oD.hS$2jVjmSm0RoD/<8s5Etar;#sP<)i;Wq>BsdJ,~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBoO +JcERd$2jDYO8tC+oD/=QrsAW!oBoO +JcERd$2jDYO8tC+oD/=QrsAW!oBoR>mdp8PJcF^/$2jVjmQ4D9oD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBq\Zmdp8PJcF^/$2jVjmMh8UoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBq\\mdp8PJcF^/$2jVjmN%DWoD/=Xs*t~> +JcERd$2jDYO8tC+oD/=QrsAW!oBq\\mdp8PJcF^/$2jVjmN%DWoD/=Xs*t~> +JcERd$2jM\O8tC+oD/=QrsAW!p?p''b4GH,JcF^/$2jVjaoKTPpA+X[s*t~> +JcERd$2jM\O8tC+oD/=QrsAW!p?p''b4GH,JcF^/$2jVjaoKTPpA+X[s*t~> +JcERd$2jM\O8tC+oD/=QrsAW!p?p''b4GH,JcF^/$2jVjaoKTPpA+X[s*t~> +JcERd$2jM\O8tC+oD/=Qs8W!%p?q,`ORr;GJcF^/$2jVjO;mEOpAFj^s*t~> +JcERd$2jM\O8tC+oD/=Qs8W!%p?q,bORr;GJcF^/$2jVjO<*QQpAFj^s*t~> +JcERd$2jM\O8tC+oD/=Qs8W!%p?q,bORr;GJcF^/$2jVjO<*QQpAFj^s*t~> +JcERd$2jM\O8tC+oD/=Prs8Prmc[RgmeQd3s5Et`r;#b";s +JcERd$2jM\O8tC+oD/=Prs8Prmc[RimeQd3s5Et`r;#b$;s +JcERd$2jM\O8tC+oD/=Prs8Prmc[UjmeQd3s5Et`r;#b$<9WcDr:U)?~> +JcERd$2jM\O8tC+oD/=Prs8Prmc_dnOS8U's5Et`r:Z3Pb389er:U)?~> +JcERd$2jM\O8tC+oD/=Prs8Prmc_dnOS8U's5Et`r:Z3Pb389er:U)?~> +JcERd$2jM\O8tC+oD/=Prs8Prmc_dnOS8U's5Et`r:Z3Pb389er:U)?~> +JcERd$2jM\O8r5CoD/=PrsAW!oB>C:)r18eJcFd1$2jVS)cPtaoD/=Ws*t~> +JcERd$2jM\O8r5CoD/=PrsAW!oB>C:*SgJgJcFd1$2jVS*E21coD/=Ws*t~> +JcERd$2jM\O8r8DoD/=PrsAW!oB>C;*SgJgJcFd1$2jVS*E;7doD/=Ws*t~> +JcERd$2jM\O8r5CoD/=PrsAW!p?q/")`mTgJcFd1$2jBU)r0ZFpA+XZs*t~> +JcERd$2jM\O8r5CoD/=PrsAW!p?q/"*BNfiJcFd1$2jBU*SflHpA+XZs*t~> +JcERd$2jM\O8r8DoD/=PrsAW!p?q/"*BWljJcFd1$2jBV*SflHpA+XZs*t~> +JcERd$2jM\O8r5CoD/=OrsAVsmc`lW!)rLeJcFj3$2jBn!6XNhme6SNs*t~> +JcERd$2jM\O8r5CoD/=OrsAVsmc`lW!)rLeJcFj3$2jBn!6XNhme6SNs*t~> +JcERd$2jM\O8r8DoD/=OrsAVsmc`lW!*&RfJcFj3$2jBo!6XNhme6SNs*t~> +JcERd$2jM\O8r5CoD/=OrsJ]"oBti+O8q?*r.4n2rsJ\f3WP9*kjJ'~> +JcERd$2jM\O8r5CoD/=OrsJ]"oBti+O8q?*r.4n2rsJ\f3WP9*kjJ'~> +JcERd$2jM\O8r8DoD/=OrsJ]"oBti+O8qB+r.4n2rsJ\f3rkB+kjJ'~> +JcERd$2jM\O8r5CoD/=NrrW,lmf)DRar;:]q>>gDli..dq2cO7b5UT+me6SMs*t~> +JcERd$2jM\O8r5CoD/=NrrW,lmf)DRarMLaq>>gDli..dq2cU;b5UT+me6SMs*t~> +JcERd$2jM\O8r8DoD/=NrrW,lmf)DRarMLaq>>gDli..dq2cU;b5UT+me6SMs*t~> +JcERd$2jM\O8r5CoD/=Nrr`2poBuVA"l*#V)j&kSr.4n>s8Mp"glNHT;r%B9"7GdVr:Br=~> +JcERd$2jM\O8r5CoD/=Nrr`2poBuVA"l*#V*K](Ur.4n>s8Mp"glNNV;r%B9"7GdVr:Br=~> +JcERd$2jM\O8r8DoD/=Nrr`2poBuVA"l*&W*K](Ur.4n>s8Mp"glNNV<8@K:"7GdVr:Br=~> +JcERd$2jM\O8r5CoD/=Mrr`2poBuS@"j0a_!#mtM;t3ci3ZA&<;p,(&"7GdVr:9l<~> +JcERd$2jM\O8r5CoD/=Mrr`2poBuS@"j0aa!$++O;t3ci3ZS2@;p,(&"7GdVr:9l<~> +JcERd$2jM\O8r8DoD/=Mrr`2poBuS@"j0db!$+.P<:Nok3un;A<6G1'"7GdVr:9l<~> +JcERd$2jMbO8r5CoD/=Ms8Vuup@I_NkQC8:b)j/4s#R\h"-C[hmeu>Pmdp/Mr:9l<~> +JcERd$2jMbO8r5CoD/=Ms8Vuup@I_NkQC8:b)j/4s#R\h"-C[hmeu>Pmdp/Mr:9l<~> +JcERd$2jMbO8r8DoD/=Ms8Vuup@I_NkQC8:b)j/5s#[bj"-C[hmeu>Pmdp/Mr:9l<~> +JcERd$2jMbO8r5CoD/=Ls8Vuup@I_Lkdp3^kQ +JcERd$2jMbO8r5CoD/=Ls8Vuup@I_Lkdp3^kQ +JcERd$2jMbO8r8DoD/=Ls8Vuup@I_Lkdp3^kQ +JcERd$2jMbO8r5CoD/=Ks8W!!q=F%B[HIaT!!#sQ[cmbZ"7u?dr:'`:~> +JcERd$2jMbO8r5CoD/=Ks8W!!q=F%B[HIaT!!#sQ[cmbZ"7u?dr:'`:~> +JcERd$2jMbO8r8DoD/=Ks8W!!q=F%B[HIaT!!$!R[cmbZ"7u?dr:'`:~> +JcERd$2jMbO8r5CoD/=Js8W!"q=aFJm^_Q]g]/;m!!/2:\`j(]"S;?_r;?$`J,~> +JcERd$2jMbO8r5CoD/=Js8W!"q=aFJm^_Q]g]/Ao!!/2:\`j(]"S;?_r;?$`J,~> +JcERd$2jMbO8r8DoD/=Js8W!"q=aFJm^_Q]g]/Ao!!/2:\`j(]"S;?_r;?$`J,~> +JcERd$2jMbO8r5CoD/=Hs8W!!q=aFOqsM8`!Sie8!!+%o_!([`s76?dq>C0Xs*t~> +JcERd$2jMbO8r5CoD/=Hs8W!!q=aFOqsM8`!Sie8!!++q_!([`s76?dq>C0Xs*t~> +JcERd$2jMbO8r8DoD/=Hs8W!!q=aFOqsM8`!Sie8!!++q_!([`s76?dq>C0Xs*t~> +JcERd$2jMbO8r5CoD/=Gs8Mrrq>^0&oDe4Zg`-.k!g)X6^@VBus7uZlm/MS~> +JcERd$2jMbO8r5CoD/=Gs8Mrrq>^0&oDe4Zg`?:m!g)X6^@VBus7uZlm/MS~> +JcERd$2jMbO8r8DoD/=Gs8Mrrq>^0&oDe4Zg`?:m!g)X6^@VBus7uZlm/MS~> +JcERd$2jMbaoGB(oD/=Ds8Mr1q#g?^mZ@8F!m:-.^A7d+l2Q8~> +JcERd$2jMbaoGB(oD/=Ds8Mr1q#g?^mZ@8F!m:-.^A7d+l2Q8~> +JcERd$2jMbaoGE)oD/=Ds8Mr1q#g?^mZ@8F!m:-.^A7d+l2Q8~> +JcERd$2jMbaoGB(oD/=As1\C4q=`V>!!54Qq7cdhs*t~> +JcERd$2jMbaoGB(oD/=As1\C4q=`V>!!54Qq7cdhs*t~> +JcERd$2jMbaoGE)oD/=As1\C4q=`V>!!57Rq7cdhs*t~> +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/h"glEs*t~> +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/kkY.Ss*t~> +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ombGsHrQ51&!!)o="5N> +JcERd$2jMbaoGB(oD/ombGsHrQ51&!!)o="5N> +JcERd$2jMbaoGE)oD/ombGsHrQ51'!!)o="5N> +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/@2kJ,~> +JcERd$2jMbaoGB(oD/@2kJ,~> +JcERd$2jMbaoGE)oD/@2kJ,~> +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/cEOQc<6UAo`~> +JcERd$2jMbaoGB(oD/cEOQc<6UAo`~> +JcERd$2jMbaoGE)oD/cEOQc<6UAo`~> +JcERd$2jMbaoGB(oD/cEOQc<3UAo`~> +JcERd$2jMbaoGB(oD/cEOQc<3UAo`~> +JcERd$2jMbaoGE)oD/cEOQc<3UAo`~> +JcERd$2jMbaoGB(oD/cEOQc<3UAo`~> +JcERd$2jMbaoGB(oD/cEOQc<3UAo`~> +JcERd$2jMbaoGE)oD/cEOQc<3UAo`~> +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGB(oD/ +JcERd$2jMbaoGE)oD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/@#fJ,~> +JcERd$2jMbaoFKdoD/@#fJ,~> +JcERd$2jMbaoFNeoD/@#fJ,~> +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFKdoD/ +JcERd$2jMbaoFNeoD/ +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0G"oD/ +JcERd$2jMbg]0D!oD/ombGr(rW!(_3WK/ArW!*@b1uFYr2K^H~> +JcERd$2jMbg]0D!oD/ombGr*rW!(_3WK/ArW!*Bb1uFYr2K^H~> +JcERd$2jMbg]0G"oD/ombGr*rW!(_3rf8BrW!*Bb1uFYr2K^H~> +JcERd$2jMbg]0D!oD/ombGsHrW!'?3WK.@rW!+`b1uF\r2K^H~> +JcERd$2jMbg]0D!oD/ombGsHrW!'A3WK.@rW!+`b1uF\r2K^H~> +JcERd$2jMbg]0G"oD/ombGsHrW!'A3rf7BrW!+`b1uF\r2K^H~> +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0G"oD/ +JcERd$2jMbg]0D!oD/okhO=Bp](JZb1u4Sr2BXG~> +JcERd$2jMbg]0D!oD/okhO=Bp](JZb1u4Sr2BXG~> +JcERd$2jMbg]0G"oD/okhO=Bp](JZb1u4Sr2BXG~> +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0G"oD/ +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0D!oD/ +JcERd$2jMbg]0G"oD/ +JcERd$2jMbg]0D!meQdOrs&DsoB=uPOSf(_3m-7AoD/<^s*t~> +JcERd$2jMbg]0D!meQdOrs&DsoB=uPOSf(_3m-7AoD/<^s*t~> +JcERd$2jMbg]0G"meQdOrs&DsoB=uPOSf(_43H@BoD/<^s*t~> +JcERd$2jMbg]0D!meQdNrs&Dsmc_g9;uH\"ONQAHpACffJ,~> +JcERd$2jMbg]0D!meQdNrs&Dsmc_g9;uH\"ONQAHpACffJ,~> +JcERd$2jMbg]0G"meQdNrs&Dsmc_g9<;ce#ONQAHpACffJ,~> +JcERd$2jMbg]0D!meQdMrt#&$khO>')ZTk:b1u4Pq>@,iJ,~> +JcERd$2jMbg]0D!meQdMrt#&$khO>'*<6(@,iJ,~> +JcERd$2jMbg]0G"meQdMrt#&$khO>'*<6(=b1u4Pq>@,iJ,~> +JcERd$2jMbg]0D!meQdNs8W!,q=Eh*b)cT'ONQAHpAFics*t~> +JcERd$2jMbg]0D!meQdNs8W!,q=Eh*b)cT'ONQAHpAFics*t~> +JcERd$2jMbg]0G"meQdNs8W!,q=Eh*b)cT'ONQAHpAFics*t~> +JcERd$2jMbg]0D!meQe8rrW,^gqV#3O9.IAOM8j=h!"[us*t~> +JcERd$2jMbg]0D!meQe8rrW,^gqV#3O9.IAOM8j=h!"[us*t~> +JcERd$2jMbg]0G"meQe8rrW,^gqV#3O9.LCOM8j=h!"[us*t~> +lMgq`khLj6!o3#;g]%TXp?q,E3p?#-r8.GUk`A^^JH59A!uk1#kir+t~> +lMgq`khLj6!o3#;g]%TXp?q,E3p?#-r8.GUk`A^`JH59A"!(=%kir+t~> +lMgq`khLj6!o3#;g]%TXp?q,E46Z,.r8.GUk`AaaJH59A"!(@&kir+t~> +mf*CeglORJ!<)s#3fr.phu=#\p?q,E3p?#-r8IY[r9.&Z!)nu1b4Ea[OAc,Z;s=/Gs*t~> +mf*CeglORJ!<)s#3fr.phu=#\p?q,E3p?#-r8IY[r9.&Z!)nu1b4Ea[OAc,Z;s=/Gs*t~> +mf*CeglOUK!<)s#4-87qhu=#\p?q,E46Z,.r8IY[r9.)[!*#&2b4Ea[OAl2[<9X8Hs*t~> +nG`^jgf"1l;ilRQ#Ki-,)ZWglr8IY^r:]RB!'9?3q>B7P"oOG^)j':]m_J&dh#GOsgq`.OmKMg9 +)ZYutmJh\~> +nG`^jgf"1n;ilRQ#Ki-,*<9$nr8IY^r:]RB!'9?3q>B7P"oOG^*K]L_m_J&dh#GOsgq`.OmKMg9 +*<;3!mJh\~> +nG`^jgf+7o<02[R#Ki--*<9'or8IY^r:]RB!'BE4q>B7P"oOG^*K]L_m_J&dh#GOsgq`.OmKMg9 +*<;3!mJh\~> +nc&aiO8p5]qsK4&qsFTK)ZYutir9>_p?p]93p?#-r8dnXqufpu;s +nc&aiO8p;_qsK4&qsFTK*<;3!ir9>_p?p]93p?#-r8dnXqufpu;s +nc&aiO8p;_qsK4&qsFTK*<;3!ir9>_p?p]946Z,.r8dnXquft!<9Wb]kkj/HkQ^J=;ufnqr9sZ9~> +oD]$mp/:sQmd>YiqWRtI"HWU^pAF"O$2jVekQ![-meQeBs8W!!;ZMpIJ`u@^"n%HP;uHR_s*t~> +oD]$mp/:sQmd>YiqWRtI"HWU^pAF"O$2jVekQ![-meQeBs8W!!;ZMpIJ`u@^"n%HP;uHR_s*t~> +oD]$mp/D$Rmd>YiqWRtI"HWU_pAF"O$2jVekQ!^.meQeBs8W!!;ui$JJ`u@^"n%HP<;c[`s*t~> +o`#'lq,79TJ`uai"HWU^q>B@S$2jVekQ![-meQeCs8VuuO8tC>k^i0lmec2NO8tC?r:0f;~> +o`#'lq,79TJ`uai"HWU^q>B@S$2jVekQ![-meQeCs8VuuO8tC>k^i0lmec2NO8tC?r:0f;~> +o`#'lq,@?UJ`uai"HWU_q>B@S$2jVekQ!^.meQeCs8VuuO8tC>k^i0lmec2NO8tC?r:0f;~> +p&G'i!`K*AqriV!rpK[I"Ng^Cr;>^W$2jVekQ![-meQeCrr`2A!0I-B!:KjXJbJd1rpp-Xr9+6E +!6Y60s*t~> +p&G'i!`K*AqriV!rpK[I"Ng^Cr;>^W$2jVekQ![-meQeCrr`2A!0I-B!:KjXJbJd1rpp-Xr9+6E +!6Y60s*t~> +p&G'i!`T0BqriV!rpK[I"Ng^Dr;>^W$2jVekQ!^.meQeCrr`2A!0I-B!:KjXJbJd1rpp-Xr9+6E +!6Y60s*t~> +pAb0j!m1M)rTO:Lrpta8rq$0XrTFBG!6Y6;kPkkdq +pAb0j!m1M)rTO:Lrpta8rq$0XrTFBG!6Y6;kPkkdq +pAb0j!m1M)rTO:Lrpta8rq$0XrTFBG!6Y6;kPkkdq +pAY6mo,CX,kQ:2DpAXl>r;QKnp@I_NkQ=a&oDIeO$2jVekPuRcmeQeErri8qO9!H&kQC8Eq>($f +JcGECrqufl!V>aYkQK$.OSShGs*t~> +pAY6mo,Ud.kQ:2DpAXl>r;QKnp@I_NkQ=a(oDIeO$2jVekPuXemeQeErri8qO9!H&kQC8Eq>($f +JcGECrqufl!V>aYkQK$.OSShGs*t~> +pAY6mo,Ug/kQ:2DpAXl>r;QKnp@I_NkQ=d)oDIeO$2jVekPuXemeQeErri8qO9!H&kQC8Eq>($f +JcGECrqufl!V>aYkQK$.OSShGs*t~> +p\tBoq2bU!roaFOpA+[bK)bfI!r;QXroaL-!0I$Skl1teq +p\tBoq2bU!roaFOpA+[bK)bfI!r;QXroaL-!0I$Skl1teq +p\tBoq2bU!roaFOpA+[bK)bfI!r;QXroaL-!0I$Skl1teq +q#CBl!qnZRroaLQpA+XaJcGZJs82rop?qqD"B.ATr;>gZ$2jVekPuRcmeQeFrsJ]"g]3H"kjJ0? +r.4n6rsJ]"p?q/.O9")3r:L#>~> +q#CBl!qnZRroaLQpA+XaJcGZJs82rop?qqD"B.ATr;>gZ$2jVekPuXemeQeFrsJ]"g]3H"kjJ0? +r.4n6rsJ]"p?q/.O9")3r:L#>~> +q#CBl!qn]TroaLQpA+XaJcGZJs82rop?qqD"B7JVr;>gZ$2jVekPuXemeQeFrsJ]"g]3H"kjJ0? +r.4n6rsJ]"p?q/.O9")3r:L#>~> +q#:^!q:kt3kihI.q>>gDq#:^!q=a7?k`>f"q>BLW$2jVekPuRcmeQeFrsAVsO9")"mdp8PJcG!7 +$2jVjmc`F+OS8VEs*t~> +q#:^!q:kt3kihI.q>>gDq#:^!q=a7?k`>f"q>BLW$2jVekPuXemeQeFrsAVsO9")"mdp8PJcG!7 +$2jVjmc`F+OS8VEs*t~> +q#:^!q:kt3kihI.q>>gDq#:^!q=a7?k`>f"q>BLW$2jVekPuXemeQeFrsAVsO9")"mdp8PJcG!7 +$2jVjmc`F+OS8VEs*t~> +q#:Zup5f:0kjJ' +q#:Zup5f:0kjJ' +q#:Zup5f:0kjJ' +q>Ud!q=B[ekihX6r.4n?rsAW!oB>BWORr;GlMh1gq>gDkPkkd +q=F%<3`GYGr:U)?~> +q>Ud!q=B[gkihX6r.4n?rsAW!oB>BYORr;GlMh1gq>gDkPkkd +q=F%<3`GYGr:U)?~> +q>Ud!q=B[gkihX6r.4n?rsAW!oB>BYORr;GlMh1gq>gDkPkkd +q=F%<4&khIr:U)?~> +q>Ud!q=@NGkjJ' +q>Ud!q=@NGkjJ' +q>Ud!q=@QIkjJ' +q>U`up?kjXkjJ0BJcG<@#lODakYkFJpAF4U$2jVekPuRcmeQeGrs8PrmSd'JoD/<8s5j7dr;#sJ +;cE,Xr:U)?~> +q>U`up?kjXkjJ0BJcG<@#lODakYkFJpAF4U$2jVekPuXemeQeGrs8PrmSd'JoD/<8s5j7dr;#sJ +;cE,Xr:U)?~> +q>U`up?kmZkjJ0BJcG<@#lODakYtOLpAF4U$2jVekPuXemeQeGrs8PrmSm0LoD/<8s5j7dr;#sJ +<)i;Zr:U)?~> +q>U`up?kjXkk"WJJcG<@#lOMikYkFJpAF4U$2jVekPuRcmeQeHs8W!%p?kjXkk"WJJcFj3$2jVj +kYkFJpAFj^s*t~> +q>U`up?kjXkk"WJJcG<@#lOMikYkFJpAF4U$2jVekPuXemeQeHs8W!%p?kjXkk"WJJcFj3$2jVj +kYkFJpAFj^s*t~> +q>U`up?kmZkk"WJJcG<@#lOMikYtOLpAF4U$2jVekPuXemeQeHs8W!%p?kmZkk"WJJcFj3$2jVj +kYtOLpAFj^s*t~> +qZ$Tn#PRRa;ss8Qr.4n=rsAW!oBoOUme6SVli.:hq>gDjo5Yb +q=F#Q;ssATr:^/@~> +qZ$Tn#PRRa;ss8Qr.4n=rsAW!oBoOUme6SVli.:hq>gDjo5Yb +q=F#Q;ssATr:^/@~> +qZ$Tn#PRRb<:9ARr.4n=rsAW!oBoRWme6SVli.:hq>gDjo5Yb +q=F#R<:9JUr:^/@~> +qYpm"q=a5T;ss8Qr.4n=rsAW!oBoOUme6JSli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=a5T;ss8Qr.4n=rsAW!oBoOUme6JSli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=a5U<:9ARr.4n=rsAW!oBoRWme6JSli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pp&G!gqu7!#q>gD +jo5Ybq=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pp&G!gqu7!#q>gD +jo5Ybq=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pp&G!gqu7!#q>gD +jo5Ybq=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pp](9k"cr^'b5D29rsAW!mcYT/kjJ9Eli.:hq=F#Q +;ss8Qr.4n0rsAW!oBoOUmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pp](9k"cr^)b5D29rsAW!mcYZ3kjJ9Eli.:hq=F#Q +;ss8Qr.4n0rsAW!oBoOUmdp8PpA]X~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pp](9k"cr^)b5D29rsAW!mcYZ3kjJ9Eli.:hq=F#R +<:9ARr.4n0rsAW!oBoRWmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#CBl!;$-h%o_9]r;Zfpq>gDjo5Ybq=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#CBl!;$-h%o_9]r;Zfpq>gDjo5Ybq=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pq#CBl!;$-h%oh?^r;Zfpq>gDjo5Ybq=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#:Hoq=>R'!!-$drqm&tmcYT/kjJ9Eli.:hq=F#Q +;ss8Qr.4n0rsAW!oBoOUmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#:Hoq=>X)!!-$drqm&tmcYZ3kjJ9Eli.:hq=F#Q +;ss8Qr.4n0rsAW!oBoOUmdp8PpA]X~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pq#:Hoq=>X)!!-'erqm&tmcYZ3kjJ9Eli.:hq=F#R +<:9ARr.4n0rsAW!oBoRWmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#:Kpp?p'aqu@-EOSS_GmcYT/kjJ9Eli.:hq=F#Q +;ss8Qr:U'kmcaAgrrVWPpAP$kh"gsOT)d('rrVWPp?qt\gun\Dr;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#:Kpp?p'aqu@-GOSS_GmcYZ3kjJ9Eli.:hq=F#Q +;ss8Qr:U'kmcaAgrrVWPpAP$kh"gsO;ZQCWrrVWPp?qt\gun\Dr;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pq#:Kpp?p'bqu@-GOSS_GmcYZ3kjJ9Eli.:hq=F#R +<:9ARr:U'kmcaAgrrVWPpAY'nn_DprrrV]j;"">bmcaB5rrV`Ggun\Dr;#sP<)i;Wq>BsdJ,~> +qYpm"q=F#Q;ss8Qr8RbVq>C6nr;$6i!;ZC$f#5RlSgrb]tqu@'bb4G&b)Z]*iq>BRY$2jVjmSd'PoD/=YrrLeJrVustbL$7ifhVMH##i_F +nc/[ZqYpVh!6ap4!SL6I!!-$Anc&^^!!)N]rrN&npAYHsq=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr8RbVq>C6nr;$6i!;ZC!e!4)P'!E8R9rrBA'!!QULp!:o[[!4)P'!E8RZrrUUK7.gK[r;$'d$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#R<:9ARr8RbVq>C6nr;$6i!;Z?g"7Z?kn+-J[r9j1Urs/&o!:TsfkfV0M$2jVjmSm0R +oD/=Zrs&;jkhO=B*W,mE43I0_kT'ZemeQeHrsAW!oBoRWmdp8Pp\t5Cr;Zgsci3upr;["#s8SJe +PPY:\nGlDTrr@QI!!$!frrSSgPP"kUr;$'d$2jVjmSm0RoD/=Xs*t~> +qYpm"q=F#Q;ss8Qr8[eZrD!@9rr3*"GlX',rrUjR7/$W^T)b)IrrN);r;[1dhZ'2JPQ1Z.!0caK +!W;cUrsAW!oBoOUmdp8Pq>UTqq=Eh*rlP4>qZ$n#gtWhKkjJ9Eli.:hq=F#Q;ss8Qr:p9snc/Y/ +;ZHf]dJjXG!!!s:!!&5_nc/[ZqYpVh!6as5#P%ip)cH_:PO\YTnc/[Zp&>)c!6b-:$2jVjmSd'P +oD/=Xs*t~> +qYpm"q=F#Q;ss8Qr8[eZmf3@Yrr3)s3WRA%rrTJ+M"^iM;ZP#5rrMSMr;[1dqu9RpbQ%T'!6a^. +!W;cUrsAW!oBoOUmdp8Pq>UTqq=Eh*rlP4>qZ$n#gtWnMkjJ9Eli.:hq=F#Q;ss8Qr:p9sdJs7f +;ZHg@dJjU&!!"$ +qYpm"q=F#R<:9ARr8[eY`;ia5rr_$V!:Tmd!e13fp\t?c!!)K[rrL)7rW!=&OT4hN!:TsX!!)KR +rrN&nk5Pbcq=F#R<:9ARr;$?qr;#sJh#>Fr<;QY$<8?7L!9ikHr9O@hr;#sP<)i;Wq>C$f#FPPl +*E3"=n'V.CR/d4-;ucpes-WkNqYpWe!)W4c#FPPl*E3"=n+$DZR/iHDrrV]j;"jnqr;#sP<)i;W +q>BsdJ,~> +qYpm"q=F#Q;ss8Qr8[eZrcnL-rr3*!:&m]\rrSemG4tq;T)b)Jrt53)!!#&@!!#FeT)b)Ts.9:T +li.$Y!6aR*$2jVjmSd'JoCi"TquliembHUraoGB;!!\N(!9ikHr9O@hr;#sP;cE,Uq>C$f#K6[2 +nGiKL[F,!]`;i +qYpm"q=F#Q;ss8Qr8[eZqDnW"rr3)h!!%iRrrQ+!X7lPp;ZP#6rrDNe!<5+[!""J];ZP#@s&/p@ +li.#b!:o=Q$2jVjmSd'JoCi"TquliembHUraoGB;!!\N*!9ikHr9O@hr;#sP;cE,Uq>C$f#ESqA +s8VqWh9l60O8t+:s8%i5s8VoirrQ+!o()ecO8t+:s8%i5nG`LaoD\kj!;lNj$2jVjmSd'PoD/=X +s*t~> +qYpm"q=F#R<:9ARr8[eZg].?Crr3)>!!'q9rr_ck!7poE"7Z?kn+H\\`Vol;49#9e_sm^,n,MnX +!:T:S!q?7ek5Pbcq=F#R<9WrIq=sjjq=F%0h#5@q<;QY"O<">bmeQeHrsAW!oBoRWmdp8Pq#:Rp +!5nj:glV-TrsDO%_uKblORrMPq>($lnGlDUrs)="_uKblORquA!;Z6d!<>sirsAW!oBoRWmdp8P +pA]X~> +qYpm"q=F#Q;ss8Qr8R_X`;i=*rrCaO!!_<[s8Gan[J'V%T)b)JrsX/Q!4Dk,rLZLXT)b)SrrDl[ +rrSemhWOnBr;#sJ;ZQ&$q#CNPmeQeHrsAW!oBoOUmdp8Pq#:E7!-\2<&D9uC;g.[1s8>l>ffD1: +;g/->$,oids8A$?3`EHcrrpA?gf$7Wr;Qi;!-\8>%K03nr;Zff;`[k"T)d(6rrq(S3`C4kqu6`: +!-\2<+k]dT;j77]`DbPj3d1I#7/[)`;j6cN3`D7BrDQGk;il1ursAW!oBoOUmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr8R_XO8t+9rrBA(!!`?#s7u]qh=gjM;ZP#6rsUpg!8[\Tmo,&B;ZP#?rrDl[ +rrQ+!qrdt_r;#sJ;ZQ&&q#CNPmeQeHrsAW!oBoOUmdp8Pq#:DW!3>qq"L:re;lfot#k(]mZ8t%h +;lfls$'8*Vs6l%13`Fl6rrnK_gf$87r;Qh[!3?"s%I[5Or;ZfF;`[k";ZQCfrrfW+3`E*UrrS8^ +X82c=Z;We_bQ%U(;qt;4X7&uCr;Z4abL0 +qYpm"q=F#R<:9ARr8R_X:B8<3rr[`N!)W[p"5ElQoCr7enGiRXpAYTl!!#jes8U%<_sm^,n,E=e +q2;rr3/lIoJL/f)#CJ +:B8uBs!$u_<'+(Js8Pkogf-Ad`DjbQs2@t+R8c7In,L@+!!#u[f(o=Pr;#sP<)i;Wq>BsdJ,~> +qYpm"q=F#Q;ss8Qr8R_\nc/[Zs8U(;!"QF:s7--inGiOeO?,F$[Jp12T)b(o3]`AZqu6ch!!'G' +rs,.rPQ1[%;mlW)(YM_J;g.[1s2@q#`B$&'nGiGc:&n4SG3T#1r;#sJ;ZQ&$q#CNPme6SErsAW! +oBoOUmdp8Pq#:H8!!&5[rr\kn!':)Z!q?6\qu@)H!!(4Bs8Gan[IX:s##5-uPQ1ZTqu?`drVlu= +!!&5\rrqrn!:^$Zq>^`Cs8S\k!':)Z!:]pd"2t6?PPb@[TDSZjPQ.9Q!!Von!:^$Zq>^P[o)&If +7/?ihr;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#Q;ss8Qr8R_XdJu]7rrA/[!!V3Ys3^m8rr3/jO?,F$h>[EZ;ZP"&3]`B"qu6cH!!(jO +rs)I&bQ%U(;r.HQ"L:re;lfot&!0`RO?,G's8VOd!!#rZX6KWfr;#sJ;ZQ&&q#CNPme6SErsAW! +oBoOUmdp8Pq#:GX!!(4>rs;U(!'1)[70!;8qu@)H!!)Tis7u]qh9u0#"3^`E;u?Xnrr\>_!6brr?!q!!:@D;u?V!dJu]8s3g`D!R&ph!!%iNrsAW! +oBoOUmdp8PpA]X~> +qYpm"q=F#R<:9ARr8R_XR/iHMrs;I$!)W:es-WkNrr3MJO?5O'oDej\!!)I`4$/Q#rr\Yh;"OSa +&Ff`#n,ND`<:g.inUFM"<7_'K%o60g:HLYhs8U&;!!#u[f'32:_!0d<["&Annn,31cnbW:en+$;U##L]fPQ1ZNq>^QbRJ[$b +_tj<=r;#sP<)i;Wq>BsdJ,~> +qYpm"q=F#Q;ss8Qr8R_hrD!@#s8Gan;ZM"@s2=t+s8VZh!!Z0u!0dH_TDANfnGN:g`;fo9qYq"s +!0dH_T)b)Ts.98k3rT*\nGf-X!!5Rgo)&If7-X^Tr;#sJ;cEYMp?;J1rlP4>qZ$h!)Z\[WpAF7V +$2jVjmSd'PoD/=ZrrN'nrVuq^rr3>r!!'G,rD!?Vs76-h)n!iVGlX'.s4IAPs*4T4nGgH-!;ukh +!!%2th#.0QrD*=l!0dE^(\.P+nGdb67.^@P!!(4Bnc/Zts8>[mPPkF]rD*=l!0dE^'\NHdPQ12K +PQ.6T!-[/Qnc/[Zs76-h$aou+!!)NfGlY8?pA+^pr;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#Q;ss8Qr8R_hmf3@Ds7u^`;ZNlus,[5:s8UOE!!CFEs&8dp!(?_a"-"oS2fkYkFYh"Kt1h#>Fr;u6P!;]Pknkk=r?rsAW! +oBoOUmdp8Pq#:?_rVusebPqMjdJs:'s6fpfbQ#uj!(>YcmQ(?ks8TA)7/o:JM#[L:!(?bb;ZHfu +gt_i-!:Tme!CY-1rs@*R70!9J!/U78rW!;rs3^lIh>cpD!6bZ>;ZK5cqDnW4me6JV$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#R<:9ARr8R_k`;ia+s4dU<;ukMLs%`X4s8SJe!)WXp!q60Zq>^MZqu6ao!0d?XrsJ8r +!:TsX!!)KfnbrLl3rf8Es7,pc!lP&+qu?`7l2Lqbq=EfL<;kVGkl'<9aoGEC$f!6+p;!L*!Os!*p3;"O_+!!)KfR/d5No?-J$!:TsfIfP]&!!'q:nP9.Kr:0ad +!nQ/^r;Qc9rVut_n,E>'R/iHNnGiR,o>L\0;#gQ`!)W:e`;fo,r;Qc9rVut_n,E=mIfN=6s-WlU +nbrM)f%f&K!0dH_R/d5No@sUd!q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr8IZ#T)a'7r;Zig!!)rsT)b)Ts*4T4nGgH-!;ukh!!%33f`2#9r;Qi;!(?Y_ +,+ek!s8S\kPQ11R!4Dk*:&pLXT)\k7p;I"3bP_?b!4D7gl2Ltcq=EfK3m-pH!Qn@[mbQ#N]G5hLC`;i='rrN(jr;ZuWs.9:7qu6_i!(?hd +'(Q#&nGi%Z!8dbUnc/[5s.9;7p\tQtq=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr8IZ#;ZNlumf5c(!(?bb;ZP#@s#L.9s8S/\7/['`!!')"Z2amJr;Qh[!/UIN +,#\Kbs8Q!tbQ#uj!8[\D!!(4B;ZHfup5f7So)/>F!8[):l2Ltcq=EfK3m-pH!Qn@ +qYpm"q=F#R<:9ARr8R_qnGiR?s2=u%R/iHKnGiRXs7$'h_uK7&!0d?NrW!,Qs*k"Kn,31e:B8C!e!6+m:"dAud:B8uFrru7!_uH,);#UD$:B6UYrr<&M`;ia6rs.BsdJ,~> +qYpm"q=F#Q;ss8Qr8IYrf`4G?f`63o:&rK::&rK;rD!@Ls8W'n!6bD7!-\AA!hTH\r;Qhj!0d6Y +$_IE_s8S\kPQ/T%G5hLR`;i=+T)a'7s8I9DbQ%U7!6aR*#5n;gkYjObnD"&+)uK[:)j('A"WIHs +kk=r?rsAW!oBoOUmdp8Pp&>'`H2[dEs.B,f"[rC]!!)Nfrs8Qu!6b@:!6as/!!LLFT)b)KrrM\9 +rW!6(nc/[Znc/[Zrr3+n!6bD7q>^L`q>UKdH2[dGs.9:Tqu6_i!0dE^'(Q#&nGi%Z!:^$gr_ +qYpm"q=F#Q;ss8Qr8IYrZ2f^\Z2gro!!)Td!!)Timf3@bs8Voq!:p.g!3?,!!`K)Tr;Qgs!6b3< +$W@&Ks8Q!tbQ!Y(X8`,2O8t+:;ZNlus8"bVo)J_g!:o=Q#5n;gkYjObnD"&+*W,m<*K^9C"W[Tu +kk=r?rsAW!oBoOUmdp8Pp&>6E3WK.Js&8ao"Gm*+!(?ec#k%`no(i=do$[=6"S2Rk!6b*9%+70: +!(?k8!(?k8!(?ec"B,!`K*Brr35O!(?kedJu]7rs/B#!:p.g +!:oma$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#R<:9ARr8IYgIfRCdIfS'=!)W^N!)W^q`;ia6rs. +qYpm"q=F#Q;ss8Qr8IYer;ZiS`;m=GT)b)G!!*'!o(`7gbQ"17PQ(R``;i=(rrSem7/?ihT)b)T +s.9:Ts.B,f"@W9^!0dE^#G2">s8S\kbNJm1r;#sJ;cDK,oB64t3rAsY)cQ[W"WIHsme6SErsAW! +oBoOUmdp8PoD]'7!!(37!!&,Z;[&Bbnc/[ZrVm1r!0csR!;uBf!;ob!7,Is9!0d'T$cN)GbOPW5 +nF?PZnG`FmT)d(7T)\kQrDN][p\tH:!!(37!0d<[!hTIVrr3W%!!)Ngnc/[Zs8W$m!6bD7!6b-: +$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#Q;ss8Qr8IYemf3@bO9",:;ZP"h!(?kedeNkGo)DVgbPqMCO8t+7rrQ+!M#%&W;ZP#@ +s&/p@s&8ao"Gm(V!6bBA#?(Wns8Q!to&p#Xr;#sJ;cDK,oB64t3rAsY*E2mY"W[Tume6SErsAW! +oBoOUmdp8PoD]&W!!)Rg!!&,Z;Zt;DdJu]5rs;U(bL-AYr6bQFr)3cTqu9RpbOkfAO8o:OdJu]8 +dJu]6rs)I&o)DVg!0I.X!6b-:#*8fbnl#P3qu6^r!6bBA#LWT?s8ULI7/m2kmf3@Ys&/pgp\tQt +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr8IYe`;ia7:B:"V!!)JU!0dH_RJHme;#g%c!:Tpe!`&g6rVlui!!'q5rsA2q +!:TsX!!)KXq#CoBnGiRXs8VTh;#gRc!)VhX#Q4DhkYtO:h"0_1aufM$!?G/;aordch!Xn6li.:h +q=F#R<:9ARr:Bpn:B45k!!#iWrDWpgs-WkNrVm5p!!)JU!0d>K!!)pr"iLB1!!)K[rsDO%;#cp` +PQ.$NPQ(RfnGlDcnGiPcOSr,Yn+Zhd:B45k!!)Kcrr_ck!:Tpe#FPRUs8SJePQ(Rd`;ia7nGlDZ +rsAW!oBoRWmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr8IYgrcnLOGlZ_$`;k)#!-\DBnc/[f;[#SGs.9:Trr3&=!(?bb!lY.-q>Ukq +!0dH_T)b)TT)\kQrDNi_s.9:Trr34q!6bEBT)d'trsAW!oB9+OkihI&q=FUR!U(L#!!-#[qoT'] +!8R#9r9O@hr;#sP;cE,Uq>Bja#5q9shOae3qYpZg!!)NersIEZ7)].is7--inG<.dT)b)IrtYK- +!8d8H!:]PS!8dbUrcnLes.9:Tnc&gl:&s.C!0d<[!hTIVrr3W%!!)Ngnc/[Zs8W$m!6bD7!6b-: +$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#Q;ss8Qr8IYgqDnW43WT'WO8u>C!3?/"dJs:F;[&!Ss&/p@rr3%]!/URQ!g!DUk% +!6bEB;ZP#@;ZHfZrDNjBs&/p@rr34%!:p0i;ZQCOrsAW!oB9+OkihI&q=FUR!U(R%!!-#[qoT'_ +!8R#9r9O@hr;#sP;cE,Uq>Bja#4DNlqbmL +qYpm"q=F#R<:9ARr8IYgg]11B!)W^q:B8sA!7q2MR/d6bnGiRXrr3$q!5na7!`&g6qYq#p +!!)KfnGiRXnGiPcOSr,gn*pAXn,NFX!)W^qnGlDJrsAW!oB9.QkihI&q=FUR!U(R%!!-&\qoT'_ +!8R#9r9O@hr;#sP<)i;Wq>Bja#/pR=rr<&fqYpVb!0d?\$%Drm:B9k`R/iHIrr_ck!:TR[$H3!A +s-WkNs-Wj`rr35Y!)W^c!!)KXrs$FB;#^Lqn,31fnGiRXrr34k!0dH_R/iHMrs$FB;#g%c;"jnq +r;#sP<)i;Wq>BsdJ,~> +qYpm"q=F#Q;ss8Qr8@Sf`;ih3!<<)i!!%9E[K$9t!!)NbrrSemPQ(R``;i=(rr^pS!6b)o"WII* +meQeHrsAW!oBoOUmdp8Pq>Up';g.[1s2=sP3`;fo-nc/[Zr_BsdJ,~> +qYpm"q=F#Q;ss8Qr8@SeO8r2Z70!;8!(8jJh>dN'!(?Y_!`K*Brr3%]!/URQ"0qn,o)/Lsr;T[q +bQ%T@!6bC@!6b6=!`K*Brr34%!:p0i;ZQCOrsAW!oBoOUkjJ'9q"Y!boB?,Q!BQ>@b5L*!*<>BRY$2jVjmSd'PoD/=[rrW$qX8`,(O8q]KZ2d;irr3/Ws8ULI7/[&bn,34io)JOd!3?,!#4C:H +s&/p@qYpWn;lfot(6AMas3^m8s7u]qX8i#p!!)TiZ2d;irr2uRr;Qip;lfot&!-cZs,[4Kqu?Lk +bPtK@bPqMUdJu]8s3^lIM#@:7!(?ke;ZP#@r;$@!r;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#R<:9ARr8@Se:B4>oPQ1ZN!0[CZoDeiY!0d9Z"7Z?kn,E=g:B8<1rrRZM;#C8%r:'ae +n,MnX!:TFX!:Tgb%IjDun,NFX!)W^qnGlDJrsAW!oBoRWkjJ'9q"Y!boB?,Q!BZDAb5L*!*<>BRY$2jVjmSm0RoD/=[rs[[^f)Pd?:B6UYIfP]3rs&#Ks8SJePPkF\`VoiA;#gRN!!(ULrs%oH +s7$'hn,!&'gf2l)s7&kbPQ.$NPQ0D +qYpm"q=F#Q;ss8Qr8@STo)8UlG5qUA:At4tnGiOf:&oJ:rs\>Ns8S\k!4Dk*:&pLUrtkZ0!!'G, +s8AQXs.9:Ts8S\kPQ0;9!8d_T"l/VIT)b)Srs>:tbQ%U7!0dH\l2M%eq=F#Q;s9rVmW3 +:&k8m:&k9;s8>[m!)ijtPQ.6TPQ(Rcnc/[Zs76*g$@)UOPQ1ZT!!%:4q>Ud!q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr8@STdf'4KX8i4rrVupdrr3)s!!')!rs\>Ns8Q!t!8[\D!!(4?rtkM3!(>ZC +s6imBs&/p@s8Q!tbQ"jJ7/Qu`"l0.X;ZP#?rs;U(o)J_g!6bE?l2M%eq=F#Q;s +qYpm"q=F#R<:9ARr8@STRJm0gf)Pd*rVuq^rr3)U!!(ULrs\>Ns7$'h;"O_+!!)KcrtaAi!0d$S +s2=uUnGiRXs7$'hn,Ik;PQ(Rqn_F07!!)Kfs7$(cs8VTh!:Tscl2M%eq=F#R<9WrLp\Y6koB9-R +*K^6Bs4mV;#2C4!kjJ9Eli.:hq=F#R<:9ARr;$?qg].=N<;lk-f)N\h!)SbV!!*'!R/iHKrrDTg +!!'q9rsV['!*#%Z!5nj,!!)Karrh*W!)QYo!".Ud!q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr8@SXr_!, +apd(hmdol1kSjNcmeQeHrsAW!oBoOUmdp8Pq#:Bc3rK$YG5hLBrH\>A#"7>Jnc/[Zr;Qli!!&5] +rrLeJrW!-APQ1ZT!0d6Y!V/;M!"!iKs7--inGiO-rW!1HT)d(7s8@6A!!,LEr;Qfg3rK$YG5hLB +np137"[q5IT)b)Srs8/q!:^$Z!!#ss!!%3Arri9q!!%3 +qYpm"q=F#Q;ss8Qr8@STqYgHph>[EV;ZHfRrVm4d!!#rZ;ZMXRs&8ms"B,:#7/Ql]!7LiHruM+> +$]+g]!6bEB;ZP#@n,<:mOAc,Zo)DVgbPqMJ;ZQCgs&/mt3f*&#$2jVjmSd'PoD/=[rri8qoB>!, +apd(hmdol1kT'ZemeQeHrsAW!oBoOUmdp8Pq#:BC3rK$YX8`,"mlLCI"c3'UdJu]4rr^[L!6b?@ +!4)P'"s(nes&/p@q>UKD3rK$^X8i4J!(?hd!0I0[#HLc'o)JaY3rK$ZM#7,M!Ra%-!!')!rrLP/ +rW!+Xqu9RpbPqMIdJu]8s3^lI;uQasX8`,!n,<:eX82c%r;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#R<:9ARr8@STh#79RoD\dh!!'q8rs;I$!*#%Z!5nj,r;Zq!!!&5ZrrAJd!<4)>!$&oH +!!)KfnGiRXs2=s<:lnWV!<;Qh!:TsfnGlDbs8N'#:]SDtrsAW!oBoRWmdp8Pq>UTqq=Eh*qoT?& +kjJ'1kia#ekjJ9Eli.:hq=F#R<:9ARr:p9mR61BJ!DqAHrrC%9!!U:?s-WkNqu6bd!!)Kdrr@QI +!!XJ4s7$'hn+ltaR61BJ$;f=Rs-WkNs8VUbrW!#N!)W[p!6+j9!5n^6!LZ%K!!,pIrr2tdr;[#= +s7$'hn,E=mR/iHNs-Wj`<;ljtf)G[L`Voi;f(o=Pr;#sP<)i;Wq>BsdJ,~> +qYpm"q=F#Q;ss8Qr87MVT)\lJrr3)R!!'G)rrLeJrW!0BPQ1ZT!0BtT!!(4O( +!0dH_T)b)Ts8@6A!!PdIs.9:Trr3:s!6bEBrD!=mG3T#5r;#sP;cE,Uq>C$f"8VQPh#5A*h!!tn +pA+FMkW/_-meQeHrsAW!oBoOUmdp8PpAY3fmdBrO!qu'RlMpnP!;>p^!qu'MpAY&Vr;?Qr +p?qPHrrVo^meZt`mK!1Vrs&#o!;uHPr;6Kpmdp5R$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#Q;ss8Qr87MV;ZHgprr3)+!!(jQrrBA'!!XIes8Q!tOT#4\7.U0R!RapG!"U*Ns8Q!t +bQ%T@!6bEBmlLCI"c3'U;ZP#?rrl=$o)JaYrVur!l2M(fq=F#Q;ss8Qr:p9oq=Eh*rQ5W*kihX3 +q=a7?3WSC3q>BRY$2jVjmSd'PoD/=XrrVo^meZqbp?qP;s8VKep@/(`p?qABrrr#XpAb0jr;Qil +mdp2Q!qu'MqZ$T`!;uHg#1r:B.Mqu6]boD&=lr;#sP;cE,Uq>BsdJ,~> +qYpm"q=F#R<:9ARr8@SWnGiPcrVltL!!)Wgrr@QI!!XJ4s7$(cOT#4[PPG.YR8j.c%NX.#nGiRX +s7$'hn,NF,qu@)As7$'hn,NFX!)W[p!6+p;!7pE7$2jVjmSm0RoD/=Zrr`)gkhQ-Z%c$:3oCi"R +mcZ_4kjJ9Eli.:hq=F#R<:9ARr:^-lp?qAFrrVo^oBQAUmJutMrrVo^me6YaoB>oJs8;fp!qu'R +p\tX!UfRSrsAW!oBoRWmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr6>9AmJutYrri9"s6f=JrrVo^p@8.ap?qPArrMQZkl1teq=F#Q;ss8Qr:p9o +r:]RBrnRP;%IWrcr;?9VkW/_-meQeHrsAW!oBoOUmdp8PJcG]K"7cElnEp5^r;#sP;cE,Uq>Bsd +J,~> +qYpm"q=F#Q;ss8Qr6>9AmJutYrri9"s6f=JrrVo^p@8.ap?qPArrMQZkl1teq=F#Q;ss8Qr:p9o +r:]RBrnRP;%IWrcr;?9VkW/_-meQeHrsAW!oBoOUmdp8PJcG]K!n%':m/ICiq=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr6>9AmJutYrri9"na>i +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#:Hoq=F%RkR[+Qq>C0jr;#dE3WSC3q>BRY$2jVj +mSd'PoD/<8s8Ds"nc/[ZmJdLjq=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pq#:Hoq=F%RkR[+Qq>C0jr;#dE3WSC3q>BRY$2jVj +mSd'PoD/<8s8Ds!dJu]%rsAW!oBoOUmdp8PpA]X~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pq#:Hoq=F%RkR[+Qq>C0jr;#dE3rnL4q>BRY$2jVj +mSm0RoD/<8s8Ds!R/iH;rsAW!oBoRWmdp8PpA]X~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pp\tNsq=aFOpA+O^rr3<&q>gDrVlrufui[]$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pp\tNsq=aFOpA+O^rr3<&q>gDrVlrqZHDP6$2jVjmSd'PoD/=Xs*t~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pp\tNsq=aFOpA+O^rr3<&q>gDrVlrSJ'.-X$2jVjmSm0RoD/=Xs*t~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8PpAb$fr;R*$q>gD +jo5Ybq=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8PpAb$fr;R*$q>gD +jo5Ybq=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8PpAb$fr;R*$q>gD +jo5Ybq=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!8R#9r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!8R#9r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!8R#9r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!8R#9r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!8R#9r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!8R#9r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#Q;ss8Qr.4n=rsAW!oBoOUmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sP;cE,Uq>>gDjo5Yb +q=F#Q;ss8Qr:^/@~> +qYpm"q=F#R<:9ARr.4n=rsAW!oBoRWmdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sP<)i;Wq>>gDjo5Yb +q=F#R<:9ARr:^/@~> +qYpm"q=F#Q3puV8r.4n=rsAW!oBnY>gDjo5Yb +q=F#8;ss8Qr:^/@~> +qYpm"q=F#Q3puV8r.4n=rsAW!oBnY>gDjo5Yb +q=F#8;ss8Qr:^/@~> +qYpm"q=F#R47;_9r.4n=rsAW!oBn\>mdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sP<'0O>q>>gDjo5Yb +q=F#9<:9ARr:^/@~> +qYpm"q=F#Q)t*=nr.4n=rsAW!oBmPrmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sPO;mWZq>>gDjo5Yb +q=F"nORD`9r:^/@~> +qYpm"q=F#Q*U`Opr.4n=rsAW!oBmVtmdp8Pli.:hq=Ef2!6Xa'r9O@hr;#sPO<*c\q>>gDjo5Yb +q=F"pORD`9r:^/@~> +qYpm"q=F#R*U`Opr.4n=rsAW!oBmVumdp8Pli.:hq=Ef3!6Xa'r9O@hr;#sPO<*c\q>>gDjo5Yb +q=F"pORD`9r:^/@~> +qYpm"q=F$9!9j%Mr.4n=rsAW!oB619mdp8Pli.:hq=Ef2!6Xa'r9O@hr;$'SO9")-q>>gDjo5Yb +q=EAAORDi +qYpm"q=F$9!9j%Mr.4n=rsAW!oB619mdp8Pli.:hq=Ef2!6Xa'r9O@hr;$'SO9")-q>>gDjo5Yb +q=EAAORDi +qYpm"q=F$9!9j%Mr.4n=rsAW!oB619mdp8Pli.:hq=Ef3!6Xa'r9O@hr;$'SO9")-q>>gDjo5Yb +q=EAAORDi +qZ$Tn#PRT.!0HgJr.4n=rsAW!o8ispme6SVli.:hq=Ef2!6Xa'r9OC_r!2r`g]3H-q>>gDjo5Yb +q=B[Jh!Xn6r:^/@~> +qZ$Tn#PRT.!0HgJr.4n=rsAW!o8ispme6SVli.:hq=Ef2!6Xa'r9OC_r!2r`g]3H-q>>gDjo5Yb +q=B[Jh!Xn6r:^/@~> +qZ$Tn#PRT.!0HgJr.4n=rsAW!o8ispme6SVli.:hq=Ef3!6Xa'r9OC_r!2r`g]3H-q>>gDjo5Yb +q=B[Jh!Xn6r:^/@~> +qZ$Tn#PRTL3`GYGr.4n=rsAW!o2@^6me6SVli.:hq=EfK!6Xa'r9F:fr:]RB3]cm.r.4n0rs8Pu +o/\qrme6SOs*t~> +qZ$Tn#PRTL3`GYGr.4n=rsAW!o2@^6me6SVli.:hq=EfK!6Xa'r9F:fr:]RB3]cm.r.4n0rs8Pu +o/\qrme6SOs*t~> +qZ$Tn#PRTL4&khIr.4n=rsAW!o2Ig8me6SVli.:hq=EfL!6Xa'r9F:fr:]RB4$3'0r.4n0rs8Pu +o/f%tme6SOs*t~> +q>U`up?q.+!6Y-8JcG<@#lOM@!0HF4pAF4U$2jVjkYhK(me6SDrs8Prmc]`4b5(sds5j7dr;"J8 +OQc-+r:U)?~> +q>U`up?q.+!6Y-8JcG<@#lOM@!0HF4pAF4U$2jVjkYhK(me6SDrs8Prmc]`4b5(sds5j7dr;"J8 +OQc-+r:U)?~> +q>U`up?q.+!6Y-8JcG<@#lOM@!0HF4pAF4U$2jVjkYqQ)me6SDrs8Prmc]`4b5(sds5j7dr;"J8 +OQc-+r:U)?~> +q>Ud!q=Eh6)cQJ.r.4n?s8W!%p/;pokk"WJlMh1gq=EfK!6Xa'r9F:gr;#sJkW1cur;;-GkPtS[ +#PL2>kihX6r:U)?~> +q>Ud!q=Eh6*E2\0r.4n?s8W!%p/kihX6r:U)?~> +q>Ud!q=Eh6*E;b1r.4n?s8W!%p/E'rkk"WJlMh1gq=EfL!6Xa'r9F:gr;#sJkW:m"r;;-GkPtS[ +#PL5@kihX6r:U)?~> +q>Ud!q=F%>gDkPkkd +q2bU!kjJ' +q>Ud!q=F%>gDkPkkd +q2bU!kjJ' +q>Ud!q=F%>gDkPkkd +q2bU!kjJ' +q#:Zup?q/.;ZOu9r.4nArsAW!aoGB(kjJ0Bl2M(fq=EfK!6Xa'r9=4fr:]RBk`>e+q>@i(s6d2m +$2jU\!0HF.me6SNs*t~> +q#:Zup?q/.;ZOu9r.4nArsAW!aoGB(kjJ0Bl2M(fq=EfK!6Xa'r9=4fr:]RBk`>e+q>@i(s6d2m +$2jU\!0HF.me6SNs*t~> +q#:Zup?q/.;uk):r.4nArsAW!aoGE)kjJ0Bl2M(fq=EfL!6Xa'r9=4fr:]RBk`>e+q>@i(s6d2m +$2jU\!0HF.me6SNs*t~> +q#:Enq=FUL"B,;^r;;-Gq#CBl!g!C\roaFTq>BLW$2jVjkYhK(me6SCrrW,ooD[qV;ZMpWr4W.1 +qu`$Zr; +q#:Enq=FUL"B,;^r;;-Gq#CBl!g!C\roaFTq>BLW$2jVjkYhK(me6SCrrW,ooD[qV;ZMpWr4W.1 +qu`$Zr; +q#:Enq=FUL"B5A_r;;-Gq#CBl!g!C]roaFTq>BLW$2jVjkYqQ)me6SCrrW,ooD[qV;ui$Xr4W.1 +qu`$[r; +q#:Hoq=a7UkQFfaOS8U's8)`ur:Z3P;uYt_me6JSl2M(fq=EfK!6Xa'r9=4`r;$'SroaJ`!)r=` +^]4?3"l'(Xb5D1Hrri8f;ZKbqkQC8Hq>BmbJ,~> +q#:Hoq=a7UkQFfaOS8U's8)`ur:Z3P;uYt_me6JSl2M(fq=EfK!6Xa'r9=4`r;$'SroaJ`!)r=` +^]4?3"l'(Xb5D1Hrri8f;ZKbqkQC8Hq>BmbJ,~> +q#:Hoq=a7UkQFibOS8U's8)`ur:Z3P<;u(`me6JSl2M(fq=EfL!6Xa'r9=4`r;$'SroaJa!*&Ca +^]4?3"l'(Xb5D1Hrri8f;ufnskQC8Hq>BmbJ,~> +p\t?nq=F%RkQR%J)j'[hJcG`L"oRtR)ZZ!!kQC8Eq>BIV$2jVjkYhK(me6SBrr`2poBuVA"csZB +ORE%`rsJ]"p/:qk)t*P"r4Dt4r9fXc)j('_"7GdVr:Br=~> +p\t?nq=F%RkQR%J*K]mjJcG`L"oRtR*<;3#kQC8Eq>BIV$2jVjkYhK(me6SBrr`2poBuVA"cs`F +ORE%`rsJ]"p/:qk*U`b$r4Dt4r9fXe*K^9a"7GdVr:Br=~> +p\t?nq=F%RkQR%J*K]mjJcG`L"oRtR*<;3#kQC8Eq>BIV$2jVjkYqQ)me6SBrr`2poBuVA"cs`F +ORE%`rsJ]"p/D"l*U`b$r4Dt4r9fXe*K^9a"7GdVr:Br=~> +p](9k!VZ-`kQT+-!!#rZJ]\2>OAc,Z;p,(&"7u6ar94.er;#sJ;ZOu.pAF.Ss82okoDRkVgf"1Q +;ini +p](9k!VZ-`kQT+-!!#rZJ]\2>OAc,Z;p,(&"7u6ar94.er;#sJ;ZOu.pAF.Ss82okoDRkVgf"1Q +;ini +p](9k!VZ-`kQT+.!!#u[J]\2>OAl2[<6G1'"7u6ar94.er;#sJ;uk)/pAF.Ss82okoDRkVgf+7R +<04r=!0I-Z!*$MO"cu[`!*%bPkQCGMr;?0dJ,~> +pAY6mq=a7SkQBV%;]C8f"99B>OPKct"7GmYr9+(dr;#sJ;ZOu.pAF+R"8qugmel8NglPGRJH59A +!uk1#h#-@ +pAY6mq=a7SkQBV%;]UDh"99H@OPKct"7GmYr9+(dr;#sJ;ZOu.pAF+R"8qugmel8NglPGTJH59A +"!(=%h#-@ +pAY6mq=a7SkQBV%<#pMi"99HAOPKct"7GmYr9+(dr;#sJ;uk)/pAF+R"8qugmel8NglPJUJH59A +"!(@&h#-@ +p&>-lq=a7Rkl:&OkhLj6"5N,.mec2Mme6JSk5Pbcq=EfK!6Xa'r9""^r;$'Xmel;KmK)P,`6&(A +qZ$U8]ZL?3kjIm:kQL>FpA+XVs*t~> +p&>-lq=a7Rkl:&OkhLj6"5N,.mec2Mme6JSk5Pbcq=EfK!6Xa'r9""^r;$'Xmel;KmK)P,`6&(A +qZ$U:]ZL?3kjIm:kQL>FpA+XVs*t~> +p&>-lq=a7Rkl:&OkhLj6"5N,.mec2Mme6JSk5Pbcq=EfL!6Xa'r9""^r;$'Xmel;KmK)P,`6&(A +qZ$U:]ZL?3kjIm:kQL>FpA+XVs*t~> +o`#'lq=aFJJ`uai"RbmTq>B@S$2jVjkYhK(me6S?rri8qp@I^ckQ0I"q>^MW[HIb]oCi"XnGe"~> +o`#'lq=aFJJ`uai"RbmTq>B@S$2jVjkYhK(me6S?rri8qp@I^ckQ0I"q>^MW[HIb]oCi"XnGe"~> +o`#'lq=aFJJ`uai"RbmTq>B@S$2jVjkYqQ)me6S?rri8qp@I^ckQ0I#q>^MW[HIb]oCi"XnGe"~> +oD]!lq=aFJmXaTskl:&QoCi"XjSoPaq=EfK!6Xa'r8dk]r;$'Xmd@mS!Sie3!!16t\`j(]"7u6^ +r9sZ9~> +oD]!lq=aFJmXaTskl:&QoCi"XjSoPaq=EfK!6Xa'r8dk]r;$'Xmd@mS!Sie3!!16t\`j(]"7u6^ +r9sZ9~> +oD]!lq=aFJmXaTskl:&QoCi"XjSoPaq=EfL!6Xa'r8dk]r;$'Xmd@mS!Sie3!!16t\`j(]"7u6^ +r9sZ9~> +o)Jaf!r;Q]rpG@$roj@L"S;?_r;>UT$2jVjkYhK(me6S=s8Vuuq=aFZm_n>hg]/;k!!!u;!!,.9 +]]f@_"S;?_r;?!_J,~> +o)Jaf!r;Q]rpG@$roj@L"S;?_r;>UT$2jVjkYhK(me6S=s8Vuuq=aFZm_n>hg]/Am!!"&=!!,.9 +]]f@_"S;?_r;?!_J,~> +o)Jaf!r;Q]rpG@$roj@L"S;?_r;>UT$2jVjkYqQ)me6S=s8Vuuq=aFZm_n>hg]/Am!!"&=!!,1: +]]f@_"S;?_r;?!_J,~> +nc/Ud"SqcboCIP$"n)!Rp@e=]r8R__r;#sJ;ZOu.pAEnLs83#qp@e+L`pWlj!0I0["?HM_3ZJ%u +!g)X0^[D-ns7QNir;>p]J,~> +nc/Ud"SqcboCIP$"n)!Rp@e=]r8R__r;#sJ;ZOu.pAEnLs83#qp@e+L`pWlj!0I0["?HM_3Z\2" +!g)X0^[D-ns7QNir;>p]J,~> +nc/Ud"SqcboCIP$"n)!Rp@e=]r8R__r;#sJ;uk)/pAEnLs83#qp@e+L`pWlj!0I0["?QS`4!";# +!g)X0^[D-ns7QNir;>p]J,~> +n,NCbrqV-=!;?Efrqt^S$2jVjkYhK(me6S9s8W#rq8`12oBtBQrW!(_!!!t"rW!$>h!XdLpAXmf +r9F<4~> +n,NCbrqV-=!;?Efrqt^S$2jVjkYhK(me6S9s8W#rq8`12oBtBSrW!(_!!"%$rW!$@h!XdLpAXmf +r9F<4~> +n,NCbrqV-=!;?Efrqt^S$2jVjkYqQ)me6S9s8W#rq8`12oBtBSrW!(_!!"%$rW!$@h!XdLpAXmf +r9F<4~> +m/MY7qY]1L$2jVjkYhK(me6S7s2Fm +m/MY7qY]1L$2jVjkYhK(me6S7s2Fm +m/MY7qY]1L$2jVjkYqQ)me6S7s2Fm +JcERd$2jVjkYhK(me6RQs8Vuup?3Ip!!\P-)ZUi"OSo.]b4bc2VZ2/~> +JcERd$2jVjkYhK(me6RQs8Vuup?3Or!!\P-*<7,&OSo.]b4bc2VZ2/~> +JcERd$2jVjkYqQ)me6RQs8Vuup?3Or!!\P-*<7,&OSo.]b4bc2VZ2/~> +JcERd$2jVjkYhK(me6RPrrW,iOT#4c;p*6%!#s)';uQauORr:Es*t~> +JcERd$2jVjkYhK(me6RPrrW,iOT#4c;p*6'!$05);uQauORr:Es*t~> +JcERd$2jVjkYqQ)me6RPrrW,iOT#4c<6E?(!$05)<;lk!ORr:Es*t~> +JcERd$2jVjkYhK(me6RQrr`2pmZ@DJrlP9]!#tp[#!)_aORDrBVZ2/~> +JcERd$2jVjkYhK(me6RQrr`2pmZ@DJrlP9_!$2']#!)_aORDrBVZ2/~> +JcERd$2jVjkYqQ)me6RQrr`2pmZ@DJrlP9_!$2']#!2ebORDrBVZ2/~> +JcERd$2jVjkYhK(me6RQrs&DpmbC`%OT*B(3WL,tb5[P*h!Xn6VZ2/~> +JcERd$2jVjkYhK(me6RQrs&DpmbC`%OT*B(3WL3!b5[P*h!Xn6VZ2/~> +JcERd$2jVjkYqQ)me6RQrs&DpmbCc'OT*B(3rg<"b5[P*h!Xn6VZ2/~> +JcERd$2jVjkYhK(me6RQrr`2mmbI]^!]g;]r6#&p!q,d[VZ2/~> +JcERd$2jVjkYhK(me6RQrr`2mmbI]^!]g;]r6#&p!q,d[VZ2/~> +JcERd$2jVjkYqQ)me6RQrr`2mmbI]^!]pA^r6#&p!q,d[VZ2/~> +JcERd$2jVjkYhK(me6RQrr`2mmcaQ'!]g;]qqM;;oD/<]s*t~> +JcERd$2jVjkYhK(me6RQrr`2mmcaQ'!]g;]qqM;;oD/<]s*t~> +JcERd$2jVjkYqQ)me6RQrr`2mmcaQ'!]pA^qqM;;oD/<]s*t~> +JcERd$2jVjkYhK(me6RQrrr>roB>DnroaL?;ZHgQr9+7NpAFics*t~> +JcERd$2jVjkYhK(me6RQrrr>roB>DnroaL?;ZHgQr9+7NpAFics*t~> +JcERd$2jVjkYqQ)me6RQrrr>roB>DnroaL?;ucpRr9+7NpAFics*t~> +JcERd$2jVjkYhK(me6RPrrW,ooDS(^khK):!6XNnrpp3bq>@)hJ,~> +JcERd$2jVjkYhK(me6RPrrW,ooDS(^khK):!6XNnrpp3bq>@)hJ,~> +JcERd$2jVjkYqQ)me6RPrrW,ooDS(^khK,;!6XNnrpp3bq>@)hJ,~> +JcERd$2jVjkYhK(me6RPs8W#sq>^-ooBtC4!!(1*oD\Rcr1s@C~> +JcERd$2jVjkYhK(me6RPs8W#sq>^-ooBtC4!!(1*oD\Rcr1s@C~> +JcERd$2jVjkYqQ)me6RPs8W#sq>^-ooBtC5!!(1*oD\Rcr1s@C~> +JcERd$2jVjkYhK(me6RNs8Mp&q=a73;ZHg?kk>#RUAo`~> +JcERd$2jVjkYhK(me6RNs8Mp&q=a73;ZHg?kk>#RUAo`~> +JcERd$2jVjkYqQ)me6RNs8Mp&q=a73;ucp@kk>#RUAo`~> +JcERd$2jVjkYhK(me6RKrsJ]"mc[RL!6XO!r1O(?~> +JcERd$2jVjkYhK(me6RKrsJ]"mc[RL!6XO!r1O(?~> +JcERd$2jVjkYqQ)me6RKrsJ]"mc[UM!6XO!r1O(?~> +JcERd$2jVjkYhK(me6RKrsJ]"mc[RL!6XO!r1O(?~> +JcERd$2jVjkYhK(me6RKrsJ]"mc[RL!6XO!r1O(?~> +JcERd$2jVjkYqQ)me6RKrsJ]"mc[UM!6XO!r1O(?~> +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF +JcERd$2jVjkYqPDme6RKrsJ]"oB;89!0HF +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF +JcERd$2jVjkYqPDme6RKrsJ]"oB;89!0HF +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF9r1O(?~> +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF9r1O(?~> +JcERd$2jVjkYqPDme6RKrsJ]"oB;89!0HF9r1O(?~> +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF9r1O(?~> +JcERd$2jVjkYhJCme6RKrsJ]"oB;89!0HF9r1O(?~> +JcERd$2jVjkYqPDme6RKrsJ]"oB;89!0HF9r1O(?~> +JcERd$2jVjkYhJCme6RJrsAMmk`>cEOQc<6T`9N~> +JcERd$2jVjkYhJCme6RJrsAMmk`>cEOQc<6T`9N~> +JcERd$2jVjkYqPDme6RJrsAMmk`>cEOQc<6T`9N~> +JcERd$2jVjkYhJCme6RJrsAMmk`>cEOQc<3T`9N~> +JcERd$2jVjkYhJCme6RJrsAMmk`>cEOQc<3T`9N~> +JcERd$2jVjkYqPDme6RJrsAMmk`>cEOQc<3T`9N~> +JcERd$2jVjkYhJCme6RJrsAMmk`>cEOQc<3T`9N~> +JcERd$2jVjkYhJCme6RJrsAMmk`>cEOQc<3T`9N~> +JcERd$2jVjkYqPDme6RJrsAMmk`>cEOQc<3T`9N~> +JcERd$2jVjkYhJCme6RJrsAVpk`>cE;s +JcERd$2jVjkYhJCme6RJrsAVpk`>cE;s +JcERd$2jVjkYqPDme6RJrsAVpk`>cE<9WrLT`9N~> +JcERd$2jVjkYhJCme6RJrsAVpkfNl*;s +JcERd$2jVjkYhJCme6RJrsAVpkfNl*;s +JcERd$2jVjkYqPDme6RJrsAVpkfNl*<9WrLT`9N~> +JcERd$2jVjkYhJCme6RJrsJ\qkfNl*;s +JcERd$2jVjkYhJCme6RJrsJ\qkfNl*;s +JcERd$2jVjkYqPDme6RJrsJ\qkfNl*<9WrLr1X.@~> +JcERd$2jVjkYhJCkk=qDrsJ\qkfNl*;s +JcERd$2jVjkYhJCkk=qDrsJ\qkfNl*;s +JcERd$2jVjkYqPDkk=qDrsJ\qkfNl*<9WrLr1X.@~> +JcERd$2jVjkYhJCkk=qDrsJ\tkfNl*;s +JcERd$2jVjkYhJCkk=qDrsJ\tkfNl*;s +JcERd$2jVjkYqPDkk=qDrsJ\tkfNl*<9WrLr1X.@~> +JcERd$2jVjkYhJCkk=qDrsJ\tkhH.<;s +JcERd$2jVjkYhJCkk=qDrsJ\tkhH.<;s +JcERd$2jVjkYqPDkk=qDrsJ\tkhH.<<9WcGr1X.@~> +JcERd$2jVjkYhJCkk=qDrsJ\tkhH.<3p?#-r1X.@~> +JcERd$2jVjkYhJCkk=qDrsJ\tkhH.<3p?#-r1X.@~> +JcERd$2jVjkYqPDkk=qDrsJ\tkhH.<46Z,.r1X.@~> +JcERd$2jVjk`>e+kk=qDrsJ\tkhH.<3p?#-r1X.@~> +JcERd$2jVjk`>e+kk=qDrsJ\tkhH.<3p?#-r1X.@~> +JcERd$2jVjk`>e+kk=qDrsJ\tkhH.<46Z,.r1X.@~> +JcERd$2jVjk`>e+kk=qEs8W!*p?:9N!'8p'pAE(sr1s@C~> +JcERd$2jVjk`>e+kk=qEs8W!*p?:9P!'8p'pAE(sr1s@C~> +JcERd$2jVjk`>e+kk=qEs8W!*p?:9P!'B!(pAE(sr1s@C~> +JcERd$2jVjk`>e+kk=qHrt>8$;``(mkhI*W3o'/p;ZHg?r2'FD~> +JcERd$2jVjk`>e+kk=qHrt>8$;``(mkhI0Y3o'/p;ZHg?r2'FD~> +JcERd$2jVjk`>e+kk=qHrt>8$<'/7okhI0Y45B8q;ucp@r2'FD~> +JcERd$2jVjk`>e+kk=qIs8VusOT#4ch!!N4!#s_Wb5MABOSSgOs*t~> +JcERd$2jVjk`>e+kk=qIs8VusOT#4ch!!N6!$0kYb5MABOSSgOs*t~> +JcERd$2jVjk`>e+kk=qIs8VusOT#4ch!!N6!$0kYb5MABOSSgOs*t~> +JcERd$2jVjk`>e+kk=qJs8Vutp5o7R#ZKsB)ZUi4kW8\C"3U62r29RF~> +JcERd$2jVjk`>e+kk=qJs8Vutp5o7R#ZKsB*<7,8kW8\C"3U62r29RF~> +JcERd$2jVjk`>e+kk=qJs8Vutp5o7R#ZU$C*<7,8kWAbD"3U62r29RF~> +JcERd$2jVjk`>e+kk=qJrri8qo@t;a!!\P?3WL,SOT#4_3p?#-r29RF~> +JcERd$2jVjk`>e+kk=qJrri8qo@tAc!!\P?3WL2UOT#4_3p?#-r29RF~> +JcERd$2jVjk`>e+kk=qJrri8qo@tAc!!\P?3rg;VOT#4_46Z,.r29RF~> +JcERd$2jVjk`>e+kk=qJrri8nmc]c3!!XCb3WK0&)u]g?OPK9tr29RF~> +JcERd$2jVjk`>e+kk=qJrri8nmc]c3!!XId3WK0&*W?$AOPK9tr29RF~> +JcERd$2jVjk`>e+kk=qJrri8nmc]c3!!XId3rf9'*W?$AOPK9tr29RF~> +JcERd$2jVjk`>e+kk=qJrrr>ombGr`rW!("3WK/ArW!*_b1uFYr29RF~> +JcERd$2jVjk`>e+kk=qJrrr>ombGr`rW!("3WK/ArW!*_b1uFYr29RF~> +JcERd$2jVjk`>e+kk=qJrrr>ombGrarW!(#3rf8BrW!*`b1uFYr29RF~> +JcERd$2jVjk`>e+kk=qJrrr>rmc_g9r;Zp\!!!u;!!SJ,kjJ9EVuM8~> +JcERd$2jVjk`>e+kk=qJrrr>rmc_g9r;Zp\!!"&=!!SJ,kjJ9EVuM8~> +JcERd$2jVjk`>e+kk=qJrrr>rmc_g9r;Zp]!!"&=!!SJ,kjJ9EVuM8~> +JcERd$2jVjk`>e+kk=qJrs&DsoB=uPOSAe[;p*nZoD/<^s*t~> +JcERd$2jVjk`>e+kk=qJrs&DsoB=uPOSAe[;p*nZoD/<^s*t~> +JcERd$2jVjk`>e+kk=qJrs&DsoB=uPOSAe[<6F"[oD/<^s*t~> +JcERd$2jVjk`>e+kk"_Frs&DpmbGt-3r&dUaogGepACffJ,~> +JcERd$2jVjk`>e+kk"_Frs&DpmbGt-3r&dUaogGepACffJ,~> +JcERd$2jVjk`>e+kk"_Frs&DpmbGt-48AmVaogGepACffJ,~> +JcERd$2jVjk`>e+kk"_Frs&DsoB=uPOSSq];p*nZoD/<]s*t~> +JcERd$2jVjk`>e+kk"_Frs&DsoB=uPOSSq];p*nZoD/<]s*t~> +JcERd$2jVjk`>e+kk"_Frs&DsoB=uPOSSq]<6F"[oD/<]s*t~> +JcERd$2jVjk`>e+kk"_Ers&Dsmc`HK;u?V")p6=Yme6RTs*t~> +JcERd$2jVjk`>e+kk"_Ers&Dsmc`HK;u?V"*QlO[me6RTs*t~> +JcERd$2jVjk`>e+kk"_Ers&Dsmc`HK<;Z_#*QlO[me6RTs*t~> +JcERd$2jVjk`>e+kk"_Drs&DpmbGt-)uTa@;p*nZoD/<\s*t~> +JcERd$2jVjk`>e+kk"_Drs&DpmbGt-*W5sB;p*nZoD/<\s*t~> +JcERd$2jVjk`>e+kk"_Drs&DpmbGt-*W5sB<6F"[oD/<\s*t~> +JcERd$2jVjk`>e+kk"_Drs&DsoB=uPOT#4a)p6=emeQdVs*t~> +JcERd$2jVjk`>e+kk"_Drs&DsoB=uPOT#4a*QlOgmeQdVs*t~> +JcERd$2jVjk`>e+kk"_Drs&DsoB=uPOT#4a*QlOgmeQdVs*t~> +JcERd$2jVjk`>e+kk"_Crsnu#mc_g9;ZHfZb1u4Pr1j:B~> +JcERd$2jVjk`>e+kk"_Crsnu#mc_g9;ZHfZb1u4Pr1j:B~> +JcERd$2jVjk`>e+kk"_Crsnu#mc_g9;uco[b1u4Pr1j:B~> +JcERd$2jVjk`>e+kk"_Crt#&'oB=uPar;;Bb389er; +JcERd$2jVjk`>e+kk"_Crt#&'oB=uParMMFb389er; +JcERd$2jVjk`>e+kk"_Crt#&'oB=uParMMFb389er; +JcERd$2jVjk`>e+kk"__s8;csoB=ubrQ=krp/;&S)`g%R;tlCPb5^5tkk"`M_#Jo~> +JcERd$2jVjk`>e+kk"__s8;csoB=ubrQ=krp/;&S*BH7T;tlCPb5^5tkk"`M_#Jo~> +JcERd$2jVjk`>e+kk"__s8;csoB=ubrQ=krp/D,U*BQ@V<;2LQb5^5tkk"`M_#Jo~> +JcERd$2jVjk`>e+kk"_ns8MoumbGt-rK."Ws#U0!oDne.qE"OQq`=XRqE"NnoDnn1s#U-XrK.'% +!Sm,Br6PCn~> +JcERd$2jVjk`>e+kk"_ns8MoumbGt-rK."Ws#U0#oDne0qE"OQq`=XRqE"NpoDnn3s#U-XrK.'% +!Sm,Br6PCn~> +JcERd$2jVjk`>e+kk"_ns8MoumbGt-rK."Xs#^6$oDne0qE+USq`F^TqE+TqoDnn3s#^3ZrK.'% +!Sm,Br6PCn~> +JcEOc#l4)UO8tC+oDI&:s832eb0#g-;c>^r)uBX8)uhtu;u;[TaogG_kjJHAoBuYBs4mXss4mY< +oBuVL"7GC:h#5CmOT&2Y3r^/r!<3uE3`At=ONP`0r;>7JJ,~> +JcEOc#l4)UO8tC+oDI&:s832eb0#g-;c>^t*W#j:*WJ2";u;[TaogG_kjJHAoBuYBs4mXss4mY< +oBuVL"7GC:h#5CmOT&2Y3r^5t!<4&G3`At=ONP`0r;>7JJ,~> +JcEOc#l4)UO8tC+oDI&:s832eb0#g-<)bq"*W#j:*WJ5#<;VdUaogG_kjJHAoBuYBs4mXss4mY< +oBuVL"7GC:h#5CmOT&5Z49$>u!<4&G4&f1@ONP`0r;>7JJ,~> +JcEOc#l4)UO8tC+oD.,?#lOMRb)h]`3ZIts!uj:";uVmXao^euoCMD6kkj0!kk"6Bo)S"Rb5RM& +;ZSouqu@!A3`D-%b1ugjiW"E~> +JcEOc#l4)UO8tC+oD.,?#lOMRb)h]`3Z\+u"!'F$;uVmXao^euoCMD6kkj0!kk"6Bo)S"Rb5RM& +;ZSp"qu@!C3`D-%b1ugjiW"E~> +JcEOc#l4)UO8tC+oD.,?#lOMRb)h]a4!"5!"!'I&<;r!Yao^euoCMD6kkj0!kk"6Bo)S"Rb5RM& +;uo'$qu@!C4&h<'b1ugjiW"E~> +JcEOc#l4)UO8tC+oD.>E#5n)8OHb0&r>q!Q\rrS5req!JFZkfV&0OAf'sr;[$@ +;im*`oDIeOJ,~> +JcEOc#l4)UO8tC+oD.>E#5n)8OHb0&r>q!Q\rrS5req!JFZkfV&0OAf'ur;[$B +;im*`oDIeOJ,~> +JcEOc#l4)UO8tC+oD.>E#5n)8OHq!Q\rrS5req!JFZkfV&0OAo1"r;[$B +<033aoDIeOJ,~> +JcEOc#l4)UO8tC+oD.JI"T6E(;]G]9"rgL&ONQAMqsKI-qsF[[grb_?;]G]9"<1:$b5CT*J,~> +JcEOc#l4)UO8tC+oD.JI"T6E(;]Yi;"s$X(ONQAMqsKI-qsF[[grb_?;]Yi;" +JcEOc#l4)UO8tC+oD.JI"T6E(<#tr<"s$[)ONQAMqsKI-qsF[[grb_?<#tr<" +JcEOc#l4)UO8tC+oD.SL$1j6W)ZTk!;io0"mc +JcEOc#l4)UO8tC+oD.SL$1j6W*<6(#;io0"mc +JcEOc#l4)UO8tC+oD.SL$1j6X*<6($<059#mc +JcEOc#l4)UO8tC+oD.\O#Q3@U!!#'Ab5LbpkkOT>oC_h1q=XIToD%b?kl'oSb)eXa!)q\Nnc++~> +JcEOc#l4)UO8tC+oD.\O#Q3@U!!#'Ab5LbpkkOT>oC_h1q=XIToD%b?kl'oSb)eXa!)q\Nnc++~> +JcEOc#l4)UO8tC+oD.\O#Q3@V!!#*Bb5LbpkkOT>oC_h1q=XIToD%b?kl'oSb)e[b!*%bOnc++~> +JcEOc#l4)UO8tC+oD._P#Q0Y`3frRnmd]N;mecVQp@\7!r:Tm_pA=IXmd]N@mKMC-3WP9>o)F4~> +JcEOc#l4)UO8tC+oD._P#Q0Y`3frRnmd]N;mecVQp@\7!r:Tm_pA=IXmd]N@mKMC-3WP9>o)F4~> +JcEOc#l4)UO8tC+oD._P#Q0Y`4-8[omd]N;mecVQp@\7!r:Tm_pA=IXmd]N@mKMC-3rkB?o)F4~> +JcEOc#l4)UO8tC+oD.bQ"oOG^ORDQ0kkslIoDJ=Yq=+="s7#s_q>BsboDJ%Lkl:&QO8tC?oDa=~> +JcEOc#l4)UO8tC+oD.bQ"oOG^ORDQ0kkslIoDJ=Yq=+="s7#s_q>BsboDJ%Lkl:&QO8tC?oDa=~> +JcEOc#l4)UO8tC+oD.bQ"oOG^ORDQ0kkslIoDJ=Yq=+="s7#s_q>BsboDJ%Lkl:&QO8tC?oDa=~> +JcEOc#l4)UO8tC+oD.eR"T8'o3puh-rU0XUrq?9cpACWapAFjarq?<^rU0LF"R\BmbJ,~> +JcEOc#l4)UO8tC+oD.eR"T8'o3puh-rU0XUrq?9cpACWapAFjarq?<^rU0LF"R\BmbJ,~> +JcEOc#l4)UO8tC+oD.eR"T8'p47;q.rU0XUrq?9cpACWapAFjarq?<^rU0LF"R\?Nq>BmbJ,~> +JcEOc#l4)UO8tC+oD.hS#5n;j;ZKb=roj@Lrq$0`rV?9eMuWVNrV?Kerq$-WroaR/;ZKbiq>Bpc +J,~> +JcEOc#l4)UO8tC+oD.hS#5n;j;ZKb=roj@Lrq$0`rV?9eMuWVNrV?Kerq$-WroaR/;ZKbiq>Bpc +J,~> +JcEOc#l4)UO8tC+oD.hS#5n;j;ufn?roj@Lrq$0`rV?9eMuWVNrV?Kerq$-WroaR/;ufnkq>Bpc +J,~> +JcEOc#l4)UO8tC+oD.hS%/fqm;]?YU;ip57oCi1Zqtu$Fqu?QkrqQuroCM1-;ZIaU;tKh_p&BO~> +JcEOc#l4)UO8tC+oD.hS%/fqm;]QkY;ip57oCi1Zqtu$Fqu?QkrqQuroCM1-;ZIgY;tKh_p&BO~> +JcEOc#l4)UO8tC+oD.hS%/fqm<#ltZ<06>8oCi1Zqtu$Fqu?QkrqQuroCM1-;udpZ<:fq`p&BO~> +JcEOc#l4)UO8tC+oD.hS%K,qf;cDJ53WK.@ONR1nr.4n>s8Dj)o?*.U!!#'Agf%/>pAFU`J,~> +JcEOc#l4)UO8tC+oD.hS%K,qf;cDJ53WK.@ONR1nr.4n>s8Dj)o?*.U!!#'Agf%/>pAFU`J,~> +JcEOc#l4)UO8tC+oD.hS%K,qf<)hY73rf7BONR1nr.4n>s8Dj)o?*.V!!#*Bgf.8@pAFU`J,~> +JcEOc$2jDYO8tC+oD/=RrtYJ-oB9+Ogt_,KOAd(u!'4&?b38d$JcGQGs83Pob)fO_!!!s:OPK'T +gf%/8oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=RrtYJ-oB9+Ogt_,KOAd/"!'4&?b38d$JcGQGs83Pob)fO_!!"$ +JcEOc$2jDYO8tC+oD/=RrtYJ-oB9.Qgt_,KOAm5#!'=/Ab38d$JcGQGs83Pob)fRa!!"$=OPK'T +gf.8:oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs/JtoB9+Ogt_nms6^!3OAe4>!!jN);im*`mem! +JcEOc$2jDYO8tC+oD/=Rrs/JtoB9+Ogt_nms6^!3OAe4>!!jT+;im*`mem! +JcEOc$2jDYO8tC+oD/=Rrs/JtoB9.Qgt_nms6^!3OAn=@!!jT,<033amem! +JcEOc$2jDYO8tC+oD/=Rrs/JtoB9+Ogt_ejrU'j3OHC/[s8W!&q<5uD +OH)uTa?)`goZONROiqrn(8s&0$`oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs/JtoB9+Ogt_ejrU'j3OHC/[s8W!&q<5uD +OH*W5sA*BI,\ONROiqrn(8s&0$`oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs/JtoB9.Qgt_ejrU'j3OHC/[s8W!&q<5uD +OH +JcEOc$2jDYO8tC+oD/=Rrs&DsoB9+Oh"9h/mK_sub)h]`3ZItsru2##;cE[WrlP8soDJNus8;cq +oA'>frfI.Y!]h8>qu?s@3`D-%b0&rHme#]Igf%/8oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs&DsoB9+Oh"9h/mK_sub)h]`3Z\+uruD/%;cE[WrlP8soDJNus8;cq +oA'>frfI.Y!]h>Bqu?sB3`D-%b0&rHme#]Igf%/8oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs&DsoB9.Qh"9h/mK_sub)h]a4!"5!ruD/&<)ijYrlP8soDJNus8;cq +oA'>frfI.Z!]qDCqu?sB4&h<'b0&rHme#]Igf.8:oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs/JtoBoOUkii$6o'#u="7ta!b5RM&;u\lY)u0L6)uhtt;u;[Sb5^8s +kQC8EpA+%P#Pn)bmc`lih#,=lOSr,X3r^/p!!F6%3`AuVOT3H(kk"]>o'$)@s60J]"7GdVr:^/@~> +JcEOc$2jDYO8tC+oD/=Rrs/JtoBoOUkii$6o'#u="7ta!b5RM&;u\lY*Vf^8*WJ2!;u;[Sb5^8s +kQC8EpA+%P#Pn)bmc`lih#,=lOSr,X3r^5r!!F<'3`AuVOT3H(kk"]>o'$)@s60J]"7GdVr:^/@~> +JcEOc$2jDYO8tC+oD/=Rrs/JtoBoRWkii$6o'#u="7ta!b5RM&<<##[*Vf^8*WJ5"<;VdTb5^8s +kQC8EpA+%P#Pn)bmc`lih#,=lOSr/Y49$>s!!F<(4&f2YOT3H(kk"]>o'$)@s60J^"7GdVr:^/@~> +JcEOc$2jDYO8tC+oD/=RrsAW!oBoOUkjJ'9rq$-WmcaH6!qYX2rlY2$rDW_WrYt,&q&AT!rYtku +rDWZVrlP;tkk"T;mcaZ +JcEOc$2jDYO8tC+oD/=RrsAW!oBoOUkjJ'9rq$-WmcaH6!qYX2rlY2$rDW_WrZ18(q&S`#rZ2#" +rDWZVrlP;tkk"T;mcaZ +JcEOc$2jDYO8tC+oD/=RrsAW!oBoRWkjJ'9rq$-WmcaH6!qYX2rlY2$rD`eYrZ18(q&S`#rZ2## +rD``WrlP;tkk"T;mcaZ +JcEOc$2jDYO8tC+oD/=Rrs8PuoBoOUmdp/Oq>U*foDJ%>kjn0Ao)nFEgt_bKjcK>]s4d_?mdp&@ +mcNa3mf2nXpAXjnp@I]N;ss8Qr:^/@~> +JcEOc$2jDYO8tC+oD/=Rrs8PuoBoOUmdp/Oq>U*foDJ%>kjn0Ao)nFEgt_bKjcK>]s4d_?mdp&@ +mcNa3mf2nXpAXjnp@I]N;ss8Qr:^/@~> +JcEOc$2jDYO8tC+oD/=Rrs8PuoBoRWmdp/Oq>U*foDJ%>kjn0Ao)nFEgt_bKjcK>]s4d_?mdp&@ +mcNa3mf2nXpAXjnp@I]O<:9ARr:^/@~> +JcEOc$2jDYO8tC+oD/=Rrs8PuoBoOUmdp8Pr;QNkpAOU\magUXmagV"meubVpAXmcr!<,imSd'P +oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs8PuoBoOUmdp8Pr;QNkpAOU\magUXmagV"meubVpAXmcr!<,imSd'P +oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=Rrs8PuoBoRWmdp8Pr;QNkpAOU\magUXmagV"meubVpAXmcr!<,imSm0R +oD/=Xs*t~> +JcEOc$2jDYO8tC+oD/=RrsAW!oBoOUmdp8PrVucmrV?EcrU]gPT'6" +JcEOc$2jDYO8tC+oD/=RrsAW!oBoOUmdp8PrVucmrV?EcrU]gPT'6" +JcEOc$2jDYO8tC+oD/=RrsAW!oBoRWmdp8PrVucmrV?EcrU]gPT'6" +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8Pp](*fr;$9aqXa@I^Zb=XqXaXYr;$3ep\tQtq=F#Q +;ss8Qr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8Pp](*fr;$9aqXa@I^Zb=XqXaXYr;$3ep\tQtq=F#Q +;ss8Qr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoRWmdp8Pp](*fr;$9aqXa@I^Zb=XqXaXYr;$3ep\tQtq=F#R +<:9ARr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8PnGi7\qYBs\p%-Grp%/"QqYBm`nG`gmq=F#Q;ss8Q +r:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8PnGi7\qYBs\p%-Grp%/"QqYBm`nG`gmq=F#Q;ss8Q +r:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoRWmdp8PnGi7\qYBs\p%-Grp%/"QqYBm`nG`gmq=F#R<:9AR +r:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8PkPt/Oo_IkI!V?$\o)\RVm.U)IoDIeO$2jVjmSd'P +oD/=Xs*t~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8PkPt/Oo_IkI!V?$\o)\RVm.U)IoDIeO$2jVjmSd'P +oD/=Xs*t~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoRWmdp8PkPt/Oo_IkI!V?$\o)\RVm.U)IoDIeO$2jVjmSm0R +oD/=Xs*t~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8Pg&L13l1sH=g&DBVq=F#Q;ss8Qr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8Pg&L13l1sH=g&DBVq=F#Q;ss8Qr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoRWmdp8Pg&L13l1sH=g&DBVq=F#R<:9ARr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8P^AmBo^AeN;q=F#Q;ss8Qr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoOUmdp8P^AmBo^AeN;q=F#Q;ss8Qr:^/@~> +JcEOc$2jM\O8tC+oD/=RrsAW!oBoRWmdp8P^AmBo^AeN;q=F#R<:9ARr:^/@~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PYl=cs!0ahj$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r5CoD/=RrsAW!oBoOUmdp8PYl=c'!6_eM$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jM\O8r8DoD/=RrsAW!oBoRWmdp8PZ2Xpr!!)JqrsAW!oBoRWmdp8PpA]X~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GdM:Ak.o3fr4irrMiko`"ub!0ahj$2jVjmSd'P +oD/=Xs*t~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GaHqu?dZOSeYL!VZH`rrQ+!bI.?Vr;#sP;cE,U +q>BsdJ,~> +JcEOc$2jMbO8r8DoD/=RrsAW!oBoRWmdp8Pf)Ga*qu?aZORiDPpAFU`"7Z?kn$W0%r;#sP<)i;W +q>BsdJ,~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GmO:&k8Tr;Zh]p&>*a!(?JZ!hTIV[JpR2q=F#Q +;ss8Qr:^/@~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)Ga=rVupZr;Zi@p&>*A!/U:I!`K*B[JpR2q=F#Q +;ss8Qr:^/@~> +JcEOc$2jMbO8r8DoD/=RrsAW!oBoRWmdp8Pf)Gll!!#hWrVusqn+H\^R/k.trr_ck!:R>q$2jVj +mSm0RoD/=Xs*t~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)H*V:&rK;r:3S_!6b*9!qH=Zo`"ub!0ahj$2jVj +mSd'PoD/=Xs*t~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GsN!!)Tir6kQE!:oj`!n%()o`"tk!6_eM$2jVj +mSd'PoD/=Xs*t~> +JcEOc$2jMbO8r8DoD/=RrsAW!oBoRWmdp8Pf)H'3!)W^qr0[Nb;"ahiR/k.trr_ck!:R>q$2jVj +mSm0RoD/=Xs*t~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GjO:&rK:s!I\>!-\DBrn1423fr4u`DZa:OHA?! +rn1423fr4us.9:T`B$&AhZ!NYb)eYF;j74\"oaTE3`EHcrrq(S3`C4kec,sRq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GjK!!)Ths!I17!3?/"qQa$\3fs7=OAc-IOHBA> +qQa$\3fs7=s&/p@O?,Faqu6U!b)eYF;p51?"o= +JcEOc$2jMbO8r8DoD/=RrsAW!oBoRWmdp8Pf)Gg,!)WXo-,fiaf)Pd*IoJKkOT4iH;ui,DOT5@9 +IoJKkOT5@N!!)I`4$/Q&rrpQ,4$-F1rr3G_O?5O'oDej\IoJL/f$s^+r;#sP<)i;Wq>BsdJ,~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GjO:&rK9rrp@A!:^#\qZ$ZdH2IXDbQ"43!!;Zi +TDANhnGi(V!!AGbrd"GB#"8LkT)\jPrVurff)H'Sq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbO8r5CoD/=RrsAW!oBoOUmdp8Pf)GjK!!)TgrrnJa70!9cqu?dds#U&X!qQ@iqu?ge +s8Q$p!!>Xhs3gcE"3^`@3rK$bM#[KR!!#%[!(>B;$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbO8r8DoD/=RrsAW!oBoRWmdp8Pf)Gg,!)WUn"A]#]s7,sd!L*Q]!!6!snbW:fPQ11L +!!AGbs-``a!q60Equ?f9s7-'g"$6J_PL][>r;#sP<)i;Wq>BsdJ,~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjO:&rK9s$?2U!:^$-G4,D$:&rK5f`4G3mf3=+ +G4,D$:&rK;T)\k7nC[dAPQ12P[J^&s!(?kc:&rK;nrs+E!!'G,rD!?Vf)H'Sq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjK!!)Tgs$>'570!:KX7$#9!!)TcZ2f^Pmf3I:O!/U[D!!)Tid`_[=!!(jTmf3@2f)H'Sq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)Gg,!)WUn*LQnks7&n9mf/[T;#g?@!5nErs7&n9 +mf/[T;#g(b!$KkmIfKK;s-ZjXr:'ae_uI[U;#gQ`n,JdU;"O_+!!)K=rsAW!oBoRWmdp8PpA]X~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjO:&rK9rr^pS!:]mc#+kn=s7-.Xq#:Pj!6bD7 +!-\AA!hTH\qu6ol!(?kc:&pLVrrU.>G5hLC`;i +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjK!!)TgrrTJ+7/Hof;ZQCgdK#*urruC%o)DVg +X8`,#;ZMXNrs-sPM#ZoD!6b?@!g!D_rr3%]!/T5+$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)Gg,!)WUn!e136qu6ok!)W^qR/k/#rs/&o;#g%c +!7q/Lrr<&:qu6nh!5niU!)W._rrPsrf)G[N:B8;`rsAW!oBoRWmdp8PpA]X~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjO:&rK9rt+`$!:^$gfi'pm!!(4Bnc2)UrsIFX +3][6@bQ"17PQ(Rl`;i=+s4i]73_fZCs8S_j!!AGbs.B,f!(>E<$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjK!!)TgrrUUK7/m2nZ;WeF!!)TidK#+$rsH&1 +3][6@o)DVgbPqMVO8t+:s4i]73WK/9s8Q!t!(>$1s&8ao!/T5+$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)Gg,!)WUn&=EN^s8VV=<'*/A;#gQ`!5nd8$h8^G +4$*F=s7$'hn,E=r:B8<4s4i]83rf8us7-'g"-`3RnbE.b_q+hor;#sP<)i;Wq>BsdJ,~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjO:&rK9rt*i`!:^#\!!#&Y!!(4Bnc2)VrsPG! +!'4$Y!6bD7!0dE^"N:@/s76-h"&jIF7/m2m`D-C57/rkZ!0I.X!0c"6$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjK!!)Tgrt)I970!9c!!#&Y!!)TidK#+%rsMa* +!'4$Y!:p.g!6bBA"HWV>s3glH"&h5\M#RDSOT#4`M#UBR!0I.X!6`sn$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)Gg,!)WUn"FgE8s7-'g#Wkuc;#gQ`!5ng9!:g$g +#Wkuc;#g%c!:Tpe%o32Cs-Wie:fIDp_uKc,:]:=t_sm^,:ltWT!:SM=$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjO:&rK:rt53)!-\D5!!'G,s.9;7s7-.Xrr3Dt +!!'G,s.9;7s.9:Trr3AF!(?jZ!(?bbnc2)Urs%-V!6^u7PL0=9r;#sP;cE,Uq>BsdJ,~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GjK!!)Thrt4]"!3?.J!!(jTs&/pgs3^n'rr3DT +!!(jTs&/pgs&/p@rr3@f!/UYR!/URQdK#+$rs#b/!:j%gbL$7qr;#sP;cE,Uq>BsdJ,~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)Gg,!)WXo&]F_Mf)M-<;"O_e!)W^qR/k/(rsY:q +;"O_e!)W^c!!)KersMU&_sm^,_u0P&!5nd8#P!9D;#^Lqn'M(@r;#sP<)i;Wq>BsdJ,~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)J/;:&rK;r:5+5!8dbH!!)NgnkK2.s7--inGiOZ +!!)NgnkK2.s.98k[K$2#!0dGT!-\DB`;i=+rQ>0?r_Bsd +J,~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)HT`!!)Tir6dV+!;lfE!!*'!dJs:cpD!6bC@!3?/"O8t+:n&k\1q>^NdZ2d;irr2uRec,sRq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)HTB!)W^qr0[Nb;#gQ`!)W^qR/g(`s-WkNrr4@6 +!)W^qR/g(`nGiPcoDcc0!:TFX!7q2?:B8<4`QJ5\g]11NIfP]3rrMZFec,sRq=F#R<:9ARr:^/@~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GmO:&k85r;[)1s8W$m!)o!Y!"@'Nnc/YN!6b=9 +!)o!Y!!:@DTDeg4;bd;mhZ(Op!0DI+!(?kX!!&++!!(mS:&k9U;bd>9f)H'Sq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)Ga=rVup=r;[)Ys8VNf!)o!Y!"AGudJs8.!:oRY +!)o!Y!!;`k;uQb5;ZHecqu;`X!0B5A!/U['!(;o0!!)obrW!(_;ZHggf)H'Sq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)G`hrVup=rW!s8oDej0!!#u[!!#jqs-Wie4&Gsr +!!#u[!!#jqnbiFo;uco^s8Pjp:ltYV&]=X:!0`KE!)W^7!!#iW;ucpKrsAW!oBoRWmdp8PpA]X~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GdM:Ak.o;g.$rrsIFS!!#rC!6bEB`VoiIbQ$6j +!!#rC!6bD7!0BtT!!LLFs8JYi!!SGa70!42r;ZuDs8W%Cr;ZjdhU_]5r;#sP;cE,Uq>BsdJ,~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8Pf)GaHqu?dsX8Dkq!4)S(##dP_o)J`OrW!#js0DV( +#?*Y`o)DVgOT#4`7.UBXqG[@n"cr_?s6i#J!!Pd]s8VOKr;ZkSqptcRr;#sP;cE,Uq>BsdJ,~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8Pf)Ga*r;Zmq<7_!I!.XtJ$rd4's8VUb!!#jqs*t"J +#?1\"s7$(cOT#4[PQ(R^h#79W:lk[ps2Fp:!0dE^!6+j9!5m@e$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PaSuGAmdC,Tr;HWsp?qkXrrr>gmf3=brr3-!s8VNT +qu6fjkj\WMrVlrjmdp>U!qu'Re,KaPq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PaSuGAmdC,Tr;HWsp?qkXrrr>gmf3=brr3-!s8VNT +qu6fjkl:\\rVlrjmdp>U!qu'Re,KaPq=F#Q;ss8Qr:^/@~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PaSuGAmdC,Tr;HWsp?qkXrrr>gmf3=brr3-!s7,OF +qu6fjkl:\\rVlrjmdp>U!qu'Re,KaPq=F#R<:9ARr:^/@~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBoOUmdp8PJcF^/$2jVjmSd'PoD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBoRWmdp8PJcF^/$2jVjmSm0RoD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBq\?ORr;GJcF^/$2jVjO8tC1oD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsAW!oBq\?ORr;GJcF^/$2jVjO8tC1oD/=Xs*t~> +JcEOc$2jMbaoGE)oD/=RrsAW!oBq\?ORr;GJcF^/$2jVjO8tC1oD/=Xs*t~> +JcEOc$2jMbaoGB(oD/=RrsJ]"p?q.+!'650r.4n.rsJ\fO?*B'kjJ0?r:^/@~> +JcEOc$2jMbaoGB(oD/=RrsJ]"p?q.+!'650r.4n.rsJ\fO?*B'kjJ0?r:^/@~> +JcEOc$2jMbaoGE)oD/=RrsJ]"p?q.+!'?;1r.4n.rsJ\fO?3H(kjJ0?r:^/@~> +JcEOc$2jMbaoGB(oD/=Qrseo"mc`lW;ZHeYONRCsJcG'9%K-%EO?*@A;p+=fme6SOs*t~> +JcEOc$2jMbaoGB(oD/=Qrseo"mc`lW;ZHeYONRCsJcG'9%K-%EO?*@A;p+=fme6SOs*t~> +JcEOc$2jMbaoGE)oD/=Qrseo"mc`lW;ucn[ONRCsJcG'9%K-%EO?3FB<6FFgme6SOs*t~> +JcEOc$2jMbaoGB(oD/=QrrW,loDIeZOAd(u!'4&?b5(sds7QC!r;"Ks;`XmY)cMjrkQ:ALr:U)?~> +JcEOc$2jMbaoGB(oD/=QrrW,loDIeZOAd/"!'4&?b5(sds7QC!r;"Ks;`XmY*E/'tkQ:ALr:U)?~> +JcEOc$2jMbaoGE)oD/=QrrW,loDIeZOAm5#!'=/Ab5(sds7QC!r;"Ks<'('[*E8-ukQ:ALr:U)?~> +JcEOc$2jMbaoFKdoD/=Qrr`2poBuP?s6^!3OAd+t!!bP`OH@WKr;;3Is83&ab)h]`)u]g@)cMj@ +mdC#:"7GdVr:U)?~> +JcEOc$2jMbaoFKdoD/=Qrr`2poBuP?s6^!3OAd2!!!bP`OH@WKr;;3Is83&ab)h]`*W?$B*E/'B +mdC#:"7GdVr:U)?~> +JcEOc$2jMbaoFNeoD/=Qrr`2poBuP?s6^!3OAm8"!!bSbOH@WKr;;3Is83&ab)h]a*W?$B*E8-C +mdC#:"7GdVr:U)?~> +JcEOc$2jMbaoFKdoD/=Prr`2poBuJ=rpBsRb)fP#)uTaC3`At=ONQAMr;;i[s83,ngrb_?;c>aU +!!O~> +JcEOc$2jMbaoFKdoD/=Prr`2poBuJ=rpBsRb)fP#*W5sE3`At=ONQAMr;;i[s83,ngrb_?;c>aU +!!OBA;io/crpKXH"7GdVr:L#>~> +JcEOc$2jMbaoFNeoD/=Prr`2poBuJ=rpBsRb)fS%*W5sE4&f1@ONQAMr;;i[s83,ngrb_?<)bsX +!!OBB<058drpKXH"7GdVr:L#>~> +JcEOc$2jMbaoFKdoD/=Ps8W!!q=F%BpZVPCs2tA'!`M-!qu?g<3`AuVOT3H(h!Y.=Z2ae#"7Fse +b5RM&;ZSouqu?p?3`D-%b0'YMpZVYF"7u?dr:L#>~> +JcEOc$2jMbaoFKdoD/=Ps8W!!q=F%BpZVPCs2tA'!`M-#qu?g>3`AuVOT3H(h!Y.=Z2ae#"7Fse +b5RM&;ZSp"qu?pA3`D-%b0'YMpZVYF"7u?dr:L#>~> +JcEOc$2jMbaoFNeoD/=Ps8W!!q=F%BpZVPCs2tA'!`V6%qu?g>4&f2YOT3H(h!Y.=Z2ae#"7Fse +b5RM&;uo'$qu?pA4&h<'b0'YMpZVYF"7u?dr:L#>~> +JcEOc$2jMbaoFKdoD/=Os8Vuuq=aFZme#`>mK)+crfI.Y!]h8>qZ-X8s#U-Xr/gm""5N,.oCi+H +s7Z?moBthtrQ>&"r_rhXru:h8ru2##;cE[W!Qs3ome#`BmKE.Tq>C0^s*t~> +JcEOc$2jMbaoFKdoD/=Os8Vuuq=aFZme#`>mK)+crfI.Y!]h>BqZ-X:s#U-Xr/gm""5N,.oCi+H +s7Z?moBthtrQ>&"r_rhXruLt:ruD/%;cE[W!Qs3ome#`BmKE.Tq>C0^s*t~> +JcEOc$2jMbaoFNeoD/=Os8Vuuq=aFZme#`>mK)+crfI.Z!]qDCqZ-X:s#^3Zr/gm""5N,.oCi+H +s7Z?moBthtrQ>&"r`&nZruLt:ruD/&<)ijY!Qs3ome#`BmKE.Tq>C0^s*t~> +JcEOc$2jMbaoFKdoD/=Ms8W!$q=aORoBu&7kka`Io)RSFb5RM$;u\oY)tX..)u;Vc;u/QQ)tX.1 +)uhtt;uVmXao^AioD7nCkl:)NoDeLcq>C0\s*t~> +JcEOc$2jMbaoFKdoD/=Ms8W!$q=aORoBu&7kka`Io)RSFb5RM$;u\oY*V9@0*Vqhe;u/QQ*V9@3 +*WJ2!;uVmXao^AioD7nCkl:)NoDeLcq>C0\s*t~> +JcEOc$2jMbaoFNeoD/=Ms8W!$q=aORoBu&7kka`Io)RSFb5RM$<<#&[*V9@0*Vqkf<;J]S*V9@3 +*WJ5"<;r!Yao^AioD7nCkl:)NoDeLcq>C0\s*t~> +JcEOc$2jMbaoFKdoD/=Ls8Mrrq>^0foDS+Akk+U<]s*t~> +JcEOc$2jMbaoFKdoD/=Ls8Mrrq>^0foDS+Akk+U<]s*t~> +JcEOc$2jMbaoFNeoD/=Ls8Mrrq>^0foDS+Akk+U<]s*t~> +JcEOc$2jMbaoFKdoD/=Is8Dlpq>U*eoDJ%4kf`DMkkslJoD\I_q>L6Ys*t~> +JcEOc$2jMbaoFKdoD/=Is8Dlpq>U*eoDJ%4kf`DMkkslJoD\I_q>L6Ys*t~> +JcEOc$2jMbaoFNeoD/=Is8Dlpq>U*eoDJ%4kf`DMkkslJoD\I_q>L6Ys*t~> +JcEOc$2jMbaoFKdoD/=Es8;fnq>L$coD7mAkka`GoDSC]q>C0Ts*t~> +JcEOc$2jMbaoFKdoD/=Es8;fnq>L$coD7mAkka`GoDSC]q>C0Ts*t~> +JcEOc$2jMbaoFNeoD/=Es8;fnq>L$coD7mAkka`GoDSC]q>C0Ts*t~> +JcEOc$2jMbg]0D!oD/=@s8)Zkq>L$`oChU[kk=H@oDSC\q>1$Ms*t~> +JcEOc$2jMbg]0D!oD/=@s8)Zkq>L$`oChU[kk=H@oDSC\q>1$Ms*t~> +JcEOc$2jMbg]0G"oD/=@s8)Zkq>L$`oChU[kk=H@oDSC\q>1$Ms*t~> +JcEOc$2jMbg]0D!oD/=9s7lNgq>9m[o=s_foDA7Xq=smDs*t~> +JcEOc$2jMbg]0D!oD/=9s7lNgq>9m[o=s_foDA7Xq=smDs*t~> +JcEOc$2jMbg]0G"oD/=9s7lNgq>9m[o=s_foDA7Xq=smDs*t~> +JcEOc$2jMbg]0D!oD/=0s7Q<`q=OC6oCVbMq=X[8s*t~> +JcEOc$2jMbg]0D!oD/=0s7Q<`q=OC6oCVbMq=X[8s*t~> +JcEOc$2jMbg]0G"oD/=0s7Q<`q=OC6oCVbMq=X[8s*t~> +JcEOc$2jMbg]0D!oD/=$s6KU5q +JcEOc$2jMbg]0D!oD/=$s6KU5q +JcEOc$2jMbg]0G"oD/=$s6KU5q +JcEOc$2jMbg]0D!oD/ +JcEOc$2jMbg]0D!oD/ +JcEOc$2jMbg]0G"oD/ +JcEOc$2jMbg]0D!oD/<8s0;TS~> +JcEOc$2jMbg]0D!oD/<8s0;TS~> +JcEOc$2jMbg]0G"oD/<8s0;TS~> +JcEOc$2jMbg]0D!oD/<8s0;TS~> +JcEOc$2jMbg]0D!oD/<8s0;TS~> +JcEOc$2jMbg]0G"oD/<8s0;TS~> +JcEOc$2jMbg]0D!oD/<8s0;TS~> +JcEOc$2jMbg]0D!oD/<8s0;TS~> +JcEOc$2jMbg]0G"oD/<8s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0G"meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0G"meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0G"meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0G"meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0D!meQd3s0;TS~> +JcEOc$2jMbg]0G"meQd3s0;TS~> +JcEOc$2jMbkQ![-meQd3s0;TS~> +JcEOc$2jMbkQ![-meQd3s0;TS~> +JcEOc$2jMbkQ!^.meQd3s0;TS~> +JcEOc$2jMbkQ![-meQd3s0;TS~> +JcEOc$2jMbkQ![-meQd3s0;TS~> +JcEOc$2jMbkQ!^.meQd3s0;TS~> +JcEOc$2jMbkQ![-meQd3s0;TS~> +JcEOc$2jMbkQ![-meQd3s0;TS~> +JcEOc$2jMbkQ!^.meQd3s0;TS~> +JcEOc$2jVekQ![-meQd3s0;TS~> +JcEOc$2jVekQ![-meQd3s0;TS~> +JcEOc$2jVekQ!^.meQd3s0;TS~> +JcEOc$2jVekQ![-meQd3s0;TS~> +JcEOc$2jVekQ![-meQd3s0;TS~> +JcEOc$2jVekQ!^.meQd3s0;TS~> +JcEOc$2jVekQ![-meQd3s0;TS~> +JcEOc$2jVekQ![-meQd3s0;TS~> +JcEOc$2jVekQ!^.meQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuRcmeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekPuXemeQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekSkK)meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVekT(]-meQd3s0;TS~> +JcEOc$2jVjkhOtWoD/<8s0;TS~> +JcEOc$2jVjkhOtWoD/<8s0;TS~> +JcEOc$2jVjkhOtWoD/<8s0;TS~> +JcEOc!rVlcrTF=Sq>>gDZ2]=~> +JcEOc!rVlcrTF=Sq>>gDZ2]=~> +JcEOc!rVlcrTF=Sq>>gDZ2]=~> +JcELb!W;ZimK*%ZJcDtSJ,~> +JcELb!W;ZimK*%ZJcDtSJ,~> +JcELb!W;ZimK*%ZJcDtSJ,~> +JcELb#Q4DkoCM\Or.4mPs*t~> +JcELb#Q4DkoCM\Or.4mPs*t~> +JcELb#Q4DkoCM\Or.4mPs*t~> +JcEIa!;ufk!;qEJYQ'+~> +JcEIa!;ufk!;qEJYQ'+~> +JcEIa!;ufk!;qEJYQ'+~> +JcEF`rVV6HY5a"~> +JcEF`rVV6HY5a"~> +JcEF`rVV6HY5a"~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcGKEs8;co!;W2c!hTIVJcF[.J,~> +JcGKEs8;co!;W2c!`K*BJcF[.J,~> +JcGKEs8;co!;W5d"7Z?kmt(Mss*t~> +JcGNF"9)$qbPhGDT)b)S:AFki;tp=nbLugo!]kMoqu6]r:Ak.n;mkul!VZHLrrSemPC`bls*t~> +JcGNF"8Vuto)8Rj;ZP#;p](:mp](?cZMab(3ii,W!;cTn!E7h@rrMiki;WjW!6]rni;\<~> +JcGNF!o*cPrVm#j!!)KCp](:nq#CIms*stI!B\m/rrCjQ!!5troBcJXpAEnL"7Z?kmt(Mss*t~> +JcGNF"9)$qbPhGFT)b)S:)c7m!!PC`;ZIb3rW!0a)Z\(#!!#(Y!!)Ndrri9q!!!u;!!&5NrrV`k +7,\(HT)b(+s5 +JcGNF"8Vuto)8Rm;ZP#;!$+-!!!G=_;ZIj:!!bP*!:l3O!':)Z!(?_a!:Tme!$2%=!6ag1!n%() +i;WjW!6]rni;\<~> +JcGNF!o*cPrVm,m!!)KC!$+0#!!Q1\!)rq=r;['a*Dlc3!!#+[!!&5[rrg:@!)O^8!!)KUrrSSg +_r:UtnGiRXJcF[.J,~> +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVm/B!(?kef`2#9r;R*&:&rK;rLX&inF-AYnc2)9 +rrSemPC`bls*t~> +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rs4\dM#[L\!!(4?rs8H$!:p0Y;ZK5RrrUUKLuA:7 +;ZP!ls5 +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVm.!!5nj,IfKK;r;R&X!)W^q`;fn%mf*?V!5mdq +"7Z?kmt(Mss*t~> +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVlr +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rrS8^M#RDU;ZNlrs!ddE!:p0idJs:Es,^17;`^uZ +s6l%13`E*Zs,^.Z7$*N-s8TB'3]`AYrVm&LO?-=%o)AXmZ;WeFOPTp9!`K*BJcF[.J,~> +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVlpp!5ng9rr<&Mr;QiR!)W[p,FJO.s8Pkogf-Ad +s8U'"4$-Ems7&la!0`M+s8VV=<'*1'oDS[lR?0L0OT,7gnUFM"4-9(6s7$'hmt(Mss*t~> +JcGNF"9)$qhYmHUT)b)Rrr_fl!:]mc!hTIVrVlr +JcGNF"8Vutqu-Nr;ZP#>rrUUK7/Hob;ZP#>rrS8^M#RDU;ZNlrrsSZ'!:p0idJu]4s&8gq!WUUF +!!5Rg3rAsZo)DYc!!D'Ws3gfF"%<1h;u6Ouh>dLR!6]rni;\<~> +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVm.!!5nj:nGiR?r;QiR!)W[p"IT7Rs7-!e!`8ob +qZ$Y\s82iu;#g(^!!Dims-`cb!gEZSq>^]js7$'hmt(Mss*t~> +JcGNF!rbppr)U`;oDu!!&5_rLX&inGf*\PC`bls*t~> +JcGNF!r;lsr) +JcGNF!o*bUr)E[r!:Tmd!gs%Pqu6cg!!)Kdrs2C#_uKb)!!)KcrsIN];#gRc:B6UYnbrMFf%f'N +!!'q:s*k"Kn+hG5_t3 +JcGNF!WGji!!&5]rr_fl!:]mc!hTIVrVm#>!!&*ZrVurfr;R6*:&m\DGlRi.s8S\k7/m2grD!@9 +rr32A!(?kX!(?hd!lY.-rr36%:&rK9:&s/KrrU.>7/m2krD!@9s.9:TJcF[.J,~> +JcGNF!;cHj!6b?@!n%':qYpUq!6b?@#ESocOAc,Z7/Qunq>^MOO?*@AbQ%T@!/UXS"7H3io)AXn +O8t+:dK#+&rrS8^M#RDZmf3@Ymf3@br;Qh[!/UXS#O_Wmo)DVgbCT]Os*t~> +JcGNF!8R>L!:Tmd!gs%Pqu6cg!!)Kdrs)=":lnWV!0d<["P`tW_iXit"n2K]!!'q9rrU.>;#UCu +:B8<4R/k/(rrPsr_uBZ?`;ia7`;ia3rrPsr_uBZ@`;ia7nGiRXJcF[.J,~> +JcGNF"9)$q[Jf:jGlX',rr_fl!:]mc!hTIVrVll:qu?achY[ +JcGNF"8Vuth>QO=3WRA%rrUUK7/Hob;ZP#>rrA/Y!!.oQqu6ZmqZ$W>rr3$u!6bBA!n%':rVm)- +!/U['!/UXS!`K*Brr33!3WSa!!(?_a!`K*Brr36"3WSaN;ZP!ls5 +JcGNF"5ElQoDRnQ!!)KdrrSSgPPb@^nGiRXrVljnqu?`7qYpQNqu?sun,NFX!!)KerrSSgPPtLi +IfRCdR/k/)s7$'hn,E=kg]11NR/iHKrr_ck!:Tpe#M];Us7$'hmt(Mss*t~> +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVm&?!(?&+pA+^lr_ +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rrnJaM!3Xfq>UWp!!(3tkktG^;ZP#?rrUUK7/d,i +dK#+'dK#+&rrQ+!bPhGE3WSa!!(?_a!`K*BrVm'_!:p.g!6]rni;\<~> +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVm$s!5n$UpA+^lg]11>h!"_:"7Z?kn,E=gR/iHL +rsY:q_uH,)_uKc,!!)Kers%un;#cp`PPkF_nGiRXrr35n!)W^c!!)J=s5 +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVlr +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rrS8^M"^iNq>^NdqYpUq!6bBA"4@0;qu6U"O8t+: +dK#+&rrQ+!X8`,(mf3@YdJu]4r;Qgs!3?,!#O_Wmo)DVgbCT]Os*t~> +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVlpp!5nO1!o*cPqYpZf!!)KerrSSgPPtLi:B8<4 +R/k/)s7$'hf)G[R`;ia7R/iHKrr_ck!7q/L#K6[>s7$'hmt(Mss*t~> +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVlr +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rrS8^M"^iNq>^NdqYpUq!6bBA%Jg&)X8i4g!!(4B +dJu]7rudC'!:p0iO8q]Kmf3?gs8TB\s,[3\o)J`O!(?ke;ZP!ls5 +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVlpp!5nO1!o*cPqYpZf!!)Kersd``!7q2M`;fo, +s-WkNrr4*:!)W^qnP9.Ks2=s +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVlr +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rrS8^M"^iNq>^NdqYpUq!6b?@& +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVlpp!5nO1!o*cPqYpZf!!)KdrtJ6/!)unt!0dH_ +R/d4K;#eK7!)QYo!"\Pus%`Up;uco^s2=s<:fRDo"n2K]!!)J=s5 +JcGNF"9)$qbPhGBT)b)Rrr_fl!:]mc!hTIVrVlrbQ%Ndr;Zh]rVll:r;Ztas8W%Cr;Zh]rr3%l!0`!6i;\<~> +JcGNF"8Vuto)8Ri;ZP#>rrUUK7/Hob;ZP#>rrS8^M"^iNq>^NdqYpUq!6b +JcGNF!o*cPrVlui!!)KdrrSSgPPb@^nGiRXrVlpp!5nO1!o*cPqYpZf!!)KdrrMY>r;Zi8rr35n +:B1Aks8U(:!!/;Prr3#h:]:=sPOJPO`VfcAPOJPOnGiRXJcF[.J,~> +JcF@%!;YRQ!q,:Aqu6`kmem%`!qYXDqYpWmmdp>U!qYXDJcFC&J,~> +JcF@%!;YRQ!Uf1JrrVo^r;HWsoB>W=rrW#aoDAOhoB>Uns4I@%~> +JcF@%!;YUR!qG^BqYpWjmem%`!qYXDqYpWmmdp>U!qYXDJcFC&J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +JcC<$JcFm4J,~> +%%EndData +showpage +%%Trailer +end +%%EOF diff --git a/lessons/misc/REST/example.py b/lessons/misc/REST/example.py new file mode 100644 index 000000000..948afe700 --- /dev/null +++ b/lessons/misc/REST/example.py @@ -0,0 +1,17 @@ +#!/usr/bin/python +import requests # For sending HTTP requests +import json # For parsing JSON +import sys # For command line parameters + +def main(argv): + url = "http://services.groupkt.com/country/get/iso2code/" + argv[0] + r = requests.get(url) + + if r.ok: + data = json.loads(r.content) + print data['RestResponse']['result']['name'] + else: + print "Failed." + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/lessons/misc/REST/lesson.md b/lessons/misc/REST/lesson.md new file mode 100644 index 000000000..4392136bb --- /dev/null +++ b/lessons/misc/REST/lesson.md @@ -0,0 +1,17 @@ +--- +layout: page +title: RESTful Web Services in Science +visible: true +tags: + - misc + - intermediate +--- + + - **Authors**: Asher Pasha + - **Research field**: Bioinformatics + - **Lesson topic**: Get data from RESTful web services + - **Lesson content URL**: + +This lesson covers modern web 2.0 framework. I have attached a tex file and an example code for REST. The Presentation is here:
    +https://github.com/asherpasha/studyGroup/tree/gh-pages/lessons/REST/Presentation.pdf + diff --git a/lessons/misc/REST/slides.pdf b/lessons/misc/REST/slides.pdf new file mode 100644 index 000000000..284e99151 Binary files /dev/null and b/lessons/misc/REST/slides.pdf differ diff --git a/lessons/misc/REST/slides.tex b/lessons/misc/REST/slides.tex new file mode 100644 index 000000000..c757c89c9 --- /dev/null +++ b/lessons/misc/REST/slides.tex @@ -0,0 +1,194 @@ +\documentclass{beamer} +\usepackage{graphicx} +\usepackage{epstopdf} +\usepackage{url} + +% Asher's REST tutorial +% Date: 2015 + +% Title page +\title{RESTful Web Services in Science} +\author{Asher Pasha} +\institute{University of Toronto} +\date{November 5, 2015} + +\begin{document} + + \frame{\titlepage} + + \begin{frame} + \frametitle{CGI Programs} + \begin{figure}[!htb] + \centering + \includegraphics[width=2in]{cgiarch.eps} + \caption{Perl/Python web program back in the good old days of CGI} + \end{figure} + Example: \url{https://bar.utoronto.ca/efp\_arabidopsis/cgi-bin/efpWeb.cgi} + {\tiny Source: \url{https://www.tutorialspoint.com/perl/perl\_cgi.htm}} + \end{frame} + + \begin{frame} + \frametitle{Web 2.0} + \begin{figure}[!htb] + \centering + \includegraphics[width=2in]{REST.eps} + \caption{Modern REpresentational State Transfer} + \end{figure} + \begin{itemize} + \item Input: HTTP GET request + \item Output: XML, JSON, SVG, png + \end{itemize} + {\tiny Source: http://di-side.com/di-side/services/web-solutions/rest-webservice-symfony/} + \end{frame} + + \begin{frame} + \frametitle{AIV: Database and webservice} + \begin{figure}[!htb] + \centering + \includegraphics[width=3in]{webservice.eps} + \caption{The Web Service called for At1g01010} + \end{figure} + \end{frame} + + \begin{frame} + \frametitle{Toy Example of REST} + \begin{itemize} + \item All \url{http://services.groupkt.com/country/get/all} + \item CA \url{http://services.groupkt.com/country/get/iso2code/CA} + \item CAD \url{http://services.groupkt.com/country/get/iso3code/CAN} + \end{itemize} + Python Code Demo + \end{frame} + + \begin{frame} + \frametitle{RESTful Web Services} + Some service providers in Biology + \begin{itemize} + \item Reactome \url{http://reactomews.oicr.on.ca:8080/ReactomeRESTfulAPI/ReactomeRESTFulAPI.html} + \item ATTED-II \url{http://atted.jp/help/API.shtml} + \item BAR \url{https://bar.utoronto.ca/webservices/} + \end{itemize} + Searching and demystifying output + \begin{itemize} + \item JSON Lint: \url{http://jsonlint.com/} + \item Most database websites have REST web services described in API documentation section + \end{itemize} + \end{frame} + + \begin{frame} + \frametitle{Working example} + \begin{itemize} + \item TAIR for Plant Biology + \item Araport being made by The J. Craig Venter Institute, Texas Advanced Computing Center, and University of Cambridge + \item \url{https://www.araport.org/} + \item Community extensible Science Apps + \item We (BAR at University of Toronto) are also working on Science Apps + \end{itemize} + \end{frame} + + % Araport Interactions Viewer + \begin{frame} + \frametitle{Science Apps On Araport} + \begin{itemize} + \item Web Apps must be written in HTML5/CSS/JavaScript + \item Araport allows developers to develop fully functional apps in their local development environment and test them on Araport site + \item Developers can also develop Araport Data Mediator API (ADAMA) adaptors to access web services on 3rd party websites + \item The ADAMA adaptors (Python clients for RESTful web services) can be called by using Agave API from web apps + \end{itemize} + (Krishnakumar V. \textit{et al.}, 2015) + \end{frame} + + \begin{frame} + \frametitle{Araport Architecture} + \begin{figure}[!htb] + \centering + \includegraphics[width=3in]{Araport.eps} + \end{figure} + Source: Araport workshop tutorial + \end{frame} + + \begin{frame} + \frametitle{Web Application Development Stack} + The following are used to develop Araport webapps + \begin{itemize} + \item Yeoman application generator + \item Grunt task runner + \item Bower package manager + \item npm (node package manager) + \item OAuth 2.0 for Agave API access + \item HTML5/CSS/JavaScript + \item Swagger-js for API documentation + \end{itemize} + \end{frame} + + \begin{frame} + \frametitle{Arabidopsis Interactions Viewer} + An interactions Viewer was developed for Araport + \begin{itemize} + \item Interactions database is on the BAR + \item RESTful web service gets data from database on the BAR + \item ADAMA medicator (in Python 2.7 and YAML) on Araport workspace to access the web service from Araport + \item Interactions displayed using Cytoscape JS plugin + \item Developed using HTML5/CSS/JavaScript + \item Hosted on GitHub + \item Backend: \url{https://github.com/asherpasha/AIP_interactions_webservice} + \item Frontend: \url{https://github.com/asherpasha/AIP_interactions_viewer} + \end{itemize} + (Geisler-Lee J. \textit{et al.}, 2007) + \end{frame} + + \begin{frame} + \frametitle{AIV: Screenshot} + \begin{figure}[!htb] + \centering + \includegraphics[width=3in]{AIV.eps} + \caption{Interactions viewer running on Araport} + \end{figure} + + \end{frame} + + \begin{frame} + \frametitle{Acknowlegements} + \begin{columns}[c] + \column{.5\textwidth} + Provart Lab and CAGEF + \begin{itemize} + \item Prof. Provart + \item Prof. Guttman + \item Jamie Waese + \item Sylva Donaldson + \item Yunchen Gong + \item Ryan Austin + \item Hardeep Nahal + \item Anna van Weringh + \item Michael Dong + \item Matthew Ierullo + \item Rohan Patel + \item Nina Wang + \item Richard Song + \end{itemize} + + \column{.5\textwidth} + Araport/JCVI/TACC + \begin{itemize} + \item Prof. Chris Town + \item Prof. Jason Miller + \item Matt Vaughn + \item Vivek Krishnakumar + \item Matt Hanlon + \end{itemize} + Others + \begin{itemize} + \item U of T Scientific Coders + \item Joshua Heimbach (Araport workshop team) + \end{itemize} + Funding + \begin{itemize} + \item Genome Canada + \item CAGEF + \item University of Toronto + \end{itemize} + \end{columns} + \end{frame} + +\end{document} diff --git a/lessons/misc/REST/webservice.eps b/lessons/misc/REST/webservice.eps new file mode 100644 index 000000000..5aaf53d34 --- /dev/null +++ b/lessons/misc/REST/webservice.eps @@ -0,0 +1,11694 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner +%%Title: webservice.eps +%%CreationDate: Fri Apr 17 16:46:43 2015 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 14 14 628 563 +%%EndComments +%%BeginProlog +% Use own dictionary to avoid conflicts +10 dict begin +%%EndProlog +%%Page: 1 1 +% Translate for offset +14.173228346456694 14.173228346456694 translate +% Translate to begin of first scanline +0 548.24999999999989 translate +613.49999999999989 -548.24999999999989 scale +% Image geometry +818 731 8 +% Transformation matrix +[ 818 0 0 731 0 0 ] +% Strings to hold RGB-samples per scanline +/rstr 818 string def +/gstr 818 string def +/bstr 818 string def +{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} +{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} +true 3 +%%BeginData: 813764 ASCII Bytes +colorimage +!2+n6JXq@_JXq@_JXt2Z!1/3~> +J$ZAaYd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Y^`p^Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*8__Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(E^Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;J$H5_Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Y^`p^Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*5sfYd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;X+1~> +!6Tl7J]WJbJ]WJbJ]Z<]!5sB~> +It3#tIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulr +IsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulr +IsulrIsulrIt)osIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfr +IXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfr +IXcfrIXcfrIXcfrIXcfrIXcirIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulr +IsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulr +IsulrIsulrIsulrIsulrIsulrIsulrIsulsIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfr +IXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfr +IXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIsulrIsulrIsulrIsulrIsulrIsulr +IsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulr +IsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIt)osIXcfrIXcfrIXcfr +IXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfr +IXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXcfrIXa)$Isulr +IsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrIsulrJUd~> +!1AD*JXD"UJXD"UJXFiP!1A?~> +!4dZjJ[g9@J[g9@J[j+;!4dU~> +JUN)tJUN)tJUP.Y!EZ/aO9&FLr-\QclY$B@I=6/%BEN:'I<+ah!GulVI=M~> +JX:qSJX:qSJX=!8!GT(0V?(D3r0ID@l[8kmQ^ +J%2tt\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW +\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW +\%&oW\%&oW[stos\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW +\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW +\@8uW\@8uW\@8uW\@8uW\@6st\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW +\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW +\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&ns\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW +\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW +\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uWJ%2tt\%&oW\%&oW\%&oW\%&oW\%&oW +\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW +\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW\%&oW[stos\@8uW\@8uW\@8uW +\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uW\@8uWJBl$J +_SO+*_SO+*_SO+*_SO+*_SO+*JAo%-\@8uGR@'D0R@'D0R@'D0R@'D0R@'D0R@'q^\>M'LR$j>0 +R$j>0R$j>0R$j>0R$j>0R&IL(VjWp?R$j>0R$j>0R$j>0R$j>0TW#?0[t"~> +IsZQiI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6f +I!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6fI!^6f +I!^6fI!^6fI"-KjH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0f +H[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0fH[L0f +H[L0fH[L0fH[L0fH[L0fH[L +J!H=bQBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$ +QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$ +QBdc$QBdc$Q@G0cQ'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$ +Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$ +Q'R]$Q'R]$Q'R]$Q'R]$Q'QobQBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$ +QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$ +QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdbcQ'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$ +Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$ +Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$J!H=bQBdc$QBdc$QBdc$QBdc$QBdc$ +QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$ +QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$QBdc$Q@G0cQ'R]$Q'R]$Q'R]$ +Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$BXa7m +Q'R]$Q'R]$Q'R]$Q'R]$Q'R]$BWIDaQ'R\_S?T3$YHY47YHY47YHY47YHY47YG?N2Q$b +J[U- +JU2lnJU2lnJU4qS!EGr]H3%$1r-AEURYpQ[#E"s]H?s.kMXPirMOJ+&H=`P&ms5(nI;aF^~> +J!H7`Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.Ju +Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.Ju +Pa.JuPa.JuP^es_Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@Pu +Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@Pu +Q'@PuQ'@PuQ'@PuQ'@PuQ'?c`Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.Ju +Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.Ju +Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.J_Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@Pu +Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@Pu +Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuJ!H7`Pa.JuPa.JuPa.JuPa.JuPa.Ju +Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.Ju +Pa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuPa.JuP^es_Q'@PuQ'@PuQ'@Pu +Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuQ'@PuBXX1j +Q'@PuQ'@PuQ'@PuQ'@PuQ'@PuBW78]Q'@P\YG%5GQ'@PuQ'@PuQ'@PuQ'@PuTrra,Q$Y6hTp:k- +Pa.JuPa.JuPa.JuPa.K,Y'ZCuH`s-.Pa.JuPa.JuPa.JuPa.JuPbF=tP^i~> +J$ubn[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO +[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO +[C3KO[C3KO[=>Wm[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO +[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO +[^EQO[^EQO[^EQO[^EQO[^CUn[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO +[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO +[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3Jm[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO +[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO +[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQOJ$ubn[C3KO[C3KO[C3KO[C3KO[C3KO +[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO +[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[C3KO[=>Wm[^EQO[^EQO[^EQO +[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQO[^EQOJ'>@/ +[^EQO[^EQO[^EQO[^EQO[^EQOJ&A_&[^EQ0aM,*j[^EQO[^EQO[^EQO[^EQO^;lSJ[[&Yh^:(GX +[C3KO[C3KO[C3KO[C3KWa-X3BQH6eK[C3KO[C3KO[C3KO[C3KO[D&rE[=A~> +Is?6`H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZ +H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZ +H$FUZH$FUZH%1'aG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZ +G^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZ +G^4OZG^4OZG^4OZG^4OZG^4d`H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZ +H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZ +H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUaG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZ +G^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZ +G^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZIs?6`H$FUZH$FUZH$FUZH$FUZH$FUZ +H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZ +H$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZH$FUZGuJs5G^4OZG^4OZG^4OZ +G^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZG^4OZ;knS_ +G^4OZG^4O/0JHd,H$FUZH$FUZGuKoOH$FUZA=7^fH$FUZH$FUZH$FUZH$FUZH$GcfH$EkfH$FUZ +H$FUZH$FUZH$FUZH$FUZRU^VfA=7^fH$FUZH$FUZH$FUZH$FUZH$G0[H%5~> +JWkYKJWkYKJWm^0!G8b7P65/R4(%cH!G8;.P6$!3m?7^UHBXP=XmM;UXa61pHEHRu!hb(-J,~> +J$cVj[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K +[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K +[C!?K[C!?K[=>Qk['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K +['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K +['d9K['d9K['d9K['d9K['bCj[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K +[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K +[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!>k['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K +['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K +['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9KJ$cVj[C!?K[C!?K[C!?K[C!?K[C!?K +[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K +[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[C!?K[8XH?['d9K['d9K['d9K +['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9K['d9KIE](+ +['d9K['d8`84[$.[C!?K[C!?K[=,s"[C!?KQH$>>[C!?K[C!?K[C!?K[C!?K[C!u>[Bu7>[C!?K +[C!?K[C!?K[C!?K[C!?Ka-F'>QH$>>[C!?K[C!?K[C!?K[C!?K[C!Z=[=A~> +Is?0^GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=V +GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=V +GBe=VGBe=VGCOj]G^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CV +G^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CV +G^"CVG^"CVG^"CVG^"CVG^"X^GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=V +GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=V +GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=]G^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CV +G^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CV +G^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVIs?0^GBe=VGBe=VGBe=VGBe=VGBe=V +GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=V +GBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGBe=VGCOj]G^"CVG^"CVG^"CV +G^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CVG^"CV;keM\ +G^"CVG]uk8aiH/1G^"CVG^"CV;j)BLG^"CBRbA!qOcGBe=N=^#K`GBde)=`AS0GBfKbGCT~> +JWbSIJWbSIJWdX.!G8_7Op,/Qe'g?aq2tbjVu2\YH*-Is"g*'5P'O2.Oo^A_q/-4WM#EJ?Xa-(m +H*."-",Li4JGt]6J8T7\rK75aH'3[~> +J[C!8J[C!8J[E%r!I`2fZitPBiSd=Lq6U0N_u-kBQ,`3u"ich7[$AZ0ZiR+gq1f!6W;X(,`g*p< +Q,`a/"/q!1T)Q)!Sqi*"rNlXGQ*c&~> +Is#pWG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tN +G'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tN +G'.tNG'.tNG(4XXF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnN +F`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnN +F`qnNF`qnNF`qnNF`qnNF`r7WG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tN +G'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tN +G'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tXF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnN +F`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnN +F`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNIs#pWG'.tNG'.tNG'.tNG'.tNG'.tN +G'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tN +G'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG'.tNG#3=)F`qnNF`qnNF`qnN +F`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnNF`qnN;5&,U +F`qnNF`oG:a>#>jG'.tNG'.t*O`bhiG'.8\G'.tNG'.tNG'.tNG'.tNG'.tNQXP&[@[D7\G'.2m +q;ig#?ZpR8FdHN[F^g\\F`qnN=K:IbAp.cgjf2F+F`qno@ +IuoeSOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]e +OcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]e +OcY]eOcY]eOaiITOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWe +OHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWe +OHGWeOHGWeOHGWeOHGWeOHG$SOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]e +OcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]e +OcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]TOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWe +OHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWe +OHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeIuoeSOcY]eOcY]eOcY]eOcY]eOcY]e +OcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]e +OcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOcY]eOaiITOHGWeOHGWeOHGWe +OHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeOHGWeA@.G\ +OHGWeOHDQPdaQW*OHGWeOHGWeA>bNOOHGWLX-&L+OHGWeOHGWeOHGWeOHGWeOK;!4IVnAZClsgAOK +J[9p6J[9p6J[;tp!I`/eZN*Ppi;cFEZN5Kkr3HEg`U0u8`K[^8Pf +Is#jUFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\J +FEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\J +FEM\JFEM\JFFSFTF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJ +F`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJ +F`_bJF`_bJF`_bJF`_bJF``+UFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\J +FEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\J +FEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\TF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJ +F`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJ +F`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJIs#jUFEM\JFEM\JFEM\JFEM\JFEM\J +FEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\J +FEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFEM\JFFSFTF`_bJF`_bJF`_bJ +F`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJF`_bJ;4r&R +F`_bJF`]:WaN)@SF`_bJF`_bJ;3,jAF`_b6QZR@lF`_bJF`_bJF`_bJF`_bJFd?HXF^PB>FEM\J +=81f"=EJ\-Fd?HXF^UPXF`_bJAln*U=CkUrj]?&9F`_bl@<@#~> +JWPGEJWPGEJWRL*!G&P4O8q<>dJu<'O9&mhr/^r'X6kuPX*9YeGH:\(!,VDp!,VUq"flj/OE[c' +O:$GQlKW27D!L;%If5?0X*9YU~> +J$ZGeZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjC +ZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjC +ZEpjCZEpjCZ@B3dZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pC +Za-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pC +Za-pCZa-pCZa-pCZa-pCZa,(eZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjC +ZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjC +ZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpidZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pC +Za-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pC +Za-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCJ$ZGeZEpjCZEpjCZEpjCZEpjCZEpjC +ZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjC +ZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZEpjCZ@B3dZa-pCZa-pCZa-pC +Za-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCZa-pCIEJn% +Za-pCZa*-[iS`ZbZa-pCZa-pCIDN7qZa-p%`NlhUZa-pCZa-pCZa-pCZa-pCZc/07Z]kX4ZEpjC +LA13]L9e.kZc/07Z]rG7Za-pCSVH\)L7F"gnV3U?Za-pVPd5f~> +Ir]UNF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>B +F)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>B +F)l>BF)l>BF+84OEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8B +EcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8B +EcZ8BEcZ8BEcZ8BEcZ8BEcZ_NF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>B +F)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>B +F)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>OEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8B +EcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8B +EcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BIr]UNF)l>BF)l>BF)l>BF)l>BF)l>B +F)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>B +F)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF)l>BF+84OEcZ8BEcZ8BEcZ8B +EcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8BEcZ8B:S2ZK +EcZ8BEcXf)`lBZ'EcZ8BEcZ8B:QKO;EcZ8.P]LkdEcZ8BEcZ8BEcZ8BEcZ8BEg9sPEaLPcF)l>B +BQ!SNP?^,VPF)l>BAQ@jQG3%abATDj4F)mOPF+=~> +Iu]SMO,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9] +O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9] +O,f9]O,f9]O+31NNfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3] +NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3] +NfT3]NfT3]NfT3]NfT3]NfS[MO,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9] +O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9] +O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9NNfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3] +NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3] +NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]Iu]SMO,f9]O,f9]O,f9]O,f9]O,f9] +O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9] +O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O,f9]O&M("NfT3]NfT3]NfT3] +NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]NfT3]A$V,U +NfT3]NfRF*daBp3>`Ol*O,f9]O(5#HO,f9]G,gU`O,f9]O,f9]O,f9]O,f9]O,g5`O,eC`O,f9] +C[-iTCEnc&CQFL:NiI8`NcqF`NfT3]NdY^.lAOrmCOM5(NfT4#G)q.~> +J$H;aZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^? +ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^? +ZE^^?ZE^^?Z@B-bZ*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX? +Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX? +Z*LX?Z*LX?Z*LX?Z*LX?Z*JkaZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^? +ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^? +ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^]bZ*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX? +Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX? +Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?J$H;aZE^^?ZE^^?ZE^^?ZE^^?ZE^^? +ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^? +ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?ZE^^?Z;\$6Z*LX?Z*LX?Z*LX? +Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?Z*LX?HciV! +Z*LX?Z*JC?i8@m2F0W$UZE^^?Z?sEmZE^^?Pf0l4ZE^^?ZE^^?ZE^^?ZE^^?ZE_B4ZE]Y4ZE^^? +L@D'oL4tA9L8FEoZE^^?`KRU4Pf0l4ZE^^?S;$M&VXX,0S?]B)ZE_B4Z@D~> +Ir]OLEH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&> +EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&> +EH6&>EH6&>EIW"KEcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,> +EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,> +EcH,>EcH,>EcH,>EcH,>EcHSLEH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&> +EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&> +EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&KEcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,> +EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,> +EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>Ir]OLEH6&>EH6&>EH6&>EH6&>EH6&> +EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&> +EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EH6&>EDLUpEcH,>EcH,>EcH,> +EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>EcH,>:S)TH +EcH,>E_6-[9hB>FEH6&>EDMR7EH6&>?BfGMEH6&>EH6&>EH6&>EH6&>EH7:MEH5BMEH6&>EE2("EH6&>P[8?M?BfGMEH6&>EGAMQj9en%EH6&>EH7:MEI\~> +Iu]MKNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!Y +NK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!Y +NK0!YNK0!YNIQtJNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'Y +NfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'Y +NfB'YNfB'YNfB'YNfB'YNfAOKNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!Y +NK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!Y +NK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!JNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'Y +NfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'Y +NfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YIu]MKNK0!YNK0!YNK0!YNK0!YNK0!Y +NK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!Y +NK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNK0!YNIQtJNfB'YNfB'YNfB'Y +NfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YNfB'YA$M&R +NfB'YNa"M'3B0#Y>`Fc'NfB'YA##'DNfB'AWf<$uNfB'YNfB'YNfB'YNfB'YNi@2]Ncd(VNK0!Y +C?fPoNK0!YNGIcoNK0!YWHO8]FfLF]NK0!YNJ2-4l0<#;NK0!YNK0u]NIV~> +J$H5_Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Y^`p^Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*8__Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(E^Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;J$H5_Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F; +Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Yd(F;Y^`p^Z*:L;Z*:L;Z*:L; +Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Z*:L;Hc`Os +Z*:L;Z#W?(7n-! +JT-0ZJT-0ZJT/5?!D]3_DuiK]qo/Xg8Gd?,:5o*i!F:ofDujZWq,@B!C&MuSP?i-H?'G5+!`\5[ +qeuU9jAc(s"d<52E*\\(DujZPro=)ZC&;iNP?i-X~> +JW,/=JW,/=JW.4"!F`50Mud*Aqp>F(>5O6Z@AEaZ!Hb:=MueQOq.TkMKDg`4W-!uWFK#.s!bpn5 +qhtSjl"U*T"fQO%N-)#pMueQFrojGtKDUT/W-!uK~> +J$6)[Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7 +Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7 +Yck:7Yck:7Y^`j\YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47 +YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47 +YHY47YHY47YHY47YHY47YHWM[Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7 +Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7 +Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck9\YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47 +YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47 +YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47J$6)[Yck:7Yck:7Yck:7Yck:7Yck:7 +Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7 +Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7Yck:7YYVI,YHY47YHY47YHY47 +YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47YHY47HHE@p +YHY47ECTi_9h'0,Yck:7Y^4'fYck:7P/=H,Ycjm`KS+r1KS+r1O/0"`Ycks,Ycj5,Yck:7K^aYu +Yck:7Y_2FtYck:7_i_1,P/=H,Yck:7YbZsOn-XiEYck:7Ycks,Y^c~> +IrB4CDJsE2DJsE2DJsE2DJsE2D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3. +D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3.D/O3. +D/O3.D/O3.D1?G?DJa9.DJa9.DJa9.DJa9.DJa9.DJa9.DJa9.DJa9.DJa9.DJa9.DJa9.DJa9. +DJa9.DJa9.DJa9.DJa9.DJa9.Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2 +Df0K2Df0K2Df0K2Df0K2Df1&CDJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2 +DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2 +DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsEBDf0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2 +Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2 +Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2IrB4CDJsE2DJsE2DJsE2DJsE2DJsE2 +DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2 +DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DJsE2DGG+fDf0K2Df0K2Df0K2 +Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K2Df0K29q6-> +Df0K2/G[7"/8oEEDJsDeMf3KODJraBDJsE2=i'pp4Mb3=Df0KU>]+IaP&>2UDc5XoDf0K2Df/M7 +;f6MkDin:BDd/BBDf0K2DdZN)jDs>B;daN]Df0KU>],&~> +mYcXRcAI12JW#);JVsP;Yks=Y2u1f#2uAL6@A<[X!HY1;MZIh@q<7q'EW(e!VfRcSF/Stp!bgh3 +qhkMhl"L$R"fHF"MfYfnM[4WBl04#gl"GD@MZTetMgt~> +m]V2EcE;`%JZjX.JZf*#aSW.@7etpA7f0@iHGBB]!Kk7tY5s[8q="F:Nr?-b_ND%*Oi%(#!e]up +ql^'Rn:U\C"i?D*YE?^!Y6^PKnF34Bn:R/,Y6)S'YCH~> +nniqo`b^3CJSfsTKl$iaS,7%&/,@*`/,O/a9T&ab!EtWaD#mbTq;VLl=T*(?O]lU=>*8c#!`J'! +qbdK9j&5hm"d)u*D-E)"D$jWJj5X$E;WHe8?i=gCO]lUP~> +&W)C%MM[4IMM[4IMM[4IM26t;LPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_A +LPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_A +LPU_ALPU_ALPU_ALPU_ALPU_ALPU_ALPU_A3/<M2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.I +M2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.I +M2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.>MM[4IMM[4IMM[4IMM[4IMM[4IMM[4I +MM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4I +MM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IIu9)?M2I.IM2I.IM2I.I +M2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.I +M2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM2I.IM1:D>MM[4I +MM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4I +MM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMM[4IMI3QD +MMVFmM2F7fckSKrMM[4IMI3'6MM[4IEi+_NMMZ;pq<:#aDi0C/M5P?NM/oJNM2I.'l%itcB4tpk +LZrH/M2I.fEJfTnVM^4fM2HOkl02i+BBeYoG`%?8M5P?NJ,~> +nui"pJZR"qs/gjTJZaR,KrtH%a8<">7etpA7f0=hH+s3Z!Kb1sXoXR6q="F9Nr?*a_N:q'OM^t! +!e^!;qh"sFn:U\B"i?A(Y)pNuXpUPKnF2'tKCJA_R/O/h_N:pN~> +o5+>?JSNJFr+gk"JS]mRL26l`Repn$7enP77f.!&98WR_!EkN_C]S*Lq,%/pAc6EKOBHC9=ciSu +!Ec5pirQ#ZrG2Y!=_qnWOSio%;5WAN?>NqFj/,]PC]]]$Ck)~> +'T%X&Ll$qELl$qELl$qDL51M=L5(23L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9 +L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9 +L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4tA9L4t@?Knb;9Knb;9Knb;9Knb;9Knb;9Knb;9Knb;9 +Knb;9Knb;9Knb;9Knb;9Knb;9L51M=L5:Y8M27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"E +M27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"E +M27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EM27"EIu/u +%^)q:Xfee/Xfee/Xfee.J#fZOXK&>$X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5# +X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X/`5# +X/`5#X/`5#X/`5#X/`5#X/`5#X/`5#X$!D_WiN/#WiN/#WiN/#WiN/#WiN/#WiN/#WiN/#WiN/# +WiN/#WiN/#WiN/#WiN/#WiN/#WiW8&X0&LRY-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/ +Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/ +Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/J$,oVXfee/Xfee/Xfee/Xfee/Xfee/ +Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/ +Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/XadLUY-"k/Y-"k/Y-"k/ +Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/ +Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-"k/Y-!2VXfee/ +Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/ +Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xfee/Xa.si +XfeceY,uY37R]d87R]dcY-"k/Y,uu_Y-"k/Y)gH%Y-"k$Ne2n8K7\`-K8lY.Y-"kCOKG[H_QBuC +Y)UErn05f2Xfee/_2te%O2A$%XfedY`:/AGXdF_0`.P1pXffL%Xag~> +okXM@")2.C:4Z*d9E\*i?ta9QC4U/OCOp8WCB@1qD!c!>BMF9[CB7S!m:uld=_heUO8WhpA68S' +!EWh1CB]c%CMR(6r+cCF:f(KtCBIm>:h9N?!fpK"J,~> +on`X's+UW0HYd5D@F8Kh@qp=DKnb>;LOk84Lk1A(qBEJTEjV>Z2N +IrG-p!H3JdL]sVpLkp&Ir.kH)AnH8dL]_j5Aq0c8!i9mmJ,~> +or\7qs/Q7%S;D`HI*mgHbB9Y!KY(aXTcP%Xf[Z#rN-*p +NVS/,NM?BR"i68%XcL".4[lUA_1q_2k^K~> +p1sVA"DCh[c0p5WdImb4b]d$!B`2[sCOp8PCPcg. +p5&a(s+UZ0DMHU.JbILb$1H8rCP.:pL51P8Lk1A5Ll$ohCk[r;L]V[=RJ_jAEM`&Y"f63pLiK9Y +L]sVpLkp&Im>(h?EJT,~> +p9"@rs/Q:$N1/DgJb@F`$1QQ7M5I5PX/rCRXb!U*Xbj.]M4h0AXTF`I\brQ1O2:4c"i68%XcL +pM9bC"_hXSM"C+emEb/(nFM<8AnYoXC4U/OCOp8YCBJ-IEbb)Z"DD(9I<5=%!a1S4mqW/VO'-76 +=c\""CBo9K=_heUO+$J4"+?55COc~> +pPAj)s+UZ0FHuIdJaC_L$1IJJE.WatL51P8Lk1A5Ll-ujJS0amn;%4$G%6btr.kDoV3^S+#F;3+ +Lkp&IQLBV7QDJSWLiK8Wmt_(3V/_ +pT=Is#-4c&PG[s>Ja:YJ$1@DYNi&bTX/rCRXb!U*Xbs4_Uk,8?n>uhmQ@?-Er2g$]_7/m8#IhO1 +Xf[Z#\*pF(\&"--XcL<-n#Z]$_2k^K~> +phTkDs(MRI=7#C,mEP#&n*F"`B5))ZC4U/OCOp8YCBS3W?;XAd8cqdmIhEq=_heUGjUOnGZeg4~> +pk\s*s+UZ1JnscAJaCYJ$1@1nI=m6.L51P8Lk1A5Ll-ukJTbsB@.IY,@WI]tqhP8mOmStKO`?25 +ELH3j"d*e\LiJREV#ld!Lk#~> +poXRt#-4c(VM+C)Ja:SH$17/1TVnfiX/rCRXb!U*Xbs4`Ul^:XH1H1^I#bM?qlKm[YjK71Y`Gog +O1+Gl"gF&iXcK^R_#gj%Xag~> +phTnEs(MRK>aY,6mE=l&o9EEhBPD0qC4U/OCOp8WCBAU/L[p6&LOjOCCB.i0=T`,KCLZU4"(H%] +@d@.t@V^J~> +pk\m'",(flnq$/NlicmOE.N]@L4P/3Lk1A +poXRss/H1"QEg"3lc\T"nu[qJW2ckuX+@C(Xb!U1XTGf=]^i`;]Xb".lWs +T'MF +q.otE"_hX^:tb=3m/uM1ioYgZg$K+7fh5geBPD3n?0ket?!q5pCOp8PCOp92COc~> +q2#!("GMG>h5G3j>QG'\^jLk1A5Lk1AlLk#~> +q5sXs"feQ!K&Q.mlNQS'aN2osJa;%U#k$VsTVe]gX/,$H!Lom9Xb!U*Xb!UaXag~> +qJ6(F"_hX_@;bc5m/bJ)rL!\_c@PB:m32.:>\.P]BjJ$caiMTFaiMTFaiMTFaiMTFaiMTF`N!ue +JSTgPJSTgP\SH]~> +qM5-,re:Q0K6r(>q!8%>c2Gied,9KAg?]+;G]eOhKna`cm*c'_\r(icLk1A5Lk1AmLk#~> +qQ1%)X/i8"Vk&tBqJZXL*JZZJbJ,~> +qeQ.F"_hX^e%>S\[]2[\[]2[\[]2[\[]2[\[]2]_8Ue3 +JSTgPJSTgP\ncf~> +qhP6-re:T1KS"'TnbVSQmEbUP!S$Lfm+gqOn[iC^JqSi#`Q-!=`lH*>`lH*>`lH*>`lH*>`lH0G +d?/m/Lk1A5Lk1AnLk#~> +qlKk"ri64&W2>KnnG;GOj!a^'!Cl:(leLe3nAKpOVPpM[f'M#lg"kPdTRj4rXb!U*Xh(Wb~> +r+l7G#&.a`A5_g_qX"9YpR)#cqs=ID!5t;m!FAprm/lI,h<+)2md3_VAS5[aP.Bng"2)6PC4U/O +COp8PCV+A4~> +r.tB.re:T1K7@J#mJ?/LcM,N_ebe\7huLZ_liCEqmHao:LYV%Y$17.fH@UX%H_e^J`WO?(GD:[) +JV\l5JV^poJ,~> +r2p"#s/Q@(WMcJ=n*Kr;!U;$+!!#IblN5rD_O9]j?!6R\!p,0kk3F8Ymrt:sVl?2tf@\^-f@\^- +f@\^-f@\^-f@\^-f@\^/f9WIgXb!U*Xb!UdXag~> +rG2@Hs(MULAm1AhqX":*opGg)r9XRE!6!ma!R<(Km/bK[iU$^3'W19b!p>Bqo^)nITC2+6m]u9W +m0N +rJ:K/re:T1KS"9:oD7eRht>1ni;DpChuL[SliG?Yh +rN6+$s/Z1""K82\XRc5R!0-XO!1*QK!oF!pip-Wh-f+(hbU;B8!pC>pmHXi8L>2@d#NhZFlg*oB +m/$#Rntq>[g$7/jgod?%Xb!U*Xb!UdXag~> +rG2@H#&.a`AP^kGqX"EWR@9P2r0[YUR@'fJm0)AJ`6m2tm/b6-hbnj;\$icS\$icS\$icS\$icS\$icS\%&MFJSTgPJSTgP]5)o~> +rJ:K/re:T0K7IOcn,)GPmEPXS!6b5_!R&jflic5H_pHuqliG-,hNI"6j&Fg^MR!lqorJV\l5JV\l5]81t~> +rN6+$s/Q@(W2HDAh!Y(*&*X]/"9JQ'!W`9'"9SWKlM^#OhZ1O>e`?#s`W4i\!QG,ulN4=!j6c.8 +jbDOKjS%mET1+@um".U0qWeFTgN] +rbMFHs(DLH?tf60m186Dm,767RHN=ki8a+7RHXV:'B&p&,nW#ZmHmt(#:$/6m0[eI!;l-g!6=Ko +`rPLrr;[(hmGM:f(0obrm0a8?'`dXgi*I69>i5PJ#7Frd#TT?$S,E*Com/]a=rp:7sSF,R*Anm^omH9:kVPh&fq!A=USPFlm:7UeKm0NAq>%;/X +@=5ZO[K= +reUQ/s+U]2KS"Mpp%n"clHAnip".FZmE=tgo\IaWrTk3U!"^Cf29bFR="+A!VX3XVD\W9Llj!O2 +m-Mamm$dkQ#FFf8?5FA^hYujL$?$XZm-NY:(D^94rp0jt?mH!tRd?LA!!ekWi*I38>i,>D$fl7O +$p`G2="+A!VZ,obAl@uN0)k2<7lpY9&6,.ck`]UnR,dPqLR+d6]&`YQ#Oe3XKnW6kmeQ2Tol>,& +JqSN4a6LSEc@1CsLk1A5Lk1ApLk#~> +riQ1$s/Q=&W25uCo_RkabQ-)#dQRfQV?!s8buk&#rTb-S!"^Cf29Y=O="+@uVX*OTD\W9LlN[F0 +lg)Ojl^IbP#F=]5>o+8\h>Z^J$?$XZlg*G6(D^62rp'ds?mH!tRd6F@!!ehUhd%$6>M]/A$fc.L +$p`D0="+@uVZ,laAPqcJ/cP&:7lgS7&6,.bkE9CjQf@>mL6\U4\` +s(hOI#&.a`AQ5u+qX"gGQg;09[]/0JT&IH3bF.5cm1\FY^[:8h2!aOs]Z>%!l0SJ!a2e)E'*-)? +mDf4olbiefl0I_<5M4UPf[rAgrp:@!Auj."$0:Ej!9rb6m8lO)fKN@4m4;[! +Y0tnfm?tW.E!kjslPcA^f`fUei#!EbmF3lGm>uA3e;BsekD7m[m)6d8m03$P;cB=Yq!A@XY>8S< +B4k>RlEp]*P[AuWJSTgPJSVo6J,~> +s+pZ0s+U`3KS+hk\afO_&*1n+g[3_En+4iohrs1Gkl'i]huLLXkZTh.m$YN-D[P^p!.Do.qs4sr +a6`05!:9!g!9iY3lrQF'f0346ljEfAa2dQ5=$P!ukj7RQSa=u4bO".()qOB)1#)&UElumhT^:frg?e.C_>!:"n=NWXTCDXB,4W*P +I"?p&Do9K2_o0I2_o0I2_o0I2_o0I2_o0I2_o\a#JV\l5JV\l5]SM(~> +s/l:%s/Q@(W2HGI`:3Wh&$>oWngskNh@NSEnc1b3Rq%)qF9&1"trSEQQ[dTBkTng$@q?_"[-un"*HVT'uI?#k5W[ +Str9^O4EOH!nk5TJZXL*JZXL*]WH\~> +s(hOI#&.a_@o)FYqX"gGQgD]H_9(j,\`)!*TUFg'*"kE[tm/Y3&m0Nd5mHqpo +mHqporp:*U!lOEm_?/ofm/Y3+m1\U`_sQj.!pAt +s+pZ0s+U`3KS"V]m-XZ9&*1n+ipG[bo(Ll.kkEEIlM^&ShuL[]m+; +s/l:%s/Q@(W2?57mHj]8&$>oZGH,>(`RIqqP1^TN`r53.hZ1OZldl-VrTaX:!6XU-`qep,!64?j +`W5>j`W6#($fhB*lg)=fjm244`r>9;j9!0`lbES`lg"Pjlg*O1aQphGrp'gM!l=3g^]NWqlN6/N +`;/^De,[YW\Hq*YlUcNjRp99`l]G`DktB(QhSOX*jbDOUlfGJ5q!/+MQ!I[\m.flPm-Sh^Tr+cU +\`qZHf9!(bXb!U*Xb!UfXag~> +!,MLI#&.a`AQau`q<\^QQgN>b_WnG=gYo'UbF%Ahm/l5H`;]-3$E!9NV8j8dTpm/Y3+m0!F0mDf5+m0Cr;jmDHr!7C`3!mCZ- +rTspXP:6n?!6=JE9)e2mU+u%3Xf51b;QT9=6qp]hBQ +!/UW0s+U`3KS+hqR.L.?&*h@3lLNm*g"l&be)oc9lM^&NhuL[oljF0!l]N\*!!((+!6=p%#lr$4 +m)K+mm)K,*ljM)=jQu6n!7:*!!6>**$dJb5m-Na4d-U*!a8YE.!6=HH!<2nlkQ3Jlqjd^;=%2]m+=^# +!3Q7%s/Q@(W2?APVXjQK&'4h#RDEa`6WpCq-\m6Qci*/2hZ1OmlO+&tlB*M(!!(%)!64j##lr!2 +lc&qjlc&r(lO1r;j6Q$j!70us!65$($dA\3lg*O1cg0ls`r>9,!64?E!<29hblHeilf%ojr9FF, +!9O1F$0mX%$ig:IlYT5mlP6'HlVFRZ;!UuYldnKu +!,MOJs(MXMAn4Z`nG2G]m%'oJUR@pGR\QRFS"lSQm1J:W`9lsB!5brKX5`@Da6`lIq<]""_ +!/UW0s+U`3KS"_aeF32!%aEDLdEL"^bgFe^c-af'rTk-S!5n0ie,[=h$``1L!6=F+a8,'=!Pn'g +`rPJm`rP>im,S2am-MRkkNqO8a8YE5j8m-am(rkfm-F_mrp1-qa6^hHkj7Zs!Q+3i_?9!!liQ,G +])Ct%YR@JikQ&Zh,*r5p%H\;D*pD]2ati)Fj@.Vslj)[.h!FChZfClJ#FJ5XnF3&EVYKK`n'YHe +J:`GmZg,F0`jKl=Lk1A5Lk1AqLk#~> +!3Q7%#cju*W2?;fk5`Nf!64j#(]hD; +lc&qjlc&qflg*R3_<^F'"6Sq8!65$($f_9(lg)@hk3M=5`r>97!64?E!9`\6irR!^lbN\cr9FFB +!4i'o$*O`9i9(*[l62GllODqg`ZF=(,fqh&lf1C_r9FULL>2%[jKmkAlN`bNT'u->9r7XN#k$8e +S"cdYNlUG9!nbSXJZXL*JZXL*]rce~> +!,MOJ#&.aaAR8gMI:,;11%'mce!6=I,a8PBACY8%A,[JWtBE7Geg]3f! +i9aE+f@N5krp9^da8PB/;Ei^a5?n-S!m1'-:mG%]1h;IZu51eCN>Q4"'CY8%A9d6:Yf^5CA +ZGUJYa28&9rTsi#3a_:A?VYbCm1"AY_qNV\mH9;TmHVO(q!A=JZ175Kn\+Abm0NAk=^krU?[TBK +[0"0QB7XiLCOp8PCVFS7~> +!f2VereCH+"+b];p%ReQg\&bjhu)gQhuKeDi_D8pTa\3CCB2EA!6>')(M_Rglm#fZY@mq&m+VN. +gu%Hr51\:L>Q3si!6>')"]@P8ej!CCr4lTa6_rDe*Q>7_"d7$jKS.?m-q^UpZr1YD/t#TKQrQsl +GE\IGCtI&JV\l5JV_$rJ,~> +$a$M3X/i8!W2,f9o_7YOF7fM5N;VuRhZ0YAiD)/nTFA*ACB2B?!65!'(M_OelQ]ZWY%Ib#le2?, +gYV6n51S1J>5mgg!65!'"]7J6eN[7:lN%"*rp($o`p;=YRG6Ta;*NO\5?e'P'5H+alV/OpcdqET% +'dWa!62hXg\pFCA3!u^lX!>.rp(#=Cr+cQ`p;`@dd-,3^\I+"j08" +!,MRKs(MXMAn4lCo(MGNU%arTU\jEjiX\m9+'."\l!Xu8?Q-uP!6>'*#lr$5mBS#H3,&d"m0[e@ +)lrA_=;2Q[iVr3F!6>'*"l<>q(Lc;%m/[4-rp:0qa6i85$lc87hH1I.@H%4Q&cfu>mG2(c%n>UD +@13lX)TR"er9Xa%!3Y_VVAm8Km1&$9BOcLYmHBS6W3!r$p[%tMrTsURp?`.VWD6i3AnG&MlEp]+ +N*_'NJSTgPJSVu8J,~> +$]'RnL5(D8Jq.UDnb;ANmEYIM!7(K.&`F6t.N_[Am-%gc'j_g!li>*)lj3[4m-Lu&$TMi.rp0u2 +$lc55h,k@-@,V%N! +adm[-Lk1A5Lk1ArLk#~> +$a$M3X/`1uVP8j\nFu5Lko09r!?pb+lOi%c:b!Peea)C+$l*(e`p3WErTaai`p;rq,RZPE$i]H! +D[[SaleGSV(1?&!lN%"*rTaXB=;2NYhu;pB!65$(%KON7lYd1NWU&>A'Gb*6rp(0s`p;sF>o4)@ +iTFSW'j_fuF[>rk#J0u)mXM:1\? +!nt#KJZXL*JZXL*^9)n~> +!,MRK#AIjbAn"I!me6#Kkb7g?!M\kCm/\\saR'<%kso&iAnYFm\*LF'[^T:gCOp8PCOp98COc~> +!JlO1L'E?bJph"lmIolIld#=M!RC(rliASqaQs6#l +$a$M2X/`.tV4W#!m.T`GgD]kf!?^9alN&JpaQj0!lYr5aV5T]TfBUofe;Jm[JZXL*JZZYgJ,~> +!,MRK#&.a_AQa`ZoBcRoSc+rWR`CQX!T*(]m0`K:<+0?MBN])@Zg>.%VcJ@aJSTgPJSVu8J,~> +$AaIlL4t;4J8p_Co]uYHgWo`@!T3:-liGr+a6X3*NGEolJqS,mXMMmC_u[;aJV\l5JV\l5^5.:~> +$E^D1X/`+qUQD2@o]lSBE=MjH!XF;@P3W/(kJulqo:1W.USauPR)7A>f)a!PJZXL*JZXL*^9)n~> +$>XBkBkV0l@nt8;o'HYJh:UH=mHfDkea3\4a[olMAnYjc<9m<\<+UVrJSTgPJSVu8J,~> +$AaIlKnY23IUgano'?SJkN1jim-B5hea*\4c!5RDJqSi(CLq&DAH?RtJV\l5JV\l5^5.:~> +$E^D1Wi;qoTRPJ[o'6MD]reWYkj!`bea!V2drq4RVPpJaLk1*DJH:S&JZXL*JZXL*^9)n~> +$#=9iBP;!h>[?uQmChlloN54(AS,UhrakJ/!,$juJSTgPJSVr7J,~> +$&F@jKnP&.F`-f%m(M`mo4W)jJ:`H.J:W:=JcLFSLk1A5Lk1AqLk#~> +$*C;/WMl\hQ@nd[lb2Tho6ZOiUSauhrhSqX!2b=LJZXL*JZZVfJ,~> +$#=6gBP1md:9=#;mChlonu5/e@qB:dBPD44COp8PCOp9"COc~> +$&F=iKS+i(A$kcWm(M`mnZc>EIY!-)KnbA6Lk1A5Lk1A\Lk#~> +$*C5,W2?A`I_P?'lb2Tkn[iq4TVSH`WN*%NXb!U*Xb!UQXag~> +$#!gU>\%,9GOk0QmChlomdbEm>@M,SAnPh/C4U,NC4U-%C'7pSAS>h/~> +$&!bRFanRFL%=V^m(M`mmIGd8F*rIfJV/W,L4P)1L4P)]L'2gOJV8c.~> +$)jMdQ(jUqQ1F9mlb2Tkm.-6aPFeMEV5L;DX+@=&X+@=RWs"rdUo:>E~> +#[L;&8ns3no'h4t]Bo^io!j$tC4U,NC4U,tC'7.(;-dda~> +#^9rl?\Y/ho'_.r]BfXgo"g?;L4P)1L4P)WL'1jnBQo&Y~> +#a^3oGcSF$o'V(p]B]Reo$+(`X+@=&X+@=LWs!ZsKU8Nc~> +#@=.Th +#B?iti9^.-m=FW7liQSFomuI\m"+MSm&01Qn*&SeGCT~> +#DfnFjm2R/m"+K5lN6GCoRZ=Zl[eAQl_j%OmcWDpQ[f~> +"/>8OmXabVm=FYUm=FYUmFCS)a\dQ~> +"0CqWm=FVTm"+MSm"+MSm+(G'c"MV~> +"1[aam"+JRl[eAQl[eAQldb;%dY*,~> +!7cYfJaJ$UJaJ$UJaLnQ!S1"r~> +!8)khJa@sSJa@sSJaChO!S(\1~> +!8N.kJa7mQJa7mQJa:bM!RuRK~> +!:YR,JaJ$UJaJ$UJaLnQ!S0qp~> +!:PL*Ja@sSJa@sSJaChO!S(V/~> +!:GF(Ja7mQJa7mQJa:bM!RuIH~> +!:Z`M!:PL.Jae6[Jae6[p[A1O^$PjO8q6~> +!:QZK!:GF,Ja\0YJa\0Yp[8+M^$GdM?[r~> +!:HTI!U]<+mt'qYmt'qYn+lDQmd7^R!Ru@E~> +!:ZcN!q*q&JY7ReJY7ReJY;h3!iEj&^?ksP8q6~> +!:Q]L!q!k%JY.LcJY.LcJY2b1!iEj%^?bmN?[r~> +!:HWJ!q!h#JY%FaJY%FaJY)\/!i +!:ZfO"7O@Aidp9DkCMfIkCMglk6'_`bjW=6!S0kn~> +!:Q`M"7F7>idp9DkCMfIkCMglk6'_`bO3.3!S(P-~> +!:HZK"7=.;idp9DkCMfIkCMglk6'_`b3ct0!Ru@E~> +!:ZfO"7WtcqLSZts+13$s+14Grr`,[]^W]'!S0kn~> +!:Q`M"7WqbqLSZts+13$s+14Grr`,[]C +!:HZK"7Nh`qLSZts+13$s+14Grr`,[]'mE"!Ru@E~> +!:]UI"R=n!i9TUo"RG%#i9BRp%,K.H^Uh8-i9]C5^#&PO!qF"lJcC<$JcC<$JcGKE!q!_l^[2'Q +8q6~> +!:TOG"R4gths0Fl"R=puhrsCm%,T:N_7db6hs914^Y\bP!q +!:KIE"R+^qhWa7i"R4grhWO4j%,8qA]=,Arh +!:]XJ"mOb.n)N?im02G4na4ummd1MB`74GVs8Vr]bdk%OiO8OK!qF%nJcC<$JcC<$JcGKE!q*hn +o^2Ecea3Cg8q6~> +!:TRH"mF\,mc*-flil;1nEecimd(GA`mjYXs8Vr]c+:=TijnjN!q +!:KLF"m=P)mc**elNQ/.nEe`gmctA>^sM]Ms8Vr\agA5Bi3`:F!q3kkJcC<$JcC<$JcGKE!q*ek +o]u9`ea!7cG^o~> +!:][K#3jk0na>eskj8T-naH#9f')Vj&(&AlrqQ*Rn+?JTq7?UoUA4*Wn\FRDs+13$s+13&rrD*Q +rrVW(nb)8MB"Ij9!OcUkm/bd1J,~> +!:TUI#3ab-nEoSokj/N,nF#f5f&uPh&(8VqrqQ*Rn+?JTq7QaqV>0BYnA"CBs+13$s+13&rrD*Q +rrVW'nFc,KAuPR[!Ma8XliGXDJ,~> +!:KOG#3XY+nEoSnkj&H)nF#f5eE68d&'`&frqH!NmIU/Pq7$CjTD7^Rn%S4@s+13$s+13&rrD*Q +rrVW&n+GuIAZ,CY!Ma5WlN,L[J,~> +!:]^L#O0t1na5c+hWX>3hWXFqna=rko'I"=df0%0o(;VKo^VDFo`+?Nq!A.Q_=.=%!;lVf!:bX? +JcC<$JcCo5!qOe1p\t<`_=@6d!bT"?qrS"EqmL,)mI]i@m/bd1J,~> +!:TXJ#O'k.nEfQ'h<=21h<44mnEn`go'?q=e,K.1o(;VKo^VDFo`+?Qq!8(O_!h4$!;lVf!:bX? +JcC<$JcCo5!qOe1p\t<`_!q'a"(nIb-2\ed1tn^:md0T6pZqq2?[r~> +!:KRH#Nsb,nEfQ'h!"&/gun(knEn]eo'6k9d/Ne,nFQ;FoC2/Ao`+9Hq!/"N^[M+#!;lVf!:bX? +JcC<$JcCo5!qOe1p\t<`^[Us_"(e@`-2\ed1tn^9md'N4pZhk0G^o~> +!:]aM#jL%1na5c-f'2Dc#jKt(md9Q3e*-Gk&`(>'p$hY9`O`@siq;g/r9g$Km/lgpn,31doV2
    9__6^:8RCRm/bd1 +J,~> +!:T[K#jBt/nEfQ*f')>a#jBk&mHj?0e*$Ai&`1J*p$hY:a1Se%j7Vp0r9g*MliQ^nn,31doV2 +!:KUI#j9h,nEfQ)eE?&]#j9b#mHj?/dH1#d&_k)"o^DG4_mZbgiUlU*r9TaElN6Rkn,31doV;Bb +"88%UnU^^ks+13$s-*Hah9t-RrrVZ)nFu5YAZ"02)As8$'cIuIg7r6KlN6I:9__6^:8I7OlN,L[ +J,~> +!:]dN#jL%1na5c-f')8`#jBh%md9Q3e*$Gl%d^V!q!dpkZe"*bWLUWlrpBcOq!A.Q_smU(!q;o` +rqZcjQN*ZKq#:@>W0[GbhN%?rrrJ52h#@EBr9+(]hN%@*rrMNbp&>3PNq`S@r6PBDmJQ)G!oAt3 +i;WiFr6PBDmJP]!;6-e!q=+tq!AW)\,5@Mdt!/0JpPZ&kkhf#na-DG +:gEd%!a0(%q!A+58q6~> +!:T^L#jBq.nEfQ*e`Z)]#j9_"mHj?/dcU8i%dUY#q!dpm[asHfXIm5trpBcRq!8(P_XRL'!q;o` +rqZcjQN*ZKq#:@>W0[GbhN%?rrrJ52h#@EBr9+(]hN%@*rrMNbp&>3PNq`S@r6PBDmJQ)G!oAt3 +i;WiFr6PBDmJP]!;6-e!q=(sq!8Q(V:mC;(a1?J,Sh171tn^:na$>F +:gEd%!a0(%q!8%3?[r~> +!:KXJ#j9h,nEfQ)eE5oZ#j0UumHj?/d,jue%dLCrq!R^dYgVFVV4"scrp0WJq!/"N_=7C&!q;ra +rqcikQN*]Lq#:@>W0[GbhN%?rrrJ52h#@EBr9+(]hN%@*rrMNbp&>3PNq`S@r6PBDmJQ)G!oAt3 +i;WiFr6PBDmJP]!;6-e!q=%qq!/K&UtR::(a1?J,Sh171tn^9n`p8D +:gEd%!a0($q!.t1G^o~> +!:]gO#jL%1na5c-e`c)]#jBe$md0K2dHC8k#2R>un+FZ8rp9uqn,NFcmdBG(q!A.R`:mZ@DI!K?F"rrJ)Go)B$kn`\K"VZ6[T +mEtq9nr90\rVlodOT#1^rKj=tN:[&Zp6r#7goQh6s8W%aUr//hrsnakWnH1/QLt4WrKj=tN;W\\ +p6r#7goQh6o`"pKrmCf(q#:Ec`:E`k&n\TLkN0OD`RFk1c(=%Ykkhf#o'HMHV/Q*G!OV:im/bd1 +J,~> +!:TaM#jBq.nEfQ)e`Z#[#j9\!mHa9.d,t)h#2RB!n+F`mZ@DI!K?F"rrJ)Go)B$kn`\K"VZ6[T +mEtq9nr90\rVlodOT#1^rKj=tN:[&Zp6r#7goQh6s8W%aUr//hrsnakWnH1/QLt4WrKj=tN;W\\ +p6r#7goQh6o`"pKrmCf(q#:Ec_t!Qh&n[om/fGK;RBljgV\0md1tn^:o'?GGV/Q*G!OV7hliGXD +J,~> +!:K[K#j9h,nEfQ)e)o`W#j0RsmHa9.cfOoe#27&pmI\9/rp'iln,NFcm-O"tq!/"N_X[R(!q;l_ +rqQ`jQN-uXnbN1c,H0Q#!SemTrrLn!hu<_dXm5oeOOW(c!K?F/rrKU2p\t8QmIgJ_\#o]1N:$E? +!Uc'-rrMPLrVlnWmH+?K\#o)u!Uc'ArrJ)Gq#:B_OPp->mZ@DI!K?F"rrJ)Go)B$kn`\K"VZ6[T +mEtq9nr90\rVlodOT#1^rKj=tN:[&Zp6r#7goQh6s8W%aUr//hrsnakWnH1/QLt4WrKj=tN;W\\ +p6r#7goQh6o`"pKrmCf(q#:Ec_XRBe&nRil/fGK;RBljgV\0md1tn^9o'6AEUi6!F!OV4glN,L[ +J,~> +!:]jP'C"0;na5c-e`c8QeD0$r;QifT)\fb!;6;P!M92brraRFnD=-(rrLjmh>[N1)W:VsrKG^qrreG5 +q!\4#rrW._e*?r7rKG_&rrMMGi;WiFN8X^;rKG^urrMMGl2LeON8X^:m>TQp!K?F6rrqPHs8S&F +dJj +!:TdN'Bn*9nEfQ)eE?&Ne(a*Qkh4>8kkOKXl/1.Ml0RZje_KBOdcBc[nE\E_q!84+l2'r0ZKhGU +#cctRmHj0'k`>N*!qF5"r;QifT)\fb!;6;P!M92brraRFnD=-(rrLjmh>[N1)W:VsrKG^qrreG5 +q!\4#rrW._e*?r7rKG_&rrMMGi;WiFN8X^;rKG^urrMMGl2LeON8X^:m>TQp!K?F6rrqPHs8S&F +dJj +!:K^L'Bds6nEfQ)e)oiJdb[N1)W:VsrKG^qrreG5 +q!\4#rrW._e*?r7rKG_&rrMMGi;WiFN8X^;rKG^urrMMGl2LeON8X^:m>TQp!K?F6rrqPHs8S&F +dJj +!:]mQ'^=9Gohs8JTV,=f0@rsL'61`F@5rglG$8%&?r#:,!s.j@jGQMh^,IK0;<66f".q>Ui4 +9-uons11`I,#I:ursR_DpA`R)rVuo\N7@k,&=^`?s3.!rY4;PlOHPZePLTU3"n]9oOJ'ers")Ba +P-4?Ts,b_I%?\N(Q&qs3s7EdjOJ'eorrnM%Rua)brr;qU$(ToQs,b-fO.=MlrrpZCs8S&FrVm#HTTGr& +rVm,WUlq@ps,?@ErsOeQs7EdjOJ'ess8)TZ!;l`p#GBN8N9LUrB!qNX\rf$mW +!L;L>rrUl;rr)itm>UuC!L;L>rrUl;rr)itm>UuC!L;L>rrUl;rql]sjk8/WdK7qOjo58]o#C7r +m1O%.k2k]Is3B3qcIS;6ZK:6GB(>9\me?)Lek1G~> +!:TgO'^409nEfQ)eE?2Qk4%Nem+LLijk':o']8-DkhYU\kO@Wgm,l^Vlfmm(c0"ig"g\!soZ#2T +lj2==P*(fcNJrejliQ^ro)/Lhn=9OXp&OIXjT1nDqYp^D-QjZ_W;cf*\k"+k:u_NT,EXf$`Vf`: +)Vb8k!ZKgZr>Gohs8JTV,=f0@rsL'61`F@5rglG$8%&?r#:,!s.j@jGQMh^,IK0;<66f".q>Ui4 +9-uons11`I,#I:ursR_DpA`R)rVuo\N7@k,&=^`?s3.!rY4;PlOHPZePLTU3"n]9oOJ'ers")Ba +P-4?Ts,b_I%?\N(Q&qs3s7EdjOJ'eorrnM%Rua)brr;qU$(ToQs,b-fO.=MlrrpZCs8S&FrVm#HTTGr& +rVm,WUlq@ps,?@ErsOeQs7EdjOJ'ess8)TZ!;l`p#GBN8N9LUrB!qNX\rf$mW +!L;L>rrUl;rr)itm>UuC!L;L>rrUl;rr)itm>UuC!L;L>rrUl;rql]sjk8/WdK7qOjo58]o#:.p +lk3pa*Z>q+s/NU/WjiWO'H/%HB(>6[me?&KeR*h~> +!:KaM'^+'6nEfQ)e)ouNk4%Ndle1ChjOa1m']8-DkM>IZk4%NflfHIQlfdg&biSZd"g%Oko>8]L +lNl.5N/NRMLk^WYlN6Roo)/Lhn=BUYpAjUZjoM%FqYp^D-QjZ_W;cf*\k"+k:u_NT,EXf$`Vf`: +)Vb8k!ZKgZr>Gohs8JTV,=f0@rsL'61`F@5rglG$8%&?r#:,!s.j@jGQMh^,IK0;<66f".q>Ui4 +9-uons11`I,#I:ursR_DpA`R)rVuo\N7@k,&=^`?s3.!rY4;PlOHPZePLTU3"n]9oOJ'ers")Ba +P-4?Ts,b_I%?\N(Q&qs3s7EdjOJ'eorrnM%Rua)brr;qU$(ToQs,b-fO.=MlrrpZCs8S&FrVm#HTTGr& +rVm,WUlq@ps,?@ErsOeQs7EdjOJ'ess8)TZ!;l`p#GBN8N9LUrB!qNX\rf$mW +!L;L>rrUl;rr)itm>UuC!L;L>rrUl;rr)itm>UuC!L;L>rrUl;rql]sjk8/WdK7qOjo58]o#1%n +lOmd_*Z>q+s/NU/WjiWO'H/%HAb#*YmJ#oIe9HK~> +!:]mQ'\_R:mI'Gkj6c6_na>elmEb=jmEPFn'\W$EmagdUna>enmHroWmd'*+gX,c`"ekqbp86j8 +m/ljuoDJUin=0FRo`G,^nG6VN,.dgS)L]KIn,Jh0^$2RA])VdKA?X:p9i:T))X6MWs-bUSl)Q#>qu7)/+ca[rl2S`$ah_"W +rr6*2X8i4oNoC$<`07M,s6GX5s4*LgjKGN^s,b;!rmZqfs8SguiTT%Qs8UW:fAs-6s8S%liTBn* +N8O[8f9,t1N:$YtO2g8Ho`*I/fAs-6s8SguiTT%Qrr3#0X8`,2imd&IWi?$uN:$Y(`Tum8OidV& +!P,91s%SI>s,=57kMW28qW!P,o_JO;R+LE&W;lmV^>\5Ks5MPhi2WdVs4ECPjQlI7j,EX&q>ZE@ +s3-eco[T&Zs8S%_fB;(gW;iTsiTT%Qrr3#0X8`,6qOFSBhnG'Ls4*LgjKGN^qW!P,o_J7]9oSK> +N3V!ti2*CKj,EX&q>]!4fAs-6s8S%liTBn7imd&IWi?$ufT4&5lh(&6N:ccZ/Op$hZ*W4qMYF:rr3GmNq`RL^]4?1j,EX&q>LUuC$Mp9m +hVZ&+s7qWHrVlrdN;!5M!UYjErrW"Tp&4mlm>Uc;rrMMGrVlrpN:m/L!pts?qu6]keb%8jebB(C +!qXG&q<\f,qr[#%FoU"Os4Gnjm=O'Sqe#Ed!q)7Gpe(Z`V=+-G!S0kn~> +!:TgO'\VI7m-X5gip?$[nEoShm*G1gm*,7k'\MpBmFCRQnEoSjm-N]TmHWm'g<]T]"f2.ep8R'; +liQ^roDJUin=0FRo`G,^nG6VN,.dgS)L]KIn,Jh0^$2RA])VdKA?X:p9i:T))X6MWs-bUSl)Q#>qu7)/+ca[rl2S`$ah_"W +rr6*2X8i4oNoC$<`07M,s6GX5s4*LgjKGN^s,b;!rmZqfs8SguiTT%Qs8UW:fAs-6s8S%liTBn* +N8O[8f9,t1N:$YtO2g8Ho`*I/fAs-6s8SguiTT%Qrr3#0X8`,2imd&IWi?$uN:$Y(`Tum8OidV& +!P,91s%SI>s,=57kMW28qW!P,o_JO;R+LE&W;lmV^>\5Ks5MPhi2WdVs4ECPjQlI7j,EX&q>ZE@ +s3-eco[T&Zs8S%_fB;(gW;iTsiTT%Qrr3#0X8`,6qOFSBhnG'Ls4*LgjKGN^qW!P,o_J7]9oSK> +N3V!ti2*CKj,EX&q>]!4fAs-6s8S%liTBn7imd&IWi?$ufT4&5lh(&6N:ccZ/Op$hZ*W4qMYF:rr3GmNq`RL^]4?1j,EX&q>LUuC$Mp9m +hVZ&+s7qWHrVlrdN;!5M!UYjErrW"Tp&4mlm>Uc;rrMMGrVlrpN:m/L!pts?qu6]keb%8jebB(C +!qXD$qd7i$90]g1KpB!q)4Fpe(Z`V![sD!S(P-~> +!:KaM'\MC6lg=,fiTogWnEoSglcnqdm*#1i'\DjAm*t@MnEoSilg*KPmHWm'g!9EZ"eYe^oq^O3 +lN6UpoDJUin=9LSo`G,_nG6VN,.dgS)L]KIn,Jh0^$2RA])VdKA?X:p9i:T))X6MWs-bUSl)Q#>qu7)/+ca[rl2S`$ah_"W +rr6*2X8i4oNoC$<`07M,s6GX5s4*LgjKGN^s,b;!rmZqfs8SguiTT%Qs8UW:fAs-6s8S%liTBn* +N8O[8f9,t1N:$YtO2g8Ho`*I/fAs-6s8SguiTT%Qrr3#0X8`,2imd&IWi?$uN:$Y(`Tum8OidV& +!P,91s%SI>s,=57kMW28qW!P,o_JO;R+LE&W;lmV^>\5Ks5MPhi2WdVs4ECPjQlI7j,EX&q>ZE@ +s3-eco[T&Zs8S%_fB;(gW;iTsiTT%Qrr3#0X8`,6qOFSBhnG'Ls4*LgjKGN^qW!P,o_J7]9oSK> +N3V!ti2*CKj,EX&q>]!4fAs-6s8S%liTBn7imd&IWi?$ufT4&5lh(&6N:ccZ/Op$hZ*W4qMYF:rr3GmNq`RL^]4?1j,EX&q>LUuC$Mp9m +hVZ&+s7qWHrVlrdN;!5M!UYjErrW"Tp&4mlm>Uc;rrMMGrVlrpN:m/L!pts?qu6]keb%8jebB(C +!qXA#qd7i$90]g1Bj@!pu.Epe(Z`V!RmB!Ru@E~> +!:]mQ'^=32md'E1e*$,Qj6G@OmFgI_f[ooc'].s;hVISSjQbLRmH;j_nE9,rbiefh"f(qaorI!9 +m/lk!o_e^jnUI6g]%3U)Vb;H)ZKaN;V#D$)H;T +s6P^?s,?@@rrqMIs8S\4r;QfbN;`bZN:$Y1g&D!T`i&k:N:$WE"QPRCP0s1,!r\D3rr3VZQi$g_ +m>V)FUtYkKm#:c?m>U];"H;aJN:$WE"QPRCm>V#D$)H;Ts6P^?s,?@@rrqMIs8S\4r;QfbN;`bZ +N:$Y1g&D!T`i&k:N:$WE"QPRCP0s%(!K?FFrsdD@rVqiDs8VeOnc+R8rr3&JPl:U]!nraorr3"X +mJd+dQ.c0:"idJ?s.7@1rrJ)Grr3+[mJi?sn,Ea2Y5eOGQMpj`m>UoA!UYjDrsI2@qu?]`N;rC+ +r;HWsqi(%CrrMMGrVlrgN;WYS!rIrGrVlocN;`bXn;R;DrrW(VnG<.cp=/fa!S$iArrVi5o(hYV +B)C`Pj`UM$#M\:cS)rf0B(G +!:TgO'^4*/mHX3-dcToMip#.Km+C7[f@K``']%j8h;%AOj6>:Om,lX[n)ioobNAWe"fD.dor[-; +liQato_e^jnUI6g]%3U)Vb;H)ZKaN;V#D$)H;T +s6P^?s,?@@rrqMIs8S\4r;QfbN;`bZN:$Y1g&D!T`i&k:N:$WE"QPRCP0s1,!r\D3rr3VZQi$g_ +m>V)FUtYkKm#:c?m>U];"H;aJN:$WE"QPRCm>V#D$)H;Ts6P^?s,?@@rrqMIs8S\4r;QfbN;`bZ +N:$Y1g&D!T`i&k:N:$WE"QPRCP0s%(!K?FFrsdD@rVqiDs8VeOnc+R8rr3&JPl:U]!nraorr3"X +mJd+dQ.c0:"idJ?s.7@1rrJ)Grr3+[mJi?sn,Ea2Y5eOGQMpj`m>UoA!UYjDrsI2@qu?]`N;rC+ +r;HWsqi(%CrrMMGrVlrgN;WYS!rIrGrVlocN;`bXn;R;DrrW(VnG<.cp=/fa!S$iArrVi4o(hVU +B%e:E)@cWE#JeZe&K2_EB(G9imSI0`?348?meH,LeR*h~> +!:KaM'^+!-m-='+dH0]JiT]%Jldt(Yf@K`_']%j7gt_5Mip#1MlfHCWn)ilmb2rHb"eke^oVgX4 +lN6Uqo_e^jn='@QoE,#\nG<.c,H1VA!G#F3rrpRms8O"lq>UI6g]%3U)Vb;H)ZKaN;V#D$)H;T +s6P^?s,?@@rrqMIs8S\4r;QfbN;`bZN:$Y1g&D!T`i&k:N:$WE"QPRCP0s1,!r\D3rr3VZQi$g_ +m>V)FUtYkKm#:c?m>U];"H;aJN:$WE"QPRCm>V#D$)H;Ts6P^?s,?@@rrqMIs8S\4r;QfbN;`bZ +N:$Y1g&D!T`i&k:N:$WE"QPRCP0s%(!K?FFrsdD@rVqiDs8VeOnc+R8rr3&JPl:U]!nraorr3"X +mJd+dQ.c0:"idJ?s.7@1rrJ)Grr3+[mJi?sn,Ea2Y5eOGQMpj`m>UoA!UYjDrsI2@qu?]`N;rC+ +r;HWsqi(%CrrMMGrVlrgN;WYS!rIrGrVlocN;`bXn;R;DrrW(VnG<.cp=/fa!S$iArrVi3nbMJS +A_J1D)@cWE#JeZe&K2_EAb,-gm8.'_?348?mJ,uJe9HK~> +!:]jP'Bn!.m-=*-dc]lJd+R[Nkh"&0kkONYl.snFl0[`idb5s,?@BN9C-=!0R2<#4;H=PFp%nrr3&YN:m2M%0"VRSWJg1s,?@FN:$WE#54#Hs5Aq0rr3+[ +mJi.4rr3,fN;r:(rVlk[r/:aFs,?@DrsA\OWh#61s8.cV)?N:[#J!q_HIrVlocN;`bXpl+hCrrVhOq>LV#D +!r.`GrVlrkN;<;L!VP" +!:TdN'Bdm+lfmm)dH9ZGce.IJkLRi-kP4BWkhO\Ckj7NedFmaGcKjr\l/9bHq!8!^rq$6$d/!#2 +k-:)Gh"^4;o#LG$rrV\Vrqc-drg3-NrrF@Crr3Fo2?3^STiO9")ZTgUg\LjM)Vb8k"<-%pgD^(k +!p^cnrr3/E.KBDdg]%3SlPf6krrpOos8O"lrr3,T)ZSP1rr3&c)Xm\*!QlkhrrVp5cM[\Lr1R.R ++r^L]iJdI/rsdYKs6uBSSDsRDcN!p,r/:aFs,bb0rs6f:s8UN2T?I$/rrA2ZN!&JIN:$TD%+CF< +pl=>5s,?@BN9C-=!0R2<#4;H=PFp%nrr3&YN:m2M%0"VRSWJg1s,?@FN:$WE#54#Hs5Aq0rr3+[ +mJi.4rr3,fN;r:(rVlk[r/:aFs,?@DrsA\OWh#61s8.cV)?N:[#J!q_HIrVlocN;`bXpl+hCrrVhOq>LV#D +!r.`GrVlrkN;<;L!VP" +!:K^L'B[d)lfdg(d,jHCcIh=Gk17]*k4n6UkM4P@kNh5s,?@BN9C-=!0R2<#4;H=PFp%nrr3&YN:m2M%0"VRSWJg1s,?@FN:$WE#54#Hs5Aq0rr3+[ +mJi.4rr3,fN;r:(rVlk[r/:aFs,?@DrsA\OWh#61s8.cV)?N:[#J!q_HIrVlocN;`bXpl+hCrrVhOq>LV#D +!r.`GrVlrkN;<;L!VP" +!:]gO#jBaulfdj)d-'KW#j9P#n)`fmbi\Ze"gd@`nD^,;m02dEf)FTtq!A.SaS#K2!q;KSqX4Lb +Q14YM!@+QBrsb5Hs8R6sYgL!"s8O"lq>UI6gA_*T)Vb;H)ZKaB +s-2.6m0!:dOOX:0!Qp`-rs8DNZ'*B3s-2.6m0!:dN:$TD%/>n>e9/rre;Js,?@Errh_Js6YdDrrJA9rTs^b +s,?@Drs?9'fBD"Ks7qW7r;QfbN;`bZN:$:sp\t0rjcofFN:$WE%.0#Rs7k0MP0O%,];bc/!P#61 +rrqeKs8S>8rTs^bs6Yd;rre;Js,?@Errh_Js6YdDrrJA9rTs^bs,?@Drs?9'fBD"Ks7qW7r;Qfb +N;`bZN:$:sp\t0rjcofFN:$WE#jmTNs7k0MP0Nn(!K?FFrrr+Tq#?UuC!P#61rrqeKs8SM?rVloORJd'cm>UuC!L_X>rrLf@r;QfbN;W\VRG%Q=!SNn8rrD`edK&t; +rrVl7oD.bXB)C`Pj`^V#rs%\BjlPY%B(>6ho(DeO!VQ!Wm/bd1J,~> +!:TaM#j9Xslf[a&d,sEU#j0FumcUI6gA_*T)Vb;H)ZKaB +s-2.6m0!:dOOX:0!Qp`-rs8DNZ'*B3s-2.6m0!:dN:$TD%/>n>e9/rre;Js,?@Errh_Js6YdDrrJA9rTs^b +s,?@Drs?9'fBD"Ks7qW7r;QfbN;`bZN:$:sp\t0rjcofFN:$WE%.0#Rs7k0MP0O%,];bc/!P#61 +rrqeKs8S>8rTs^bs6Yd;rre;Js,?@Errh_Js6YdDrrJA9rTs^bs,?@Drs?9'fBD"Ks7qW7r;Qfb +N;`bZN:$:sp\t0rjcofFN:$WE#jmTNs7k0MP0Nn(!K?FFrrr+Tq#?UuC!P#61rrqeKs8SM?rVloORJd'cm>UuC!L_X>rrLf@r;QfbN;W\VRG%Q=!SNn8rrD`edK&t; +rrVl7o(hVVB%e:E)@cWBrs%'c)B'[NB(>3fo(M_Vnb;ANeR*h~> +!:K[K#j0OplK@X%cK4-Q#j'=rmcUI6gA_*T)Vb;H)ZKaB +s-2.6m0!:dOOX:0!Qp`-rs8DNZ'*B3s-2.6m0!:dN:$TD%/>n>e9/rre;Js,?@Errh_Js6YdDrrJA9rTs^b +s,?@Drs?9'fBD"Ks7qW7r;QfbN;`bZN:$:sp\t0rjcofFN:$WE%.0#Rs7k0MP0O%,];bc/!P#61 +rrqeKs8S>8rTs^bs6Yd;rre;Js,?@Errh_Js6YdDrrJA9rTs^bs,?@Drs?9'fBD"Ks7qW7r;Qfb +N;`bZN:$:sp\t0rjcofFN:$WE#jmTNs7k0MP0Nn(!K?FFrrr+Tq#?UuC!P#61rrqeKs8SM?rVloORJd'cm>UuC!L_X>rrLf@r;QfbN;W\VRG%Q=!SNn8rrD`edK&t; +rrVl6nbMJTA_J1D)@cWBrs%'c)B'[NAb#'enauVL!VGmUlN,L[J,~> +!:]dN#j9XrlK@['cfaHX#j9P"n)W`kbNANc#LBIFkkDKglMU#RWknVhk_86rm/ln$pAFplnUuC"l#4?rg(n/rsHr3p&G'ZN;rpT`;BQ9mu7)8 +rre;Js,?@ErrqeKs6kpBrr3"r`;BQ8N:$TD$'rj9s6P^Es-LP!rrVYJq>UBsN:$Y0g&D!Ta/T+= +N:$WE!UYjDrrLl;qu6\UmJd+he=$@:N:$WE"H;aJN:$WE!S!P3rrJ)Frr3"`g&D!Ta/T+=Qb`P! +!KQ=ArrJ)Gr;QoSP5kRYqX"F_s8TR8rVm)MOS]"GN;9\me?)Lek1G~> +!:T^L#j0OolK7R$cK=9U#j0FtmcUuC"l#4?rg(n/rsHr3p&G'ZN;rpT`;BQ9mu7)8 +rre;Js,?@ErrqeKs6kpBrr3"r`;BQ8N:$TD$'rj9s6P^Es-LP!rrVYJq>UBsN:$Y0g&D!Ta/T+= +N:$WE!UYjDrrLl;qu6\UmJd+he=$@:N:$WE"H;aJN:$WE!S!P3rrJ)Frr3"`g&D!Ta/T+=Qb`P! +!KQ=ArrJ)Gr;QoSP5kRYqX"F_s8TR8rVm)MOS]"GN;6[me?&KeR*h~> +!:KXJ#j'Fml/hC"c/n*R#j':qmc3KfalN0]#L0:CjnH-`kl'fPlDMDpgZO1NqUI;bl7VL)Vb;K)Y="/r[Y>SrrnH^s8O"lrr3'! +/$o6T"clU^ru0YkrsIL!s5"[cs8W'KZi9t*O&PrU!AK-'rs:?Ks8Uajs8J>1r;R&2`2V_qjIOSs +rr3"r`;BQ8OOX:0!O&O#rrq/?s8St7qu6\UmJQtdZF6mOrr3+[mJiNgr;Qep`:s98gQMU9QI#O0% +$o0UBsN:$Y0g&D!Ta/T+=N:$WE!UYjDrrq/?s8J>1rVm5JOnJbSm>V)FVSrB3!q2*Dp +&>/RmJi.4rr3/hN;r@*q>UBpVSrB3!K?FErs>"9s8VGEs8SG$r;QieN;*mu7)>rrMMGr;R>OOnJbSm>V)F_5$u/s8Ab.r +;QfbN;W\\_5$u/s8Ab.r;QfbN;W\\_5$u/s8Ab.pAY-CqU,AoqYpWjaRT)l#%cLO)B'4%r;Qt7' +H.lQg1Bg?o^2D=!Ru@E~> +!:]aM#j9RolK.L#c04BY#jBS"n)W]jb3&?`&Y@nIli"bh`8B@lPI18Eh9VA]m/ln%p\b$mn<3eI +liR0LnG<.t,CB"PRN'*Cs%Yr&Z:5c4ru0Yjru>h;s8Pbrb-5t+g]-meT\n`.PqTc3W[#@[ru0Yj +rsG#E]B6+<_>jNRg]%4"gD^+a*h_ELs-57Lk,KZBs8Qlts8SH)Hc4P&s%Yr&Z:5c4j,EX.rs7MN +Q2Ua^Q(6A's!$0V`T5t$p&C,eq>&6ni;`hmgumLuWW3"PNQ'u:bk;!pmJQtdglmc`rr3prmJk@g +^#JAOs4WIOjP\8Ts1mFQh6EsZj,EX/rtVE(j4U/cs8S&Fs,>@rpXYPXs5T(1rVm"ZmJi.4rr3Vu +N;ra7cgUB'g5X)4i6:loN:$TD,,V$nfqOH*s3$A7ip6=@rpXYPXrr3#l^AS!TR)RnZs2pY`o@/l[s8U9$^#JAO +s.ugYfXZt.s1mFQh6EsPrrW([hu3R#plO),qMrnjnGiOXleIHblgt/VpR%Q+i4b0Ms7r.`g"WNq +q#::)nE\kglg+0Bs7r.`g"WNqq#::)nE\kglg+0Bs7r.`g"WNqq"OdgqY8J=qYU9opWE+'m1O$9 +qs!4YK]<%3r4JfdjluZIB(G9*.kbmeH/Mek1G~> +!:T[K#j0Lml/_9tc0+h;s8Pbrb-5t+g]-meT\n`.PqTc3W[#@[ru0Yj +rsG#E]B6+<_>jNRg]%4"gD^+a*h_ELs-57Lk,KZBs8Qlts8SH)Hc4P&s%Yr&Z:5c4j,EX.rs7MN +Q2Ua^Q(6A's!$0V`T5t$p&C,eq>&6ni;`hmgumLuWW3"PNQ'u:bk;!pmJQtdglmc`rr3prmJk@g +^#JAOs4WIOjP\8Ts1mFQh6EsZj,EX/rtVE(j4U/cs8S&Fs,>@rpXYPXs5T(1rVm"ZmJi.4rr3Vu +N;ra7cgUB'g5X)4i6:loN:$TD,,V$nfqOH*s3$A7ip6=@rpXYPXrr3#l^AS!TR)RnZs2pY`o@/l[s8U9$^#JAO +s.ugYfXZt.s1mFQh6EsPrrW([hu3R#plO),qMrnjnGiOXleIHblgt/VpR%Q+i4b0Ms7r.`g"WNq +q#::)nE\kglg+0Bs7r.`g"WNqq#::)nE\kglg+0Bs7r.`g"WNqq"OdgqY8J=qYU9opW<"%lk3p' +g-$>i-d;Vjq2,e')F3#LB(G9imZL9=9*.kamJ-#KeR*h~> +!:KUI#j'@jkiD0sbNA$S#j0@rmc3KfaQ3!Z&Y.\Cl28Gb_;3hcOKn`h;s8Pbrb-5t+g]-meT\n`.PqTc3W[#@[ru0Yj +rsG#E]B6+<_>jNRg]%4"gD^+a*h_ELs-57Lk,KZBs8Qlts8SH)Hc4P&s%Yr&Z:5c4j,EX.rs7MN +Q2Ua^Q(6A's!$0V`T5t$p&C,eq>&6ni;`hmgumLuWW3"PNQ'u:bk;!pmJQtdglmc`rr3prmJk@g +^#JAOs4WIOjP\8Ts1mFQh6EsZj,EX/rtVE(j4U/cs8S&Fs,>@rpXYPXs5T(1rVm"ZmJi.4rr3Vu +N;ra7cgUB'g5X)4i6:loN:$TD,,V$nfqOH*s3$A7ip6=@rpXYPXrr3#l^AS!TR)RnZs2pY`o@/l[s8U9$^#JAO +s.ugYfXZt.s1mFQh6EsPrrW([hu3R#plO),qMrnjnGiOXleIHblgt/VpR%Q+i4b0Ms7r.`g"WNq +q#::)nE\kglg+0Bs7r.`g"WNqq#::)nE\kglg+0Bs7r.`g"WNqq"OdgqY8J=qYU9opW<"%lOmd% +g-$>i-d;Vjq2,e')F3#LAb,-gm?10<9*.kam.flIe9HK~> +!:]^L#NsFlkiD3oeEH9)f]hkbkhsVGoBd.>RIB1sr9_IcTtBajiRZb6c1pZ-o?6q,rrV\Prqbp^ +rfQ^Hrrjon4"F+>rr3;Y:*D]Z+92?Zg\q-g)Vb;ldmYB:EB)_Qs-G/gScAYU4X3M/rr3!;g\q-U +rKo_m8@ng#!?0_lrsmd%s8SE70V/7BQouZb])M^C)Vb;lrLQ7u7]?@@:*D]Z+90$Pqu6`rQ+$\l +!k= +!:TXJ#Nj=iki;*leEH6(f]_b_kMODCoB[(rr3;Y:*D]Z+92?Zg\q-g)Vb;ldmYB:EB)_Qs-G/gScAYU4X3M/rr3!;g\q-U +rKo_m8@ng#!?0_lrsmd%s8SE70V/7BQouZb])M^C)Vb;lrLQ7u7]?@@:*D]Z+90$Pqu6`rQ+$\l +!k=F:gEd% +!a0(%q!8%3?[r~> +!:KRH#Na4gkMu!ke*-*&f')M\kMF;@oBR":Q0mSjr9_IbTXjIei7$A-bP:B)o#^\)rrV\Qrqc!` +rfZdIrrjon4"F+>rr3;Y:*D]Z+92?Zg\q-g)Vb;ldmYB:EB)_Qs-G/gScAYU4X3M/rr3!;g\q-U +rKo_m8@ng#!?0_lrsmd%s8SE70V/7BQouZb])M^C)Vb;lrLQ7u7]?@@:*D]Z+90$Pqu6`rQ+$\l +!k= +!:][K#3X7hkN(gLkj8Sun`Arkb3&6]&$qYain +!:TUI#3O1fkMt^Ikj/MsnDr`galW'Z&$q_dj4inorqlHTd+R<6\+f4jo?-k+rrMVMq#1;Tn +!:KOG#3F%ck2POFkj&GqnDr`ga5ldV&$VAZi7@/drVQ?QbLPC&[.ikfo#^\)rrMVNq#1;Un +!:]aM$LHs9gWSF9g!T!Lm-P/HkL8>Oh8n@2kNqd,%D7JDjPA>2cdC;$_LSTYm/ln'q>C6nn:p^j +!Jg/qs.]MoN:!&5!Qq%!rrJ)Go)A`LmA'[^b+HZQ"6@naoD\alo@hXRqu6`nbk(Pq"(nh8l29ZG +lMI_rmd1&Gp%\4]p$qeD!S0kn~> +!:T[K$L?j6gC6nn:p^j +!Jg/qs.]MoN:!&5!Qq%!rrJ)Go)A`LmA'[^b+HZQ"6@naoD\alo@hXRqu6`nbObGo"(n4[4o??' +8_TbJmd'rEp@SFUpZqq2?[r~> +!:KUI$L6a3fu`%3f[/aFm->#DjjDrIgW%q*jm)F&%Cq,;j4_o(bg+Yn^jW'QlN6Y"q>C6nn;$dl +!Jp5rs.]MoN:!&5!Qq%!rrJ)Go)A`LmA'[^b+HZQ"6@naoD\alo@hXRqu6`nb4>8l"(e.Z4o??' +8_TbImcsoDo_A([o^MV@!Ru@E~> +!:]aM$L-X0gXXNhcJ@RGm-P/EjPA)$b1,2(jQZ:'&`qf[J<.(bhq62eKm^&He(j'\m/lq)qY^?p +o\eR%hu_`moR[%:rrJ)GSc8l_lfH0Ie +!:T[K$L$O-g=4iLjcGKdbEjYliQe&qY^?p +o\eR%hu_`moR[%:rrJ)GSc8l_lfH0Ie!S(P-~> +!:KUI$KpF*g!e*`c.h7@m->#AinM\raO8buiofq!&`_TUI>tMXh:9Z[K6jT?dG!XVlN6Y#qY^?p +o\eR%hu_`moR[%:rrJ)GSc8l_lfH0Ie +!:][K#4(O9jlYgnkj8T?l/q*il0Ip-'C+N+beg?>G]%JCI?h(K_p$ZhlMBlLoZd71rrN#hq!\=V +qgndArrJ)GSc8i'QB7lnPQ(ZBmIL8XN:!PC"M'h[UXujP!rC16o^2Ecea3Cg8q6~> +!:TUI#3tF6jQ5Ujkj/N=kiLmekj%a*'C"E(bJC- +!:KOG#3k=3j5fCfkj&H;kN([akNVR''Bn<&b.sp6G&2&:HBYSC_919akkaTHo#pn-rrN#hq!\=V +qgndArrJ)GSc8i'QB7lnPQ(ZBmIL8XN:!PC"M'h[UXujP!rC+2o]u9`ea!7cG^o~> +!:[\h&*Vs(d`fbN_o'I6bgP/%kkONHoZm>bs+13$s+13$s7cNpqp+iKm/bd1J,~> +!:RVf&*Mm&dEBSK_SX73bL+r"kP4BFo?I/`s+13$s+13$s7cNpqp"`IliGXDJ,~> +!:IPd&*Dd#d)sAG_84%/b0\_sk4n6Do?@)_s+13$s+13$s7cNpqonZHlN,L[J,~> +!:ZfO"8("9rdk*#s+13$s+14Grr`8qdIb3@!S0kn~> +!:Q`M"7sn7rdk*#s+13$s+14Grr`8qd.>$=!S(P-~> +!:HZK"7je5rdk*#s+13$s+14Grr`8qcgnj:!Ru@E~> +!:ZfO"7k@4q18Hpr.4csr.4eAquccXi:=YM!S0kn~> +!:Q`M"7b72q18Hpr.4csr.4eAquccXhsnJJ!S(P-~> +!:HZK"7Y.0q18Hpr.4csr.4eAquccXhseDH!Ru@E~> +!:ZfO"7Gdci__RoBsB\!S0kn~> +!:Q`M"7>^:d=KVpc[jDnc[jF +!:HZK"75U8d"0Jnc@O8lc@O::c3)GMo'F-W!Ru@E~> +!:ZcN!q,[QJbFZgJbFZgJbJp5!ql0Q^?ksP8q6~> +!:Q]L!U]H/omudeomudep%S+[o'O0X!S(P-~> +!:HWJ!poILJb=TeJb=TeJbAj3!qc$L^?YgLG^o~> +!:YR,JaJ$UJaJ$UJaLnQ!S0kn~> +!:PL*Ja@sSJa@sSJaChO!S(P-~> +!:GF(Ja7mQJa7mQJa:bM!Ru@E~> +!:YR,JaJ$UJaJ$UJaLnQ!S0kn~> +!:PL*Ja@sSJa@sSJaChO!S(P-~> +!:GF(Ja7mQJa7mQJa:bM!Ru@E~> +JaJ$UJaJ$UJaJ$Ud-Ug*J,~> +Ja@sSJa@sSJa@sSd-La>J,~> +Ja7mQJa7mQJa7mQd-C[VJ,~> +JaJ$UJaJ$UJaJ$Ud-Ug*J,~> +Ja@sSJa@sSJa@sSd-La>J,~> +Ja7mQJa7mQJa7mQd-C[VJ,~> +!:>?;JZ=:$JZ=:$JZ@.u!UWL0~> +!:59:JZ=:$JZ=:$JZ@.u!UO0D~> +!:,3:JZF@&JZF@&JZI5"!UFu\~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/qXFQ\qXFUR8q6~> +!:5::JcC<$JcC<$JcF^/qXFQ\qXFUQ?[r~> +!:,49JcC<$JcC<$JcF^/qXFQ\qXFUPG^o~> +!:>@;JcC<$JcC<$JcF^/qsjZ\qsa^S8q6~> +!:5::JcC<$JcC<$JcF^/qsjZ\qsa^R?[r~> +!:,49JcC<$JcC<$JcF^/qsjZ\qsa^QG^o~> +!:>@;JcC<$JcC<$JcF^/r:0][r:'gT8q6~> +!:5::JcC<$JcC<$JcF^/r:0][r:'gS?[r~> +!:,49JcC<$JcC<$JcF^/r:0][r:'gRG^o~> +!:BL[!gFK%f)P^LJcC<$JcC<$JcD;@rUK`ZrUBpU8q6~> +!:9FZ!gFK%f)P^LJcC<$JcC<$JcD;@rUK`ZrUBpT?[r~> +!:0@Y!gFK%f)P^LJcC<$JcC<$JcD;@rUK`ZrUBpSG^o~> +!:BL[!Z&cReGfLKJcC<$JcC<$JcD;@o'lbJ8q6~> +!:9FZ!Z&cReGfLKJcC<$JcC<$JcD;@o'lbI?[r~> +!:0@Y!Z&cReGfLKJcC<$JcC<$JcD;@o'lbHG^o~> +!:BL[!!)or!W`6#g]%6RqYpNqqu6]trr@WMJcC<$JcC<$Y5e(_!UWL0~> +!:9FZ!!)or!W`6#g]%6RqYpNqqu6]trr@WMJcC<$JcC<$Y5e(_!UO0D~> +!:0@Y!!)or!W`6#g]%6RqYpNqqu6]trr@WMJcC<$JcC<$Y5e(_!UFu\~> +!:BO\!W2uqrrN3#!8IMR!;c]q!;lct!<3%Ms+13$s+13$s/uCmnH&#LJ,~> +!:9I[!W2uqrrN3#!8IMR!;c]q!;lct!<3%Ms+13$s+13$s/uCmnH%u`J,~> +!:0CZ!W2uqrrN3#!8IMR!;c]q!;lct!<3%Ms+13$s+13$s/uCmnH%s#J,~> +!:BR]!rK&>qu6]trrDus(BB@6$B>)cr.H4)?M"3sc:ATQ1T^WV!<)ot!<)ot!;ulo!<3!"!<3&r +s8N(Ms+13$s+13$s0hsunH&#LJ,~> +!:9L\!rK&>qu6]trrDus(BB@6$B>)cr.H4)?M"3sc:ATQ1T^WV!<)ot!<)ot!;ulo!<3!"!<3&r +s8N(Ms+13$s+13$s0hsunH%u`J,~> +!:0F[!rK&>qu6]trrDus(BB@6$B>)cr.H4)?M"3sc:ATQ1T^WV!<)ot!<)ot!;ulo!<3!"!<3&r +s8N(Ms+13$s+13$s0hsunH%s#J,~> +!:BR]!WW7qqu6]trrDus(B?qYl:(aQN'lLj@W;AI+Jn](_bU73!<)ot!<)ot!;c]q!;lct!<3&r +s8N(Ms+13$s+13$s0ht-nb/p]nH&#LJ,~> +!:9L\!WW7qqu6]trrDus(B?qYl:(aQN'lLj@W;AI+Jn](_bU73!<)ot!<)ot!;c]q!;lct!<3&r +s8N(Ms+13$s+13$s0ht-nb/p]nH%u`J,~> +!:0F[!WW7qqu6]trrDus(B?qYl:(aQN'lLj@W;AI+Jn](_bU73!<)ot!<)ot!;c]q!;lct!<3&r +s8N(Ms+13$s+13$s0ht-nb/p]nH%s#J,~> +!:BR]!r%6qoD\gkhYdB^-f"b%koTm)+a_&frVlfs!<)ot!<)ot!;c]q!.k0$s+13$s+13Hs8VTh +W;+".W:BEF8q6~> +!:9L\!r%6qoD\gkhYdB^-f"b%koTm)+a_&frVlfs!<)ot!<)ot!;c]q!.k0$s+13$s+13Hs8VTh +W;+".W:BEE?[r~> +!:0F[!r%6qoD\gkhYdB^-f"b%koTm)+a_&frVlfs!<)ot!<)ot!;c]q!.k0$s+13$s+13Hs8VTh +W;+".W:BEDG^o~> +!:BO\!U9gZrrE-!r;Qa'r;[3,s8U\\0F8Jns8N)trr<&trr<&qrr<%Ms+13$s+13$s/#bqnGoN_ +]EG2'na/r!~> +!:9I[!U9gZrrE-!r;Qa'r;[3,s8U\\0F8Jns8N)trr<&trr<&qrr<%Ms+13$s+13$s/#bqnGoN_ +]EG2'na'V5~> +!:0CZ!U9gZrrE-!r;Qa'r;[3,s8U\\0F8Jns8N)trr<&trr<&qrr<%Ms+13$s+13$s/#bqnGoN_ +]EG2'n`tFM~> +!:BO\!W<#irr<&rrrFS:q#:]uVA0(1$2+>uiW/rW!=AMtrrE0"JcC<$JcC<$JcDVIs7$)fpq-a. +naZ!=J,~> +!:9I[!W<#irr<&rrrFS:q#:]uVA0(1$2+>uiW/rW!=AMtrrE0"JcC<$JcC<$JcDVIs7$)fpq-a. +naYsQJ,~> +!:0CZ!W<#irr<&rrrFS:q#:]uVA0(1$2+>uiW/rW!=AMtrrE0"JcC<$JcC<$JcDVIs7$)fpq-a. +naYpiJ,~> +!:BL[!<`8lrr<&rrtUSlh"\l`s8PNroCSM!s8P*3o\iaLrVlpYQi-d]!Z\QEo`+pkJcC<$JcC<$ +JcE1Ys7$)fpq-a.naZ!=J,~> +!:9FZ!<`8lrr<&rrtUSlh"\l`s8PNroCSM!s8P*3o\iaLrVlpYQi-d]!Z\QEo`+pkJcC<$JcC<$ +JcE1Ys7$)fpq-a.naYsQJ,~> +!:0@Y!<`8lrr<&rrtUSlh"\l`s8PNroCSM!s8P*3o\iaLrVlpYQi-d]!Z\QEo`+pkJcC<$JcC<$ +JcE1Ys7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLp&>!lqu7E0O!k8hXoJF056hfne,THo1C#8/!<)p"b:*GlrVlts* +!:9FZ!ZnlLp&>!lqu7E0O!k8hXoJF056hfne,THo1C#8/!<)p"b:*GlrVlts* +!:0@Y!ZnlLp&>!lqu7E0O!k8hXoJF056hfne,THo1C#8/!<)p"b:*GlrVlts* +!:BL[!hL81JcC<$JcC<$JcC<$n,NFX!3#\*"K:k\m7Mm~> +!:9FZ!hL81JcC<$JcC<$JcC<$n,NFX!3#\*"K:k\lsG8~> +!:0@Y!hL81JcC<$JcC<$JcC<$n,NFX!3#\*"K:k\lZdp~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[rW)lr!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!G +r;Q`so)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4=es7$)fpq-a.naZ!=J,~> +!:9FZrW)lr!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!G +r;Q`so)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4=es7$)fpq-a.naYsQJ,~> +!:0@YrW)lr!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!G +r;Q`so)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4=es7$)fpq-a.naYpiJ,~> +!:BL[!!)lq!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&d +rr<&6rrW/7(@D/%nGoN_]EG2'na/r!~> +!:9FZ!!)lq!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&d +rr<&6rrW/7(@D/%nGoN_]EG2'na'V5~> +!:0@Y!!)lq!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&d +rr<&6rrW/7(@D/%nGoN_]EG2'n`tFM~> +!:BL[!!)lq!!)or!W`6#qu6Wrg]%gNprW)lr(>N.2"YQbRs-P&8 +,b+i6]1ihD.=q0lqZ$j5s7:1N"soN5rre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrDEc"ILG<,b+N-"ILG<,b+f5#2EN("Y-_UqZ$U.p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!:BgdnGoN_]EG2'na/r!~> +!:9FZ!!)lq!!)or!W`6#qu6Wrg]%gNprW)lr(>N.2"YQbRs-P&8 +,b+i6]1ihD.=q0lqZ$j5s7:1N"soN5rre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrDEc"ILG<,b+N-"ILG<,b+f5#2EN("Y-_UqZ$U.p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!:BgdnGoN_]EG2'na'V5~> +!:0@Y!!)lq!!)or!W`6#qu6Wrg]%gNprW)lr(>N.2"YQbRs-P&8 +,b+i6]1ihD.=q0lqZ$j5s7:1N"soN5rre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrDEc"ILG<,b+N-"ILG<,b+f5#2EN("Y-_UqZ$U.p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!:BgdnGoN_]EG2'n`tFM~> +!:BL[!!)or!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trtaE2PN2GY;ZEd< +_",5[Y5^PSiVMG@:&Fr+8!3g^:>5Hk7&'^^*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j; +pV]Phrr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&I +rr<&rrrN3#!:BdjWu]"H^DsEOrsl(M_",5[Y5d5pL>;RO:&Fqk8!3QG!W`6#mJd.dq#: +!:9FZ!!)or!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trtaE2PN2GY;ZEd< +_",5[Y5^PSiVMG@:&Fr+8!3g^:>5Hk7&'^^*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j; +pV]Phrr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&I +rr<&rrrN3#!:BdjWu]"H^DsEOrsl(M_",5[Y5d5pL>;RO:&Fqk8!3QG!W`6#mJd.dq#: +!:0@Y!!)or!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trtaE2PN2GY;ZEd< +_",5[Y5^PSiVMG@:&Fr+8!3g^:>5Hk7&'^^*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j; +pV]Phrr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&I +rr<&rrrN3#!:BdjWu]"H^DsEOrsl(M_",5[Y5d5pL>;RO:&Fqk8!3QG!W`6#mJd.dq#: +!:BL[!!)rs!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6# +qu?Zrr;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1Q[rrGE`rr3"p6Mpc`nHo-n"gf`UrtX_rrrhCF +s$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr& +bK]O(23C@rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur +;R<*KHUn5oDegjX +!:9FZ!!)rs!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6# +qu?Zrr;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1Q[rrGE`rr3"p6Mpc`nHo-n"gf`UrtX_rrrhCF +s$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr& +bK]O(23C@rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur +;R<*KHUn5oDegjX +!:0@Y!!)rs!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6# +qu?Zrr;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1Q[rrGE`rr3"p6Mpc`nHo-n"gf`UrtX_rrrhCF +s$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr& +bK]O(23C@rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur +;R<*KHUn5oDegjX +!:BL[!!)rs!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6# +qu?Zrr;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYjrrE\nrr3#\')V\0V+LXc#5]gXs8Nkurr3,^ +&-!4'rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PAejV%S0QR`:a +H1q4:!rFCTpAY0orrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:9FZ!!)rs!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6# +qu?Zrr;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYjrrE\nrr3#\')V\0V+LXc#5]gXs8Nkurr3,^ +&-!4'rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PAejV%S0QR`:a +H1q4:!rFCTpAY0orrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:0@Y!!)rs!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6# +qu?Zrr;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYjrrE\nrr3#\')V\0V+LXc#5]gXs8Nkurr3,^ +&-!4'rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PAejV%S0QR`:a +H1q4:!rFCTpAY0orrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:BL[!!)rs!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEp +rVlm#p\t3m!!iN*q>Y71q#gQp!id$hrVln[9)ei#BiEg^e4KlD!r;k3s7lcZrr<&srriD_s8Va! +rVlitr;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3* ++ohQBj8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ# +s(hZ1"7Z +!:9FZ!!)rs!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEp +rVlm#p\t3m!!iN*q>Y71q#gQp!id$hrVln[9)ei#BiEg^e4KlD!r;k3s7lcZrr<&srriD_s8Va! +rVlitr;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3* ++ohQBj8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ# +s(hZ1"7Z +!:0@Y!!)rs!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEp +rVlm#p\t3m!!iN*q>Y71q#gQp!id$hrVln[9)ei#BiEg^e4KlD!r;k3s7lcZrr<&srriD_s8Va! +rVlitr;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3* ++ohQBj8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ# +s(hZ1"7Z +!:BL[!!)or!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip +!!)ut!>XMjrrW9$&Ej&m!Tasnrr`+=*R"E]!ppcUrr3;tFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut +!!)ut!!)rs!"&T(!!<0"!+GnrrM3oq#:@+kPkJajV%S(jSo/[k84-t!ppcUmf*Omq#CBh$31#* +rVm-'s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-! +r;Q`srVls"s8NE(!!!)nrrE8gmf3=W!3#\*"K:k\m7Mm~> +!:9FZ!!)or!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip +!!)ut!>XMjrrW9$&Ej&m!Tasnrr`+=*R"E]!ppcUrr3;tFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut +!!)ut!!)rs!"&T(!!<0"!+GnrrM3oq#:@+kPkJajV%S(jSo/[k84-t!ppcUmf*Omq#CBh$31#* +rVm-'s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-! +r;Q`srVls"s8NE(!!!)nrrE8gmf3=W!3#\*"K:k\lsG8~> +!:0@Y!!)or!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip +!!)ut!>XMjrrW9$&Ej&m!Tasnrr`+=*R"E]!ppcUrr3;tFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut +!!)ut!!)rs!"&T(!!<0"!+GnrrM3oq#:@+kPkJajV%S(jSo/[k84-t!ppcUmf*Omq#CBh$31#* +rVm-'s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-! +r;Q`srVls"s8NE(!!!)nrrE8gmf3=W!3#\*"K:k\lZdp~> +!:BL[!!)or!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEp +rVlmuNW&kZ!<5<_rr35"6N@)@2+d-3rrHqTq#:JS>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW +!C3U_rrf/bs#fBArrM9urr3"8E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!mf3=W!3#\*"K:k\ +m7Mm~> +!:9FZ!!)or!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEp +rVlmuNW&kZ!<5<_rr35"6N@)@2+d-3rrHqTq#:JS>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW +!C3U_rrf/bs#fBArrM9urr3"8E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!mf3=W!3#\*"K:k\ +lsG8~> +!:0@Y!!)or!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEp +rVlmuNW&kZ!<5<_rr35"6N@)@2+d-3rrHqTq#:JS>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW +!C3U_rrf/bs#fBArrM9urr3"8E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!mf3=W!3#\*"K:k\ +lZdp~> +!:BL[!!)lq!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!Hikj +rrIRlrr2ruq>UEprVmPZ(6mkSaoMIB+2[Wc*NoF;&:siYrrUagn,<7r:t59rKc/VEWuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!;6?rWuo4M_&]]Xs8N)trtDFT_XkSaY5b._eG.cpB`J+`)"7A%rrD`l'`_(nkYQX+s#G`( +iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l +*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!;?HmnGoN_]EG2'na/r!~> +!:9FZ!!)lq!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!Hikj +rrIRlrr2ruq>UEprVmPZ(6mkSaoMIB+2[Wc*NoF;&:siYrrUagn,<7r:t59rKc/VEWuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!;6?rWuo4M_&]]Xs8N)trtDFT_XkSaY5b._eG.cpB`J+`)"7A%rrD`l'`_(nkYQX+s#G`( +iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l +*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!;?HmnGoN_]EG2'na'V5~> +!:0@Y!!)lq!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!Hikj +rrIRlrr2ruq>UEprVmPZ(6mkSaoMIB+2[Wc*NoF;&:siYrrUagn,<7r:t59rKc/VEWuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!;6?rWuo4M_&]]Xs8N)trtDFT_XkSaY5b._eG.cpB`J+`)"7A%rrD`l'`_(nkYQX+s#G`( +iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l +*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!;?HmnGoN_]EG2'n`tFM~> +!:BL[!!)lq!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:9FZ!!)lq!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:0@Y!!)lq!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:BL[rW)lr!hL81JcFj3!g +!:9FZrW)lr!hL81JcFj3!g +!:0@YrW)lr!hL81JcFj3!g +!:>@;ci4#"S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEp&G'^!3#\*"K:k\m7Mm~> +!:5::ci4#"S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEp&G'^!3#\*"K:k\lsG8~> +!:,49ci4#"S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEp&G'^!3#\*"K:k\lZdp~> +!:>@;JcGcM"JQeK@.JmKJcCN*!!%TMj8]/L!3#\*"K:k\m7Mm~> +!:5::JcGcM"JQeK@.JmKJcCN*!!%TMj8]/L!3#\*"K:k\lsG8~> +!:,49JcGcM"JQeK@.JmKJcCN*!!%TMj8]/L!3#\*"K:k\lZdp~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrre]7 +"XKT:rtLhG"XKT;s2.tR$S$`"s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:s +q=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]t +rrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+f5rW)Tj!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrre]7 +"XKT:rtLhG"XKT;s2.tR$S$`"s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:s +q=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]t +rrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+f5rW)Tj!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrre]7 +"XKT:rtLhG"XKT;s2.tR$S$`"s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:s +q=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]t +rrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+f5rW)Tj!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)pB +Wu]"H^DsEVWu]"H^DsEV4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Iq#:i)*Ph6\*3T=B*Ph6\*3T8?!!)Zk!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)pB +Wu]"H^DsEVWu]"H^DsEV4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Iq#:i)*Ph6\*3T=B*Ph6\*3T8?!!)Zk!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)pB +Wu]"H^DsEVWu]"H^DsEV4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Iq#:i)*Ph6\*3T=B*Ph6\*3T8?!!)Zk!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrGE`rr3+s6N9?Lrr3"p6MpccmKihYVuH]# +UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&s +rt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)( +&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'WrrGE`rr3+s6N9?Lrr3"p6N-oa!;-9m +!<3&trs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uO +s8Vh0()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct +*N].qs8VThW;+".W:BEF8q6~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrGE`rr3+s6N9?Lrr3"p6MpccmKihYVuH]# +UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&s +rt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)( +&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'WrrGE`rr3+s6N9?Lrr3"p6N-oa!;-9m +!<3&trs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uO +s8Vh0()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct +*N].qs8VThW;+".W:BEE?[r~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrGE`rr3+s6N9?Lrr3"p6MpccmKihYVuH]# +UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&s +rt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)( +&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'WrrGE`rr3+s6N9?Lrr3"p6N-oa!;-9m +!<3&trs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uO +s8Vh0()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct +*N].qs8VThW;+".W:BEDG^o~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrE\nrr3,_')rO*rr3#\')hh7qqYgUrt+>l +rs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$Fh +sOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#! +;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrE\nrr3,_')rO*rr3#\')hh7qqYgUrt+>l +rs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$Fh +sOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#! +;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrE\nrr3,_')rO*rr3#\')hh7qqYgUrt+>l +rs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$Fh +sOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#! +;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p-!r;k3s7lcs!r;k3s7lcrs8E!).-pm7q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWuq>Y71q#gTq!!)Ed#QWTYs4SaurrE#t#QXo) +!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p-!r;k3s7lcs!r;k3s7lcrs8E!).-pm7q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWuq>Y71q#gTq!!)Ed#QWTYs4SaurrE#t#QXo) +!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p-!r;k3s7lcs!r;k3s7lcrs8E!).-pm7q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWuq>Y71q#gTq!!)Ed#QWTYs4SaurrE#t#QXo) +!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrE\orr3,_')rO+rr3#\')hh7qV#=Trt+AmrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu!+GnrrhErrt+AmrrM3orVlitmJdFlq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8ghZ*WG!3#\*"K:k\m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrE\orr3,_')rO+rr3#\')hh7qV#=Trt+AmrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu!+GnrrhErrt+AmrrM3orVlitmJdFlq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8ghZ*WG!3#\*"K:k\lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrE\orr3,_')rO+rr3#\')hh7qV#=Trt+AmrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu!+GnrrhErrt+AmrrM3orVlitmJdFlq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8ghZ*WG!3#\*"K:k\lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou5cF\^"JnHb5cF\^!Mr-[rrh]qs$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou5cF\^"JnHb5cF\^!Mr-[rrh]qs$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou5cF\^"JnHb5cF\^!Mr-[rrh]qs$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut*igC"o>)HMs/R6Yo>)HMs$O$Yq:T7Bs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uurVmA.+2[Wc*NoFC+2[Wc*NoA@!!)orrrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut*igC"o>)HMs/R6Yo>)HMs$O$Yq:T7Bs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uurVmA.+2[Wc*NoFC+2[Wc*NoA@!!)orrrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut*igC"o>)HMs/R6Yo>)HMs$O$Yq:T7Bs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uurVmA.+2[Wc*NoFC+2[Wc*NoA@!!)orrrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#:,Fe]4'UL$J,Fe`5_G(OI-$8PSs-Fr6,FeE,!q$%5 +p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO +!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4"IC>:,Fe]4quH`r!q$%5p&>a,M@pY>p](9>1C#8/!<<'!N +"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#:,Fe]4'UL$J,Fe`5_G(OI-$8PSs-Fr6,FeE,!q$%5 +p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO +!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4"IC>:,Fe]4quH`r!q$%5p&>a,M@pY>p](9>1C#8/!<<'!N +"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#:,Fe]4'UL$J,Fe`5_G(OI-$8PSs-Fr6,FeE,!q$%5 +p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO +!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4"IC>:,Fe]4quH`r!q$%5p&>a,M@pY>p](9>1C#8/!<<'!N +"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrs"i9 +"XKT;s8)frrsckK'FQCAo`+rY,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2s8E#srs.h$*![HqlMp_]pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr +!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrs"i9 +"XKT;s8)frrsckK'FQCAo`+rY,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2s8E#srs.h$*![HqlMp_]pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr +!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrs"i9 +"XKT;s8)frrsckK'FQCAo`+rY,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2s8E#srs.h$*![HqlMp_]pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr +!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)p' +Wu]"H^DsEV!;c^/4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrD`l#-/c[o"Q0Ip&>!lrVm-jCuY9MCd\4&nc&XjrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)p' +Wu]"H^DsEV!;c^/4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrD`l#-/c[o"Q0Ip&>!lrVm-jCuY9MCd\4&nc&XjrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)p' +Wu]"H^DsEV!;c^/4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrD`l#-/c[o"Q0Ip&>!lrVm-jCuY9MCd\4&nc&XjrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrGE`rr3(r6N7&Yrrh`qs$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrGE`rr3(r6N7&Yrrh`qs$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrGE`rr3(r6N7&Yrrh`qs$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrE\nrr38c')qqL"WKt:r;Quuh.94Y&E`ul +#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlit +r;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut%:!i3qVuL#rr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!8mhVnGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrE\nrr38c')qqL"WKt:r;Quuh.94Y&E`ul +#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlit +r;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut%:!i3qVuL#rr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!8mhVnGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrE\nrr38c')qqL"WKt:r;Quuh.94Y&E`ul +#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlit +r;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut%:!i3qVuL#rr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!8mhVnGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p%!r;k3s7lcqrr_Yt/qs<)rW!6Qli.%^s(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr<&trrMUHrVusVnbrIimC+^%nG`aogAh3,,ldlErVm-'s8N)Q +s8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut +#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p%!r;k3s7lcqrr_Yt/qs<)rW!6Qli.%^s(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr<&trrMUHrVusVnbrIimC+^%nG`aogAh3,,ldlErVm-'s8N)Q +s8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut +#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p%!r;k3s7lcqrr_Yt/qs<)rW!6Qli.%^s(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr<&trrMUHrVusVnbrIimC+^%nG`aogAh3,,ldlErVm-'s8N)Q +s8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut +#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrE\orr3#\')V\0g_9Yd#5[%];Z@rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrE\orr3#\')V\0g_9Yd#5[%];Z@rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrE\orr3#\')V\0g_9Yd#5[%];Z@rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou5cF\^!Mr-[rrM'jqu6fd$3*8hrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT!!)ut +!=J;prrMQrqu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou5cF\^!Mr-[rrM'jqu6fd$3*8hrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT!!)ut +!=J;prrMQrqu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou5cF\^!Mr-[rrM'jqu6fd$3*8hrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT!!)ut +!=J;prrMQrqu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut*igC"o>)HMs%'ZiouT==s$O$Yq:T7Bs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqrVm?lC>o$JC-hkj\FK764E^Z'rrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut*igC"o>)HMs%'ZiouT==s$O$Yq:T7Bs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqrVm?lC>o$JC-hkj\FK764E^Z'rrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut*igC"o>)HMs%'ZiouT==s$O$Yq:T7Bs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqrVm?lC>o$JC-hkj\FK764E^Z'rrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO +!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs'B`aB"rh%8s/S*c%l9XPs8VKe,PD'O!/_C(C\Rl/cSGeQXT8D$! +/qO+D>=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO +!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs'B`aB"rh%8s/S*c%l9XPs8VKe,PD'O!/_C(C\Rl/cSGeQXT8D$! +/qO+D>=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO +!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs'B`aB"rh%8s/S*c%l9XPs8VKe,PD'O!/_C(C\Rl/cSGeQXT8D$! +/qO+D>=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#srtW.? +&.0k;p&Dp4'FQCAo`+N%*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#prrh6q!<<)r!!!W*rrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3#! +;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#srtW.? +&.0k;p&Dp4'FQCAo`+N%*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#prrh6q!<<)r!!!W*rrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3#! +;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#srtW.? +&.0k;p&Dp4'FQCAo`+N%*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#prrh6q!<<)r!!!W*rrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3#! +;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)pB +3hG=,hdT=[4J_'7i+bscA5:kQdmTr1Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Ip&>!lqu6cq30""8rrGWPp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)pB +3hG=,hdT=[4J_'7i+bscA5:kQdmTr1Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Ip&>!lqu6cq30""8rrGWPp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)pB +3hG=,hdT=[4J_'7i+bscA5:kQdmTr1Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Ip&>!lqu6cq30""8rrGWPp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&orrMWrqu6fe#lbY&rr3,^4T@^Frr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)or"*I<;!;lctZmknHrrN3#!<)p'!0.a/ +D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&orrMWrqu6fe#lbY&rr3,^4T@^Frr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)or"*I<;!;lctZmknHrrN3#!<)p'!0.a/ +D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&orrMWrqu6fe#lbY&rr3,^4T@^Frr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)or"*I<;!;lctZmknHrrN3#!<)p'!0.a/ +D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&orrJrfrVm*!h.94Y(?kbt"QU*n&E`ul#3?Kt +rrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlitr;R@M +:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>&mUC/8 +rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QDf44j\ +F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1k"Bmt +rr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+N'lLj +@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)rs"LfE$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8s*@H' +j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&orrJrfrVm*!h.94Y(?kbt"QU*n&E`ul#3?Kt +rrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlitr;R@M +:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>&mUC/8 +rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QDf44j\ +F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1k"Bmt +rr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+N'lLj +@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)rs"LfE$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8s*@H' +j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&orrJrfrVm*!h.94Y(?kbt"QU*n&E`ul#3?Kt +rrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlitr;R@M +:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>&mUC/8 +rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QDf44j\ +F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1k"Bmt +rr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+N'lLj +@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)rs"LfE$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8s*@H' +j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!;ZWrWYX:es8E!1.-pnI;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&srrje* +s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Zs8Va! +rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lrVm&_(r?7P!;uitO@ns@#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!;ZWrWYX:es8E!1.-pnI;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&srrje* +s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Zs8Va! +rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lrVm&_(r?7P!;uitO@ns@#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!;ZWrWYX:es8E!1.-pnI;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&srrje* +s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Zs8Va! +rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lrVm&_(r?7P!;uitO@ns@#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&rrr`+=*R"B\%f4me;ZHE5+U9N_(]P'0rr3#\''B2o!;uis!<)ot!<)ot!;uis +$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo)rVlit +rVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr/'T#QXZ"s7cp#rrE#t#QXo)!;QTop^-p!!!)lq +!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&rrr`+=*R"B\%f4me;ZHE5+U9N_(]P'0rr3#\''B2o!;uis!<)ot!<)ot!;uis +$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo)rVlit +rVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr/'T#QXZ"s7cp#rrE#t#QXo)!;QTop^-p!!!)lq +!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&rrr`+=*R"B\%f4me;ZHE5+U9N_(]P'0rr3#\''B2o!;uis!<)ot!<)ot!;uis +$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo)rVlit +rVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr/'T#QXZ"s7cp#rrE#t#QXo)!;QTop^-p!!!)lq +!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!;uj!gbh[hq>UK_$2a`*MH^$FW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-Urr<&ts7u`p +rrHqTmJdn$gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV# +s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!;uj!gbh[hq>UK_$2a`*MH^$FW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-Urr<&ts7u`p +rrHqTmJdn$gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV# +s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!;uj!gbh[hq>UK_$2a`*MH^$FW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-Urr<&ts7u`p +rrHqTmJdn$gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV# +s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut"/?EYrr)j46a6"Sfjd8H:t59rKc/VEWuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!<)p%Wuo4M_&]]Xs8N)qrr<&orr<&urrUagn,*.b!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD +!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5 +iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut"/?EYrr)j46a6"Sfjd8H:t59rKc/VEWuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!<)p%Wuo4M_&]]Xs8N)qrr<&orr<&urrUagn,*.b!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD +!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5 +iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut"/?EYrr)j46a6"Sfjd8H:t59rKc/VEWuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!<)p%Wuo4M_&]]Xs8N)qrr<&orr<&urrUagn,*.b!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD +!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5 +iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#_#o_G(OI-$8PSX=",h?/5GZ"IC>:,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHTn!!*#u!D&ORrrVTg,PD'O!/_C(C\Rl/cSGeQXT8D$!/qO+D>=)0"j8=q +!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#_#o_G(OI-$8PSX=",h?/5GZ"IC>:,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHTn!!*#u!D&ORrrVTg,PD'O!/_C(C\Rl/cSGeQXT8D$!/qO+D>=)0"j8=q +!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#_#o_G(OI-$8PSX=",h?/5GZ"IC>:,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHTn!!*#u!D&ORrrVTg,PD'O!/_C(C\Rl/cSGeQXT8D$!/qO+D>=)0"j8=q +!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#pru0f2 +!<<):=VM5nJb9!Bgg1p'.^/mPQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76).AcJ4!=eko +rr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ!!)or!W`6# +o`#&],R#H_pAYkp,R#H_s8V\0*X3pTs8V@r*![HqlM(;[!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#pru0f2 +!<<):=VM5nJb9!Bgg1p'.^/mPQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76).AcJ4!=eko +rr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ!!)or!W`6# +o`#&],R#H_pAYkp,R#H_s8V\0*X3pTs8V@r*![HqlM(;[!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#pru0f2 +!<<):=VM5nJb9!Bgg1p'.^/mPQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76).AcJ4!=eko +rr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ!!)or!W`6# +o`#&],R#H_pAYkp,R#H_s8V\0*X3pTs8V@r*![HqlM(;[!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!;ld> +q`'T9s8P3WjSIeL9`NicL>;RO:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S`('1p +!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3T):(98Iko"Q0Is("mYpX;O)s$LV^q;Q3Xp\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!;ld> +q`'T9s8P3WjSIeL9`NicL>;RO:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S`('1p +!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3T):(98Iko"Q0Is("mYpX;O)s$LV^q;Q3Xp\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!;ld> +q`'T9s8P3WjSIeL9`NicL>;RO:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S`('1p +!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3T):(98Iko"Q0Is("mYpX;O)s$LV^q;Q3Xp\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&rrr[C;rrDoq"RZQq=cE7X!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3s +pM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4B +qqqGRnGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&rrr[C;rrDoq"RZQq=cE7X!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3s +pM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4B +qqqGRnGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&rrr[C;rrDoq"RZQq=cE7X!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3s +pM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4B +qqqGRnGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&srrfeOm/I(`rsnq^AP2t=QR`:aH1q7Lk5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r(?kbt$02Ws>]8[! +j)88urrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&srrfeOm/I(`rsnq^AP2t=QR`:aH1q7Lk5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r(?kbt$02Ws>]8[! +j)88urrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&srrfeOm/I(`rsnq^AP2t=QR`:aH1q7Lk5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r(?kbt$02Ws>]8[! +j)88urrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p$jVYi6rrE#trW!NYli.&[e+_TnC]=J3s(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lclrt,>.s(hZ1"93(6h"]Ak"TRsKrVusVnaQPa!8@JQg*H^u!<)p' +!<<'!gAh3,,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p$jVYi6rrE#trW!NYli.&[e+_TnC]=J3s(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lclrt,>.s(hZ1"93(6h"]Ak"TRsKrVusVnaQPa!8@JQg*H^u!<)p' +!<<'!gAh3,,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p$jVYi6rrE#trW!NYli.&[e+_TnC]=J3s(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lclrt,>.s(hZ1"93(6h"]Ak"TRsKrVusVnaQPa!8@JQg*H^u!<)p' +!<<'!gAh3,,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrGB9rr2rur;Qutg0dhY&*3`i"QpU$&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\');J-&Ej&m&`jZ*ol_J`/!UqN:Mf"ciG)0Xrs/W"s8Vj#s8N)trs/W)rrDio +s7cp!rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrGB9rr2rur;Qutg0dhY&*3`i"QpU$&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\');J-&Ej&m&`jZ*ol_J`/!UqN:Mf"ciG)0Xrs/W"s8Vj#s8N)trs/W)rrDio +s7cp!rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrGB9rr2rur;Qutg0dhY&*3`i"QpU$&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\');J-&Ej&m&`jZ*ol_J`/!UqN:Mf"ciG)0Xrs/W"s8Vj#s8N)trs/W)rrDio +s7cp!rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ro!;ld!m0WeTjSo/^k8+(_W;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-XrrGB`rr3"q +6MpccMH^#en,E=fmgJXb'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ro!;ld!m0WeTjSo/^k8+(_W;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-XrrGB`rr3"q +6MpccMH^#en,E=fmgJXb'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ro!;ld!m0WeTjSo/^k8+(_W;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-XrrGB`rr3"q +6MpccMH^#en,E=fmgJXb'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)fo)$'^:6a6"Sfjd8HTL@<)gJDS`Wuo4M_&]]Ps8N)jrr<&s +rr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b;?6as +h&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(]0#mS; +B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\;;Crd +:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^:36I8 +O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h!<)p% +Wuo4M_&]]Xs8N)trt_XW_XkSaY5_>Jpt^WAgAaBPiVMMJ62poa!;6@,!)VkB:j`6B3J6t_;ulsu +!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e% +!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)fo)$'^:6a6"Sfjd8HTL@<)gJDS`Wuo4M_&]]Ps8N)jrr<&s +rr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b;?6as +h&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(]0#mS; +B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\;;Crd +:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^:36I8 +O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h!<)p% +Wuo4M_&]]Xs8N)trt_XW_XkSaY5_>Jpt^WAgAaBPiVMMJ62poa!;6@,!)VkB:j`6B3J6t_;ulsu +!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e% +!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)fo)$'^:6a6"Sfjd8HTL@<)gJDS`Wuo4M_&]]Ps8N)jrr<&s +rr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b;?6as +h&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(]0#mS; +B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\;;Crd +:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^:36I8 +O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h!<)p% +Wuo4M_&]]Xs8N)trt_XW_XkSaY5_>Jpt^WAgAaBPiVMMJ62poa!;6@,!)VkB:j`6B3J6t_;ulsu +!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e% +!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus)ODZP,Fe`5X=",h?/5J[k?o55)e/%2s6]k3p&>a,M@pY>p](9>1C#8/!<<'! +N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus)ODZP,Fe`5X=",h?/5J[k?o55)e/%2s6]k3p&>a,M@pY>p](9>1C#8/!<<'! +N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus)ODZP,Fe`5X=",h?/5J[k?o55)e/%2s6]k3p&>a,M@pY>p](9>1C#8/!<<'! +N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrsdai +)[.^ps1:u:$7UQ!rVlrW('+@6"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET) +nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3# +!;-9oQm;h\S+cjbQm;h\S,WErgg1p'.^/mDE#o30PkP+Y!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrsdai +)[.^ps1:u:$7UQ!rVlrW('+@6"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET) +nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3# +!;-9oQm;h\S+cjbQm;h\S,WErgg1p'.^/mDE#o30PkP+Y!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#rrsdai +)[.^ps1:u:$7UQ!rVlrW('+@6"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET) +nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3# +!;-9oQm;h\S+cjbQm;h\S,WErgg1p'.^/mDE#o30PkP+Y!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)p- +gDYh%psDh93hG=,hdT=Zrt5,fNWB+ZWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Iq#;,1*Ph6\*3T=r)M[&Bd7sXO:>5Hk7&'GU!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)p- +gDYh%psDh93hG=,hdT=Zrt5,fNWB+ZWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Iq#;,1*Ph6\*3T=r)M[&Bd7sXO:>5Hk7&'GU!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!<)p- +gDYh%psDh93hG=,hdT=Zrt5,fNWB+ZWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[ +mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:I +qu6]trrD`l#-/c[o"Q0Iq#;,1*Ph6\*3T=r)M[&Bd7sXO:>5Hk7&'GU!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrH8]pAY0`$3'r0F\Mf8s8PB_rr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrH8]pAY0`$3'r0F\Mf8s8PB_rr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&trrH8]pAY0`$3'r0F\Mf8s8PB_rr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrs:+.gI5CpA=juV+L^e[iOi8!<<'1k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul%-8-%(RHWW+aNe](?kbt +!TXdcrrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrs:+.gI5CpA=juV+L^e[iOi8!<<'1k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul%-8-%(RHWW+aNe](?kbt +!TXdcrrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&trrs:+.gI5CpA=juV+L^e[iOi8!<<'1k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul%-8-%(RHWW+aNe](?kbt +!TXdcrrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p%"&%,;gJD\`rt;=Ig&L.N_>jN8s8N/rs(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lclrtY\3s(hZ1"9/Hre+_TnC]A*Ih"]Ak"RuEs!8@JQg*H^u!<)p' +!<<'!gAh3,,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p%"&%,;gJD\`rt;=Ig&L.N_>jN8s8N/rs(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lclrtY\3s(hZ1"9/Hre+_TnC]A*Ih"]Ak"RuEs!8@JQg*H^u!<)p' +!<<'!gAh3,,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!<)p%"&%,;gJD\`rt;=Ig&L.N_>jN8s8N/rs(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lclrtY\3s(hZ1"9/Hre+_TnC]A*Ih"]Ak"RuEs!8@JQg*H^u!<)p' +!<<'!gAh3,,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrEYkrr3#^(]OF>qK!\#s8P?8rr3*$s8NYnrr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'na/r!~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrEYkrr3#^(]OF>qK!\#s8P?8rr3*$s8NYnrr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'na'V5~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&trrEYkrr3#^(]OF>qK!\#s8P?8rr3*$s8NYnrr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'n`tFM~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou4QQMA#Nlm&s4fJ'li-q\!!<0cW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bp +fc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-XrrGB` +rr3+t6N91/rr3#^(An+4MH]NL'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou4QQMA#Nlm&s4fJ'li-q\!!<0cW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bp +fc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-XrrGB` +rr3+t6N91/rr3#^(An+4MH]NL'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!<)ou4QQMA#Nlm&s4fJ'li-q\!!<0cW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bp +fc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-XrrGB` +rr3+t6N91/rr3#^(An+4MH]NL'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut$_To;ptJVYs.^-VrqQL"!<<)"+2[Wc*No,9rrDZj!!)rs +!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4!<<)T +*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36`qA"u +s8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\h"\l` +rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7":F8u9$ +;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj)HMs.Dd0ptJVYs%q5?h1Za#rr;uup&>a,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut$_To;ptJVYs.^-VrqQL"!<<)"+2[Wc*No,9rrDZj!!)rs +!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4!<<)T +*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36`qA"u +s8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\h"\l` +rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7":F8u9$ +;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj)HMs.Dd0ptJVYs%q5?h1Za#rr;uup&>a,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)ut$_To;ptJVYs.^-VrqQL"!<<)"+2[Wc*No,9rrDZj!!)rs +!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4!<<)T +*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36`qA"u +s8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\h"\l` +rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7":F8u9$ +;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj)HMs.Dd0ptJVYs%q5?h1Za#rr;uup&>a,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#^Nar;Q`srr3+f,6]<]pAY3^!$h1:quH`r +!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:9FZ!ZnlLo`#^Nar;Q`srr3+f,6]<]pAY3^!$h1:quH`r +!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:0@Y!ZnlLo`#^Nar;Q`srr3+f,6]<]pAY3^!$h1:quH`r +!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#ss8)d4 +&c_lu,R#H_s8V@r*![HqlMpmO,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2s8E#srsckK'FQCAo`+N%*X3pTpAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#ss8)d4 +&c_lu,R#H_s8V@r*![HqlMpmO,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2s8E#srsckK'FQCAo`+N%*X3pTpAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#M`Q#"YQbRs8E#ss8)d4 +&c_lu,R#H_s8V@r*![HqlMpmO,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2s8E#srsckK'FQCAo`+N%*X3pTpAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!;QR8 +8!3hP*Ph6\*3TA!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!;6?rWu]"H^DsELrr<&trsh/ejSIeL9`JWug@s&aUA+Zh!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naZ!=J,~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!;QR8 +8!3hP*Ph6\*3TA!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!;6?rWu]"H^DsELrr<&trsh/ejSIeL9`JWug@s&aUA+Zh!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naYsQJ,~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z6Uq!;QR8 +8!3hP*Ph6\*3TA!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!;6?rWu]"H^DsELrr<&trsh/ejSIeL9`JWug@s&aUA+Zh!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naYpiJ,~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&prrobYqu8s[rr3+s6N7G_rr3,i%0&Vkrr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)fo"RZQq($GSr!TZB;rrN3#!<)p' +!0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGR +nGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&prrobYqu8s[rr3+s6N7G_rr3,i%0&Vkrr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)fo"RZQq($GSr!TZB;rrN3#!<)p' +!0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGR +nGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QXrr<&prrobYqu8s[rr3+s6N7G_rr3,i%0&Vkrr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)fo"RZQq($GSr!TZB;rrN3#!<)p' +!0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGR +nGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&qrs&?K\,ZI>k5PAhjV%SuDr^]SDdNGTk5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;c^"qqYgUrtahtrrM0kp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&qrs&?K\,ZI>k5PAhjV%SuDr^]SDdNGTk5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;c^"qqYgUrtahtrrM0kp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrr<&qrs&?K\,ZI>k5PAhjV%SuDr^]SDdNGTk5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;c^"qqYgUrtahtrrM0kp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!;c]rO@oNP#m0r&C]F24s6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!;c]rO@oNP#m0r&C]F24s6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ot!;c]rO@oNP#m0r&C]F24s6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&rrrVR'f`(mO&Ej&m%-8-%:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'(u8)!;c^'qV#=Ts7LOY#:l&UnG`aoq#CBh$31#*rVm-'s8N)os8Vj#rVlit +qYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE(!!!)n +rrE8ghZ*WG!3#\*"K:k\m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&rrrVR'f`(mO&Ej&m%-8-%:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'(u8)!;c^'qV#=Ts7LOY#:l&UnG`aoq#CBh$31#*rVm-'s8N)os8Vj#rVlit +qYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE(!!!)n +rrE8ghZ*WG!3#\*"K:k\lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&trr<&rrrVR'f`(mO&Ej&m%-8-%:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'(u8)!;c^'qV#=Ts7LOY#:l&UnG`aoq#CBh$31#*rVm-'s8N)os8Vj#rVlit +qYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE(!!!)n +rrE8ghZ*WG!3#\*"K:k\lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!;lcsCiK@Q!C3U_rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!;lcsCiK@Q!C3U_rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<)ot!;lcsCiK@Q!C3U_rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)rs!nJ4WrVmY6+2[Wc*NoE,C>o$JC-hm#+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)rs!nJ4WrVmY6+2[Wc*NoE,C>o$JC-hm#+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm)M(6mkSaoMD?!!)rs!nJ4WrVmY6+2[Wc*NoE,C>o$JC-hm#+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*%gaP(mJj78"<(S$rr3&f!$h1:'`a+('l3RDs3EJ+-ER:Jrr@uj +(2`jFrrpRp! +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*%gaP(mJj78"<(S$rr3&f!$h1:'`a+('l3RDs3EJ+-ER:Jrr@uj +(2`jFrrpRp! +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*%gaP(mJj78"<(S$rr3&f!$h1:'`a+('l3RDs3EJ+-ER:Jrr@uj +(2`jFrrpRp! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr&):D+"YQbR]1ihD.=q0l +s8E#ss8)d$&c_HA*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&c +rre]7"XKT2rre]7"XKT8rsRa#!<<)29b7X\JbAd;!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr&):D+"YQbR]1ihD.=q0l +s8E#ss8)d$&c_HA*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&c +rre]7"XKT2rre]7"XKT8rsRa#!<<)29b7X\JbAd;!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr&):D+"YQbR]1ihD.=q0l +s8E#ss8)d$&c_HA*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&c +rre]7"XKT2rre]7"XKT8rsRa#!<<)29b7X\JbAd;!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trsmj*PN2GY;ZAeLiVMG@ +:&Y(l!;QR08!3g^:>5Hk7&'^^*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!:BdjWu]"H^DsEOrs#ME_",5[Y5\G0q`'T9s8P-OiVMG@:&"Yh!<3&drr<&orr<&crr<&drr<&u +rrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W;*[s7$)fpq-a.naZ!=J,~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trsmj*PN2GY;ZAeLiVMG@ +:&Y(l!;QR08!3g^:>5Hk7&'^^*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!:BdjWu]"H^DsEOrs#ME_",5[Y5\G0q`'T9s8P-OiVMG@:&"Yh!<3&drr<&orr<&crr<&drr<&u +rrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W;*[s7$)fpq-a.naYsQJ,~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trsmj*PN2GY;ZAeLiVMG@ +:&Y(l!;QR08!3g^:>5Hk7&'^^*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!:BdjWu]"H^DsEOrs#ME_",5[Y5\G0q`'T9s8P-OiVMG@:&"Yh!<3&drr<&orr<&crr<&drr<&u +rrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W;*[s7$)fpq-a.naYpiJ,~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QVrrMWrrVlitq>UW*.Js,[kPkJaj?3H.VuH]#UdG+] +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!;6?m6)X_^!Mi'WrrGE`rr3"p6N6ueF\Mf8qYpTd$2=H$!<3&t +rs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0 +()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N]/$ +s8VThW;+".W:BEF8q6~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QVrrMWrrVlitq>UW*.Js,[kPkJaj?3H.VuH]#UdG+] +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!;6?m6)X_^!Mi'WrrGE`rr3"p6N6ueF\Mf8qYpTd$2=H$!<3&t +rs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0 +()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N]/$ +s8VThW;+".W:BEE?[r~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QVrrMWrrVlitq>UW*.Js,[kPkJaj?3H.VuH]#UdG+] +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!;6?m6)X_^!Mi'WrrGE`rr3"p6N6ueF\Mf8qYpTd$2=H$!<3&t +rs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0 +()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N]/$ +s8VThW;+".W:BEDG^o~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYerrJrfrVlitqYpcs.(B6V(?kbt"QU*n&E`ul#3?Kt +rrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlitr;R@M +:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>&mUC/8 +rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QDf44j\ +F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1k"Bmt +rr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+N'lLj +@W;AI!*%nKJNEc0!!)or!W`6#qu?Zrp&>%(k5PA]jV%@g!>+Dmrs7^!s8TPKm/I(^rrJrfp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYerrJrfrVlitqYpcs.(B6V(?kbt"QU*n&E`ul#3?Kt +rrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlitr;R@M +:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>&mUC/8 +rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QDf44j\ +F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1k"Bmt +rr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+N'lLj +@W;AI!*%nKJNEc0!!)or!W`6#qu?Zrp&>%(k5PA]jV%@g!>+Dmrs7^!s8TPKm/I(^rrJrfp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYerrJrfrVlitqYpcs.(B6V(?kbt"QU*n&E`ul#3?Kt +rrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlitr;R@M +:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>&mUC/8 +rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QDf44j\ +F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1k"Bmt +rr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+N'lLj +@W;AI!*%nKJNEc0!!)or!W`6#qu?Zrp&>%(k5PA]jV%@g!>+Dmrs7^!s8TPKm/I(^rrJrfp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!;uiuWYX:drr<&qrrJ3Rrr3IB;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&srrje* +s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Zs8Va! +rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gZY(r?7P!;lctWYX:Wrs/VYs8Udus8N)trs/W)rrCdQ +s4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR!<)p' +!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEF8q6~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!;uiuWYX:drr<&qrrJ3Rrr3IB;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&srrje* +s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Zs8Va! +rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gZY(r?7P!;lctWYX:Wrs/VYs8Udus8N)trs/W)rrCdQ +s4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR!<)p' +!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEE?[r~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!;uiuWYX:drr<&qrrJ3Rrr3IB;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&srrje* +s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Zs8Va! +rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gZY(r?7P!;lctWYX:Wrs/VYs8Udus8N)trs/W)rrCdQ +s4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR!<)p' +!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEDG^o~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urr`+=*R"B\!!)or!ppcUrr3;tFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3oq#:@+kPkJajV%SYJc>ZL!<)p"qK!\#n,EXnq#CBh$31#*rVm-'s8N)o +s8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls" +s8NE(!!!)nrrE8gk5YJO!3#\*"K:k\m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urr`+=*R"B\!!)or!ppcUrr3;tFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3oq#:@+kPkJajV%SYJc>ZL!<)p"qK!\#n,EXnq#CBh$31#*rVm-'s8N)o +s8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls" +s8NE(!!!)nrrE8gk5YJO!3#\*"K:k\lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urr`+=*R"B\!!)or!ppcUrr3;tFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3oq#:@+kPkJajV%SYJc>ZL!<)p"qK!\#n,EXnq#CBh$31#*rVm-'s8N)o +s8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls" +s8NE(!!!)nrrE8gk5YJO!3#\*"K:k\lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&k]!<<)S2+d-2rr<&rrrHqTq#:JS>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW!C3U_rrT#` +s7u`qrr_%68aGgE'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&k]!<<)S2+d-2rr<&rrrHqTq#:JS>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW!C3U_rrT#` +s7u`qrr_%68aGgE'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&k]!<<)S2+d-2rr<&rrrHqTq#:JS>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW!C3U_rrT#` +s7u`qrr_%68aGgE'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMI:&:siWrr<&srrUagn,<7r:t59rKc/VEWuo4M_&]]Ps8N)jrr<&s +rr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b;?6as +h&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(]0#mS; +B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\;;Crd +:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^:36I8 +O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h!;6?r +Wuo4M_&]]Xs8N)trs#MG_XkSaY5A5'!<<(o&:siXs8N)lrtPN1kNG`hs8P*3o\iaLs8N'qkNG`l +rVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QErVlitqu7*c +KCn,%!<<([;;Crd:%nSfqucfqrrDKes7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMI:&:siWrr<&srrUagn,<7r:t59rKc/VEWuo4M_&]]Ps8N)jrr<&s +rr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b;?6as +h&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(]0#mS; +B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\;;Crd +:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^:36I8 +O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h!;6?r +Wuo4M_&]]Xs8N)trs#MG_XkSaY5A5'!<<(o&:siXs8N)lrtPN1kNG`hs8P*3o\iaLs8N'qkNG`l +rVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QErVlitqu7*c +KCn,%!<<([;;Crd:%nSfqucfqrrDKes7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMI:&:siWrr<&srrUagn,<7r:t59rKc/VEWuo4M_&]]Ps8N)jrr<&s +rr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b;?6as +h&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(]0#mS; +B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\;;Crd +:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^:36I8 +O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h!;6?r +Wuo4M_&]]Xs8N)trs#MG_XkSaY5A5'!<<(o&:siXs8N)lrtPN1kNG`hs8P*3o\iaLs8N'qkNG`l +rVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QErVlitqu7*c +KCn,%!<<([;;Crd:%nSfqucfqrrDKes7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:9FZ!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:0@Y!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr/DOJH"YQbRs4gp""Y-_U +]1ihD.=q0ll=M"@*+nL9l=M"@*+nL9s-P&8,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cm]!;c]si"c=jrrV*o!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m +!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr/DOJH"YQbRs4gp""Y-_U +]1ihD.=q0ll=M"@*+nL9l=M"@*+nL9s-P&8,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cm]!;c]si"c=jrrV*o!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m +!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr/DOJH"YQbRs4gp""Y-_U +]1ihD.=q0ll=M"@*+nL9l=M"@*+nL9s-P&8,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cm]!;c]si"c=jrrV*o!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m +!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&ts"iIOPN2GY;ZGJiL>;RO +:&d8GiVMG@:&dRsiq_SM6iTMiiq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)or"8b' +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&ts"iIOPN2GY;ZGJiL>;RO +:&d8GiVMG@:&dRsiq_SM6iTMiiq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)or"8b' +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&ts"iIOPN2GY;ZGJiL>;RO +:&d8GiVMG@:&dRsiq_SM6iTMiiq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)or"8b' +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1Q[rrH8]pAY9c$3(D&rr3,i%0$_)rr3,i%0&Vkrr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)or"*I<;!<)p"F\Mf8pAY0orrE#t +#QTl!(2`jHrrE#t#QXo)!1=N9C\Rf-!!)rsrW)lr*R71h"uE@\rrB,I#W'g,s87Nn&74u.s7^=F +'TE+lrrN3#!;lfr!;uiu!<3&ts8)fqrs&O^*=@f+rrE#t#QXo)r.H4)?M"0r!W`6#qu6^ +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1Q[rrH8]pAY9c$3(D&rr3,i%0$_)rr3,i%0&Vkrr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)or"*I<;!<)p"F\Mf8pAY0orrE#t +#QTl!(2`jHrrE#t#QXo)!1=N9C\Rf-!!)rsrW)lr*R71h"uE@\rrB,I#W'g,s87Nn&74u.s7^=F +'TE+lrrN3#!;lfr!;uiu!<3&ts8)fqrs&O^*=@f+rrE#t#QXo)r.H4)?M"0r!W`6#qu6^ +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1Q[rrH8]pAY9c$3(D&rr3,i%0$_)rr3,i%0&Vkrr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)or"*I<;!<)p"F\Mf8pAY0orrE#t +#QTl!(2`jHrrE#t#QXo)!1=N9C\Rf-!!)rsrW)lr*R71h"uE@\rrB,I#W'g,s87Nn&74u.s7^=F +'TE+lrrN3#!;lfr!;uiu!<3&ts8)fqrs&O^*=@f+rrE#t#QXo)r.H4)?M"0r!W`6#qu6^ +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYjrrs:+.gI5CpA=k(V+L\lDr^]SDdNHKDr^]SDdNGT +k5PAbjV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmr +rr<&srt0+m +N'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i +/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlit +r;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;uj"[iOi8!<3!$[iOi8 +!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYjrrs:+.gI5CpA=k(V+L\lDr^]SDdNHKDr^]SDdNGT +k5PAbjV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmr +rr<&srt0+m +N'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i +/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlit +r;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;uj"[iOi8!<3!$[iOi8 +!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYjrrs:+.gI5CpA=k(V+L\lDr^]SDdNHKDr^]SDdNGT +k5PAbjV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmr +rr<&srt0+m +N'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i +/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlit +r;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;uj"[iOi8!<3!$[iOi8 +!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!!iN+9@NXi:i$"/"f`?ks6qoF!!G1Ls6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!!iN+9@NXi:i$"/"f`?ks6qoF!!G1Ls6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!!iN+9@NXi:i$"/"f`?ks6qoF!!G1Ls6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrrW9$&*3`i!Tt9urtkNQ*R"K_:Mf"ciG)0g:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&crrE\orr3#\'(u8)!<)ou5_8q7"9AK%5_8q7!!)Kf#QXZ"s7cp#rrE#t#QXo)!;QTo +p^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrrW9$&*3`i!Tt9urtkNQ*R"K_:Mf"ciG)0g:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&crrE\orr3#\'(u8)!<)ou5_8q7"9AK%5_8q7!!)Kf#QXZ"s7cp#rrE#t#QXo)!;QTo +p^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrrW9$&*3`i!Tt9urtkNQ*R"K_:Mf"ciG)0g:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&crrE\orr3#\'(u8)!<)ou5_8q7"9AK%5_8q7!!)Kf#QXZ"s7cp#rrE#t#QXo)!;QTo +p^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kZ!<51Brr35d(B=Ei2+d-5rrEJqrr3,i$i^S&rr3,i$i`Jjrr3"q6K\:J!;uis!<)ot!<)ou +!WN&t!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t +!!)ut!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLu +s8Uaprr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\ +qu6sEgAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cet +V*akT!!)utq>^Nqq>g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kZ!<51Brr35d(B=Ei2+d-5rrEJqrr3,i$i^S&rr3,i$i`Jjrr3"q6K\:J!;uis!<)ot!<)ou +!WN&t!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t +!!)ut!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLu +s8Uaprr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\ +qu6sEgAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cet +V*akT!!)utq>^Nqq>g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kZ!<51Brr35d(B=Ei2+d-5rrEJqrr3,i$i^S&rr3,i$i`Jjrr3"q6K\:J!;uis!<)ot!<)ou +!WN&t!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t +!!)ut!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLu +s8Uaprr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\ +qu6sEgAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cet +V*akT!!)utq>^Nqq>g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVmPZ(6mkSaoMI77+D"d:h]m(&:siZrt[h6iVMMJ62s/aiVMMJ63!u-_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!;c]q!;QQo!;c]q!<)rt!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD +!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5 +iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVmPZ(6mkSaoMI77+D"d:h]m(&:siZrt[h6iVMMJ62s/aiVMMJ63!u-_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!;c]q!;QQo!;c]q!<)rt!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD +!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5 +iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVmPZ(6mkSaoMI77+D"d:h]m(&:siZrt[h6iVMMJ62s/aiVMMJ63!u-_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!;c]q!;QQo!;c]q!<)rt!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD +!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5 +iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#'kHq7rtER)! +!:9FZ!ZnlLo`#'kHq7rtER)! +!:0@Y!ZnlLo`#'kHq7rtER)! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ$X/s8)fq +rtO6p)[.^ps2.tR$S$`"s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca +!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k +"ILG<,b+N-"ILG<,b+f5"ILG<,b+`3!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ$X/s8)fq +rtO6p)[.^ps2.tR$S$`"s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca +!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k +"ILG<,b+N-"ILG<,b+f5"ILG<,b+`3!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ$X/s8)fq +rtO6p)[.^ps2.tR$S$`"s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca +!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k +"ILG<,b+N-"ILG<,b+f5"ILG<,b+`3!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$Ir8!3fO +qYqMh)M[&Bd7sX'Uu_C1C/"Z.*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!;6?rWu]"H^DsEOrsl(M_",5[Y5bOC_",5[Y5\G'q`'T9pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$Ir8!3fO +qYqMh)M[&Bd7sX'Uu_C1C/"Z.*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!;6?rWu]"H^DsEOrsl(M_",5[Y5bOC_",5[Y5\G'q`'T9pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$Ir8!3fO +qYqMh)M[&Bd7sX'Uu_C1C/"Z.*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Phrr<&f +rr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&rrrN3# +!;6?rWu]"H^DsEOrsl(M_",5[Y5bOC_",5[Y5\G'q`'T9pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrf\Xqu6ZmrrH8]pAY9`#ld2grr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGR +nGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrf\Xqu6ZmrrH8]pAY9`#ld2grr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGR +nGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrf\Xqu6ZmrrH8]pAY9`#ld2grr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGR +nGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrtG8X\,ZI.)$LsLZ2ah?QR`:aH1q4:#5d4f9)fIb +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S)k5PAdjV%Un +[iOi8!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrtG8X\,ZI.)$LsLZ2ah?QR`:aH1q4:#5d4f9)fIb +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S)k5PAdjV%Un +[iOi8!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrtG8X\,ZI.)$LsLZ2ah?QR`:aH1q4:#5d4f9)fIb +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S)k5PAdjV%Un +[iOi8!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oEM$gkDUL&V6Je+_TnC]=A5!!t(>rrW#rC]F24k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl'a"42C]F24rrW#rC]F24s5b*6s8N)frs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Os8VThW;+".W:BEF8q6~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oEM$gkDUL&V6Je+_TnC]=A5!!t(>rrW#rC]F24k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl'a"42C]F24rrW#rC]F24s5b*6s8N)frs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Os8VThW;+".W:BEE?[r~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oEM$gkDUL&V6Je+_TnC]=A5!!t(>rrW#rC]F24k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl'a"42C]F24rrW#rC]F24s5b*6s8N)frs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Os8VThW;+".W:BEDG^o~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f_POMg_9\ujSo/[k84*s#5[%];Z@ +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f_POMg_9\ujSo/[k84*s#5[%];Z@ +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f_POMg_9\ujSo/[k84*s#5[%];Z@ +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK1L"Q9sm4QQMA!Tt6qrrh]qs$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4 +!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q +!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&q +rr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK1L"Q9sm4QQMA!Tt6qrrh]qs$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4 +!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q +!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&q +rr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK1L"Q9sm4QQMA!Tt6qrrh]qs$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4 +!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q +!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&q +rr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlSruO_@nb(!dFoS+&eG.cpB`CH(mePOG5Q@c+_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!<)p-Wuo4M_&]]YWuo4M_&]]Urr<&ts8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlSruO_@nb(!dFoS+&eG.cpB`CH(mePOG5Q@c+_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!<)p-Wuo4M_&]]YWuo4M_&]]Urr<&ts8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlSruO_@nb(!dFoS+&eG.cpB`CH(mePOG5Q@c+_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!<)p-Wuo4M_&]]YWuo4M_&]]Urr<&ts8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,Nf%+nGoN_]EG2'na/r!~> +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,Nf%+nGoN_]EG2'na'V5~> +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,Nf%+nGoN_]EG2'n`tFM~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ%3?s8Uk\ +)[.^ps8Uk\)[.^ps8)d$&c_lu,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&c +rre]7"XKT2s8E#rs8E#ss8)cr&bl;,!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&Z +rrN3#!;uitrW)'[s7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ%3?s8Uk\ +)[.^ps8Uk\)[.^ps8)d$&c_lu,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&c +rre]7"XKT2s8E#rs8E#ss8)cr&bl;,!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&Z +rrN3#!;uitrW)'[s7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ%3?s8Uk\ +)[.^ps8Uk\)[.^ps8)d$&c_lu,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&c +rre]7"XKT2s8E#rs8E#ss8)cr&bl;,!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&Z +rrN3#!;uitrW)'[s7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$J+8!3i+ +)M[&Bd7sYq)M[&Bd7sN<%S)Z]Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrDHd#-/c[o"Q0Ip&>!lqYpNqq#:@bOn\kW!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&r +rr<&ZrrN3#!;lcs!W;*[s7$)fpq-a.naZ!=J,~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$J+8!3i+ +)M[&Bd7sYq)M[&Bd7sN<%S)Z]Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrDHd#-/c[o"Q0Ip&>!lqYpNqq#:@bOn\kW!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&r +rr<&ZrrN3#!;lcs!W;*[s7$)fpq-a.naYsQJ,~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$J+8!3i+ +)M[&Bd7sYq)M[&Bd7sN<%S)Z]Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrDHd#-/c[o"Q0Ip&>!lqYpNqq#:@bOn\kW!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&r +rr<&ZrrN3#!;lcs!W;*[s7$)fpq-a.naYpiJ,~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrobYqu9fXqu6\"N;*>UZmknP6)X_^#,FTcrrE'! +o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$B,27r +p&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u.rrB,I +#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^B,27r +p&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE*!3@LQ +1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uOs8N)# +-3uERs8Vrrrr3$"rrDrrrrD`l!C!lqYpNqq>UN'.Jrl>!W`6#rVm-'NYE7Gq#C?o +rVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XkPtSP!3#\*"K:k\ +m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrobYqu9fXqu6\"N;*>UZmknP6)X_^#,FTcrrE'! +o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$B,27r +p&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u.rrB,I +#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^B,27r +p&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE*!3@LQ +1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uOs8N)# +-3uERs8Vrrrr3$"rrDrrrrD`l!C!lqYpNqq>UN'.Jrl>!W`6#rVm-'NYE7Gq#C?o +rVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XkPtSP!3#\*"K:k\ +lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrobYqu9fXqu6\"N;*>UZmknP6)X_^#,FTcrrE'! +o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$B,27r +p&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u.rrB,I +#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^B,27r +p&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE*!3@LQ +1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uOs8N)# +-3uERs8Vrrrr3$"rrDrrrrD`l!C!lqYpNqq>UN'.Jrl>!W`6#rVm-'NYE7Gq#C?o +rVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XkPtSP!3#\*"K:k\ +lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrtG8X\,ZIEQR`:aH1q7SQR`:aH1q4:#5]gXs8NYm +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3op&>!lqYpNqqYpWo.(ApM!W`6# +rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra +:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrtG8X\,ZIEQR`:aH1q7SQR`:aH1q4:#5]gXs8NYm +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3op&>!lqYpNqqYpWo.(ApM!W`6# +rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra +:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrtG8X\,ZIEQR`:aH1q7SQR`:aH1q4:#5]gXs8NYm +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3op&>!lqYpNqqYpWo.(ApM!W`6# +rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra +:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oNP%KfAQpY/M[rrYpCpY/M[rVln[9)ehp!r;k3s7lcZrr<&srriD_s8Va!rVlit +r;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3*+ohQB +j8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ#s(hZ1 +"7Z5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS@-s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oNP%KfAQpY/M[rrYpCpY/M[rVln[9)ehp!r;k3s7lcZrr<&srriD_s8Va!rVlit +r;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3*+ohQB +j8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ#s(hZ1 +"7Z5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS@-s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oNP%KfAQpY/M[rrYpCpY/M[rVln[9)ehp!r;k3s7lcZrr<&srriD_s8Va!rVlit +r;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3*+ohQB +j8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ#s(hZ1 +"7Z5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS@-s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f`(mO&*3`i"QpU$&*3`i!Tt9urrVR'f`(mO&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&bs8E#srrE\orr3#\'(u8)!;c]q!;lctm2"@Brs/W"s8Vj#s8N)trs/W)rrDios7cp! +rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f`(mO&*3`i"QpU$&*3`i!Tt9urrVR'f`(mO&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&bs8E#srrE\orr3#\'(u8)!;c]q!;lctm2"@Brs/W"s8Vj#s8N)trs/W)rrDios7cp! +rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f`(mO&*3`i"QpU$&*3`i!Tt9urrVR'f`(mO&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&bs8E#srrE\orr3#\'(u8)!;c]q!;lctm2"@Brs/W"s8Vj#s8N)trs/W)rrDios7cp! +rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK@Q!BfHBrrhL#s#fBArrM9urr3"8E;fe;5cF\^!Mr-Frr<&srr<&trr<&trrE0" +rVlmImeZq`!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlit +rVlitqYpNqr;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bp +fc^:o!!)lq!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X +#p7n$s4JOps!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WM3\!C3U_rrJr_ +p&>!lqYpNqqu6\5E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK@Q!BfHBrrhL#s#fBArrM9urr3"8E;fe;5cF\^!Mr-Frr<&srr<&trr<&trrE0" +rVlmImeZq`!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlit +rVlitqYpNqr;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bp +fc^:o!!)lq!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X +#p7n$s4JOps!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WM3\!C3U_rrJr_ +p&>!lqYpNqqu6\5E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK@Q!BfHBrrhL#s#fBArrM9urr3"8E;fe;5cF\^!Mr-Frr<&srr<&trr<&trrE0" +rVlmImeZq`!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlit +rVlitqYpNqr;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bp +fc^:o!!)lq!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X +#p7n$s4JOps!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WM3\!C3U_rrJr_ +p&>!lqYpNqqu6\5E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlSrtD%neG.cpB`F_neG.cpB`J+`)"7G'#-/i_o>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrD`l#-/i_o>)HMrr;uuqYpNqqYpNqr;QiL)"7A%rrD`l'`_(nkYQX+s#G`(iD]gWrr>mYkYQd- +rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&rrs^u@ +o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlSrtD%neG.cpB`F_neG.cpB`J+`)"7G'#-/i_o>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrD`l#-/i_o>)HMrr;uuqYpNqqYpNqr;QiL)"7A%rrD`l'`_(nkYQX+s#G`(iD]gWrr>mYkYQd- +rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&rrs^u@ +o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlSrtD%neG.cpB`F_neG.cpB`J+`)"7G'#-/i_o>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrD`l#-/i_o>)HMrr;uuqYpNqqYpNqr;QiL)"7A%rrD`l'`_(nkYQX+s#G`(iD]gWrr>mYkYQd- +rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&rrs^u@ +o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ$X/s8)d& +&c]aO'FQCAo`+dgrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn!!(mU +!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&krre]7 +"XKT2rtUnH"XKT;s7:1N"soN6s2.tR$S$`"p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ$X/s8)d& +&c]aO'FQCAo`+dgrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn!!(mU +!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&krre]7 +"XKT2rtUnH"XKT;s7:1N"soN6s2.tR$S$`"p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gNprW)lr#2EH""YQbRqZ$X/s8)d& +&c]aO'FQCAo`+dgrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn!!(mU +!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&krre]7 +"XKT2rtUnH"XKT;s7:1N"soN6s2.tR$S$`"p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$Ip8!3]K +$V-?Z4J_'7i+bsc!;c^'Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrD`l +#-/c[o"Q0Iq#;,1*Ph6\*3T5Hk7&']DUu_C1C/"C%!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$Ip8!3]K +$V-?Z4J_'7i+bsc!;c^'Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrD`l +#-/c[o"Q0Iq#;,1*Ph6\*3T5Hk7&']DUu_C1C/"C%!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&prr<&trs%:"PN2GY;Z$Ip8!3]K +$V-?Z4J_'7i+bsc!;c^'Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrD`l +#-/c[o"Q0Iq#;,1*Ph6\*3T5Hk7&']DUu_C1C/"C%!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrTPVqu$HqZmknLrr_ZprrDoq!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrTPVqu$HqZmknLrr_ZprrDoq!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)ip!!)ut!F1QWrrTPVqu$HqZmknLrr_ZprrDoq!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrrW'G\,?7-q^ArOrsnq^AP2t&)$LsLZ2ah8k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r(?kbt!TXdirr`/S +AP2^s!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrrW'G\,?7-q^ArOrsnq^AP2t&)$LsLZ2ah8k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r(?kbt!TXdirr`/S +AP2^s!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip!!)ut!>jYgrrW'G\,?7-q^ArOrsnq^AP2t&)$LsLZ2ah8k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r(?kbt!TXdirr`/S +AP2^s!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oEM!K]qOs8E!!.-pj3$gkDUL&V5Ms(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs"Xi+* +s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Zs7H`t +rr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcdrrF=d +qu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6?j8]/P +$N9u)!:9^i!r;k3s7lclrsf,+s(hZ1"93(6h"]Ak"TJH#!!+M6nG`aogAh3,,ldlErVm-'s8N)Q +s8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut +#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oEM!K]qOs8E!!.-pj3$gkDUL&V5Ms(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs"Xi+* +s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Zs7H`t +rr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcdrrF=d +qu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6?j8]/P +$N9u)!:9^i!r;k3s7lclrsf,+s(hZ1"93(6h"]Ak"TJH#!!+M6nG`aogAh3,,ldlErVm-'s8N)Q +s8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut +#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UEprVlm# +p\t3m!<)ouO@oEM!K]qOs8E!!.-pj3$gkDUL&V5Ms(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs"Xi+* +s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Zs7H`t +rr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcdrrF=d +qu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6?j8]/P +$N9u)!:9^i!r;k3s7lclrsf,+s(hZ1"93(6h"]Ak"TJH#!!+M6nG`aogAh3,,ldlErVm-'s8N)Q +s8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut +#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f_kaNm2"@Orr`,O?rHn%"Pa[j&Ej&m!TasVrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&c +rrE\orr3#\');J-&Ej&m$0;g"ol_J`/!UqLrr`,O?rHLo#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f_kaNm2"@Orr`,O?rHn%"Pa[j&Ej&m!TasVrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&c +rrE\orr3#\');J-&Ej&m$0;g"ol_J`/!UqLrr`,O?rHLo#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip!!)ut +!>XMjrr<&urrVR'f_kaNm2"@Orr`,O?rHn%"Pa[j&Ej&m!TasVrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&c +rrE\orr3#\');J-&Ej&m$0;g"ol_J`/!UqLrr`,O?rHLo#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK:O!Gl`MrrMKnqu6fX&cY+prr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW!C3U_rrJr_ +qu6\S>5S=#m0W:^'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK:O!Gl`MrrMKnqu6fX&cY+prr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW!C3U_rrJr_ +qu6\S>5S=#m0W:^'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruq>UEprVlmu +NW&kW!<3!!CiK:O!Gl`MrrMKnqu6fX&cY+prr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW!C3U_rrJr_ +qu6\S>5S=#m0W:^'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlRrrUagn,<8%6a6"Sfjd8H8@\3_aZO_GWuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!<)p%Wuo4M_&]]Xs8N)trt_XW_XkSaY5_>Jpt^WAgAaOEmePOG5Q:]_!;6@,!)VkB:j`6B3J6t_ +;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3 +Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlRrrUagn,<8%6a6"Sfjd8H8@\3_aZO_GWuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!<)p%Wuo4M_&]]Xs8N)trt_XW_XkSaY5_>Jpt^WAgAaOEmePOG5Q:]_!;6@,!)VkB:j`6B3J6t_ +;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3 +Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2ruq>UEprVm8R(6mkSaoMJAeemlRrrUagn,<8%6a6"Sfjd8H8@\3_aZO_GWuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!<)p%Wuo4M_&]]Xs8N)trt_XW_XkSaY5_>Jpt^WAgAaOEmePOG5Q:]_!;6@,!)VkB:j`6B3J6t_ +;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3 +Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`# +!:9FZ!ZnlLo`# +!:0@Y!ZnlLo`# +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq/\=^g$7UQ!s8UkZ(BlFis8SH3 +"XKT;s1:u:$7UQ!s7:1N"soN6s7:1N"soN5rre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrD]k"ILG<,b+N-"ILG<,b+f5%GY8/"Y-_Ul=M"@*+nL1rrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq/\=^g$7UQ!s8UkZ(BlFis8SH3 +"XKT;s1:u:$7UQ!s7:1N"soN6s7:1N"soN5rre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrD]k"ILG<,b+N-"ILG<,b+f5%GY8/"Y-_Ul=M"@*+nL1rrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq/\=^g$7UQ!s8UkZ(BlFis8SH3 +"XKT;s1:u:$7UQ!s7:1N"soN6s7:1N"soN5rre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrD]k"ILG<,b+N-"ILG<,b+f5%GY8/"Y-_Ul=M"@*+nL1rrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W95iVMG@:&j#iPN2GY;ZEd< +_",5[Y5^PSiVMG@:&ea!g@s&aUAnb!g@s&aUAq87_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T):(98Iko"Q0Is4\HHh"]8ks$LV^q;Q3Xp\t9prrDHd!!)fo +!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W95iVMG@:&j#iPN2GY;ZEd< +_",5[Y5^PSiVMG@:&ea!g@s&aUAnb!g@s&aUAq87_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T):(98Iko"Q0Is4\HHh"]8ks$LV^q;Q3Xp\t9prrDHd!!)fo +!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W95iVMG@:&j#iPN2GY;ZEd< +_",5[Y5^PSiVMG@:&ea!g@s&aUAnb!g@s&aUAq87_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T):(98Iko"Q0Is4\HHh"]8ks$LV^q;Q3Xp\t9prrDHd!!)fo +!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8LZ!C)coOepTB_D?( +!!)rs&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)s +KHUn5oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9( +)CTVs8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r +.H4)?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8LZ!C)coOepTB_D?( +!!)rs&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)s +KHUn5oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9( +)CTVs8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r +.H4)?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8LZ!C)coOepTB_D?( +!!)rs&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)s +KHUn5oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9( +)CTVs8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r +.H4)?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5,i!>+DmrrM3oqu6eq8cKRirr3,^&-!F/rr3,^&-!4' +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PAmjV%S0QR`:aH1q8C +Dr^]SDdN2 +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5,i!>+DmrrM3oqu6eq8cKRirr3,^&-!F/rr3,^&-!4' +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PAmjV%S0QR`:aH1q8C +Dr^]SDdN2 +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5,i!>+DmrrM3oqu6eq8cKRirr3,^&-!F/rr3,^&-!4' +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PAmjV%S0QR`:aH1q8C +Dr^]SDdN2 +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!!iN*q>Y71q#gQp)QFS+s(PEeps_n=s(PEeps_n=rrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl&H_e.C]F24rrYpCpY/M[s6qoF!!+tInG`aogAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!!iN*q>Y71q#gQp)QFS+s(PEeps_n=s(PEeps_n=rrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl&H_e.C]F24rrYpCpY/M[s6qoF!!+tInG`aogAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!!iN*q>Y71q#gQp)QFS+s(PEeps_n=s(PEeps_n=rrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl&H_e.C]F24rrYpCpY/M[s6qoF!!+tInG`aogAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<3Vnrr3#\')qnIqK!\#s8Vb8+U9N_(]X/O+U9N_(]P'0rr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'na/r!~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<3Vnrr3#\')qnIqK!\#s8Vb8+U9N_(]X/O+U9N_(]P'0rr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'na'V5~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<3Vnrr3#\')qnIqK!\#s8Vb8+U9N_(]X/O+U9N_(]P'0rr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'n`tFM~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVls"s$3O^rs,Aes8Uk38aH3P!K((Xrre3_s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVls"s$3O^rs,Aes8Uk38aH3P!K((Xrre3_s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVls"s$3O^rs,Aes8Uk38aH3P!K((Xrre3_s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrtEfrPiMP]!<9)A_XkSaY5b7.Jc>WJ(/WNUh1Za#s%q5?h1Za#s/R6Yo>)HM +pAb-moD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*u +s+!Z#ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t +&-2b1OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q +!;ld"O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVe +s)Ls!k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp= +Zi'IqrrE#t#-/i_o>)HMrr;uurVmY6+2[Wc*NoF87+D"d:h]knC>o$JC-hk!rrD`l'`_(nkYQX+ +s#G`(iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl +!;$3l*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrtEfrPiMP]!<9)A_XkSaY5b7.Jc>WJ(/WNUh1Za#s%q5?h1Za#s/R6Yo>)HM +pAb-moD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*u +s+!Z#ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t +&-2b1OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q +!;ld"O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVe +s)Ls!k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp= +Zi'IqrrE#t#-/i_o>)HMrr;uurVmY6+2[Wc*NoF87+D"d:h]knC>o$JC-hk!rrD`l'`_(nkYQX+ +s#G`(iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl +!;$3l*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrtEfrPiMP]!<9)A_XkSaY5b7.Jc>WJ(/WNUh1Za#s%q5?h1Za#s/R6Yo>)HM +pAb-moD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*u +s+!Z#ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t +&-2b1OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q +!;ld"O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVe +s)Ls!k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp= +Zi'IqrrE#t#-/i_o>)HMrr;uurVmY6+2[Wc*NoF87+D"d:h]knC>o$JC-hk!rrD`l'`_(nkYQX+ +s#G`(iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl +!;$3l*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#nh#IDU-Nk>nh#@'kHq7rtER)! +!:9FZ!ZnlLo`#nh#IDU-Nk>nh#@'kHq7rtER)! +!:0@Y!ZnlLo`#nh#IDU-Nk>nh#@'kHq7rtER)! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq+1k5Y$7UQ!s8UkZ(BlFis1:u: +$7UQ!s8SH3"XKT;s8)cr&cM_2i"c=lrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+f5"l*E'"Y-_MrrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq+1k5Y$7UQ!s8UkZ(BlFis1:u: +$7UQ!s8SH3"XKT;s8)cr&cM_2i"c=lrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+f5"l*E'"Y-_MrrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq+1k5Y$7UQ!s8UkZ(BlFis1:u: +$7UQ!s8SH3"XKT;s8)cr&cM_2i"c=lrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+f5"l*E'"Y-_MrrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAeL +iVMG@:&h77_",5[Y5A5"8!3fN&c4PJ!<<)"*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j; +pV]Phrr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&I +rr<&rrrN3#!;6?rWu]"H^DsEOrt_XU_",5[Y5bOC_",5[Y5d5pL>;RO:&"Yh!<3&drr<&orr<&c +rr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naZ!=J,~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAeL +iVMG@:&h77_",5[Y5A5"8!3fN&c4PJ!<<)"*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j; +pV]Phrr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&I +rr<&rrrN3#!;6?rWu]"H^DsEOrt_XU_",5[Y5bOC_",5[Y5d5pL>;RO:&"Yh!<3&drr<&orr<&c +rr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naYsQJ,~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAeL +iVMG@:&h77_",5[Y5A5"8!3fN&c4PJ!<<)"*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j; +pV]Phrr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&I +rr<&rrrN3#!;6?rWu]"H^DsEOrt_XU_",5[Y5bOC_",5[Y5d5pL>;RO:&"Yh!<3&drr<&orr<&c +rr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naYpiJ,~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U"Rufu6)X_^!Mi'[rrTPVqu6U#F\Mf8s8PB_rr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3s +pM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4B +qqqGRnGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U"Rufu6)X_^!Mi'[rrTPVqu6U#F\Mf8s8PB_rr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3s +pM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4B +qqqGRnGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U"Rufu6)X_^!Mi'[rrTPVqu6U#F\Mf8s8PB_rr31u +6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs +&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5 +oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTV +s8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4) +?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFkV!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3s +pM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4B +qqqGRnGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z4rd"Jn]i&E`ul!TasmrrW'G\,QC5[iOi8!<<'1k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r&E`ul$0;g"(RHWW ++aNeUrrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z4rd"Jn]i&E`ul!TasmrrW'G\,QC5[iOi8!<<'1k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r&E`ul$0;g"(RHWW ++aNeUrrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z4rd"Jn]i&E`ul!TasmrrW'G\,QC5[iOi8!<<'1k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J-&E`ul"Q^9r&E`ul$0;g"(RHWW ++aNeUrrN3#!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok= +!<3&rrrSqr!8mhVnGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!;uj(WYX:f!r;k3s7lcqrrJ3Rrr3Ji(r?7P!<<'#q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWuq>Y71q#gX!9@NXi:i#S##QWTYs4SaurrE#t +#QXo)!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,V +r;Q`srVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!;uj(WYX:f!r;k3s7lcqrrJ3Rrr3Ji(r?7P!<<'#q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWuq>Y71q#gX!9@NXi:i#S##QWTYs4SaurrE#t +#QXo)!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,V +r;Q`srVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!;uj(WYX:f!r;k3s7lcqrrJ3Rrr3Ji(r?7P!<<'#q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWuq>Y71q#gX!9@NXi:i#S##QWTYs4SaurrE#t +#QXo)!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,V +r;Q`srVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<3!'qK!\#s8NYnrr3#\')qn4m2"@RrrGB9rr3*$s8NYnrr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'na/r!~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<3!'qK!\#s8NYnrr3#\')qn4m2"@RrrGB9rr3*$s8NYnrr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'na'V5~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<3!'qK!\#s8NYnrr3#\')qn4m2"@RrrGB9rr3*$s8NYnrr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr$qle_[AnGoN_]EG2'n`tFM~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVm'%s8Uk38aHBU!C3U_rrJr_rr3"8E;fh5!!<0cW;cetV*a>E!!)rs!!)ut!!)ut!R;Z ++56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-X +rrGB`rr3+t6N9=!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&p +rrr:s'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\* +"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVm'%s8Uk38aHBU!C3U_rrJr_rr3"8E;fh5!!<0cW;cetV*a>E!!)rs!!)ut!!)ut!R;Z ++56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-X +rrGB`rr3+t6N9=!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&p +rrr:s'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\* +"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVm'%s8Uk38aHBU!C3U_rrJr_rr3"8E;fh5!!<0cW;cetV*a>E!!)rs!!)ut!!)ut!R;Z ++56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-X +rrGB`rr3+t6N9=!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&p +rrr:s'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\* +"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsR6jPiMP]!<8f*Jc>WJ$`bAdo>)HMs8UXen+cnh!<<)"+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj)HMs/R6Yo>)HMs.Dd0ptJVYrr;uup&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsR6jPiMP]!<8f*Jc>WJ$`bAdo>)HMs8UXen+cnh!<<)"+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj)HMs/R6Yo>)HMs.Dd0ptJVYrr;uup&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsR6jPiMP]!<8f*Jc>WJ$`bAdo>)HMs8UXen+cnh!<<)"+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj)HMs/R6Yo>)HMs.Dd0ptJVYrr;uup&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8hXo88- +b:*Gls8TV["sTuGrVm%u*: +,FeZ3rrDus"IC>:,Fe]4"IC>:,Fe]4$BQM:*HC`Os6]k3p&>a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8hXo88- +b:*Gls8TV["sTuGrVm%u*: +,FeZ3rrDus"IC>:,Fe]4"IC>:,Fe]4$BQM:*HC`Os6]k3p&>a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8hXo88- +b:*Gls8TV["sTuGrVm%u*: +,FeZ3rrDus"IC>:,Fe]4"IC>:,Fe]4$BQM:*HC`Os6]k3p&>a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq+M1>Z$7UQ!s8UkZ(BlFis1:u: +$7UQ!s8Uk\)[.^ps8W&urVm>lAfM$qB'TErQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76) +.AcJ4!=ekorr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ +!!)or!W`6#m/I3U,R#H_pAY8_,R#H_r;R/_('+C7_c[Z].Y76drrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!jo>AN!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq+M1>Z$7UQ!s8UkZ(BlFis1:u: +$7UQ!s8Uk\)[.^ps8W&urVm>lAfM$qB'TErQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76) +.AcJ4!=ekorr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ +!!)or!W`6#m/I3U,R#H_pAY8_,R#H_r;R/_('+C7_c[Z].Y76drrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!jo>AN!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq+M1>Z$7UQ!s8UkZ(BlFis1:u: +$7UQ!s8Uk\)[.^ps8W&urVm>lAfM$qB'TErQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76) +.AcJ4!=ekorr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ +!!)or!W`6#m/I3U,R#H_pAY8_,R#H_r;R/_('+C7_c[Z].Y76drrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!jo>AN!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAeL +iVMG@:&irdL>;RO:&Y(l!<)p26YtcXibV!^Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrDHd#-/c[o"Q0Iq#:Q!*Ph6\*3T;@%/W#E!<<']Uu_C1C/"C%!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAeL +iVMG@:&irdL>;RO:&Y(l!<)p26YtcXibV!^Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrDHd#-/c[o"Q0Iq#:Q!*Ph6\*3T;@%/W#E!<<']Uu_C1C/"C%!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAeL +iVMG@:&irdL>;RO:&Y(l!<)p26YtcXibV!^Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrDHd#-/c[o"Q0Iq#:Q!*Ph6\*3T;@%/W#E!<<']Uu_C1C/"C%!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U"Rufu=cE.U!!)ut!=SDrrrhd!s$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4Bqre"Z +nGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U"Rufu=cE.U!!)ut!=SDrrrhd!s$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4Bqre"Z +nGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U"Rufu=cE.U!!)ut!=SDrrrhd!s$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@rrB,I +#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5oDegj +X=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZ +N<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4Bqre"Z +nGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z4rd$)L5n(RHWW+aNe[rr<&trs;qKj8.eS?N1T!rr32a +'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PAdjV%Un[iOi8!;uj!qqYgU +p\t9prrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>& +mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6# +qu6_m! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z4rd$)L5n(RHWW+aNe[rr<&trs;qKj8.eS?N1T!rr32a +'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PAdjV%Un[iOi8!;uj!qqYgU +p\t9prrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>& +mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6# +qu6_m! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z4rd$)L5n(RHWW+aNe[rr<&trs;qKj8.eS?N1T!rr32a +'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PAdjV%Un[iOi8!;uj!qqYgU +p\t9prrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>& +mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6# +qu6_m! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!;uj(WYX:f"&%,;gJD\arr<&trrMUHrW!6^nc&[ds(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!9F.a!r;k3s7lclrs]&*s(hZ1"97I"_>jN8rVuis!@[:'rs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEF8q6~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!;uj(WYX:f"&%,;gJD\arr<&trrMUHrW!6^nc&[ds(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!9F.a!r;k3s7lclrs]&*s(hZ1"97I"_>jN8rVuis!@[:'rs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEE?[r~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!;uj(WYX:f"&%,;gJD\arr<&trrMUHrW!6^nc&[ds(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!9F.a!r;k3s7lclrs]&*s(hZ1"97I"_>jN8rVuis!@[:'rs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEDG^o~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<3!'qK!\#s8NVjrr3#^(]F@6!<)p(:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&bs8E#srrE\orr3#\');J-&Ej&m"Q^9r5_8q7!!)rs"8^_Z;Xj\l!;QTop^.!#!<)p' +!<<'!q#CBh$2sl(!;c]q!;uj&f4-K@'rh65!<)p"!<<'*r;[*)s8NB"s8Vfnjo5;\qu6Zsrqucr +!<)p"!<<'*r;Zg!p&>$qlfS6InGoN_]EG2'na/r!~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<3!'qK!\#s8NVjrr3#^(]F@6!<)p(:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&bs8E#srrE\orr3#\');J-&Ej&m"Q^9r5_8q7!!)rs"8^_Z;Xj\l!;QTop^.!#!<)p' +!<<'!q#CBh$2sl(!;c]q!;uj&f4-K@'rh65!<)p"!<<'*r;[*)s8NB"s8Vfnjo5;\qu6Zsrqucr +!<)p"!<<'*r;Zg!p&>$qlfS6InGoN_]EG2'na'V5~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<3!'qK!\#s8NVjrr3#^(]F@6!<)p(:Mf"ciG)0g&Ej&m!TasVrr<&srr<&trr<&t +rr<&srrUEpr;Qa'r;Zp$s8N)t +rr<&trr<&bs8E#srrE\orr3#\');J-&Ej&m"Q^9r5_8q7!!)rs"8^_Z;Xj\l!;QTop^.!#!<)p' +!<<'!q#CBh$2sl(!;c]q!;uj&f4-K@'rh65!<)p"!<<'*r;[*)s8NB"s8Vfnjo5;\qu6Zsrqucr +!<)p"!<<'*r;Zg!p&>$qlfS6InGoN_]EG2'n`tFM~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVm'%s8Uk38aHBU!BfHBrrM9urVlitrVlm*n,E=imgK.\W;cetV*a>E!!)rs!!)ut!!)ut +!R;Z+56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!roO.\5cF\^ +!Mr-XrrGB`rr3%r6N?l^qu6]a$1Rs0!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\ +m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVm'%s8Uk38aHBU!BfHBrrM9urVlitrVlm*n,E=imgK.\W;cetV*a>E!!)rs!!)ut!!)ut +!R;Z+56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!roO.\5cF\^ +!Mr-XrrGB`rr3%r6N?l^qu6]a$1Rs0!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\ +lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVm'%s8Uk38aHBU!BfHBrrM9urVlitrVlm*n,E=imgK.\W;cetV*a>E!!)rs!!)ut!!)ut +!R;Z+56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!roO.\5cF\^ +!Mr-XrrGB`rr3%r6N?l^qu6]a$1Rs0!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\ +lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsR6jPiMP]!<8f*Jc>WJ#,"B6ptJVYrVlitrVm?lC>o$JC-hm#+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t#-/i_o>)HMqu6s&s8PHjmePOG5Q:]_!;6@,!)VkB:j`6B3J6t_ +;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3 +Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqmf3=W!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsR6jPiMP]!<8f*Jc>WJ#,"B6ptJVYrVlitrVm?lC>o$JC-hm#+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t#-/i_o>)HMqu6s&s8PHjmePOG5Q:]_!;6@,!)VkB:j`6B3J6t_ +;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3 +Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqmf3=W!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsR6jPiMP]!<8f*Jc>WJ#,"B6ptJVYrVlitrVm?lC>o$JC-hm#+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t#-/i_o>)HMqu6s&s8PHjmePOG5Q:]_!;6@,!)VkB:j`6B3J6t_ +;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3 +Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqmf3=W!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq(qWKR$7UQ!s8UkZ(BlFis2.tR +$S$`"s8W&uqYpo\('+C7o5G`T-'\E/"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!:9^gQm;h\S+cjlQm;h\S,`N#9b7X\JbB'?!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW)'[s7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq(qWKR$7UQ!s8UkZ(BlFis2.tR +$S$`"s8W&uqYpo\('+C7o5G`T-'\E/"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!:9^gQm;h\S+cjlQm;h\S,`N#9b7X\JbB'?!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW)'[s7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq(qWKR$7UQ!s8UkZ(BlFis2.tR +$S$`"s8W&uqYpo\('+C7o5G`T-'\E/"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!:9^gQm;h\S+cjlQm;h\S,`N#9b7X\JbB'?!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW)'[s7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt[YeiVMG@:&j#iPN2GY;ZAkT +jSIeL9`=tk!;ld6q`'T9s8QV)g@s&aUAq87_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#mJdBk*Ph6\*3T):&??heo"Q0Is#Qb1qVPaVrrDTh!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt[YeiVMG@:&j#iPN2GY;ZAkT +jSIeL9`=tk!;ld6q`'T9s8QV)g@s&aUAq87_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#mJdBk*Ph6\*3T):&??heo"Q0Is#Qb1qVPaVrrDTh!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt[YeiVMG@:&j#iPN2GY;ZAkT +jSIeL9`=tk!;ld6q`'T9s8QV)g@s&aUAq87_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#mJdBk*Ph6\*3T):&??heo"Q0Is#Qb1qVPaVrrDTh!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6lrr<&rrs*[?rrE*!($GSr"QV]F6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6lrr<&rrs*[?rrE*!($GSr"QV]F6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6lrr<&rrs*[?rrE*!($GSr"QV]F6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)\bi!;uj&[iOi8!<<'7kl1Sbj:D8%k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)lrrE\nrr3#\');J-&E`ul!Taskrs5Gmrr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!9aC^nGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)\bi!;uj&[iOi8!<<'7kl1Sbj:D8%k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)lrrE\nrr3#\');J-&E`ul!Taskrs5Gmrr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!9aC^nGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)\bi!;uj&[iOi8!<<'7kl1Sbj:D8%k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)lrrE\nrr3#\');J-&E`ul!Taskrs5Gmrr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!9aC^nGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6rVlitrVmYp(r?7P!<<(5;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gQp!id$hrVlue[k +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6rVlitrVmYp(r?7P!<<(5;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gQp!id$hrVlue[k +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6rVlitrVmYp(r?7P!<<(5;r%/t8d,.qq>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gQp!id$hrVlue[k +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=TrVlitrVlm`Jc>ZX!<<)lFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3oq#:@+kPkJ^jV%Rm"8['ZbPM5>g_92W#QXZ"s7cp#rrE#t#QXo) +!;QTop^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=TrVlitrVlm`Jc>ZX!<<)lFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3oq#:@+kPkJ^jV%Rm"8['ZbPM5>g_92W#QXZ"s7cp#rrE#t#QXo) +!;QTop^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=TrVlitrVlm`Jc>ZX!<<)lFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3oq#:@+kPkJ^jV%Rm"8['ZbPM5>g_92W#QXZ"s7cp#rrE#t#QXo) +!;QTop^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6]a$2sl(!<)ro!;ld!MH^$FW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!roO.\5cF\^!Mr-XrrGB`rr35" +6N@)@2+d-0rrM'jnGa4'gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?% +s!dC5rrjV#s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6]a$2sl(!<)ro!;ld!MH^$FW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!roO.\5cF\^!Mr-XrrGB`rr35" +6N@)@2+d-0rrM'jnGa4'gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?% +s!dC5rrjV#s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6]a$2sl(!<)ro!;ld!MH^$FW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!roO.\5cF\^!Mr-XrrGB`rr35" +6N@)@2+d-0rrM'jnGa4'gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?% +s!dC5rrjV#s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsmHmPiMP]!<5EjmePOG5Q1T^!;QR+!<<'qeG.jR);>+k+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t$`bAdo>)HMs.^-Vrr)j$8@\3_aZO_Fs8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrDKes7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsmHmPiMP]!<5EjmePOG5Q1T^!;QR+!<<'qeG.jR);>+k+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t$`bAdo>)HMs.^-Vrr)j$8@\3_aZO_Fs8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrDKes7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrsmHmPiMP]!<5EjmePOG5Q1T^!;QR+!<<'qeG.jR);>+k+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t$`bAdo>)HMs.^-Vrr)j$8@\3_aZO_Fs8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrDKes7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#:,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus#+$P<,Fe`5q>^rmX#LCr1R\4As6]k3p&>a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5mf3=W!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#:,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus#+$P<,Fe`5q>^rmX#LCr1R\4As6]k3p&>a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5mf3=W!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#:,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus#+$P<,Fe`5q>^rmX#LCr1R\4As6]k3p&>a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5mf3=W!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq27lQo$7UQ!s8UkZ(BlFis2.tR +$S$`"s1:u:$7UQ!s2.tR$S$`"s6=29#97@@s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrD]k"ILG<,b+Q.#J3\A$7UQ!s8)cs&c__.pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq27lQo$7UQ!s8UkZ(BlFis2.tR +$S$`"s1:u:$7UQ!s2.tR$S$`"s6=29#97@@s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrD]k"ILG<,b+Q.#J3\A$7UQ!s8)cs&c__.pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq27lQo$7UQ!s8UkZ(BlFis2.tR +$S$`"s1:u:$7UQ!s2.tR$S$`"s6=29#97@@s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrD]k"ILG<,b+Q.#J3\A$7UQ!s8)cs&c__.pAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W95iVMG@:&j#iPN2GY;ZAkT +jSIeL9`I/FiVMG@:&d>OjSIeL9`IIriq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T):#!/@7qVPaVqu6agOoGFOrrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W95iVMG@:&j#iPN2GY;ZAkT +jSIeL9`I/FiVMG@:&d>OjSIeL9`IIriq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T):#!/@7qVPaVqu6agOoGFOrrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W95iVMG@:&j#iPN2GY;ZAkT +jSIeL9`I/FiVMG@:&d>OjSIeL9`IIriq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T):#!/@7qVPaVqu6agOoGFOrrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6jrrMWrqu6fe#lb;%rr3,i%0&Vkrr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdF\Q!V$Korrf\Xqu6ZdrrN3#!<)p'!0.a/D>=/2 +!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6# +qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_]EG2' +na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6jrrMWrqu6fe#lb;%rr3,i%0&Vkrr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdF\Q!V$Korrf\Xqu6ZdrrN3#!<)p'!0.a/D>=/2 +!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6# +qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_]EG2' +na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6jrrMWrqu6fe#lb;%rr3,i%0&Vkrr31u6N@&c +rrD]k!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O +(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegj +X +(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)# +-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s +!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdF\Q!V$Korrf\Xqu6ZdrrN3#!<)p'!0.a/D>=/2 +!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6# +qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_]EG2' +n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)JVhV+LXc%f>'n9)i.7j8.eS?N1T!rr32a +'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3ooD\if8cAYrq^ArRrr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr +!8mhVnGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)JVhV+LXc%f>'n9)i.7j8.eS?N1T!rr32a +'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3ooD\if8cAYrq^ArRrr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr +!8mhVnGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)JVhV+LXc%f>'n9)i.7j8.eS?N1T!rr32a +'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3ooD\if8cAYrq^ArRrr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr +!8mhVnGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6r;Qhu(>8]erW!'Lli6H3rW!6^nc&[ds(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lchrrT29g&:pOO@oEM"7 +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6r;Qhu(>8]erW!'Lli6H3rW!6^nc&[ds(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lchrrT29g&:pOO@oEM"7 +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6r;Qhu(>8]erW!'Lli6H3rW!6^nc&[ds(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs +"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Z +s7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcd +rrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lchrrT29g&:pOO@oEM"7 +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=Trr3)sEuiI%rsnnZ?rI##CuP3KC/=j@kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3opAY6kEuiI&rrVR'f_POJg_92W#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=Trr3)sEuiI%rsnnZ?rI##CuP3KC/=j@kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3opAY6kEuiI&rrVR'f_POJg_92W#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=Trr3)sEuiI%rsnnZ?rI##CuP3KC/=j@kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3opAY6kEuiI&rrVR'f_POJg_92W#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6og$31%\2+d-0rrh]qrsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6og$31%\2+d-0rrh]qrsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6og$31%\2+d-0rrh]qrsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrtEfrPiMP]!<5EjmePOG5Q@JiJc>WJ(.5=oq:T7Bs$(8WqVc0Ts/R6Yo>)HM +pAb-moD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*u +s+!Z#ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t +&-2b1OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q +!;ld"O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVe +s)Ls!k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp= +Zi'IqrrE#t#-/i_o>)HMrr;uurVltp&:siYrrUagn,<7j8@\3_aZO_Fs8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrtEfrPiMP]!<5EjmePOG5Q@JiJc>WJ(.5=oq:T7Bs$(8WqVc0Ts/R6Yo>)HM +pAb-moD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*u +s+!Z#ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t +&-2b1OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q +!;ld"O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVe +s)Ls!k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp= +Zi'IqrrE#t#-/i_o>)HMrr;uurVltp&:siYrrUagn,<7j8@\3_aZO_Fs8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrtEfrPiMP]!<5EjmePOG5Q@JiJc>WJ(.5=oq:T7Bs$(8WqVc0Ts/R6Yo>)HM +pAb-moD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*u +s+!Z#ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t +&-2b1OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q +!;ld"O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVe +s)Ls!k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp= +Zi'IqrrE#t#-/i_o>)HMrr;uurVltp&:siYrrUagn,<7j8@\3_aZO_Fs8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#'kHq7rtER)!=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#'kHq7rtER)!=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#'kHq7rtER)!=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq+M1>Z$7UQ!s8UkZ(BlFis2.tR +$S$`"s2.tR$S$`"s8W&urVm>=9b7X\JbB'CQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76) +.AcJ4!=ekorr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ +!!)or!W`6#o`#&],R#H_p\tN29b7X\JbB'CrW)os#3oe?#97@@p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq+M1>Z$7UQ!s8UkZ(BlFis2.tR +$S$`"s2.tR$S$`"s8W&urVm>=9b7X\JbB'CQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76) +.AcJ4!=ekorr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ +!!)or!W`6#o`#&],R#H_p\tN29b7X\JbB'CrW)os#3oe?#97@@p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq+M1>Z$7UQ!s8UkZ(BlFis2.tR +$S$`"s2.tR$S$`"s8W&urVm>=9b7X\JbB'CQm;h\S,WEh!<3&krrN3#!:0Xb!94"Y!:0Xghd76) +.AcJ4!=ekorr<&UrrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ +!!)or!W`6#o`#&],R#H_p\tN29b7X\JbB'CrW)os#3oe?#97@@p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAkT +jSIeL9`I5NjSIeL9`=tk!<)p23hG=,hdT=[Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#:OZT&KP'@SQh$!!)ut#"*4dq;Q3Xp\t9prrDHd!!)fo!!)Bc +!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAkT +jSIeL9`I5NjSIeL9`=tk!<)p23hG=,hdT=[Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#:OZT&KP'@SQh$!!)ut#"*4dq;Q3Xp\t9prrDHd!!)fo!!)Bc +!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&sruO4miVMG@:&j#iPN2GY;ZAkT +jSIeL9`I5NjSIeL9`=tk!<)p23hG=,hdT=[Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#:OZT&KP'@SQh$!!)ut#"*4dq;Q3Xp\t9prrDHd!!)fo!!)Bc +!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6jrrMNnrVlitq#:Ke$3*;hrr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdF\Q!V$Kprr<&trrEMsrr3#f%/9c'!<3&trs/Ub'GbQ\ +s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0()2`.rr3$" +rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].qs8VThW;+". +W:BEF8q6~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6jrrMNnrVlitq#:Ke$3*;hrr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdF\Q!V$Kprr<&trrEMsrr3#f%/9c'!<3&trs/Ub'GbQ\ +s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0()2`.rr3$" +rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].qs8VThW;+". +W:BEE?[r~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8=U!U^6jrrMNnrVlitq#:Ke$3*;hrr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdF\Q!V$Kprr<&trrEMsrr3#f%/9c'!<3&trs/Ub'GbQ\ +s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0()2`.rr3$" +rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].qs8VThW;+". +W:BEDG^o~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)\blqqYgUrVlitq#:Jn8cK@arr32a'*%t3 +rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs&T^_1 +k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@E<#q< +<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYks8R.8 +kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4G5qRB +<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoShsOrm +s8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3ooD\if8cAYh!<)p%>]8[!j)88urrN3#!<)p' +!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr!8mhV +nGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)\blqqYgUrVlitq#:Jn8cK@arr32a'*%t3 +rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs&T^_1 +k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@E<#q< +<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYks8R.8 +kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4G5qRB +<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoShsOrm +s8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3ooD\if8cAYh!<)p%>]8[!j)88urrN3#!<)p' +!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr!8mhV +nGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5#f"8gnc9)\blqqYgUrVlitq#:Jn8cK@arr32a'*%t3 +rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6!!)rs&T^_1 +k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@E<#q< +<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYks8R.8 +kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4G5qRB +<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoShsOrm +s8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3ooD\if8cAYh!<)p%>]8[!j)88urrN3#!<)p' +!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr!8mhV +nGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6rr;rt!@[:4rr<&prsGbAg&D-Ls(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs"Xi+* +s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Zs7H`t +rr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcdrrF=d +qu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6?j8]/P +$N9u)!:9^i!r;k3s7lchrrT29g&:pN!<)oun2:1F!B'E:rs/VYs8Udus8N)trs/W)rrCdQs4S[q +rr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR!<)p'!<<'H +h#IE=*qfO7.Y7?Os8VThW;+".W:BEF8q6~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6rr;rt!@[:4rr<&prsGbAg&D-Ls(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs"Xi+* +s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Zs7H`t +rr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcdrrF=d +qu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6?j8]/P +$N9u)!:9^i!r;k3s7lchrrT29g&:pN!<)oun2:1F!B'E:rs/VYs8Udus8N)trs/W)rrCdQs4S[q +rr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR!<)p'!<<'H +h#IE=*qfO7.Y7?Os8VThW;+".W:BEE?[r~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!<3#t!!+M6rr;rt!@[:4rr<&prsGbAg&D-Ls(hZ1"6TU`!;uj#!9=+Zoa:Zt!!)rs"Xi+* +s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALprrD*Zs7H`t +rr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3s7lcdrrF=d +qu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE=*rl6?j8]/P +$N9u)!:9^i!r;k3s7lchrrT29g&:pN!<)oun2:1F!B'E:rs/VYs8Udus8N)trs/W)rrCdQs4S[q +rr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR!<)p'!<<'H +h#IE=*qfO7.Y7?Os8VThW;+".W:BEDG^o~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=TrVlurg0dhWrr<&rrs/CA*R"K_&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'))>-qK!\#r;Q`srVm'tCuP3KC/=@!#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=TrVlurg0dhWrr<&rrs/CA*R"K_&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'))>-qK!\#r;Q`srVm'tCuP3KC/=@!#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QT!<)p"qV#=TrVlurg0dhWrr<&rrs/CA*R"K_&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'))>-qK!\#r;Q`srVm'tCuP3KC/=@!#QXZ"s7cp#rrE#t#QXo)!;QTop^-p! +!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji( +!qlQo"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6]a$2a`'m0Wak!!)rs"5Gb*li-nb5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmI +meZq`!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlit +qYpNqr;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o +!!)lq!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$ +s4JOps!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_p\t?N +2+d-2rr<&trrEJqrr3#f$h402!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15 +rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6]a$2a`'m0Wak!!)rs"5Gb*li-nb5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmI +meZq`!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlit +qYpNqr;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o +!!)lq!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$ +s4JOps!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_p\t?N +2+d-2rr<&trrEJqrr3#f$h402!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15 +rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVlitqu6]a$2a`'m0Wak!!)rs"5Gb*li-nb5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmI +meZq`!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlit +qYpNqr;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o +!!)lq!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$ +s4JOps!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_p\t?N +2+d-2rr<&trrEJqrr3#f$h402!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15 +rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrta#uPiMP]!<5EjmePOG5Q=*TmePOG5Q1T^!<)p"UC`"UrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrta#uPiMP]!<5EjmePOG5Q=*TmePOG5Q1T^!<)p"UC`"UrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrta#uPiMP]!<5EjmePOG5Q=*TmePOG5Q1T^!<)p"UC`"UrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj +!:BL[!ZnlLo`#^`gs-Fr6,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrE#tq>^Qbs82lsrsS!t)[76jkl:\N!$h1:'`a+('l3RDs3EJ+-ER:Jrr@uj(2`jF +rrpRp! +!:9FZ!ZnlLo`#^`gs-Fr6,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrE#tq>^Qbs82lsrsS!t)[76jkl:\N!$h1:'`a+('l3RDs3EJ+-ER:Jrr@uj(2`jF +rrpRp! +!:0@Y!ZnlLo`#^`gs-Fr6,FeE,!q$%5p&Fpi +rr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrE#tq>^Qbs82lsrsS!t)[76jkl:\N!$h1:'`a+('l3RDs3EJ+-ER:Jrr@uj(2`jF +rrpRp! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq%_GFH$7UQ!s8UkZ(BlFirVm;a +('+C7_c[Z].Y76lqZ-WqrW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET) +nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3# +!;-9oQm;h\S+cm]!<)p-_c[Z].Y76ls4gp""Y-_MrrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq%_GFH$7UQ!s8UkZ(BlFirVm;a +('+C7_c[Z].Y76lqZ-WqrW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET) +nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3# +!;-9oQm;h\S+cm]!<)p-_c[Z].Y76ls4gp""Y-_MrrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq%_GFH$7UQ!s8UkZ(BlFirVm;a +('+C7_c[Z].Y76lqZ-WqrW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET) +nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3# +!;-9oQm;h\S+cm]!<)p-_c[Z].Y76ls4gp""Y-_MrrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh)]iVMG@:&j#iPN2GY;Z?\+ +q`'T9s8P3WjSIeL9`G+err<&trsPkJ_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S`('1p +!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3Su7!!)ut%QpQJqVZ*^s4\HHh"]8kp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh)]iVMG@:&j#iPN2GY;Z?\+ +q`'T9s8P3WjSIeL9`G+err<&trsPkJ_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S`('1p +!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3Su7!!)ut%QpQJqVZ*^s4\HHh"]8kp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh)]iVMG@:&j#iPN2GY;Z?\+ +q`'T9s8P3WjSIeL9`G+err<&trsPkJ_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S`('1p +!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3Su7!!)ut%QpQJqVZ*^s4\HHh"]8kp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8FX"*I<;!;c]tmKigmp\t3nrVlmaVuH]#UdG+]!<3&k +rrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTV +s8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I +#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&orrh`qs&k=/2!<)p' +!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6#qu?Zr +r;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8FX"*I<;!;c]tmKigmp\t3nrVlmaVuH]#UdG+]!<3&k +rrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTV +s8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I +#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&orrh`qs&k=/2!<)p' +!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6#qu?Zr +r;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8FX"*I<;!;c]tmKigmp\t3nrVlmaVuH]#UdG+]!<3&k +rrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTV +s8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I +#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&orrh`qs&k=/2!<)p' +!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6#qu?Zr +r;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5)h"LfE+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;c^'qqYgUrth"P#9eBdp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5)h"LfE+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;c^'qqYgUrth"P#9eBdp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5)h"LfE+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;c^'qqYgUrth"P#9eBdp\t9p +rrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT('s,9>&mUC/8 +s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H!W`6#qu6_m +! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!!`Jb(r?7P!<)rs!!+M6rVlue[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr<&rs8E!).-pm89@NXi:i#S##QWTYs4SaurrE#t#QXo)!8@JQ +g*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-' +s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!!`Jb(r?7P!<)rs!!+M6rVlue[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr<&rs8E!).-pm89@NXi:i#S##QWTYs4SaurrE#t#QXo)!8@JQ +g*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-' +s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!!`Jb(r?7P!<)rs!!+M6rVlue[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr<&rs8E!).-pm89@NXi:i#S##QWTYs4SaurrE#t#QXo)!8@JQ +g*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-' +s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<5<8rr2rur;Qlqg0dhUrrLmgrVlitrVlm0kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3op&>!lqYpcrg0dhY&*3`i!Tt9grs/W"s8Vj#s8N)trs/W)rrDios7cp!rr<&q +rr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<5<8rr2rur;Qlqg0dhUrrLmgrVlitrVlm0kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3op&>!lqYpcrg0dhY&*3`i!Tt9grs/W"s8Vj#s8N)trs/W)rrDios7cp!rr<&q +rr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<5<8rr2rur;Qlqg0dhUrrLmgrVlitrVlm0kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3op&>!lqYpcrg0dhY&*3`i!Tt9grs/W"s8Vj#s8N)trs/W)rrDios7cp!rr<&q +rr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVllus7u`mrrMKnqu6]U&cM_0!<)ou5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmImeZq` +!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNq +r;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq +!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOp +s!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_p&>!lq#:Ka +$3*-Krr3#^(@_>=!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVllus7u`mrrMKnqu6]U&cM_0!<)ou5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmImeZq` +!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNq +r;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq +!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOp +s!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_p&>!lq#:Ka +$3*-Krr3#^(@_>=!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVllus7u`mrrMKnqu6]U&cM_0!<)ou5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmImeZq` +!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNq +r;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq +!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOp +s!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_p&>!lq#:Ka +$3*-Krr3#^(@_>=!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrs$mePiMP]!;ld.!<<'dYjV>?@mBua\FK764E^W&!!)ut#-/i_o>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqrVm?pYjV>?@mC!d7+D"d:h]k.rrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrs$mePiMP]!;ld.!<<'dYjV>?@mBua\FK764E^W&!!)ut#-/i_o>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqrVm?pYjV>?@mC!d7+D"d:h]k.rrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrs$mePiMP]!;ld.!<<'dYjV>?@mBua\FK764E^W&!!)ut#-/i_o>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqrVm?pYjV>?@mC!d7+D"d:h]k.rrD`l'`_(nkYQX+s#G`(iD]gW +rr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SA +rr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&ursY_[ +$ltlSdMlV>p-t'bt9N +s8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq%_GFH$7UQ!s8UkZ(BlFirVlrW +('+:4!oOgorr3\",R#H_s8V@r*![HqlMpmO,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&krre]7"XKT2s8E#ss8)frrs$AD'FQCAo_8@e!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq%_GFH$7UQ!s8UkZ(BlFirVlrW +('+:4!oOgorr3\",R#H_s8V@r*![HqlMpmO,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&krre]7"XKT2s8E#ss8)frrs$AD'FQCAo_8@e!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq%_GFH$7UQ!s8UkZ(BlFirVlrW +('+:4!oOgorr3\",R#H_s8V@r*![HqlMpmO,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&krre]7"XKT2s8E#ss8)frrs$AD'FQCAo_8@e!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh)]iVMG@:&j#iPN2GY;Z?[u +q`'T9rVn&<30""=s/R0Uo"Q0Is$LV^q;Q3Xs/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@% +O5]iO7dg9V!:Tpf!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q +!7LlI!;lct!<3&lrs#ME_",5[Y4_ep!<)ot!;c^"4J_'7i+bs[rrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh)]iVMG@:&j#iPN2GY;Z?[u +q`'T9rVn&<30""=s/R0Uo"Q0Is$LV^q;Q3Xs/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@% +O5]iO7dg9V!:Tpf!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q +!7LlI!;lct!<3&lrs#ME_",5[Y4_ep!<)ot!;c^"4J_'7i+bs[rrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh)]iVMG@:&j#iPN2GY;Z?[u +q`'T9rVn&<30""=s/R0Uo"Q0Is$LV^q;Q3Xs/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@% +O5]iO7dg9V!:Tpf!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q +!7LlI!;lct!<3&lrs#ME_",5[Y4_ep!<)ot!;c^"4J_'7i+bs[rrN3#!:Bdd!;QQo!:9^c!:Bdd +!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8FX"*I<;!<)p&F\Mf8s8PB_rr3+s6N7G_rr3,i%0&Vk +rr31u6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?( +!!)rs&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)s +KHUn5oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9( +)CTVs8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r +.H4)?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)ut!!)]l!U^6frrN3#!<)p'! +0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN +<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRn +GoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8FX"*I<;!<)p&F\Mf8s8PB_rr3+s6N7G_rr3,i%0&Vk +rr31u6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?( +!!)rs&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)s +KHUn5oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9( +)CTVs8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r +.H4)?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)ut!!)]l!U^6frrN3#!<)p'! +0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN +<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRn +GoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"Rufu>`8FX"*I<;!<)p&F\Mf8s8PB_rr3+s6N7G_rr3,i%0&Vk +rr31u6N@&crrD]k!W`6#rVuisr;R!%X)coOepTB_D?( +!!)rs&bK]O(23C@s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)s +KHUn5oDegjX(23C?rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9( +)CTVs8N)#-3uERs8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r +.H4)?M"3s!3@LQ1XH+$qZ-Wq!W`6#qu?ZrrVlmaVuH\sUdFbS!!)ut!!)]l!U^6frrN3#!<)p'! +0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN +<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRn +GoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5)h"LfE]8[!j)89( +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut"TTDD)b712rr`/S +AP2^s!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5)h"LfE]8[!j)89( +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut"TTDD)b712rr`/S +AP2^s!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)cn"Jn]i(Z5)h"LfE]8[!j)89( +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut"TTDD)b712rr`/S +AP2^s!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!#kn!(r?7P!<<)\(r?7P!<<'#q>Y71q#gZd2?!R^2=^\Jq>Y71q#fdZ!!)rs"T[T_s7H`t +rr<&srrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^p +s8N)Zs8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lqYpZb[k5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!#kn!(r?7P!<<)\(r?7P!<<'#q>Y71q#gZd2?!R^2=^\Jq>Y71q#fdZ!!)rs"T[T_s7H`t +rr<&srrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^p +s8N)Zs8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lqYpZb[k5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq#:Mt(>8]i +p\t3m!#kn!(r?7P!<<)\(r?7P!<<'#q>Y71q#gZd2?!R^2=^\Jq>Y71q#fdZ!!)rs"T[T_s7H`t +rr<&srrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^p +s8N)Zs8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lqYpZb[k5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<5<8rr3*$s8P?8rr3*$s8NYnrr3Dg')taDiVDGI:]D!hrr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<5<8rr3*$s8P?8rr3*$s8NYnrr3Dg')taDiVDGI:]D!hrr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)lq#PrK^ +bQ%SWhu3QW!<5<8rr3*$s8P?8rr3*$s8NYnrr3Dg')taDiVDGI:]D!hrr3#\''B2o!;uis!<)ot +!<)ot!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg +#ljo)rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVllus7u]qs7u]ss$3O^rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVllus7u]qs7u]ss$3O^rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2ruqu6cR2+d-5 +rrH,ZrVllus7u]qs7u]ss$3O^rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/ +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrs$mePiMP]!;lcr!;c^5!<<)"+2[Wc*NoE,C>o$JC-hm#+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrs$mePiMP]!;lcr!;c^5!<<)"+2[Wc*NoE,C>o$JC-hm#+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;Qko&:siZrs$mePiMP]!;lcr!;c^5!<<)"+2[Wc*NoE,C>o$JC-hm#+2[Wc*No,9rrDZj +!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j8E8r4 +!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/s8S36 +`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&rrrnH\ +h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ;!7": +F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,%!<<'! +;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1Hr;HWq +!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs'<=)!%l9XPs2%J@#pj]\s8VKe,PD'O!/_C(C\Rl/cSGeQXT8D$!/qO+ +D>=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs'<=)!%l9XPs2%J@#pj]\s8VKe,PD'O!/_C(C\Rl/cSGeQXT8D$!/qO+ +D>=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNqqu6iuO!k8h +Xo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs'<=)!%l9XPs2%J@#pj]\s8VKe,PD'O!/_C(C\Rl/cSGeQXT8D$!/qO+ +D>=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq.)T1%$S$`"s8UkZ(BlFis8SH3 +"XKT;s2.tR$S$`"s1:u:$7UQ!s8W&ur;Qne,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&crre]7"XKT2rtUnH"XKT;s2.tR$S$`"s1:u:$7UQ!p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!9O7\nGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq.)T1%$S$`"s8UkZ(BlFis8SH3 +"XKT;s2.tR$S$`"s1:u:$7UQ!s8W&ur;Qne,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&crre]7"XKT2rtUnH"XKT;s2.tR$S$`"s1:u:$7UQ!p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!9O7\nGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq.)T1%$S$`"s8UkZ(BlFis8SH3 +"XKT;s2.tR$S$`"s1:u:$7UQ!s8W&ur;Qne,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&crre]7"XKT2rtUnH"XKT;s2.tR$S$`"s1:u:$7UQ!p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!9O7\nGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss!Bk(jSIeL9`NohPN2GY;ZEd< +_",5[Y5^V[jSIeL9`I/FiVMG@:&Y(l!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrDHd#-/c[o"Q0Iq#;,1*Ph6\*3T<(Uu_C1C/"XgT&KP'@SQUs!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss!Bk(jSIeL9`NohPN2GY;ZEd< +_",5[Y5^V[jSIeL9`I/FiVMG@:&Y(l!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrDHd#-/c[o"Q0Iq#;,1*Ph6\*3T<(Uu_C1C/"XgT&KP'@SQUs!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss!Bk(jSIeL9`NohPN2GY;ZEd< +_",5[Y5^V[jSIeL9`I/FiVMG@:&Y(l!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrDHd#-/c[o"Q0Iq#;,1*Ph6\*3T<(Uu_C1C/"XgT&KP'@SQUs!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6[.k5PA]jV%Ol"8gnc9)JVhV+LXc!!)ut!>+Dm +rs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$Fh +sOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#! +;lctUB(AXs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6[.k5PA]jV%Ol"8gnc9)JVhV+LXc!!)ut!>+Dm +rs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$Fh +sOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#! +;lctUB(AXs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6[.k5PA]jV%Ol"8gnc9)JVhV+LXc!!)ut!>+Dm +rs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$Fh +sOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#! +;lctUB(AXs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<<(!r;k3s7lcrs8E!!.-pg2!id$hrVlitrVm''q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWrrVusIlhpbaWYX:Wrs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEF8q6~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<<(!r;k3s7lcrs8E!!.-pg2!id$hrVlitrVm''q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWrrVusIlhpbaWYX:Wrs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEE?[r~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<<(!r;k3s7lcrs8E!!.-pg2!id$hrVlitrVm''q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koTY71q#gWrrVusIlhpbaWYX:Wrs/VYs8Udus8N)trs/W) +rrCdQs4S[qrr<&qrr<&srraKl_<1^qrtPOos8Va!s8OJ%s8V=)s8O7rs8U^Ojo5;\qu6ZshYdBR +!<)p'!<<'Hh#IE=*qfO7.Y7?Ws8VThW;+".W:BEDG^o~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"rt+AmrrM3orVlurg0dhXrr`+=*R"B\!!)ut!>+GnrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu!+GnrrM3orVlurg0dhXrr`+=*R!pO#QXZ"s7cp#rrE#t#QXo) +!;QTop^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"rt+AmrrM3orVlurg0dhXrr`+=*R"B\!!)ut!>+GnrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu!+GnrrM3orVlurg0dhXrr`+=*R!pO#QXZ"s7cp#rrE#t#QXo) +!;QTop^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"rt+AmrrM3orVlurg0dhXrr`+=*R"B\!!)ut!>+GnrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu!+GnrrM3orVlurg0dhXrr`+=*R!pO#QXZ"s7cp#rrE#t#QXo) +!;QTop^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVls"s$3O^rrJr_qu6og$31%\2+d-2rr<&trrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW!C3U_ +rrJr_qu6og$31%\2+d-%rtPOfs8Udss8NDus8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t +"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/p&G'O!<<'Jmd^;X!<2-\s7$)fpq-a.naZ!=J,~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVls"s$3O^rrJr_qu6og$31%\2+d-2rr<&trrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW!C3U_ +rrJr_qu6og$31%\2+d-%rtPOfs8Udss8NDus8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t +"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/p&G'O!<<'Jmd^;X!<2-\s7$)fpq-a.naYsQJ,~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVls"s$3O^rrJr_qu6og$31%\2+d-2rr<&trrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*atW!C3U_ +rrJr_qu6og$31%\2+d-%rtPOfs8Udss8NDus8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t +"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/p&G'O!<<'Jmd^;X!<2-\s7$)fpq-a.naYpiJ,~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!/YjV>?@mC"A(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!g&:siWrr<&trs#MG_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)lrs#MG_XkSaY5\J$!<)p2Wuo4M_&]]Y6a6"Sfjd8HUC`"Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)es8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!/YjV>?@mC"A(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!g&:siWrr<&trs#MG_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)lrs#MG_XkSaY5\J$!<)p2Wuo4M_&]]Y6a6"Sfjd8HUC`"Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)es8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!/YjV>?@mC"A(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!g&:siWrr<&trs#MG_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)lrs#MG_XkSaY5\J$!<)p2Wuo4M_&]]Y6a6"Sfjd8HUC`"Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)es8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#^Qbs82lrrreZ5"XBN1rrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,OYU3nGoN_]EG2'na/r!~> +!:9FZ!ZnlLo`#^Qbs82lrrreZ5"XBN1rrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,OYU3nGoN_]EG2'na'V5~> +!:0@Y!ZnlLo`#^Qbs82lrrreZ5"XBN1rrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,OYU3nGoN_]EG2'n`tFM~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq(W0Ai$S$`"s8UkZ(BlFis8SH3 +"XKT;s8)d&&c_HA*X3pTs8Vrrrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2rtUnH"XKT;s7:1N"soN6s2.tR$S$`"p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u! +W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq(W0Ai$S$`"s8UkZ(BlFis8SH3 +"XKT;s8)d&&c_HA*X3pTs8Vrrrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2rtUnH"XKT;s7:1N"soN6s2.tR$S$`"p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u! +W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq(W0Ai$S$`"s8UkZ(BlFis8SH3 +"XKT;s8)d&&c_HA*X3pTs8Vrrrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2rtUnH"XKT;s7:1N"soN6s2.tR$S$`"p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u! +W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt[_mjSIeL9`NohPN2GY;ZEd< +_",5[Y5A5,8!3g^:>5Hk7&'\]qYpr(*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Ph +rr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&r +rrN3#!;6?rWu]"H^DsEOrt_XU_",5[Y5`$-g@s&aUAm?OjSIeL9_\Pg!<3&drr<&orr<&crr<&d +rr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naZ!=J,~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt[_mjSIeL9`NohPN2GY;ZEd< +_",5[Y5A5,8!3g^:>5Hk7&'\]qYpr(*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Ph +rr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&r +rrN3#!;6?rWu]"H^DsEOrt_XU_",5[Y5`$-g@s&aUAm?OjSIeL9_\Pg!<3&drr<&orr<&crr<&d +rr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naYsQJ,~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt[_mjSIeL9`NohPN2GY;ZEd< +_",5[Y5A5,8!3g^:>5Hk7&'\]qYpr(*Ph6\*3T>A!<3&krrN3#!:0Xb!94"Y!:9^ih]@j;pV]Ph +rr<&frr<&UrrN3#!;6?rWu]"H^DsENrrN3#!7UrJ!:p-i!9F.ah]@j;pV]Phrr<&qrr<&Irr<&r +rrN3#!;6?rWu]"H^DsEOrt_XU_",5[Y5`$-g@s&aUAm?OjSIeL9_\Pg!<3&drr<&orr<&crr<&d +rr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W:gSs7$)fpq-a.naYpiJ,~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!C(23C>rr<&s +rt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)( +&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'WrrGE`rr3+s6N7e`rr3#[4T#-ZmKiRe +!W`6#rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XhuE`H!3#\*"K:k\m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!C(23C>rr<&s +rt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)( +&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'WrrGE`rr3+s6N7e`rr3#[4T#-ZmKiRe +!W`6#rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XhuE`H!3#\*"K:k\lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!C(23C>rr<&s +rt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)( +&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'WrrGE`rr3+s6N7e`rr3#[4T#-ZmKiRe +!W`6#rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XhuE`H!3#\*"K:k\lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6[.k5PA]jV%Ol#5]gXs8Nkurr3Df&,uVI"WKt: +s8NYmrr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S/kl1S_ +j:D4h"8gnc9)&>e!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'u +i:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>& +mUC/7rrN3#!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6[.k5PA]jV%Ol#5]gXs8Nkurr3Df&,uVI"WKt: +s8NYmrr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S/kl1S_ +j:D4h"8gnc9)&>e!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'u +i:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>& +mUC/7rrN3#!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6[.k5PA]jV%Ol#5]gXs8Nkurr3Df&,uVI"WKt: +s8NYmrr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S/kl1S_ +j:D4h"8gnc9)&>e!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'u +i:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>& +mUC/7rrN3#!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<<(!r;k3s7lcqrrJ3Rrr31:;r%/t8d,+m$gkDUL&V5Ms(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lclrsf,+s(hZ1"93(6h"]Ak"TJH#!!+M6nG`aogAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<<(!r;k3s7lcqrrJ3Rrr31:;r%/t8d,+m$gkDUL&V5Ms(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lclrsf,+s(hZ1"93(6h"]Ak"TJH#!!+M6nG`aogAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<<(!r;k3s7lcqrrJ3Rrr31:;r%/t8d,+m$gkDUL&V5Ms(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lclrsf,+s(hZ1"93(6h"]Ak"TJH#!!+M6nG`aogAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"rt+AmrrM3orr3&e(>/Wd#5*-_#:l&Uqu6fS'E8X,rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"rt+AmrrM3orr3&e(>/Wd#5*-_#:l&Uqu6fS'E8X,rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"rt+AmrrM3orr3&e(>/Wd#5*-_#:l&Uqu6fS'E8X,rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVls"s$3O^rrJr_rr3"8E;9G6MH]oW"Q9sm5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmImeZq` +!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNq +r;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq +!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOp +s!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_q#:@[W;cet +V*b(Z!K((XrrMKnnGa4'gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?% +s!dC5rrjV#s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVls"s$3O^rrJr_rr3"8E;9G6MH]oW"Q9sm5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmImeZq` +!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNq +r;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq +!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOp +s!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_q#:@[W;cet +V*b(Z!K((XrrMKnnGa4'gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?% +s!dC5rrjV#s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVls"s$3O^rrJr_rr3"8E;9G6MH]oW"Q9sm5cF\^!Mr-Frr<&srr<&trr<&trrE0"rVlmImeZq` +!;ld"+56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNq +r;R'IgAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq +!!)or!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOp +s!dC3rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_q#:@[W;cet +V*b(Z!K((XrrMKnnGa4'gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?% +s!dC5rrjV#s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R^'YjV>?@mC"A(6mkSaoMIB+2[Wc*NoGBeemlSrt\G\pt^WAgAa^Rnb(!dFoSKa_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p5Wuo4M_&]]Y:t59rKc/VE6a6"Sfjd8Gs8N)lrtPN1kNG`h +s8P*3o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&ste +rrDZj!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R^'YjV>?@mC"A(6mkSaoMIB+2[Wc*NoGBeemlSrt\G\pt^WAgAa^Rnb(!dFoSKa_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p5Wuo4M_&]]Y:t59rKc/VE6a6"Sfjd8Gs8N)lrtPN1kNG`h +s8P*3o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&ste +rrDZj!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R^'YjV>?@mC"A(6mkSaoMIB+2[Wc*NoGBeemlSrt\G\pt^WAgAa^Rnb(!dFoSKa_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p5Wuo4M_&]]Y:t59rKc/VE6a6"Sfjd8Gs8N)lrtPN1kNG`h +s8P*3o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&ste +rrDZj!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hi +oDejdD\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$ +rVlitrr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq +!!)or"oXK1#VrO\rsR"!! +!:9FZ!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hi +oDejdD\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$ +rVlitrr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq +!!)or"oXK1#VrO\rsR"!! +!:0@Y!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hi +oDejdD\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$ +rVlitrr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq +!!)or"oXK1#VrO\rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq&AqWb$S$`"s8UkZ(BlFis8W&u +r;Rb(,R#H_s8T]*&.0k;p&G'I?5j%tYQ+Wi,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&krre]7"XKT3rsu_9&.0k;p&DWu&.0k;p&Fmh!"nu*!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gQq&AqWb$S$`"s8UkZ(BlFis8W&u +r;Rb(,R#H_s8T]*&.0k;p&G'I?5j%tYQ+Wi,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&krre]7"XKT3rsu_9&.0k;p&DWu&.0k;p&Fmh!"nu*!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gQq&AqWb$S$`"s8UkZ(BlFis8W&u +r;Rb(,R#H_s8T]*&.0k;p&G'I?5j%tYQ+Wi,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"r +V=+?a%JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D +!;lct!<3&krre]7"XKT3rsu_9&.0k;p&DWu&.0k;p&Fmh!"nu*!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z6Uq +!<)pBWu]"H^DsEV3hG=,hdT=[gDYh%psDh9Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#:gbT&KP'@SQk`T&KP'@SQb"!Cr:HrrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z6Uq +!<)pBWu]"H^DsEV3hG=,hdT=[gDYh%psDh9Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#:gbT&KP'@SQk`T&KP'@SQb"!Cr:HrrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z6Uq +!<)pBWu]"H^DsEV3hG=,hdT=[gDYh%psDh9Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#:gbT&KP'@SQk`T&KP'@SQb"!Cr:HrrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8CW!!)ut!C(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'RrrMWrqu6]e$2jf)ZmknHrrN3#!<)p'!0.a/ +D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8CW!!)ut!C(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'RrrMWrqu6]e$2jf)ZmknHrrN3#!<)p'!0.a/ +D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8CW!!)ut!C(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'RrrMWrqu6]e$2jf)ZmknHrrN3#!<)p'!0.a/ +D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bq#:Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%1b!MrBbrrJrfrVlrr.(ApM!W`6# +rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra +:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bq#:Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%1b!MrBbrrJrfrVlrr.(ApM!W`6# +rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra +:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bq#:Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%1b!MrBbrrJrfrVlrr.(ApM!W`6# +rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra +:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t!!)ut"p4W#C]F24r;RD0(>8]i9@NXi:i$(4q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT8Wc!id$hrVln[9()]b!8@JQg*H^u!<)p'!<<'!gAh3, +,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t!!)ut"p4W#C]F24r;RD0(>8]i9@NXi:i$(4q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT8Wc!id$hrVln[9()]b!8@JQg*H^u!<)p'!<<'!gAh3, +,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t!!)ut"p4W#C]F24r;RD0(>8]i9@NXi:i$(4q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT8Wc!id$hrVln[9()]b!8@JQg*H^u!<)p'!<<'!gAh3, +,5qNA!;c]q!;uj"+a_&frVlg3!9=+Zoa:a!-f"b%koTm)+kltrfDt%5!!)or! +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrVlitrVlm0kPkJ^jV%Rm#PrK^bQ%SQjSo/^k84.0kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3opAY6kEuiI&rr`+=*R"E]!ppcUmf*Omq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8ghZ*WG!3#\*"K:k\m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrVlitrVlm0kPkJ^jV%Rm#PrK^bQ%SQjSo/^k84.0kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3opAY6kEuiI&rr`+=*R"E]!ppcUmf*Omq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8ghZ*WG!3#\*"K:k\lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrVlitrVlm0kPkJ^jV%Rm#PrK^bQ%SQjSo/^k84.0kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3opAY6kEuiI&rr`+=*R"E]!ppcUmf*Omq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8ghZ*WG!3#\*"K:k\lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitrVlitrVlm`W;cf%V*b4^gbh[hrr3!]jSo/^k8+(_W;cetV*a>E!!)rs!!)ut!!)ut!R;Z ++56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-W +rr_%68aH?T"5Gb*lhpb`CiJeA'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitrVlitrVlm`W;cf%V*b4^gbh[hrr3!]jSo/^k8+(_W;cetV*a>E!!)rs!!)ut!!)ut!R;Z ++56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-W +rr_%68aH?T"5Gb*lhpb`CiJeA'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitrVlitrVlm`W;cf%V*b4^gbh[hrr3!]jSo/^k8+(_W;cetV*a>E!!)rs!!)ut!!)ut!R;Z ++56bpfc^=p.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-W +rr_%68aH?T"5Gb*lhpb`CiJeA'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoMD?!!)ut$`bAdo>)HMs.^-Vrr)j,TL@<)gJDS`Wuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trr]#-Jc>WJ"/?EYrqucteemlQs8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoMD?!!)ut$`bAdo>)HMs.^-Vrr)j,TL@<)gJDS`Wuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trr]#-Jc>WJ"/?EYrqucteemlQs8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoMD?!!)ut$`bAdo>)HMs.^-Vrr)j,TL@<)gJDS`Wuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trr]#-Jc>WJ"/?EYrqucteemlQs8N)lrtPN1kNG`hs8P*3o\iaL +s8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QE +rVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts* +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq&AqWb$S$`"s8UkZ(BlFis8W&u +rVu`ps8Vrr!YPJ4rW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET)nG`Ig +hZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3#!:9^g +Qm;h\S+cjmQm;h\S,`N#9b7X\JbB'CrW)Tj!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gQq&AqWb$S$`"s8UkZ(BlFis8W&u +rVu`ps8Vrr!YPJ4rW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET)nG`Ig +hZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3#!:9^g +Qm;h\S+cjmQm;h\S,`N#9b7X\JbB'CrW)Tj!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gQq&AqWb$S$`"s8UkZ(BlFis8W&u +rVu`ps8Vrr!YPJ4rW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET)nG`Ig +hZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3#!:9^g +Qm;h\S+cjmQm;h\S,`N#9b7X\JbB'CrW)Tj!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z6Uq +!<)ot!;6?m8!3cM!!)ut$`b;`o"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf +!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&d +rs#ME_",5[Y5&#,Wu]"H^DsEV3hG=,hdT=Yrr<&krrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&rrrE/uk5YJO!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z6Uq +!<)ot!;6?m8!3cM!!)ut$`b;`o"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf +!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&d +rs#ME_",5[Y5&#,Wu]"H^DsEV3hG=,hdT=Yrr<&krrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&rrrE/uk5YJO!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z6Uq +!<)ot!;6?m8!3cM!!)ut$`b;`o"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf +!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&d +rs#ME_",5[Y5&#,Wu]"H^DsEV3hG=,hdT=Yrr<&krrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&rrrE/uk5YJO!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8CW!!)ut!!)`m!jjERrVlitrVlmaVuH]#UdG+]!<3&k +rrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTV +s8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I +#W'g,s8)fqrrN3#!;lfr!;6?m6)X_^!Mi'WrrGE`rr3"p6Mpc`nHo0o!!)Zk!W`6#rVm-'NYE7G +q#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XkPtSP!3#\* +"K:k\m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8CW!!)ut!!)`m!jjERrVlitrVlmaVuH]#UdG+]!<3&k +rrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTV +s8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I +#W'g,s8)fqrrN3#!;lfr!;6?m6)X_^!Mi'WrrGE`rr3"p6Mpc`nHo0o!!)Zk!W`6#rVm-'NYE7G +q#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XkPtSP!3#\* +"K:k\lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8CW!!)ut!!)`m!jjERrVlitrVlmaVuH]#UdG+]!<3&k +rrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTV +s8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I +#W'g,s8)fqrrN3#!;lfr!;6?m6)X_^!Mi'WrrGE`rr3"p6Mpc`nHo0o!!)Zk!W`6#rVm-'NYE7G +q#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XkPtSP!3#\* +"K:k\lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bq#:H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PA]jV%Ij!MrBdrr<&krrN3# +!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr +!9aC^nGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bq#:H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PA]jV%Ij!MrBdrr<&krrN3# +!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr +!9aC^nGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bq#:H$iicNl:(aQF&(o\96U:6!!)rs +&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X6f7<@ +E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B`:VYk +s8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M:?Ub4 +G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&srsaoS +hsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3oq#:@+k5PA]jV%Ij!MrBdrr<&krrN3# +!<)p'!)D\>:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr +!9aC^nGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t!!)lq"7Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d!@#\` +rrjP!s8U^prr3!!hY[Y71q#gEl"p4W#C]F24r;Qhu(>8Zd!!)Ed#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS@-s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t!!)lq"7Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d!@#\` +rrjP!s8U^prr3!!hY[Y71q#gEl"p4W#C]F24r;Qhu(>8Zd!!)Ed#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS@-s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t!!)lq"7Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d!@#\` +rrjP!s8U^prr3!!hY[Y71q#gEl"p4W#C]F24r;Qhu(>8Zd!!)Ed#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbS@-s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrVlitq#:BM'E8"5m2"@Orr<&trrE\orr3#\''B2o!;uis!<)ot!<)ot!;uis$2ji( +!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo)rVlitrVlit +qYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrVlitq#:BM'E8"5m2"@Orr<&trrE\orr3#\''B2o!;uis!<)ot!<)ot!;uis$2ji( +!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo)rVlitrVlit +qYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrVlitq#:BM'E8"5m2"@Orr<&trrE\orr3#\''B2o!;uis!<)ot!<)ot!;uis$2ji( +!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo)rVlitrVlit +qYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitrVlitq#:BR&cVe2CiK7N!!)ut!C3U_rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitrVlitq#:BR&cVe2CiK7N!!)ut!C3U_rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitrVlitq#:BR&cVe2CiK7N!!)ut!C3U_rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoMD?!!)ut$V7etouT==s8UXen,!%a!<)p%Wuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!;6?rWuo4M_&]]Xs8N)trsPkL_XkSaY5b7.Jc>NG!!)orrrD`l'`_(nkYQX+s#G`(iD]gWrr>mY +kYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&r +rs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoMD?!!)ut$V7etouT==s8UXen,!%a!<)p%Wuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!;6?rWuo4M_&]]Xs8N)trsPkL_XkSaY5b7.Jc>NG!!)orrrD`l'`_(nkYQX+s#G`(iD]gWrr>mY +kYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&r +rs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoMD?!!)ut$V7etouT==s8UXen,!%a!<)p%Wuo4M_&]]Ps8N)j +rr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8J4S_b +;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/!<<(] +0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNqqu6h\ +;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,-E_tr^ +:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1Hr:L$h +!;6?rWuo4M_&]]Xs8N)trsPkL_XkSaY5b7.Jc>NG!!)orrrD`l'`_(nkYQX+s#G`(iD]gWrr>mY +kYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&r +rs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#'kHq7rtER)!a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5mf3=W!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#'kHq7rtER)!a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5mf3=W!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#'kHq7rtER)!a,M@pY>p](9>1C#8/!<<'!N"QnC +q#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5mf3=W!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq(W0Ai$S$`"s8UkZ(BlFis1:u: +$7UQ!s8)fqs8E#srrr"5*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT3s8)frs8)frrs$AD'FQCAo_8@e!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m! +<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq(W0Ai$S$`"s8UkZ(BlFis1:u: +$7UQ!s8)fqs8E#srrr"5*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT3s8)frs8)frrs$AD'FQCAo_8@e!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m! +<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq(W0Ai$S$`"s8UkZ(BlFis1:u: +$7UQ!s8)fqs8E#srrr"5*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT3s8)frs8)frrs$AD'FQCAo_8@e!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m! +<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srtmkojSIeL9`NohPN2GY;ZAeL +iVMG@:&b4frr<&trtAp5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3T):!!)lq!!)lq#!A^BqVZ*^p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srtmkojSIeL9`NohPN2GY;ZAeL +iVMG@:&b4frr<&trtAp5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3T):!!)lq!!)lq#!A^BqVZ*^p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srtmkojSIeL9`NohPN2GY;ZAeL +iVMG@:&b4frr<&trtAp5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II!!)or +!W`6#p&>5s*Ph6\*3T):!!)lq!!)lq#!A^BqVZ*^p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"7Z]t!;HKn!<)ou($GSr"QV]F6)X_^#,FTcrrE'! +o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$B,27r +p&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u.rrB,I +#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^B,27r +p&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE*!3@LQ +1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uOs8N)# +-3uERs8Vrrrr3$"rrDrrrrE#t!C'\#l"?#!<3&trs/Ub'GbQ\s8N)t +rs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0()2`.rr3$"rrDrr +rrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].qs8VThW;+".W:BEF +8q6~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"7Z]t!;HKn!<)ou($GSr"QV]F6)X_^#,FTcrrE'! +o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$B,27r +p&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u.rrB,I +#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^B,27r +p&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE*!3@LQ +1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uOs8N)# +-3uERs8Vrrrr3$"rrDrrrrE#t!C'\#l"?#!<3&trs/Ub'GbQ\s8N)t +rs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0()2`.rr3$"rrDrr +rrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].qs8VThW;+".W:BEE +?[r~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"7Z]t!;HKn!<)ou($GSr"QV]F6)X_^#,FTcrrE'! +o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$B,27r +p&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u.rrB,I +#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^B,27r +p&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE*!3@LQ +1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uOs8N)# +-3uERs8Vrrrr3$"rrDrrrrE#t!C'\#l"?#!<3&trs/Ub'GbQ\s8N)t +rs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0()2`.rr3$"rrDrr +rrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].qs8VThW;+".W:BED +G^o~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYDp8cJc."WKt:r;Q`srVlm6kl1Sbj:D8%k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J9!#YqZ8$W*o!#YqZ8$W!l"8gnc +9)&>e!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYDp8cJc."WKt:r;Q`srVlm6kl1Sbj:D8%k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J9!#YqZ8$W*o!#YqZ8$W!l"8gnc +9)&>e!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYDp8cJc."WKt:r;Q`srVlm6kl1Sbj:D8%k5PAb +jV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmrrr<&s +rt0+mN'lLj +@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i/B%24 +A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlitr;R4b +6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\');J9!#YqZ8$W*o!#YqZ8$W!l"8gnc +9)&>e!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus!id$hrVlue[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr_Yt/qs9("7 +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus!id$hrVlue[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr_Yt/qs9("7 +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus!id$hrVlue[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!:9^i!r;k3s7lcirr_Yt/qs9("7 +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3)sEuiI#rrLmgrVlitrVm2sFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3ooD\jH'Dqe1g_9Yd"8^_Z;Xj\l!;QTop^.!#!<)p'!<<'!q#CBh$2sl(!;c]q +!;uj&f4-K@'rh65!<)p"!<<'*r;[*)s8NB"s8Vfnjo5;\qu6Zsrqucr!<)p"!<<'*r;Zg!p&>$q +le_[AnGoN_]EG2'na/r!~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3)sEuiI#rrLmgrVlitrVm2sFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3ooD\jH'Dqe1g_9Yd"8^_Z;Xj\l!;QTop^.!#!<)p'!<<'!q#CBh$2sl(!;c]q +!;uj&f4-K@'rh65!<)p"!<<'*r;[*)s8NB"s8Vfnjo5;\qu6Zsrqucr!<)p"!<<'*r;Zg!p&>$q +le_[AnGoN_]EG2'na'V5~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3)sEuiI#rrLmgrVlitrVm2sFs.)@Po'H3kPkJ^jV$_U!!)rs!!)ut!!)ut!!)rs +!"&T(!!<0"!+GnrrM3ooD\jH'Dqe1g_9Yd"8^_Z;Xj\l!;QTop^.!#!<)p'!<<'!q#CBh$2sl(!;c]q +!;uj&f4-K@'rh65!<)p"!<<'*r;[*)s8NB"s8Vfnjo5;\qu6Zsrqucr!<)p"!<<'*r;Zg!p&>$q +le_[AnGoN_]EG2'n`tFM~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aH3P!T=Xhrr<&orre3_s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/s!!)ip"oG/2s8N)trr`?%s!dC5rrjV# +s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aH3P!T=Xhrr<&orre3_s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/s!!)ip"oG/2s8N)trr`?%s!dC5rrjV# +s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aH3P!T=Xhrr<&orre3_s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/s!!)ip"oG/2s8N)trr`?%s!dC5rrjV# +s8UaPjo5>^rqucr!;ld&$2+>uiW0#Y.IQa+! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZrru$(nb(!dFoD=?!<)p-:t59rKc/VEWuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trt\/8nb(!dFoP"Bnb(!dFoOh5mePOG5Q:]_!;6@,!)VkB:j`6B +3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$l +oD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZrru$(nb(!dFoD=?!<)p-:t59rKc/VEWuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trt\/8nb(!dFoP"Bnb(!dFoOh5mePOG5Q:]_!;6@,!)VkB:j`6B +3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$l +oD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZrru$(nb(!dFoD=?!<)p-:t59rKc/VEWuo4M_&]]P +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trt\/8nb(!dFoP"Bnb(!dFoOh5mePOG5Q:]_!;6@,!)VkB:j`6B +3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$l +oD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#^ijX#LCr1R\4As82lsrroJO"<(S$rr3+f,6]<]pAY3^ +!$h1:quH`r!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:9FZ!ZnlLo`#^ijX#LCr1R\4As82lsrroJO"<(S$rr3+f,6]<]pAY3^ +!$h1:quH`r!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:0@Y!ZnlLo`#^ijX#LCr1R\4As82lsrroJO"<(S$rr3+f,6]<]pAY3^ +!$h1:quH`r!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq-c9($$S$`"s8UkZ(BlFis1:u: +$7UQ!s6=29#97@@s8SH3"XKT;s8)fqrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+`3!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq-c9($$S$`"s8UkZ(BlFis1:u: +$7UQ!s6=29#97@@s8SH3"XKT;s8)fqrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+`3!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq-c9($$S$`"s8UkZ(BlFis1:u: +$7UQ!s6=29#97@@s8SH3"XKT;s8)fqrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+N-"ILG<,b+f5"ILG<,b+`3!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u +!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss!U"*jSIeL9`NohPN2GY;ZAeL +iVMG@:&dRsiq_SM6iX2-_",5[Y5\LursPkJ_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3T):%]^Vco"Q0Is/R0Uo"Q0Irr3)t30""4rrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss!U"*jSIeL9`NohPN2GY;ZAeL +iVMG@:&dRsiq_SM6iX2-_",5[Y5\LursPkJ_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3T):%]^Vco"Q0Is/R0Uo"Q0Irr3)t30""4rrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss!U"*jSIeL9`NohPN2GY;ZAeL +iVMG@:&dRsiq_SM6iX2-_",5[Y5\LursPkJ_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3T):%]^Vco"Q0Is/R0Uo"Q0Irr3)t30""4rrN3#!:Bdd!;QQo!:9^c +!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu$h4/q"Rcd!6)X_^"/J9`!;c]r6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu$h4/q"Rcd!6)X_^"/J9`!;c]r6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu$h4/q"Rcd!6)X_^"/J9`!;c]r6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYPt8cN%6j8.eS?N1T!rr3Dg')qqL"WKt:s8NYm +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S)k5PAdjV%Un +[iOi8!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYPt8cN%6j8.eS?N1T!rr3Dg')qqL"WKt:s8NYm +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S)k5PAdjV%Un +[iOi8!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYPt8cN%6j8.eS?N1T!rr3Dg')qqL"WKt:s8NYm +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PA`jV%S)k5PAdjV%Un +[iOi8!;?Eo!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus"f`?ks6qoF!!tOQrrW#rC]F24rVm8m[k5rr<&rrrE,V +r;Q`srVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus"f`?ks6qoF!!tOQrrW#rC]F24rVm8m[k5rr<&rrrE,V +r;Q`srVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus"f`?ks6qoF!!tOQrrW#rC]F24rVm8m[k5rr<&rrrE,V +r;Q`srVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s%dIiq;H'art+AmrrM3oqu6fS'E8X,rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s%dIiq;H'art+AmrrM3oqu6fS'E8X,rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s%dIiq;H'art+AmrrM3oqu6fS'E8X,rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrJr_qu6fX&cY+prr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW +!C3U_rrf/bs$3O^rrT#`s7u`brtPOfs8Udss8NDus8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)- +rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/p&G'O!<<'Jmd^;X!<1jTs7$)fpq-a.naZ!= +J,~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrJr_qu6fX&cY+prr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW +!C3U_rrf/bs$3O^rrT#`s7u`brtPOfs8Udss8NDus8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)- +rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/p&G'O!<<'Jmd^;X!<1jTs7$)fpq-a.naYsQ +J,~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrJr_qu6fX&cY+prr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW +!C3U_rrf/bs$3O^rrT#`s7u`brtPOfs8Udss8NDus8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)- +rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/p&G'O!<<'Jmd^;X!<1jTs7$)fpq-a.naYpi +J,~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZruOC>iVMMJ63!u-_XkSaY5_&&nb(!dFoSKa_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p-Wuo4M_&]]YWuo4M_&]]Urr<&ts8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZruOC>iVMMJ63!u-_XkSaY5_&&nb(!dFoSKa_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p-Wuo4M_&]]YWuo4M_&]]Urr<&ts8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZruOC>iVMMJ63!u-_XkSaY5_&&nb(!dFoSKa_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p-Wuo4M_&]]YWuo4M_&]]Urr<&ts8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#_T*k?o55)e/%2s-Fr6,Fe`5X#LCr1R\4As-Fr6,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4"IC>:,FeQ0!!*#u!q$%5p&>a,M@pY>p](9>1C#8/ +!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi +*>G!q$%5k5YJO!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#_T*k?o55)e/%2s-Fr6,Fe`5X#LCr1R\4As-Fr6,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4"IC>:,FeQ0!!*#u!q$%5p&>a,M@pY>p](9>1C#8/ +!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi +*>G!q$%5k5YJO!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#_T*k?o55)e/%2s-Fr6,Fe`5X#LCr1R\4As-Fr6,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4"IC>:,FeQ0!!*#u!q$%5p&>a,M@pY>p](9>1C#8/ +!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi +*>G!q$%5k5YJO!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq28`Q2$S$`"s8UkZ(BlFis1:u: +$7UQ!s6=29#97@@s8SH3"XKT;s6=29#97@@s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrDEc"ILG<,b+Q.#J3\A$7UQ!s8)frrrr"5*X3pTpAY0orrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!9O7\nGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq28`Q2$S$`"s8UkZ(BlFis1:u: +$7UQ!s6=29#97@@s8SH3"XKT;s6=29#97@@s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrDEc"ILG<,b+Q.#J3\A$7UQ!s8)frrrr"5*X3pTpAY0orrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!9O7\nGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq28`Q2$S$`"s8UkZ(BlFis1:u: +$7UQ!s6=29#97@@s8SH3"XKT;s6=29#97@@s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e +)$MIcmf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET) +e,KCJqu6]trrDEc"ILG<,b+Q.#J3\A$7UQ!s8)frrrr"5*X3pTpAY0orrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!9O7\nGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W?=jSIeL9`NohPN2GY;ZAeL +iVMG@:&dRsiq_SM6iX2-_",5[Y5^k*iq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#mJdBk*Ph6\*3T):#WeR9qVPaVrrDoq#%UK_pX;O)p\t9prrDHd!!)fo!!)Bc +!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr9"%ZnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W?=jSIeL9`NohPN2GY;ZAeL +iVMG@:&dRsiq_SM6iX2-_",5[Y5^k*iq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#mJdBk*Ph6\*3T):#WeR9qVPaVrrDoq#%UK_pX;O)p\t9prrDHd!!)fo!!)Bc +!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr9"%ZnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss#W?=jSIeL9`NohPN2GY;ZAeL +iVMG@:&dRsiq_SM6iX2-_",5[Y5^k*iq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#mJdBk*Ph6\*3T):#WeR9qVPaVrrDoq#%UK_pX;O)p\t9prrDHd!!)fo!!)Bc +!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Ztr9"%ZnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu$h4/q"Rcd!6)X_^"JeBa$h4/q"Rcd!6)X_^ +#,FTcrrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlit +r;RB$B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn +&74u.rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ +ScA`^B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepT +B_DE*!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\ ++V7uOs8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu$h4/q"Rcd!6)X_^"JeBa$h4/q"Rcd!6)X_^ +#,FTcrrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlit +r;RB$B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn +&74u.rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ +ScA`^B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepT +B_DE*!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\ ++V7uOs8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu$h4/q"Rcd!6)X_^"JeBa$h4/q"Rcd!6)X_^ +#,FTcrrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlit +r;RB$B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn +&74u.rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ +ScA`^B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepT +B_DE*!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\ ++V7uOs8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYPt8cN%6j8.eS?N1T!rr3Dg')u3Tj8.eS?N1T! +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3ooD]5q8cJc."WKt:s8Nkurr3#[ +&,6)*!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(AXs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYPt8cN%6j8.eS?N1T!rr3Dg')u3Tj8.eS?N1T! +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3ooD]5q8cJc."WKt:s8Nkurr3#[ +&,6)*!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(AXs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAYPt8cN%6j8.eS?N1T!rr3Dg')u3Tj8.eS?N1T! +rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\96U:6 +!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4!<<(X +6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&trsb,B +`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNqr;R@M +:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUOrr<&s +rsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrD`l!>+DmrrM3ooD]5q8cJc."WKt:s8Nkurr3#[ +&,6)*!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$F +hsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3# +!;lctUB(AXs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus"f`?ks6qoF!":aTrrW#rC]F24s6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g9h!id$hrVm8m[k +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus"f`?ks6qoF!":aTrrW#rC]F24s6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g9h!id$hrVm8m[k +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus"f`?ks6qoF!":aTrrW#rC]F24s6qoF!!tOQrrW#rC]F24k5PD]r;Qp#j8]/P$N9u) +!;uj#-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g9h!id$hrVm8m[k +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s%dIiq;H'art+Amrs\!%s%dIiq;H'art+AmrrM3ok5PD]r;Q`srVlit +rVlitr;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg! +s8N)trr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3o +nG`Llp&"am#Pe?!pB^cu!rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s%dIiq;H'art+Amrs\!%s%dIiq;H'art+AmrrM3ok5PD]r;Q`srVlit +rVlitr;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg! +s8N)trr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3o +nG`Llp&"am#Pe?!pB^cu!rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s%dIiq;H'art+Amrs\!%s%dIiq;H'art+AmrrM3ok5PD]r;Q`srVlit +rVlitr;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg! +s8N)trr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3o +nG`Llp&"am#Pe?!pB^cu!rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut +!s&B$$2ji(!qlQo"RG4Ms7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm! +rr)it.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot +!<)ot!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIu +s4JOorr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UKS&c;S/MH]NL'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm! +rr)it.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot +!<)ot!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIu +s4JOorr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UKS&c;S/MH]NL'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrf/brsJ5orrhcus$3O^rrJr_k5PD]r;Q`srVlitrVlm! +rr)it.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot +!<)ot!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIu +s4JOorr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UKS&c;S/MH]NL'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1 +!<)p#!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZruOC>iVMMJ63!u-_XkSaY5^_$iVMMJ63!u-_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)lrs#MG_XkSaY5\J$!<)p"UC`"UrVm?u\FK764E^[#eG.jR);>)irrD`l'`_(nkYQX+ +s#G`(iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl +!;$3l*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZruOC>iVMMJ63!u-_XkSaY5^_$iVMMJ63!u-_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)lrs#MG_XkSaY5\J$!<)p"UC`"UrVm?u\FK764E^[#eG.jR);>)irrD`l'`_(nkYQX+ +s#G`(iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl +!;$3l*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZruOC>iVMMJ63!u-_XkSaY5^_$iVMMJ63!u-_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)lrs#MG_XkSaY5\J$!<)p"UC`"UrVm?u\FK764E^[#eG.jR);>)irrD`l'`_(nkYQX+ +s#G`(iD]gWrr>mYkYQd-rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl +!;$3l*4,SArr<&rrs^u@o\iaLs8S-Wh"\l`pAY0k"8`&t!:KmenGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#_T*k?o55)e/%2s-Fr6,Fe`5k?o55)e/%2s-Fr6,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrE#tq>_#oX#LCr1R\4AX=",h?/5GZ!q$%5p&>a,M@pY>p](9>1C#8/ +!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi +*>G!q$%5mf3=W!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#_T*k?o55)e/%2s-Fr6,Fe`5k?o55)e/%2s-Fr6,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrE#tq>_#oX#LCr1R\4AX=",h?/5GZ!q$%5p&>a,M@pY>p](9>1C#8/ +!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi +*>G!q$%5mf3=W!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#_T*k?o55)e/%2s-Fr6,Fe`5k?o55)e/%2s-Fr6,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrE#tq>_#oX#LCr1R\4AX=",h?/5GZ!q$%5p&>a,M@pY>p](9>1C#8/ +!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi +*>G!q$%5mf3=W!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEF8q6~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEE?[r~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEDG^o~> +!:BL[!!)or!W`6#qu6Wrg]%gQq*Q)"o$S$`"s8UkZ(BlFis1:u: +$7UQ!s7:1N"soN5rsb>@"XKT;s2.tR$S$`"rVlrW('+@6!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ) +"Y$;9rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekR +rr<&rrrN3#!;-9oQm;h\S+cj`!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3# +!;uitrW'Y3s7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq*Q)"o$S$`"s8UkZ(BlFis1:u: +$7UQ!s7:1N"soN5rsb>@"XKT;s2.tR$S$`"rVlrW('+@6!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ) +"Y$;9rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekR +rr<&rrrN3#!;-9oQm;h\S+cj`!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3# +!;uitrW'Y3s7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq*Q)"o$S$`"s8UkZ(BlFis1:u: +$7UQ!s7:1N"soN5rsb>@"XKT;s2.tR$S$`"rVlrW('+@6!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ) +"Y$;9rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekR +rr<&rrrN3#!;-9oQm;h\S+cj`!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3# +!;uitrW'Y3s7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss"6F0jSIeL9`NohPN2GY;ZAeL +iVMG@:&ea!g@s&aUAq87_",5[Y5^V[jSIeL9`G%oq`'T9rr3$"rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T&9!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss"6F0jSIeL9`NohPN2GY;ZAeL +iVMG@:&ea!g@s&aUAq87_",5[Y5^V[jSIeL9`G%oq`'T9rr3$"rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T&9!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&ss"6F0jSIeL9`NohPN2GY;ZAeL +iVMG@:&ea!g@s&aUAq87_",5[Y5^V[jSIeL9`G%oq`'T9rr3$"rrD]k!W`6#li-qbir8uYm/I:I +*fo:S`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq +!!(II!!)or!W`6#p&>5s*Ph6\*3T&9!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu($GSr"QV]F6)X_^!Mi'ZrrMNnrr3(C9`G+l +rrN3#!;-9m!<3&ts8E#rrs&P*-3uERs8Vrrs8N9#KHUn5oD\au!/hj)NW9%NB,27rp&4mj!;uj/ +oOepTB_DE*q/7#`O9#=\?&AIY&+jKM(23C@rrB,I#W'g,s82lrs8E#rrtY9E()2`.s8W"M+V7uO +s8N)#-3uERrr3D*2%:Xus8W"M+V7uOrr3$"rrDrrrrE#t!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu($GSr"QV]F6)X_^!Mi'ZrrMNnrr3(C9`G+l +rrN3#!;-9m!<3&ts8E#rrs&P*-3uERs8Vrrs8N9#KHUn5oD\au!/hj)NW9%NB,27rp&4mj!;uj/ +oOepTB_DE*q/7#`O9#=\?&AIY&+jKM(23C@rrB,I#W'g,s82lrs8E#rrtY9E()2`.s8W"M+V7uO +s8N)#-3uERrr3D*2%:Xus8W"M+V7uOrr3$"rrDrrrrE#t!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8=U"Rufu($GSr"QV]F6)X_^!Mi'ZrrMNnrr3(C9`G+l +rrN3#!;-9m!<3&ts8E#rrs&P*-3uERs8Vrrs8N9#KHUn5oD\au!/hj)NW9%NB,27rp&4mj!;uj/ +oOepTB_DE*q/7#`O9#=\?&AIY&+jKM(23C@rrB,I#W'g,s82lrs8E#rrtY9E()2`.s8W"M+V7uO +s8N)#-3uERrr3D*2%:Xus8W"M+V7uOrr3$"rrDrrrrE#t!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAY8l8cKRirr3,^&-!4'rr3#\')hh;qqYgUs8TPK +m/I(brrN3#!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0:4N(l!W`6#qu?Zrr +;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr!5JR6nGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAY8l8cKRirr3,^&-!4'rr3#\')hh;qqYgUs8TPK +m/I(brrN3#!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0:4N(l!W`6#qu?Zrr +;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr!5JR6nGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bpAY8l8cKRirr3,^&-!4'rr3#\')hh;qqYgUs8TPK +m/I(brrN3#!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t%?`9\ +o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&srt0:4N(l!W`6#qu?Zrr +;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&rrrSqr!5JR6nGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus&ul`#s(PEeps_n=rrW#rC]F24rr;rt#Uo$=jVYi6rrD0\!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus&ul`#s(PEeps_n=rrW#rC]F24rr;rt#Uo$=jVYi6rrD0\!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrDus&ul`#s(PEeps_n=rrW#rC]F24rr;rt#Uo$=jVYi6rrD0\!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s7LOY#:l&Urt+AmrrM3orVm)ug0dhY5_8q7!!)-\!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3onG`aoq#CBh$31#*rVm-'s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2tu +rVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE(!!!)nrrE8g^An6'!3#\*"K:k\ +m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s7LOY#:l&Urt+AmrrM3orVm)ug0dhY5_8q7!!)-\!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3onG`aoq#CBh$31#*rVm-'s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2tu +rVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE(!!!)nrrE8g^An6'!3#\*"K:k\ +lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitrr3N*EuiI(s7LOY#:l&Urt+AmrrM3orVm)ug0dhY5_8q7!!)-\!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3onG`aoq#CBh$31#*rVm-'s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2tu +rVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE(!!!)nrrE8g^An6'!3#\*"K:k\ +lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aH3P"H$C_5cF\^!Mr-[rrVQos7u`Xrr<&srr<&trr<&trrE0"rVlmImeZq`!;ld" ++56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNqr;R'I +gAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq!!)or +!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOps!dC3 +rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_nGa4'gAh3,,6.ZL +p&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV#s8UaPjo5>^rqucr!;ld& +$2+>uiW0#Y.IQa+! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aH3P"H$C_5cF\^!Mr-[rrVQos7u`Xrr<&srr<&trr<&trrE0"rVlmImeZq`!;ld" ++56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNqr;R'I +gAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq!!)or +!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOps!dC3 +rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_nGa4'gAh3,,6.ZL +p&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV#s8UaPjo5>^rqucr!;ld& +$2+>uiW0#Y.IQa+! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVm'%s8Uk38aH3P"H$C_5cF\^!Mr-[rrVQos7u`Xrr<&srr<&trr<&trrE0"rVlmImeZq`!;ld" ++56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNqr;R'I +gAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq!!)or +!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOps!dC3 +rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_nGa4'gAh3,,6.ZL +p&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV#s8UaPjo5>^rqucr!;ld& +$2+>uiW0#Y.IQa+! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZrt\G\pt^WAgAe2q_XkSaY5^knmePOG5PtH\!;6Bl +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\ +-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$" +qZ$Qq`rH)/!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZrt\G\pt^WAgAe2q_XkSaY5^knmePOG5PtH\!;6Bl +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\ +-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$" +qZ$Qq`rH)/!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;REtYjV>?@mC"A(6mkSaoMI:&:siZrt\G\pt^WAgAe2q_XkSaY5^knmePOG5PtH\!;6Bl +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\ +-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$" +qZ$Qq`rH)/!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#^`gX=",h?/5GZ%@8:C,Fe`5_G(OI-$8POrr<&mrrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!0 +9%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#^`gX=",h?/5GZ%@8:C,Fe`5_G(OI-$8POrr<&mrrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!0 +9%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#^`gX=",h?/5GZ%@8:C,Fe`5_G(OI-$8POrr<&mrrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!0 +9%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4%]s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(?PSrnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq%`;E`$S$`"s8UkZ(BlFirVm;a +('+C7_c[Z].Y76lqZ-Zr%D,=G$7UQ!s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrDEc"ILG<,b+N-rW)lr#+-Y>,b+i6qZ-?i!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gQq%`;E`$S$`"s8UkZ(BlFirVm;a +('+C7_c[Z].Y76lqZ-Zr%D,=G$7UQ!s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrDEc"ILG<,b+N-rW)lr#+-Y>,b+i6qZ-?i!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gQq%`;E`$S$`"s8UkZ(BlFirVm;a +('+C7_c[Z].Y76lqZ-Zr%D,=G$7UQ!s8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrDEc"ILG<,b+N-rW)lr#+-Y>,b+i6qZ-?i!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z?\+ +q`'T9s8P3WjSIeL9`G+hrt@GbiVMG@:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#mJdBk*Ph6\*3Su7!!)ut#ceu]o"Q0IrrDTh!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z?\+ +q`'T9s8P3WjSIeL9`G+hrt@GbiVMG@:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#mJdBk*Ph6\*3Su7!!)ut#ceu]o"Q0IrrDTh!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z?\+ +q`'T9s8P3WjSIeL9`G+hrt@GbiVMG@:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#mJdBk*Ph6\*3Su7!!)ut#ceu]o"Q0IrrDTh!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8FX"*I<;!;c]tmKigmp&>0b$3*;hrr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?Zrp&>%YVuH\sUdFbS!!)ut!CkPtSP!3#\*"K:k\ +m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8FX"*I<;!;c]tmKigmp&>0b$3*;hrr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?Zrp&>%YVuH\sUdFbS!!)ut!CkPtSP!3#\*"K:k\ +lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8FX"*I<;!;c]tmKigmp&>0b$3*;hrr31u6N@&crrD]k +!W`6#rVuisr;R!%X)coOepTB_D?(!!)rs&bK]O(23C@ +s7pRK'p&Fqs':KYrt"a7()CTVs8N)#-3uERs8Vusrr;rtr;RN+C_d_E!<<)sKHUn5oDegjX(23C? +rr`=[*=@f*rsSmc*=@f+s87Nn&74u,rr<&rrs#;G#=78Is8)frs8E#rrt4m9()CTVs8N)#-3uER +s8QA]qu73!B,27rp&G'iKHUn5oDejg!<3#r!<3#t!;ld#W&5#+ScA`h!;uj-r.H4)?M"3s!3@LQ +1XH+$qZ-Wq!W`6#qu?Zrp&>%YVuH\sUdFbS!!)ut!CkPtSP!3#\*"K:k\ +lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqYp]-*UNe+r;R-$h.94Y!#YqZ8$Vpj"Jn]i&E`ul +#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlit +r;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?Zrp&>%(k5PA]jV%7d!!)ut!>+Dmrs7^!rr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!9aC^nGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqYp]-*UNe+r;R-$h.94Y!#YqZ8$Vpj"Jn]i&E`ul +#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlit +r;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?Zrp&>%(k5PA]jV%7d!!)ut!>+Dmrs7^!rr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!9aC^nGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqYp]-*UNe+r;R-$h.94Y!#YqZ8$Vpj"Jn]i&E`ul +#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\rVlit +r;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?Zrp&>%(k5PA]jV%7d!!)ut!>+Dmrs7^!rr:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=!<3&r +rrSqr!9aC^nGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<9'jVYi6rrE#trVusIli$hcmC+^%r;R,((>8]hq>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lrVm''q>Y71q#gTq"7 +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<9'jVYi6rrE#trVusIli$hcmC+^%r;R,((>8]hq>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lrVm''q>Y71q#gTq"7 +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<9'jVYi6rrE#trVusIli$hcmC+^%r;R,((>8]hq>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lrVm''q>Y71q#gTq"7 +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"s$2/7rr<&srr`,O?rHn%!Se@frs/CA*R"K_&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&bs8E#srrE\orr3#\'(u8)!<)ou&Ej&m!TaskrrLmgnG`aoq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8gk5YJO!3#\*"K:k\m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"s$2/7rr<&srr`,O?rHn%!Se@frs/CA*R"K_&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&bs8E#srrE\orr3#\'(u8)!<)ou&Ej&m!TaskrrLmgnG`aoq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8gk5YJO!3#\*"K:k\lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"s$2/7rr<&srr`,O?rHn%!Se@frs/CA*R"K_&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&bs8E#srrE\orr3#\'(u8)!<)ou&Ej&m!TaskrrLmgnG`aoq#CBh$31#*rVm-'s8N)os8Vj# +rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`srVls"s8NE( +!!!)nrrE8gk5YJO!3#\*"K:k\lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVllus7u`mrrMKnqu6o[&c_md2+d-5rrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*akT!!)ut!C3U_ +rrJr_qu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVllus7u`mrrMKnqu6o[&c_md2+d-5rrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*akT!!)ut!C3U_ +rrJr_qu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVllus7u`mrrMKnqu6o[&c_md2+d-5rrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5rr<&r +rrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq!!)rs +#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ruqYpNq +qu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3++TMHj +meQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*akT!!)ut!C3U_ +rrJr_qu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!k5YJO!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoM>=('+C76a6"Sfjd8H8@\3_aZO_GUC`"UrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrDoq!!)ut%]^\go>)HMs%'ZiouT==rr;uup&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)es8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoM>=('+C76a6"Sfjd8H8@\3_aZO_GUC`"UrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrDoq!!)ut%]^\go>)HMs%'ZiouT==rr;uup&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)es8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoM>=('+C76a6"Sfjd8H8@\3_aZO_GUC`"UrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrDoq!!)ut%]^\go>)HMs%'ZiouT==rr;uup&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)es8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#3s2%J@#pj]\s/S*c%l9XPs7u^"n,J_!"XBN1rrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,OYU3nGoN_]EG2'na/r!~> +!:9FZ!ZnlLo`#3s2%J@#pj]\s/S*c%l9XPs7u^"n,J_!"XBN1rrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,OYU3nGoN_]EG2'na'V5~> +!:0@Y!ZnlLo`#3s2%J@#pj]\s/S*c%l9XPs7u^"n,J_!"XBN1rrVTg +,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*=)0"j8=q!<<)s!<3!([Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^< +rr2ruqu7,O1C#8/!<<)tO!k8hXnVhsr3d[DrrVTg,OYU3nGoN_]EG2'n`tFM~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k1?rrFgEmJm4V!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq%`;E`$S$`"s8UkZ(BlFirVmVj +('+C7o5G`T-'\H0l=M"@*+nL9s8E#rrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+Q.(;j8h$S$`"s8Uk\)[.^ps1:u:$7UQ!p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQq%`;E`$S$`"s8UkZ(BlFirVmVj +('+C7o5G`T-'\H0l=M"@*+nL9s8E#rrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+Q.(;j8h$S$`"s8Uk\)[.^ps1:u:$7UQ!p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQq%`;E`$S$`"s8UkZ(BlFirVmVj +('+C7o5G`T-'\H0l=M"@*+nL9s8E#rrre]7"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIc +mf*:sq=+Ca!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJ +qu6]trrD]k"ILG<,b+Q.(;j8h$S$`"s8Uk\)[.^ps1:u:$7UQ!p\t9prrDHd!!)fo!!)Bc!!)Ed +!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z?\1 +q`'T9s8QV)g@s&aUAmSsiq_SM6iI#b!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#;*lUu_C1C/"Z^)M[&Bd7sX%T&KP'@SQUs!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z?\1 +q`'T9s8QV)g@s&aUAmSsiq_SM6iI#b!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#;*lUu_C1C/"Z^)M[&Bd7sX%T&KP'@SQUs!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srsh/ejSIeL9`NohPN2GY;Z?\1 +q`'T9s8QV)g@s&aUAmSsiq_SM6iI#b!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0Iq#;*lUu_C1C/"Z^)M[&Bd7sX%T&KP'@SQUs!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8FX#B``?!<<'6kPkJaj?3GMnG`FgmgT0p!!)ut!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O +(23C@rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<* +KHUn5oDegjXhuE`H +!3#\*"K:k\m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8FX#B``?!<<'6kPkJaj?3GMnG`FgmgT0p!!)ut!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O +(23C@rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<* +KHUn5oDegjXhuE`H +!3#\*"K:k\lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8FX#B``?!<<'6kPkJaj?3GMnG`FgmgT0p!!)ut!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O +(23C@rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<* +KHUn5oDegjXhuE`H +!3#\*"K:k\lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqYpi1*UNe+s8Nkurr3;c&-#mQj8.eS?N'm(!<)ou +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d$iAak9)f]o.gI5CpA=jj +V+LF]!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqYpi1*UNe+s8Nkurr3;c&-#mQj8.eS?N'm(!<)ou +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d$iAak9)f]o.gI5CpA=jj +V+LF]!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqYpi1*UNe+s8Nkurr3;c&-#mQj8.eS?N'm(!<)ou +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d$iAak9)f]o.gI5CpA=jj +V+LF]!W`6#rVm-':?L_7J,fNKrVm-'s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5= +6f7<@E<#ra:?U_4!<3!"!<3&rs8N)srrN3#!;lcr!;ld$!(P]-7K +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<]3jVYi6rrE*!BiEg^e4KlDn2:1F!B'EGrr<&trrrQ#s(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcjs8E!).-pm89@NXi:i$"/!id$hnG`aogAh3,,ldlErVm-' +s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR +!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<]3jVYi6rrE*!BiEg^e4KlDn2:1F!B'EGrr<&trrrQ#s(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcjs8E!).-pm89@NXi:i$"/!id$hnG`aogAh3,,ldlErVm-' +s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR +!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8Dfprr<]3jVYi6rrE*!BiEg^e4KlDn2:1F!B'EGrr<&trrrQ#s(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcjs8E!).-pm89@NXi:i$"/!id$hnG`aogAh3,,ldlErVm-' +s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR +!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"s$2/7rt,82s7LOY#:l&Us%dIiq;H'arVlitrVlm0kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3op&>6mg0dhY&*3`i!Tt9urr`+=*R!pO#QXZ"s7cp#rrE#t#QXo)!;QTo +p^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"s$2/7rt,82s7LOY#:l&Us%dIiq;H'arVlitrVlm0kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3op&>6mg0dhY&*3`i!Tt9urr`+=*R!pO#QXZ"s7cp#rrE#t#QXo)!;QTo +p^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVls"s$2/7rt,82s7LOY#:l&Us%dIiq;H'arVlitrVlm0kPkJ^jV$_U!!)rs!!)ut!!)ut +!!)rs!"&T(!!<0"!+GnrrM3op&>6mg0dhY&*3`i!Tt9urr`+=*R!pO#QXZ"s7cp#rrE#t#QXo)!;QTo +p^-p!!!)lq!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVllus7u`mrre3_rsJ5orrMQrrVlitrVlm`W;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-Srrh]qs#fBA +rs.^&s8Uk38aGgE'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVllus7u`mrre3_rsJ5orrMQrrVlitrVlm`W;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-Srrh]qs#fBA +rs.^&s8Uk38aGgE'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVllus7u`mrre3_rsJ5orrMQrrVlitrVlm`W;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p +.IR$3!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-Srrh]qs#fBA +rs.^&s8Uk38aGgE'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoM>=&HMk2:t59rKc/VE5AK0RiG([Wrr<&trs#MG_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!<)p26a6"Sfjd8HTL@<)gJDS`UC`"Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoM>=&HMk2:t59rKc/VE5AK0RiG([Wrr<&trs#MG_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!<)p26a6"Sfjd8HTL@<)gJDS`UC`"Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6oYjV>?@mC"A(6mkSaoM>=&HMk2:t59rKc/VE5AK0RiG([Wrr<&trs#MG_XkSaY4hnq +!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU? +j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21 +s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or +"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg- +kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8 +s8N)trs#MG_XkSaY5\J$!<)p26a6"Sfjd8HTL@<)gJDS`UC`"Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#D4s/[RN)I;.us6!c/"rh%8s8Vusrr3+f,6]<]pAY3^ +!$h1:quH`r!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:9FZ!ZnlLo`#D4s/[RN)I;.us6!c/"rh%8s8Vusrr3+f,6]<]pAY3^ +!$h1:quH`r!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:0@Y!ZnlLo`#D4s/[RN)I;.us6!c/"rh%8s8Vusrr3+f,6]<]pAY3^ +!$h1:quH`r!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQq&&VNa$S$`"s8UkZ(BlFis8)fr +s8)d,&c_lu,R#H_s8V\0*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#srs.h$*![HqlMp_]!"nu*!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gQq&&VNa$S$`"s8UkZ(BlFis8)fr +s8)d,&c_lu,R#H_s8V\0*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#srs.h$*![HqlMp_]!"nu*!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gQq&&VNa$S$`"s8UkZ(BlFis8)fr +s8)d,&c_lu,R#H_s8V\0*X3pTrr3+g,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#srs.h$*![HqlMp_]!"nu*!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt%;gjSIeL9`NohPN2GY;Z?ai +ruO[ms/R0Uo"Q0Is("mYpX;O)s/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V +!:Tpf!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct +!<3&lrs#ME_",5[Y4_ep!<)p%6YtcXibV!ZrrGWPp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt%;gjSIeL9`NohPN2GY;Z?ai +ruO[ms/R0Uo"Q0Is("mYpX;O)s/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V +!:Tpf!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct +!<3&lrs#ME_",5[Y4_ep!<)p%6YtcXibV!ZrrGWPp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srt%;gjSIeL9`NohPN2GY;Z?ai +ruO[ms/R0Uo"Q0Is("mYpX;O)s/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V +!:Tpf!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct +!<3&lrs#ME_",5[Y4_ep!<)p%6YtcXibV!ZrrGWPp\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!!)`m"gf`Us$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!!)`m"gf`Us$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)cn"RZQq>`8LZ!!)`m"gf`Us$&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6g")$LsLZ2FV+q^ArRrt+>lrrhErrtahtrrhBn +rt+>lrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=! +<3&rrrSqr!8mhVnGoN_]EG2'na/r!~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6g")$LsLZ2FV+q^ArRrt+>lrrhErrtahtrrhBn +rt+>lrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=! +<3&rrrSqr!8mhVnGoN_]EG2'na'V5~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)ip#5d4f9)f^bqu6g")$LsLZ2FV+q^ArRrt+>lrrhErrtahtrrhBn +rt+>lrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0:4N(l!W`6#qu?Zrr;QfurrDrr!!)or#676Il:(aQ!<)p'!<<(X6f7<@E;ok=! +<3&rrrSqr!8mhVnGoN_]EG2'n`tFM~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t"7Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t"7Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitqZ$Np"=WU9 +"8DfprrE#t"7Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#g +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitqu6]P'E8"5m2"@RrrE\orr3Dg'*%WJ+U9N_(]P'0rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitqu6]P'E8"5m2"@RrrE\orr3Dg'*%WJ+U9N_(]P'0rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)ip#5[%] +;Z@KhrVlitqu6]P'E8"5m2"@RrrE\orr3Dg'*%WJ+U9N_(]P'0rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrr +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitqu6]U&cVe2CiK@Q!C3U_rrJr_qu6eV>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT!!)ut +!=J;prrMQrrr3"8E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitqu6]U&cVe2CiK@Q!C3U_rrJr_qu6eV>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT!!)ut +!=J;prrMQrrr3"8E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tB`$3+"b +rVlitqu6]U&cVe2CiK@Q!C3U_rrJr_qu6eV>5pjdrr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT!!)ut +!=J;prrMQrrr3"8E:*Z?!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!# +s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R^'YjV>?@mC"A(6mkSaoMH4\FK764E^](eemlSrt_XW_XkSaY5_>Jpt^WAgAe2q_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;c]q!<)p*5AK0RiG([Ys4/%Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R^'YjV>?@mC"A(6mkSaoMH4\FK764E^](eemlSrt_XW_XkSaY5_>Jpt^WAgAe2q_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;c]q!<)p*5AK0RiG([Ys4/%Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R^'YjV>?@mC"A(6mkSaoMH4\FK764E^](eemlSrt_XW_XkSaY5_>Jpt^WAgAe2q_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;c]q!<)p*5AK0RiG([Ys4/%Uqu?Zrp&>a,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +* +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +* +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +* +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEF8q6~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEE?[r~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEDG^o~> +!:BL[!!)or!W`6#qu6Wrg]%gHn!oOgorr35Y>SdPrW;lns!;c]u +i"c=ms8)d,&c]aO'FQCAo`+rY,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2rrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!^&S-& +!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gHn!oOgorr35Y>SdPrW;lns!;c]u +i"c=ms8)d,&c]aO'FQCAo`+rY,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2rrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!^&S-& +!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gHn!oOgorr35Y>SdPrW;lns!;c]u +i"c=ms8)d,&c]aO'FQCAo`+rY,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a%JfMn +!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct!<3&k +rre]7"XKT2rrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3#!;lcr!9=(\!<3&srrN*!^&S-& +!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&qrs\caNWB+Zh&V^>pr?;2rr<&r +rr`-XNWAqU(.XMe4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrD`l#-/c[o"Q0Ip\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Zt +r4`42nGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&qrs\caNWB+Zh&V^>pr?;2rr<&r +rr`-XNWAqU(.XMe4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrD`l#-/c[o"Q0Ip\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Zt +r4`42nGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&qrs\caNWB+Zh&V^>pr?;2rr<&r +rr`-XNWAqU(.XMe4J_'7i+bscWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7e +n,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]t +rrD`l#-/c[o"Q0Ip\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z!W`6#qu6Zt +r4`42nGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)lq#B``?!<<((Mtm;P!;lcuF\Mf8qu6`).Js#B"RZQq6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)lq#B``?!<<((Mtm;P!;lcuF\Mf8qu6`).Js#B"RZQq6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)lq#B``?!<<((Mtm;P!;lcuF\Mf8qu6`).Js#B"RZQq6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)or#e(i@rrE*!(Z5#f!!)rs"LfELj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm-':?L_7J,fNKrVm-' +s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra:?U_4!<3!"!<3&rs8N)s +rrN3#!;lcr!;ld$!(P]-7K +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)or#e(i@rrE*!(Z5#f!!)rs"LfELj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm-':?L_7J,fNKrVm-' +s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra:?U_4!<3!"!<3&rs8N)s +rrN3#!;lcr!;ld$!(P]-7K +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)or#e(i@rrE*!(Z5#f!!)rs"LfELj\,[Ss,9>& +mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p,Ot=QD +f44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs&T^_1 +k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE-!;uj+ +N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm-':?L_7J,fNKrVm-' +s8N'ok3#KdrVlitqYpNqr;Rc[V=XH!:B1=o<8dD"3rf5=6f7<@E<#ra:?U_4!<3!"!<3&rs8N)s +rrN3#!;lcr!;ld$!(P]-7K +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitr;R)b(r?7P +!<<'$p\t3m!<)ot!<)p$jVYi6rrDus!K]qOs8E!).-pm7q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitr;R)b(r?7P +!<<'$p\t3m!<)ot!<)p$jVYi6rrDus!K]qOs8E!).-pm7q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitr;R)b(r?7P +!<<'$p\t3m!<)ot!<)p$jVYi6rrDus!K]qOs8E!).-pm7q>Y71q#fdZ!!)rs"T[T_s7H`trr<&s +rrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^ps8N)Z +s8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)rs!C258 +rr`?%rtXGirr<&trr<&trrGB9rr2rurVlrd(>/Na#5[%];Z@ +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)rs!C258 +rr`?%rtXGirr<&trr<&trrGB9rr2rurVlrd(>/Na#5[%];Z@ +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)rs!C258 +rr`?%rtXGirr<&trr<&trrGB9rr2rurVlrd(>/Na#5[%];Z@ +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rur;ZTn!rl8[ +rVlitrVlitrVu]orr3"8E;9G9m0WeXW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p.IR$3 +!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-PrtPOfs8Udss8NDu +s8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/ +p&G'O!<<'Jmd^;X!<0_4s7$)fpq-a.naZ!=J,~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rur;ZTn!rl8[ +rVlitrVlitrVu]orr3"8E;9G9m0WeXW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p.IR$3 +!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-PrtPOfs8Udss8NDu +s8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/ +p&G'O!<<'Jmd^;X!<0_4s7$)fpq-a.naYsQJ,~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rur;ZTn!rl8[ +rVlitrVlitrVu]orr3"8E;9G9m0WeXW;cetV*a>E!!)rs!!)ut!!)ut!R;Z+56bpfc^=p.IR$3 +!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-PrtPOfs8Udss8NDu +s8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/ +p&G'O!<<'Jmd^;X!<0_4s7$)fpq-a.naYpiJ,~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rup\tO"s8UL_PiMP]!<)ot!;QQo!<3!"eemlSrshE#mePOG5Q@c+_XkSaY4hnq!;$3j!;uis +!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU?j69GAs8Ump +O5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21s,eqRp"=$Y +s,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or"clO9pr6&, +rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg-kN>T]s8S-W +h"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8s8N)trs#MG +_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/ +s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qq`rH)/ +!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rup\tO"s8UL_PiMP]!<)ot!;QQo!<3!"eemlSrshE#mePOG5Q@c+_XkSaY4hnq!;$3j!;uis +!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU?j69GAs8Ump +O5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21s,eqRp"=$Y +s,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or"clO9pr6&, +rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg-kN>T]s8S-W +h"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8s8N)trs#MG +_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/ +s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qq`rH)/ +!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rup\tO"s8UL_PiMP]!<)ot!;QQo!<3!"eemlSrshE#mePOG5Q@c+_XkSaY4hnq!;$3j!;uis +!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU?j69GAs8Ump +O5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21s,eqRp"=$Y +s,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or"clO9pr6&, +rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg-kN>T]s8S-W +h"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8s8N)trs#MG +_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/ +s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&%rrN$"qZ$Qq`rH)/ +!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#%gaP(mJm3Q,6]<]pAY3^!$h1:quH`r +!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:9FZ!ZnlLo`#%gaP(mJm3Q,6]<]pAY3^!$h1:quH`r +!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:0@Y!ZnlLo`#%gaP(mJm3Q,6]<]pAY3^!$h1:quH`r +!!)ut!!)ut$`4pG!<<)tO!k8hXoA>#!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejdD\X"O"TJE3 +h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlitrr3D'1CP:o +s8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or"oXK1#VrO\ +rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gHn!oOgorr3tn>SdPrW;jJ(&.0k; +p&F;h*![HqlMpmO,R#H_r;QiV('+@6"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+Q^gi"c=ms2.tR$S$`"rVlrW('+(.!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gHn!oOgorr3tn>SdPrW;jJ(&.0k; +p&F;h*![HqlMpmO,R#H_r;QiV('+@6"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+Q^gi"c=ms2.tR$S$`"rVlrW('+(.!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gHn!oOgorr3tn>SdPrW;jJ(&.0k; +p&F;h*![HqlMpmO,R#H_r;QiV('+@6"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+Q^gi"c=ms2.tR$S$`"rVlrW('+(.!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&qs!7J$NWB+Zh&V^>pr?;43hG=, +hdT=[6YtcXibV!^Wu]"H^DsEUrt5,fNWB+ZWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0IpAYQu30""=s#d+ +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&qs!7J$NWB+Zh&V^>pr?;43hG=, +hdT=[6YtcXibV!^Wu]"H^DsEUrt5,fNWB+ZWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0IpAYQu30""=s#d+ +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&qs!7J$NWB+Zh&V^>pr?;43hG=, +hdT=[6YtcXibV!^Wu]"H^DsEUrt5,fNWB+ZWu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_ +iV18[mf*7en,E@fhZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNq +df0:Iqu6]trrD`l#-/c[o"Q0IpAYQu30""=s#d+ +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)lq#B``?!<<((Mt[/RnHo4'nG`FjmgT4^VuH\sUdG(\#B``?!<<'b +VuH]#UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C> +rr<&srt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr +&,_)(&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Urr[C;rrDoq!U^6mrr[C;rrDcm +!W`6#rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XhuE`H!3#\*"K:k\m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)lq#B``?!<<((Mt[/RnHo4'nG`FjmgT4^VuH\sUdG(\#B``?!<<'b +VuH]#UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C> +rr<&srt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr +&,_)(&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Urr[C;rrDoq!U^6mrr[C;rrDcm +!W`6#rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XhuE`H!3#\*"K:k\lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)lq#B``?!<<((Mt[/RnHo4'nG`FjmgT4^VuH\sUdG(\#B``?!<<'b +VuH]#UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C> +rr<&srt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr +&,_)(&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Urr[C;rrDoq!U^6mrr[C;rrDcm +!W`6#rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#XhuE`H!3#\*"K:k\lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)or#e(i@rrE*!(Z4rd%&HPq>]8[!j)89(&E`ul%-8-%s0j$8rrE*! +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%=f"LfE$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT(' +s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H +!W`6#qu6_m! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)or#e(i@rrE*!(Z4rd%&HPq>]8[!j)89(&E`ul%-8-%s0j$8rrE*! +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%=f"LfE$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT(' +s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H +!W`6#qu6_m! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)or#e(i@rrE*!(Z4rd%&HPq>]8[!j)89(&E`ul%-8-%s0j$8rrE*! +&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8kN5E\ +rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>Lj\,[S +s,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3#!<)p, +Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq!!)rs +&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24A,ZE- +!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%=f"LfE$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$VoRT(' +s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj@W;>H +!W`6#qu6_m! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitr;R)b(r?7P +!<<'$p\t3m!;uj#WYX:fn2:1F))^sa!r;k3s7lcsjVYi6rrE*!!r;k3s7lcZrr<&srriD_s8Va! +rVlitr;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3* ++ohQBj8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ# +s(hZ1"7ZjN8n,EXngAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitr;R)b(r?7P +!<<'$p\t3m!;uj#WYX:fn2:1F))^sa!r;k3s7lcsjVYi6rrE*!!r;k3s7lcZrr<&srriD_s8Va! +rVlitr;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3* ++ohQBj8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ# +s(hZ1"7ZjN8n,EXngAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitr;R)b(r?7P +!<<'$p\t3m!;uj#WYX:fn2:1F))^sa!r;k3s7lcsjVYi6rrE*!!r;k3s7lcZrr<&srriD_s8Va! +rVlitr;QpJh#IE=*rc0?!8dYR"X)P!s4ALnrr<&srt-C-s8U^ps8O=ss8UdQs8N5rqu7*JgAh3* ++ohQBj8]/P$N9u)!;c]q!;uj7+kltrfDtsO-f"b%koTm)!9=+Zoa:a!,0Kf_"Xi+*s61TnrrrQ# +s(hZ1"7ZjN8n,EXngAh3,,ldlE +rVm-'s8N)Qs8UdsrVlitqYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs +!8dYR!!)ut#QXo)-f"b%koTNt!\/cqhuE`H!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)rs!C258 +rr`?%rtXGirr<&urt"sI*R"K_:Mf"ciG)0g&Ej&m"Q^9r5_8q7"9AK%&Ej&m!TasVrr<&srr<&t +rr<&trr<&srrUEpr;Qa'r;Zp$ +s8N)trr<&trr<&crrE\orr3#\');J-5_8q7!!)rs#5[%];ZB"5rr2run,EXnq#CBh$31#*rVm-' +s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`s +rVls"s8NE(!!!)nrrE8ghZ*WG!3#\*"K:k\m7Mm~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)rs!C258 +rr`?%rtXGirr<&urt"sI*R"K_:Mf"ciG)0g&Ej&m"Q^9r5_8q7"9AK%&Ej&m!TasVrr<&srr<&t +rr<&trr<&srrUEpr;Qa'r;Zp$ +s8N)trr<&trr<&crrE\orr3#\');J-5_8q7!!)rs#5[%];ZB"5rr2run,EXnq#CBh$31#*rVm-' +s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`s +rVls"s8NE(!!!)nrrE8ghZ*WG!3#\*"K:k\lsG8~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)rs!C258 +rr`?%rtXGirr<&urt"sI*R"K_:Mf"ciG)0g&Ej&m"Q^9r5_8q7"9AK%&Ej&m!TasVrr<&srr<&t +rr<&trr<&srrUEpr;Qa'r;Zp$ +s8N)trr<&trr<&crrE\orr3#\');J-5_8q7!!)rs#5[%];ZB"5rr2run,EXnq#CBh$31#*rVm-' +s8N)os8Vj#rVlitqYpNqr;R&S@k\3(WW2turVls"s8NE(!!iZ+rs8E"s7ZNTrr<&rrrE-!r;Q`s +rVls"s8NE(!!!)nrrE8ghZ*WG!3#\*"K:k\lZdp~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rur;ZTn!rl8[ +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrT#`s7u]ss$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rur;ZTn!rl8[ +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrT#`s7u]ss$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rur;ZTn!rl8[ +rVm'%s8Uk38aHBU!=J;prrhcus$3O^rrT#`s7u]ss$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s'`\15rVm!#s8OP9 +qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rup\t^'s8UL_PiMP]!<8f*Jc>WJ%R4^eqVc0Ts/R6Yo>)HMqu6s&s8T,A_XkSaY4hnq!;$3j +!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU?j69GA +s8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21s,eqR +p"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or"clO9 +pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg-kN>T] +s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8s8N)t +rs#MG_XkSaY5\J$!;QR#!<<'dYjV>?@mBkj!!)utrrD`l'`_(nkYQX+s#G`(iD]gWrr>mYkYQd- +rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&rrs^u@ +o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na/r!~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rup\t^'s8UL_PiMP]!<8f*Jc>WJ%R4^eqVc0Ts/R6Yo>)HMqu6s&s8T,A_XkSaY4hnq!;$3j +!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU?j69GA +s8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21s,eqR +p"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or"clO9 +pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg-kN>T] +s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8s8N)t +rs#MG_XkSaY5\J$!;QR#!<<'dYjV>?@mBkj!!)utrrD`l'`_(nkYQX+s#G`(iD]gWrr>mYkYQd- +rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&rrs^u@ +o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'na'V5~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rup\t^'s8UL_PiMP]!<8f*Jc>WJ%R4^eqVc0Ts/R6Yo>)HMqu6s&s8T,A_XkSaY4hnq!;$3j +!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T]s8RU?j69GA +s8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)trt#21s,eqR +p"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq!!)or"clO9 +pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV8cNg-kN>T] +s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p!*4,S8s8N)t +rs#MG_XkSaY5\J$!;QR#!<<'dYjV>?@mBkj!!)utrrD`l'`_(nkYQX+s#G`(iD]gWrr>mYkYQd- +rrP0Hr;?Qp!;uj&7CMg[RjS18!<)p/!<<([;;Crd:&k6?;!@%:!;6Bl!;$3l*4,SArr<&rrs^u@ +o\iaLs8S-Wh"\l`pAY0k"8`&t!9X=]nGoN_]EG2'n`tFM~> +!:BL[!ZnlLo`#'kHq7rtER)!a,M@pY>p](9>1C#8/!<<'!N"QnCq#13r +b:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#'kHq7rtER)!a,M@pY>p](9>1C#8/!<<'!N"QnCq#13r +b:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#'kHq7rtER)!a,M@pY>p](9>1C#8/!<<'!N"QnCq#13r +b:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$loD\oi*>G!q$%5k5YJO!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq/DOJH"YQbRs-P&8,b+i6 +_c[Z].Y76ls-P&8,b+i6l=M"@*+nL9s-P&8,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cm]!<)rp!;uiui"c=drrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3# +!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\m7Mm~> +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq/DOJH"YQbRs-P&8,b+i6 +_c[Z].Y76ls-P&8,b+i6l=M"@*+nL9s-P&8,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cm]!<)rp!;uiui"c=drrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3# +!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lsG8~> +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq/DOJH"YQbRs-P&8,b+i6 +_c[Z].Y76ls-P&8,b+i6l=M"@*+nL9s-P&8,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cm]!<)rp!;uiui"c=drrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3# +!;lcr!9=(\!<3&srrN*!h>dNF!3#\*"K:k\lZdp~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qs"iIOPN2GY;ZEd<_",5[ +Y5^V[jSIeL9`M.6_",5[Y5^k*iq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)ut!!)fo"8b' +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qs"iIOPN2GY;ZEd<_",5[ +Y5^V[jSIeL9`M.6_",5[Y5^k*iq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)ut!!)fo"8b' +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qs"iIOPN2GY;ZEd<_",5[ +Y5^V[jSIeL9`M.6_",5[Y5^k*iq_SM6iX2-_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)ut!!)fo"8b' +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3"p6MpccmKihYVuH]!UdG(hnG`FjmgT4^ +VuH]#UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C> +rr<&srt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr +&,_)(&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&trr<&orr[C;rrDcm!W`6# +rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#X +huE`H!3#\*"K:k\m7Mm~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3"p6MpccmKihYVuH]!UdG(hnG`FjmgT4^ +VuH]#UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C> +rr<&srt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr +&,_)(&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&trr<&orr[C;rrDcm!W`6# +rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#X +huE`H!3#\*"K:k\lsG8~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3"p6MpccmKihYVuH]!UdG(hnG`FjmgT4^ +VuH]#UdG+]!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C> +rr<&srt4m9()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr +&,_)(&74u.rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&trr<&orr[C;rrDcm!W`6# +rVm-'NYE7Gq#C?orVm-'s8N(e'GYEXrVlitr;Z`rr;Re_8.u1`XT/;#X +huE`H!3#\*"K:k\lZdp~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr3#\')hh7qqYgUrt+>lrs\!%s'0L& +qVuL#rt+>lrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9p +rrE#t%?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&q +rr<&srt0$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr3#\')hh7qqYgUrt+>lrs\!%s'0L& +qVuL#rt+>lrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9p +rrE#t%?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&q +rr<&srt0$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr3#\')hh7qqYgUrt+>lrs\!%s'0L& +qVuL#rt+>lrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9p +rrE#t%?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&q +rr<&srt0$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kY71q#gZd2?!R^2=^\Jq>Y71q#fdZ!!)rs"T[T_s7H`t +rr<&srrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^p +s8N)Zs8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lqYpoi[k5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kY71q#gZd2?!R^2=^\Jq>Y71q#fdZ!!)rs"T[T_s7H`t +rr<&srrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^p +s8N)Zs8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lqYpoi[k5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kY71q#gZd2?!R^2=^\Jq>Y71q#fdZ!!)rs"T[T_s7H`t +rr<&srrje*s8V=)rr3!!hYdBW+PQkqfHL4n!!)rs&Kog-s4ALps!-4ss4RJQrri)nrs^+)s8U^p +s8N)Zs8Va!rVlitqYpNqr;RWXgAh3*!<<'Hh#IE=*rl6?j8]/P$NL,Mb5;2B-f"b%koT!lqYpoi[k5rr<&rrrE,Vr;Q`s +rVm-'s8OJ%s8V=)p&>(CJbS(%s7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ol#5[%];Z@ +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ol#5[%];Z@ +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ol#5[%];Z@ +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6fd$3*8hrr3+t6N7D]rr3,i$i`Jjrr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT +!!)fo!oXakq>g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6fd$3*8hrr3+t6N7D]rr3,i$i`Jjrr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT +!!)fo!oXakq>g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6fd$3*8hrr3+t6N7D]rr3,i$i`Jjrr3"q6K\:J!;uis!<)ot!<)ou!WN&t +!@dI5rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*akT +!!)fo!oXakq>g$b'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;SZG\FK764E^\P(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!o+2[Wc*NoE,C>o$JC-hm#+2[Wc +*No,9rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7": +F8u8j8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4n +rVmE/s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&q +rr<&rrrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+S +a[uMQ;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEF8q6~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;SZG\FK764E^\P(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!o+2[Wc*NoE,C>o$JC-hm#+2[Wc +*No,9rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7": +F8u8j8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4n +rVmE/s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&q +rr<&rrrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+S +a[uMQ;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEE?[r~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;SZG\FK764E^\P(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!o+2[Wc*NoE,C>o$JC-hm#+2[Wc +*No,9rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7": +F8u8j8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4n +rVmE/s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&q +rr<&rrrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+S +a[uMQ;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hja,;!7%=HiO++KCn,% +!<<'!;!7%=J,TBK31'R@rr<&srs2'%oCSM!s8N)trt#21s,U%4pr6&.s*IT+k"YpLs8N)jrrO1H +r;HWq!;ld*3J6t_;ulsuO&=^-`_H1,!W3&rs8N)]s8VThW;+".W:BEDG^o~> +!:BL[!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ru +qYpNqqu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs#-0]i%l9XPqu6Wrrr3&f!$h1:'`a+('l3RDs3EJ+ +-ER:Jrr@uj(2`jFrrpRp! +!:9FZ!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ru +qYpNqqu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs#-0]i%l9XPqu6Wrrr3&f!$h1:'`a+('l3RDs3EJ+ +-ER:Jrr@uj(2`jFrrpRp! +!:0@Y!ZnlLo`#:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ru +qYpNqqu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDusquHcs#-0]i%l9XPqu6Wrrr3&f!$h1:'`a+('l3RDs3EJ+ +-ER:Jrr@uj(2`jFrrpRp! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq,huW@"YQbRs-P&8,b+i6 +_c[Z].Y76l]1ihD.=q0ls-P&8,b+f5"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cjbQm;h\S,WElgg1p'.^/mL!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq,huW@"YQbRs-P&8,b+i6 +_c[Z].Y76l]1ihD.=q0ls-P&8,b+f5"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cjbQm;h\S,WElgg1p'.^/mL!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq,huW@"YQbRs-P&8,b+i6 +_c[Z].Y76l]1ihD.=q0ls-P&8,b+f5"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9 +rrET)nG`IghZ!WWrrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&r +rrN3#!;-9oQm;h\S+cjbQm;h\S,WElgg1p'.^/mL!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3# +!;-9m!<3&rrr<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qs"iIOPN2GY;ZEd<_",5[ +Y5^V[jSIeL9`I/FiVMG@:&h77_",5[Y5bOC_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3T):&??heo"Q0Is4\HHh"]8krrDTh!W`6#mJd.dq#: +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qs"iIOPN2GY;ZEd<_",5[ +Y5^V[jSIeL9`I/FiVMG@:&h77_",5[Y5bOC_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3T):&??heo"Q0Is4\HHh"]8krrDTh!W`6#mJd.dq#: +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qs"iIOPN2GY;ZEd<_",5[ +Y5^V[jSIeL9`I/FiVMG@:&h77_",5[Y5bOC_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3T):&??heo"Q0Is4\HHh"]8krrDTh!W`6#mJd.dq#: +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3"p6Mpc`mKi^i"Rufu6)X_^"JeBa6)X_^ +#,FTcrrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlit +r;RB$B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn +&74u.rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ +ScA`^B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepT +B_DE*!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\ ++V7uOs8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3"p6Mpc`mKi^i"Rufu6)X_^"JeBa6)X_^ +#,FTcrrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlit +r;RB$B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn +&74u.rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ +ScA`^B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepT +B_DE*!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\ ++V7uOs8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3"p6Mpc`mKi^i"Rufu6)X_^"JeBa6)X_^ +#,FTcrrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlit +r;RB$B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn +&74u.rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ +ScA`^B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepT +B_DE*!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\ ++V7uOs8N)#-3uERs8Vrrrr3$"rrDrrrrE#t!C +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr3#\')hh4qqYgUqu6eq8cK@arr3,_ +')rO*rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PAljV%S0QR`:a +H1q7<)$LsLZ1e2!!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'u +i:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>& +mUC/7rrN3#!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr3#\')hh4qqYgUqu6eq8cK@arr3,_ +')rO*rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PAljV%S0QR`:a +H1q7<)$LsLZ1e2!!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'u +i:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>& +mUC/7rrN3#!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr3#\')hh4qqYgUqu6eq8cK@arr3,_ +')rO*rr32a'*%t3rrD]k!W`6#qu6Wrr;Qp#<8dD"3rT'Y!;uj#N'lLj@W;>H$iicNl:(aQF&(o\ +96U:6!!)rs&T^_1k"Bmts+!`&kYM9ZrtsVirsa$EkN5E\s8N'ui:MR]rVlitqYpNqr;S'h:?U_4 +!<<(X6f7<@E<#q<<8dD"3rf5C/B%24A,lRf6f7<@E;ok=!<3&rs8N)trrE\nrr3#\')2D-!<3&t +rsb,B`:VYks8R.8kN5E\rr3*$7b[,rrr3B,7b[,rs8S$FhsOrmrVlitqu6dtg%C(irVlitqYpNq +r;R@M:?Ub4G5qRB<8dD"3rf3shY[<^F&(o\96U@8N'lLj@W;;G!!)lq!!)lq!!)rs"d1FTo[dUO +rr<&srsaoShsOrms8N'ui:MR]rVlitqu6]trrDrrrrE#t!>+DmrrM3oq#:@+k5PAljV%S0QR`:a +H1q7<)$LsLZ1e2!!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'u +i:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>& +mUC/7rrN3#!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kOs!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl%KcJ+C]F24rrYpCpY/M[rVlue[k +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kOs!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl%KcJ+C]F24rrYpCpY/M[rVlue[k +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kOs!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71 +q#g-d!@#\`rrjP!s8U^prr3!!hY[Y71q#gEl%KcJ+C]F24rrYpCpY/M[rVlue[k +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ol"8^_Z;Z?\$qK!\#s8NYnrr3,_')rO+rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrrrrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ol"8^_Z;Z?\$qK!\#s8NYnrr3,_')rO+rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrrrrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ol"8^_Z;Z?\$qK!\#s8NYnrr3,_')rO+rr3#\''B2o!;uis!<)ot!<)ot +!;uis$2ji(!ri3#!<2or"UFi&s7Zftrr<&srt,M2s8Vg!s8NB"s8Vios8Nqmqu6p,q#CBg#ljo) +rVlitrVlitqYpNqr;R$.q#CBg!<<'*r;Zp$s8N)trr`?%rri#lrrrrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$ +$2ji(!qlQo"RFqEs7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6og$31%\2+d-5rrGB`rr3+t6N9`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW +!C3U_rrf/bs#fBArrM9uqu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\ +m7Mm~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6og$31%\2+d-5rrGB`rr3+t6N9`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW +!C3U_rrf/bs#fBArrM9uqu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\ +lsG8~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6og$31%\2+d-5rrGB`rr3+t6N9`&@X#Tqe#s4JOprrE#t!!)ut +!!)lq!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uap +rr2ruqYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sE +gAh3++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"mJd2PW;cetV*atW +!C3U_rrf/bs#fBArrM9uqu6]U&b,f8!8@JQg*6Rs$2+>uiW0#Y!8@JQg*HXs!=AMtrr<&prrr:s +'`\15rVm!#s8OP9qu6gDgAh3+!9O4]!WN#s!!)or#mp;)s5F%Ys!dC+rrE-!hZ*WG!3#\*"K:k\ +lZdp~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!4\FK764E^\P(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!g&:siZrsl(O_XkSaY5bOE_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p5Wuo4M_&]]YTL@<)gJDS`8@\3_aZO_Fs8N)lrtPN1kNG`h +s8P*3o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&ste +rrDZj!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!4\FK764E^\P(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!g&:siZrsl(O_XkSaY5bOE_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p5Wuo4M_&]]YTL@<)gJDS`8@\3_aZO_Fs8N)lrtPN1kNG`h +s8P*3o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&ste +rrDZj!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!4\FK764E^\P(6mkSaoMIB+2[Wc*NoE0YjV>?@mC!g&:siZrsl(O_XkSaY5bOE_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!<)p5Wuo4M_&]]YTL@<)gJDS`8@\3_aZO_Fs8N)lrtPN1kNG`h +s8P*3o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&ste +rrDZj!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#^`gs-Fr6,Fe]4"IC>:,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4&s+@B*HC`OX#LCr1R\4As6]k3p&>a,M@pY>p](9> +1C#8/!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$l +oD\oi*>G!q$%5k5YJO!3#\*"K:k\m7Mm~> +!:9FZ!ZnlLo`#^`gs-Fr6,Fe]4"IC>:,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4&s+@B*HC`OX#LCr1R\4As6]k3p&>a,M@pY>p](9> +1C#8/!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$l +oD\oi*>G!q$%5k5YJO!3#\*"K:k\lsG8~> +!:0@Y!ZnlLo`#^`gs-Fr6,Fe]4"IC>:,FeE, +!q$%5p&Fpirr2rurVlitrVm8&*:,Fe]4!q$%5o`#>r1CP:os8V\$'bt9Nrr2ruqYpNq +qu6iuO!k8hXo88-b:*Gls8TV["sTuGrVm%u*:,FeZ3rrDus"IC>:,Fe]4&s+@B*HC`OX#LCr1R\4As6]k3p&>a,M@pY>p](9> +1C#8/!<<'!N"QnCq#13rb:*Gls8Vusrr38456hfne,TFJrVmE/s8W%Y-jVT1s8Vh0())Z-p&G$l +oD\oi*>G!q$%5k5YJO!3#\*"K:k\lZdp~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq%bt;*"YQbRs-P&8,b+i6 +qZ-ZrqZ%-=s8Uk\)[.^ps8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca +!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k +"ILG<,b+N-rW)os%eFW\"soN6s6=29#97@@p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq%bt;*"YQbRs-P&8,b+i6 +qZ-ZrqZ%-=s8Uk\)[.^ps8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca +!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k +"ILG<,b+N-rW)os%eFW\"soN6s6=29#97@@p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq%bt;*"YQbRs-P&8,b+i6 +qZ-ZrqZ%-=s8Uk\)[.^ps8SH3"XKT:rrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca +!8d_W!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k +"ILG<,b+N-rW)os%eFW\"soN6s6=29#97@@p\t9prrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"sm +rrDrr!!)'Z!W`6#r;Qfs!8[\TnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrt+!,PN2GY;ZEd<_",5[ +Y5\Lprt\+es4\HHh"]8ks/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf +!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&l +rs#ME_",5[Y4_ep!<)p-A5:kQdmTr16YtcXibV!VrrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrt+!,PN2GY;ZEd<_",5[ +Y5\Lprt\+es4\HHh"]8ks/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf +!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&l +rs#ME_",5[Y4_ep!<)p-A5:kQdmTr16YtcXibV!VrrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrt+!,PN2GY;ZEd<_",5[ +Y5\Lprt\+es4\HHh"]8ks/R0Uo"Q0Is8N*!!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf +!8d_W!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&l +rs#ME_",5[Y4_ep!<)p-A5:kQdmTr16YtcXibV!VrrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&k +rrN3#!;lcr!9=(\!<3&rrrE/uhZ*WG!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3(r6N7&ZrrobYqu9fXqu6[_VuH]#UdG+] +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&trrEktrr3,^4T>fYrr3#f%/9c'!<3&t +rs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0 +()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].q +s8VThW;+".W:BEF8q6~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3(r6N7&ZrrobYqu9fXqu6[_VuH]#UdG+] +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&trrEktrr3,^4T>fYrr3#f%/9c'!<3&t +rs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0 +()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].q +s8VThW;+".W:BEE?[r~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rrGE`rr3(r6N7&ZrrobYqu9fXqu6[_VuH]#UdG+] +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'Trr<&trrEktrr3,^4T>fYrr3#f%/9c'!<3&t +rs/Ub'GbQ\s8N)trs/W)rrAH$'l3RBrr<&ss8E#rruKBU'*^7os8N)#-3uERs8W"M+V7uOs8Vh0 +()2`.rr3$"rrDrrrrDus!W`6#rVu`prr33'M]E.as8N)trs/W)s87Nn&74u-rrN3#!;lct*N].q +s8VThW;+".W:BEDG^o~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr38c')qqL"WKt:r;R9(.(B6V(RHWW ++aNe]&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8 +kN5E\rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>L +j\,[Ss,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3# +!<)p,Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq +!!)rs&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24 +A,ZE-!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut!>anurs@`s +s'0L&qVuL#p\t9prrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr38c')qqL"WKt:r;R9(.(B6V(RHWW ++aNe]&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8 +kN5E\rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>L +j\,[Ss,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3# +!<)p,Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq +!!)rs&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24 +A,ZE-!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut!>anurs@`s +s'0L&qVuL#p\t9prrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirrE\nrr38c')qqL"WKt:r;R9(.(B6V(RHWW ++aNe]&E`ul#3?KtrrE'!o`"smrrDrr!!)rs"TVN[oRT(%rr<&srrn?KhsOrmrr3B,7b[,rs8R.8 +kN5E\rVlitr;R@M:?Ub4G5qSm9'#24!<<'9hY[<^F&(o\96U@8!*%nKJNEc0!!)lq!!)rs-$i>L +j\,[Ss,9>&mUC/8rr?$VoRT('s,nqOo[dUQs,9>&mUC/7rrN3#!;lfr!<)ou&E`ul!TasgrrN3# +!<)p,Ot=QDf44j\F&(o\96U=7"9:pFl:(^P$iicNl:(aQN'lLj@W;;G!!)or"B4"HL.D4B!!)lq +!!)rs&T^_1k"Bmtrr?$VoRT('rtsVirsa$EkN5E\s8S$FhsOrmrVlitqYpNqqYpNqr;Qq`/B%24 +A,ZE-!;uj+N'lLj@W;AI!*%nKJNEc0!!)or!W`6#qu?ZrrVlm0k5PA]jV%7d!!)ut!>anurs@`s +s'0L&qVuL#p\t9prrE#t#QRW^k>$O,rrE#t#QXo)!)D\>:4)s>!!)lq!!)rs*?_3MpVTc+rr?$V +oRT('s,9>&mUC/8s*@H'j\,[RrrN3#!;lfr!;uiu!<3&rrr<&rrs&Nng?M-,rrE#t#QXo)N'lLj +@W;>H!W`6#qu6_m! +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kUEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcirr<&trs +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kUEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcirr<&trs +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kUEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcirr<&trs +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ij!Se@frrVR'f`(mO&*3`i"QpU$&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'(u8)!<)p-ol_J`/!UqN:Mf"ciG)0Xrs/W"s8Vj#s8N)trs/W)rrDios7cp! +rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ij!Se@frrVR'f`(mO&*3`i"QpU$&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'(u8)!<)p-ol_J`/!UqN:Mf"ciG)0Xrs/W"s8Vj#s8N)trs/W)rrDios7cp! +rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?4kPkJ^jV%Ij!Se@frrVR'f`(mO&*3`i"QpU$&Ej&m!TasVrr<&srr<&trr<&trr<&s +rrUEpr;Qa'r;Zp$s8N)trr<&t +rr<&crrE\orr3#\'(u8)!<)p-ol_J`/!UqN:Mf"ciG)0Xrs/W"s8Vj#s8N)trs/W)rrDios7cp! +rr<&qrr<&srs74d0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or! +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6]U&cVe2CiK@Q!BfHBrrhL#s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6]U&cVe2CiK@Q!BfHBrrhL#s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVls"s$3O^rrJr_qu6]U&cVe2CiK@Q!BfHBrrhL#s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it +.IR'4!!)or"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot +!;c]q!;uj',23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOo +rr<&qrr<&rrrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p# +!<<'Jmed"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!4\FK764E^\P(6mkSaoMIB+2[Wc*NoE5\FK764E^](eemlSrsk\ieG.cpB`G+T_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;c]q!<)p-:t59rKc/VE5AK0RiG([Xs8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!4\FK764E^\P(6mkSaoMIB+2[Wc*NoE5\FK764E^](eemlSrsk\ieG.cpB`G+T_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;c]q!<)p-:t59rKc/VE5AK0RiG([Xs8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S!4\FK764E^\P(6mkSaoMIB+2[Wc*NoE5\FK764E^](eemlSrsk\ieG.cpB`G+T_XkSa +Y4hnq!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;c]q!<)p-:t59rKc/VE5AK0RiG([Xs8N)lrtPN1kNG`hs8P*3 +o\iaLs8N'qkNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj +!Z\QErVlitqu7*cKCn,%!<<([;;Crd:%nSfqucfqrrD3]s7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +* +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +* +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +* +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iPlC^`qZ$NpqYpNqo`"mkmJd.d^]+?:(R3JMs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iPlC^`qZ$NpqYpNqo`"mkmJd.d^]+?:(R3JMs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iPlC^`qZ$NpqYpNqo`"mkmJd.d^]+?:(R3JMs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+]rr<&orr<&crr<&drr<&6 +rrW/7(=iHbnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+]rr<&orr<&crr<&drr<&6 +rrW/7(=iHbnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+]rr<&orr<&crr<&drr<&6 +rrW/7(=iHbnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq#M`Q#"YQbRs8E#srt"^? +*X3pTs8V@r*![HqlMp_]!>5A/!<3!"!<3&krrN3#!:0Xb!94"Y!:0Xghd76).AcJ4!=ekorr<&U +rrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ!!)or!W`6#o`#&] +,R#H_p\tH8=VM5nJb8p@!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z +!W`6#r;Qfs!7h,LnGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq#M`Q#"YQbRs8E#srt"^? +*X3pTs8V@r*![HqlMp_]!>5A/!<3!"!<3&krrN3#!:0Xb!94"Y!:0Xghd76).AcJ4!=ekorr<&U +rrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ!!)or!W`6#o`#&] +,R#H_p\tH8=VM5nJb8p@!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z +!W`6#r;Qfs!7h,LnGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq#M`Q#"YQbRs8E#srt"^? +*X3pTs8V@r*![HqlMp_]!>5A/!<3!"!<3&krrN3#!:0Xb!94"Y!:0Xghd76).AcJ4!=ekorr<&U +rrN3#!;-9oQm;h\S+cj`!<3&Jrr<&irr<&Zrrq:e)$MIcmf*:sq>:0m%JeKQ!!)or!W`6#o`#&] +,R#H_p\tH8=VM5nJb8p@!oOgopAY0orrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z +!W`6#r;Qfs!7h,LnGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs%:"PN2GY;Z6Uq!<)p- +A5:kQdmTr16YtcXibV!ZrrYcRrrDlp!W`6#o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrD`l +#-/c[o"Q0Iq#:O\Uu_C1C/"X,"8b' +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs%:"PN2GY;Z6Uq!<)p- +A5:kQdmTr16YtcXibV!ZrrYcRrrDlp!W`6#o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrD`l +#-/c[o"Q0Iq#:O\Uu_C1C/"X,"8b' +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs%:"PN2GY;Z6Uq!<)p- +A5:kQdmTr16YtcXibV!ZrrYcRrrDlp!W`6#o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrD`l +#-/c[o"Q0Iq#:O\Uu_C1C/"X,"8b' +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QXrr<&trrEktrr3,^4T>fYrr3#f%/g,.ZmknP!;ZWr +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'RrrMNnrr3(C9`G+drrN3#!<)p'!0.a/D>=/2 +!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6# +qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4Bqq(lJnGoN_]EG2' +na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QXrr<&trrEktrr3,^4T>fYrr3#f%/g,.ZmknP!;ZWr +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'RrrMNnrr3(C9`G+drrN3#!<)p'!0.a/D>=/2 +!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6# +qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4Bqq(lJnGoN_]EG2' +na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QXrr<&trrEktrr3,^4T>fYrr3#f%/g,.ZmknP!;ZWr +!<3&krrN3#!<)rs!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9 +()CTVs8Vn5();o2s8QA]qu73!B,27rp&G$lXR;`oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u. +rrB,I#W'g,s8)fqrrN3#!;lfr!<)ou6)X_^!Mi'RrrMNnrr3(C9`G+drrN3#!<)p'!0.a/D>=/2 +!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6# +qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4Bqq(lJnGoN_]EG2' +n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSfrr<&trrEo!rr3;c&-#mQj8.eS?N'm2q^ArR +rr+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$FhsOrms +8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#!;lctU +B(AHs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSfrr<&trrEo!rr3;c&-#mQj8.eS?N'm2q^ArR +rr+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$FhsOrms +8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#!;lctU +B(AHs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSfrr<&trrEo!rr3;c&-#mQj8.eS?N'm2q^ArR +rr+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$FhsOrms +8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#!;lctU +B(AHs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[knps_n=s6qoF!!+tIrVln[9)JVjmC+^%k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g?jrW!3Pli6&`_>jN8n,EXngAh3,,ldlErVm-'s8N)Qs8UdsrVlit +qYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut#QXo)-f"b% +koTNt!\/cqfDkm@!3#\*"K:k\m7Mm~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[knps_n=s6qoF!!+tIrVln[9)JVjmC+^%k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g?jrW!3Pli6&`_>jN8n,EXngAh3,,ldlErVm-'s8N)Qs8UdsrVlit +qYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut#QXo)-f"b% +koTNt!\/cqfDkm@!3#\*"K:k\lsG8~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[knps_n=s6qoF!!+tIrVln[9)JVjmC+^%k5PD]r;Qp#j8]/P$N9u)!;uj# +-f"b%koTj(!Os!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g?jrW!3Pli6&`_>jN8n,EXngAh3,,ldlErVm-'s8N)Qs8UdsrVlit +qYpNqr;QmCHbnkCrr3]5j8]/P$NL,Rh#IE=*rl6`gAh3*!9O4\!;lcs!8dYR!!)ut#QXo)-f"b% +koTNt!\/cqfDkm@!3#\*"K:k\lZdp~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)ut!!)ut%eXug#:l&Us%dIiq;H'arr3&e(>/H_!Se@Nrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&c +rrE\orr3#\'(u8/qV#=Ts$2/7rr<&frs/W"s8Vj#s8N)trs/W)rrDios7cp!rr<&qrr<&srs74d +0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or!s8VTh +W;+".W:BEF8q6~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)ut!!)ut%eXug#:l&Us%dIiq;H'arr3&e(>/H_!Se@Nrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&c +rrE\orr3#\'(u8/qV#=Ts$2/7rr<&frs/W"s8Vj#s8N)trs/W)rrDios7cp!rr<&qrr<&srs74d +0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or!s8VTh +W;+".W:BEE?[r~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)ut!!)ut%eXug#:l&Us%dIiq;H'arr3&e(>/H_!Se@Nrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&c +rrE\orr3#\'(u8/qV#=Ts$2/7rr<&frs/W"s8Vj#s8N)trs/W)rrDios7cp!rr<&qrr<&srs74d +0F8Jns8N)trrW9$rsAW(#Qk&+#l+H"pAj=T!!)or!s8VTh +W;+".W:BEDG^o~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitrVlitq#:JS>5nrurr3#f$i^/,CiK1L!T=XQrr<&srr<&trr<&trrE0"rVlmImeZq`!;ld" ++56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNqr;R'I +gAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq!!)or +!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOps!dC3 +rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_oD\mZ$30i%nGa4' +gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV#s8UaPjo5>^ +rqucr!;ld&$2+>uiW0#Y.IQa+! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitrVlitq#:JS>5nrurr3#f$i^/,CiK1L!T=XQrr<&srr<&trr<&trrE0"rVlmImeZq`!;ld" ++56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNqr;R'I +gAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq!!)or +!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOps!dC3 +rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_oD\mZ$30i%nGa4' +gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV#s8UaPjo5>^ +rqucr!;ld&$2+>uiW0#Y.IQa+! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitrVlitq#:JS>5nrurr3#f$i^/,CiK1L!T=XQrr<&srr<&trr<&trrE0"rVlmImeZq`!;ld" ++56bpfc^7n!=AN!rt-@,s8Uaps8O=qs8UaPs8Q>\qu6pDgAh3++TMHArVlitrVlitqYpNqr;R'I +gAh3+!<<'Jmed"a!<)p#!<<'BbPV;?.IQO%!C3U_rrJr_nG`M4bPV;C+56bpfc^:o!!)lq!!)or +!@dI4rrEH#rVm$GSF?LG!<)ou!WMur!!)rs#Tqe#s4JOprrE#t"9AK%>`&@X#p7n$s4JOps!dC3 +rr<&qrr<&qrr<&srrF:dq>UEpr;QdHmed"a!<)ot!<)ou!WMKd!C3U_rrJr_oD\mZ$30i%nGa4' +gAh3,,6.ZLp&G'O!<<'!gAh3,,lR`D$2=>s!!)ip"oG/2s8N)trr`?%s!dC5rrjV#s8UaPjo5>^ +rqucr!;ld&$2+>uiW0#Y.IQa+! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6t\FK764E^\P(6mkSaoMD?!!)ut'2[3Rh1Za#s$(8WqVc0Ts8UXen,<7j8@\3_aZO_> +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trrtipmePOG5PtH\!<)rt!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB +:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or% +69(5iD]gWs,U%4pr6&%rrN$"qZ$QqhZ*WG!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6t\FK764E^\P(6mkSaoMD?!!)ut'2[3Rh1Za#s$(8WqVc0Ts8UXen,<7j8@\3_aZO_> +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trrtipmePOG5PtH\!<)rt!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB +:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or% +69(5iD]gWs,U%4pr6&%rrN$"qZ$QqhZ*WG!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6t\FK764E^\P(6mkSaoMD?!!)ut'2[3Rh1Za#s$(8WqVc0Ts8UXen,<7j8@\3_aZO_> +s8N)jrr<&srr<&trr<&trrO1Hr;Q^"O&=^-`_HI4!!)or"`dH&k>$*srrP0Hr;Q^=E_tr^:36I8 +J4S_b;?6ash&ML8prQ,-E_tr^:36I8!<)ot!<)ot!;c]q!;uj.HViqg:&t=oO&=^-`_HL5!<)p/ +!<<(]0#mS;B`J*n;;Crd:%ePd!<)p%Wuo4M_&]]Xs8N)lrsb)C`qA"us8R+9kN>T]rr2ruqYpNq +qu6h\;;Crd:&Y(n31'RBrrj:Gq;5$*urrE#t(]aU9h&ML8prQ,- +E_tr^:36I8O&=^-`_HF3!!)lq!!)lq!!)rs"d(FWp"=$Wrr<&srs4Z_h"\l`s8N)trr<&trrO1H +r:L$h!<)p%Wuo4M_&]]Xs8N)trrtipmePOG5PtH\!<)rt!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB +:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or% +69(5iD]gWs,U%4pr6&%rrN$"qZ$QqhZ*WG!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +*7%gaP(mJHn`!<3!"mJnL)rtPNk&f#3Vs8UD$#:?PQs8N(X +&f,?ZrVm&E.00GKs82lrrs6%t#80YXs8N)trt#21s8A!,#VrO^s7^=F'9*"bs8N)jrr],=!W`6" +!!)or%F6g8-ER:Js8A!,#VrOVrrW,,*rGs=mJnKgs8VThW;+".W:BEF8q6~> +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +*7%gaP(mJHn`!<3!"mJnL)rtPNk&f#3Vs8UD$#:?PQs8N(X +&f,?ZrVm&E.00GKs82lrrs6%t#80YXs8N)trt#21s8A!,#VrO^s7^=F'9*"bs8N)jrr],=!W`6" +!!)or%F6g8-ER:Js8A!,#VrOVrrW,,*rGs=mJnKgs8VThW;+".W:BEE?[r~> +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +*7%gaP(mJHn`!<3!"mJnL)rtPNk&f#3Vs8UD$#:?PQs8N(X +&f,?ZrVm&E.00GKs82lrrs6%t#80YXs8N)trt#21s8A!,#VrO^s7^=F'9*"bs8N)jrr],=!W`6" +!!)or%F6g8-ER:Js8A!,#VrOVrrW,,*rGs=mJnKgs8VThW;+".W:BEDG^o~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpPQ(Y;Sb2p^!.k1?rrFgEh>dNF!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpPQ(Y;Sb2p^!.k1?rrFgEh>dNF!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpPQ(Y;Sb2p^!.k1?rrFgEh>dNF!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$Qi@$cJcEpns7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$Qi@$cJcEpns7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$Qi@$cJcEpns7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iXT&8#qZ$NpqYpNqo`"mkmJd.d^]+?:(R2W5s7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEF8q6~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEE?[r~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]TrKs!;QQo!:9^c!:Bdd!5JO8 +rP02^s8VThW;+".W:BEDG^o~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq%bt;*"YQbR_c[Z].Y76l +qZ-ZrqZ-Zr#J3\A$7UQ!s8)fqrrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca!8d_W +!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k"ILG< +,b+N-!W`6#mJd.dq#: +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq%bt;*"YQbR_c[Z].Y76l +qZ-ZrqZ-Zr#J3\A$7UQ!s8)fqrrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca!8d_W +!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k"ILG< +,b+N-!W`6#mJd.dq#: +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq%bt;*"YQbR_c[Z].Y76l +qZ-ZrqZ-Zr#J3\A$7UQ!s8)fqrrN3#!;-9m!<3&brr<&Yrr<&brrq:e)$MIcmf*:sq=+Ca!8d_W +!<3&krre]7"XKT2rrN3#!7UrJ!:p-i!9=(_hd76).AcJ4!=el%rrET)e,KCJqu6]trrD]k"ILG< +,b+N-!W`6#mJd.dq#: +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrt+!,PN2GY;ZAkTjSIeL +9`G+hrr<&qrs1ZWiVMG@:&b4hrrN3#!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf!8d_W +!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&lrs#ME +_",5[Y4qqt!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W9\3s7$)f +pq-a.naZ!=J,~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrt+!,PN2GY;ZAkTjSIeL +9`G+hrr<&qrs1ZWiVMG@:&b4hrrN3#!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf!8d_W +!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&lrs#ME +_",5[Y4qqt!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W9\3s7$)f +pq-a.naYsQJ,~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrt+!,PN2GY;ZAkTjSIeL +9`G+hrr<&qrs1ZWiVMG@:&b4hrrN3#!;-9m!<3&brr<&Yrr<&crs%@%O5]iO7dg9V!:Tpf!8d_W +!<3&lrs#ME_",5[Y4qqt!<3&Jrr<&irr<&[rs%@%O5]iO7dg9V!;c]q!7LlI!;lct!<3&lrs#ME +_",5[Y4qqt!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rrr<&ZrrN3#!;lcs!W9\3s7$)f +pq-a.naYpiJ,~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QVrr_ZprrDoq!!)]l"7Z]t!;ZWr!<3&krrN3#!<)rs +!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTVs8Vn5();o2 +s8QA]qu73!B,27rp&G$lXR;` +oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I#W'g,s8)fq +rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!<)p'!0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj; +c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c +!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqnN12nGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QVrr_ZprrDoq!!)]l"7Z]t!;ZWr!<3&krrN3#!<)rs +!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTVs8Vn5();o2 +s8QA]qu73!B,27rp&G$lXR;` +oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I#W'g,s8)fq +rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!<)p'!0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj; +c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c +!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqnN12nGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QVrr_ZprrDoq!!)]l"7Z]t!;ZWr!<3&krrN3#!<)rs +!;uj%!3@LQ1XH+$qZ-Zr"oO#s&74u-rsSmc*=@f+s7Bq>(23C>rr<&srt4m9()CTVs8Vn5();o2 +s8QA]qu73!B,27rp&G$lXR;` +oOepTB_DE*r.H4)?M"3squH`rquH`rrW)iq#,jBg+.`H3rW)lr&,_)(&74u.rrB,I#W'g,s8)fq +rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!<)p'!0.a/D>=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj; +c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c +!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqnN12nGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSfrt>4bAP2t&)$LsLZ2ah()$LsLZ24J+V+L[e +)$LsLZ2Xb)!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmr +rr<&srt0+m +N'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i +/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlit +r;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\')2D-!<3&trs/U"k3#Khs8N)t +rs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrr +rrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#!;lctUB(A0s8VThW;+".W:BEF +8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSfrt>4bAP2t&)$LsLZ2ah()$LsLZ24J+V+L[e +)$LsLZ2Xb)!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmr +rr<&srt0+m +N'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i +/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlit +r;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\')2D-!<3&trs/U"k3#Khs8N)t +rs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrr +rrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#!;lctUB(A0s8VThW;+".W:BEE +?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSfrt>4bAP2t&)$LsLZ2ah()$LsLZ24J+V+L[e +)$LsLZ2Xb)!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uruk"Bmr +rr<&srt0+m +N'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6#rVm=i +/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYkrVlit +r;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\')2D-!<3&trs/U"k3#Khs8N)t +rs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR]s8S$FhsOrms8RC?kN,A;rr3$"rrDrr +rrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7rrN3#!;lctUB(A0s8VThW;+".W:BED +G^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kOs!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g-d#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ%s8V=)p&>(CJbQqZs7$)f +pq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kOs!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g-d#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ%s8V=)p&>(CJbQqZs7$)f +pq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kOs!QV%s61U)rrD*Zs7Ha!s!#V_rrje*s8V=)n,ERnq>Y71q#g-d +!@#\`rrjP!s8U^prr3!!hY[Y71q#g-d#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ%s8V=)p&>(CJbQqZs7$)f +pq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)ut"8^_Z;Z$Ipg_9Sb!Se@frr`+=*R"UEpr;Qa'r;Zp$s8N)trr<&trr<&crrE\o +rr3#\'(Go,!;QTop^.!#!<)p'!<<'!q#CBh$2sl(!;c]q!;uj&f4-K@'rh65!<)p"!<<'*r;[*) +s8NB"s8Vfnjo5;\qu6Zsrqucr!<)p"!<<'*r;Zg!p&>$qlb +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)ut"8^_Z;Z$Ipg_9Sb!Se@frr`+=*R"UEpr;Qa'r;Zp$s8N)trr<&trr<&crrE\o +rr3#\'(Go,!;QTop^.!#!<)p'!<<'!q#CBh$2sl(!;c]q!;uj&f4-K@'rh65!<)p"!<<'*r;[*) +s8NB"s8Vfnjo5;\qu6Zsrqucr!<)p"!<<'*r;Zg!p&>$qlb +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)ut"8^_Z;Z$Ipg_9Sb!Se@frr`+=*R"UEpr;Qa'r;Zp$s8N)trr<&trr<&crrE\o +rr3#\'(Go,!;QTop^.!#!<)p'!<<'!q#CBh$2sl(!;c]q!;uj&f4-K@'rh65!<)p"!<<'*r;[*) +s8NB"s8Vfnjo5;\qu6Zsrqucr!<)p"!<<'*r;Zg!p&>$qlb +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitqu6]a$2a`'i=Yte#N69ps4fJ'lhUP]i=Y5P!!)rs!!)ut!!)ut!R;Z+56bpfc^=p.IR$3 +!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-PrtPOfs8Udss8NDu +s8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/ +p&G'O!<<'Jmd^;X!<0_4s7$)fpq-a.naZ!=J,~> +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitqu6]a$2a`'i=Yte#N69ps4fJ'lhUP]i=Y5P!!)rs!!)ut!!)ut!R;Z+56bpfc^=p.IR$3 +!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-PrtPOfs8Udss8NDu +s8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/ +p&G'O!<<'Jmd^;X!<0_4s7$)fpq-a.naYsQJ,~> +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitqu6]a$2a`'i=Yte#N69ps4fJ'lhUP]i=Y5P!!)rs!!)ut!!)ut!R;Z+56bpfc^=p.IR$3 +!!)lq!!)lq!!)rs!?oY^rr<&srrFS:qu6WrrVlitrVlm!rpB^d5cF\^!Mr-PrtPOfs8Udss8NDu +s8V'Ys8N)Qs8UdurVlm)p\Xsj!;ZWuqkb)-rrE#t"9AK%.IR*5"X;\#s4ID6rrE0"r;Q`squ6s/ +p&G'O!<<'Jmd^;X!<0_4s7$)fpq-a.naYpiJ,~> +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S9<\FK764E^\P(6mkSaoMH/YjV>?@mBua\FK764E^Zp\FK764E^\!&:siZrru$(nb(!d +FnYk8!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k +[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&% +rrN$"qZ$Qq`rH)/!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S9<\FK764E^\P(6mkSaoMH/YjV>?@mBua\FK764E^Zp\FK764E^\!&:siZrru$(nb(!d +FnYk8!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k +[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&% +rrN$"qZ$Qq`rH)/!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;S9<\FK764E^\P(6mkSaoMH/YjV>?@mBua\FK764E^Zp\FK764E^\!&:siZrru$(nb(!d +FnYk8!;$3j!;uis!<)ot!<)p!*4,SBrrnH\h"\l`rr2ruqu6h?;!7":F8c+?31'RBruc>YkN>T] +s8RU?j69GAs8UmpO5frV8cNg-kN>T]s8N)trr<&trr<&qrr<&srt'NRkiPV?s8S-Wh"\l`s8N)t +rt#21s,eqRp"=$Ys,U%4pr6&$s8N)trs#MG_XkSaY5\J$!;6@$OY4ZHfkCEcE_tr^:36F7!!)lq +!!)or"clO9pr6&,rrP0Hr;Q^")7'(q=TJF#!Z\QEr;Q`sr;R%C;!7":F8u7?rVm]7s8UmpO5frV +8cNg-kN>T]s8S-Wh"\l`rVlitqYpNqqYpNqr;Qq_0#mS;B`7r2!;uj&O&=^-`_HL5!<)ot!<)p! +*4,S8s8N)trs#MG_XkSaY5\J$!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB:k/HD!]ZPEr;Q`sr;R$k +[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or%69(5iD]gWs,U%4pr6&% +rrN$"qZ$Qq`rH)/!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`#^chX#LCr1R\49 +rrVTg,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +*=)0"j8=q!<<)s!<3!( +[Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:9FZ!ZnlLo`#^chX#LCr1R\49 +rrVTg,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +*=)0"j8=q!<<)s!<3!( +[Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:0@Y!ZnlLo`#^chX#LCr1R\49 +rrVTg,PD*7!<2uu!<)ot!<)p*VB#^SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)t +rr<&ursY_[$ltlSdMl +V>p-t'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts +*=)0"j8=q!<<)s!<3!( +[Qb!09%3h?!<)p/!<<)tO!k8hXoJFqC_d\D!;6Bl!;$3mVB#^ +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpX8`2SSb2p^!.k1?rrFgE`W,u.!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$YQ"S&JcE(Vs7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iN;ikXqZ$NpqYpNqo`"mkmJd.d^]+?:(R3bUs7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Urr<&orr<&crr<&drr<&6 +rrW/7(>]#jnGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq"l*?!"YQbPrsRa#!<<): +=VM5nJb8p@!oOgorr3D^?5j%tYQ+Wi,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#prrh6q!<<)r!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rr +r<&ZrrN3#!;uitrW(dSs7$)fpq-a.naZ!=J,~> +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq"l*?!"YQbPrsRa#!<<): +=VM5nJb8p@!oOgorr3D^?5j%tYQ+Wi,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#prrh6q!<<)r!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rr +r<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYsQJ,~> +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq"l*?!"YQbPrsRa#!<<): +=VM5nJb8p@!oOgorr3D^?5j%tYQ+Wi,R#H_rr3$"rrD]k!W`6#li-qbir8uYli..G?Ps"rV=+?a% +JfMn!!(mU!W`6#o`#&],R#H_pAY0orrCOJ!!)Ti!!)'Z"lEZ)"Y$;9rrET)qu6[+q:#?D!;lct! +<3&krre]7"XKT2s8E#prrh6q!<<)r!;?Eo!<3&drr<&orr<&crr<&drr<&urrN3#!;-9m!<3&rr +r<&ZrrN3#!;uitrW(dSs7$)fpq-a.naYpiJ,~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs%:"PN2GY;Z?\)q`'T9 +s8P3WjSIeL9`G&0q`'T9s8UglL>;RO:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)or#5^B?!<<'!nc&XjrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na/r!~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs%:"PN2GY;Z?\)q`'T9 +s8P3WjSIeL9`G&0q`'T9s8UglL>;RO:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)or#5^B?!<<'!nc&XjrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'na'V5~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs%:"PN2GY;Z?\)q`'T9 +s8P3WjSIeL9`G&0q`'T9s8UglL>;RO:&h77_",5[Y5eM%rrD]k!W`6#li-qbir8uYm/I:I*fo:S +`('1p!!)Kf!!(mU!W`6#p&>5s*Ph6\*3T&9!W`6#e,KCJo)A[ijSoGA*fo:S`('1p!!)lq!!(II +!!)or!W`6#p&>5s*Ph6\*3Su7!!)or#5^B?!<<'!nc&XjrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6# +o`"smrrDrr!!)'Z!W`6#qu6Ztr8.JRnGoN_]EG2'n`tFM~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QYrr[C;rrDoq!U^6mrs*[?rrE*!=cE7X!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QYrr[C;rrDoq!U^6mrs*[?rrE*!=cE7X!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1QYrr[C;rrDoq!U^6mrs*[?rrE*!=cE7X!C&b$il2+$B>)cr.H4)?M"-q!!)or#,NUN6/V_BqZ-ZrrW)lr&bK]O(23C@ +rrB,I#W'g,s':KYrt"a7()CTVs8W"M+V7uOs8Vusrr;lrrr;rtqu6l!2%:Xus8W&ur;R<*KHUn5 +oDegjX=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqqqGRnGoN_ +]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjShrrfeOm/I(`rtbLfAP3"&[iOi8!<<'8QR`:a +H1q7Lk5PAbjV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uru +k"Bmrrr<&srt0+mN'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6# +rVm=i/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYk +rVlitr;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;uj*[iOi8!<<'! +)$LsLZ1e2!!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEF8q6~> +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjShrrfeOm/I(`rtbLfAP3"&[iOi8!<<'8QR`:a +H1q7Lk5PAbjV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uru +k"Bmrrr<&srt0+mN'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6# +rVm=i/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYk +rVlitr;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;uj*[iOi8!<<'! +)$LsLZ1e2!!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEE?[r~> +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjShrrfeOm/I(`rtbLfAP3"&[iOi8!<<'8QR`:a +H1q7Lk5PAbjV%Un!<3&krrN3#!;lcr!;uj#!*%nKJNEc0!!)rs"cPh+mUC/7rsSlsg?M-,s)Uru +k"Bmrrr<&srt0+mN'lLj@W;AI!*%nKJNEi2Ot=QDf44j\N'lLj@W;>H!W`6#qu?ZrrVlm0k5PA]jV%=f!W`6# +rVm=i/B%24A,lRM:?Ub4G5hLE!(P]-7K3;q!(P]-7K&mUC/6rr<&qrr<&qrr<&srrnQ:`:VYk +rVlitr;R4b6f7<@E<#q<<8dD"3rT'Y!;lct!<3&rs8N)trrE\nrr3#\'(u8)!;uj*[iOi8!<<'! +)$LsLZ1e2!!<3&trs/U"k3#Khs8N)trs/W)rr>gVk>$C&rr<&qrr<&sruE5YoCp-ts8N'ui:MR] +s8S$FhsOrms8RC?kN,A;rr3$"rrDrrrrDus!W`6#qu6Wrqu6m$7b[,rs8N)trs/W)s,9>&mUC/7 +rrN3#!;lctUB(APs8VThW;+".W:BEDG^o~> +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kjN8s8N0oe+_TnC]=J3s(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcirr<&trrqL$_>jN8r;Qld[k +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kjN8s8N0oe+_TnC]=J3s(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcirr<&trrqL$_>jN8r;Qld[k +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kjN8s8N0oe+_TnC]=J3s(hZ1"6TU`!;uj#!9=+Zoa:Zt +!!)rs"Xi+*s61U(rrE,Vr;QpCgAh3*+oVE@!;uj/+PQkqfHL:p,ME+sg&V0Q"S_fn%3XC)s4ALp +rrD*Zs7H`trr<&qrr<&sru!!6s8U^Os8OJ%s8V=)s8N)Zs8Va!s8O:cqu6gIh#IE=*q0+5!r;k3 +s7lcdrrF=dqu6gBgAh3*+o_KB!8dVQ!UEpr;R3Rh#IE= +*rl6?j8]/P$N9u)!:9^i!r;k3s7lcirr<&trrqL$_>jN8r;Qld[k +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?dJc>ZL!;uj$qV#=Ts$2/7rr`?%rt"2irrhL$rt+AmrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu! +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?dJc>ZL!;uj$qV#=Ts$2/7rr`?%rt"2irrhL$rt+AmrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu! +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!s&?dJc>ZL!;uj$qV#=Ts$2/7rr`?%rt"2irrhL$rt+AmrrM3ok5PD]r;Q`srVlitrVlit +r;Qa'r;Zg!rr3!!rqud"#Pe?!pB^`t!!)rs&I8+2s7Zg!rs8E"s7cTortsVirs/l)s8Vg!s8N)t +rr<&trr<&qrr<&srs/o*s8Vfns8NE(!!<<&rrE#t"9AK%"SMZl!"&T(!!;Wh!>+GnrrM3onG`Ll +p&"am#Pe?!pB^cu! +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVllus7u`mrrVQos7u]ss#fBArrhL#s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p#!<<'Jmed"f,23(s +f`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVllus7u`mrrVQos7u]ss#fBArrhL#s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p#!<<'Jmed"f,23(s +f`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVllus7u`mrrVQos7u]ss#fBArrhL#s$3O^rrJr_k5PD]r;Q`srVlitrVlm!rr)it.IR'4!!)or +"WuIus4JOnrrEH#rVmHOgAh3++TMHdfDkm(!<<((M>R;Y+56bpfc^=p!<)ot!<)ot!;c]q!;uj' +,23(sf`;'P.IR*5!!)ut"9AK%+j9c_!@dI&rrGB`rr3"q6Lb!U+j9c_"WuIus4JOorr<&qrr<&r +rrFS:q>UI%p\k*q,Fn6&mK!4c!UEpqYpNqqYpNqr;Qd@bPD/UWqVA0(1!<)p#!<<'Jmed"f,23(s +f`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6t\FK764E^\P(6mkSaoM>=#lt#*6a6"Sfjd8Drt,82s.Dd0ptJVYs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqq#:X#s8PX"nb(!dFoMF@!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB +:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or% +69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\m7Mm~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6t\FK764E^\P(6mkSaoM>=#lt#*6a6"Sfjd8Drt,82s.Dd0ptJVYs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqq#:X#s8PX"nb(!dFoMF@!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB +:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or% +69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lsG8~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;R6t\FK764E^\P(6mkSaoM>=#lt#*6a6"Sfjd8Drt,82s.Dd0ptJVYs/R6Yo>)HMpAb-m +oD\djr;Q`srVlitrVlp=Zi'h&"clO9pr6&-rr<&rrrmF>kN>T]rVlpYQi-j_+EC$*us+!Z# +ku%N]s4nZUiqUVes)Ls!k>$*urrE#t!!)ut!!)lq!!)rs&:77;k"YpVs,U%4pr6&.rrE#t&-2b1 +OY4ZHfkCEcO&=^-`_H.+rrE#t#-/i_o>)HMrr;uup&>J`0#mS;B`J*Q;!7":F8l1>!;c]q!;ld" +O&=^-`_HF3!]ZPErr3->ZMEB\!<)p!*4,S@rr<&srs3XAkN>T]s8N)trtkb9s4nZUiqUVes)Ls! +k>$*us,U%4pr6&,rr<&qrr<&qrr<&srrnN;`qA"urVlitr;R%`;;Crd:&k4nrVlitrVlp=Zi'Iq +rrE#t#-/i_o>)HMrr;uuqYpNqq#:X#s8PX"nb(!dFoMF@!;6@,!)VkB:j`6B3J6t_;ulsu!)VkB +:k/HD!]ZPEr;Q`sr;R$k[e'-\-NF)GrVmE/s8S-Wh"\l`s8RFBkiPV?p&G$loD\k3Zi'e%!!)or% +69(5iD]gWs,U%4pr6&%rrN$"qZ$Qqk5YJO!3#\*"K:k\lZdp~> +!:BL[!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:9FZ!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:0@Y!ZnlLo`##!;ld"o4/RNAFod"'?_g*!<<)jA/,hioDejd +D\X"O"TJE3h-:a!.Ad(9A/,hioDegjrVlitrVlitr;ZZprr3Q(C_d\D!<<)tO!k8hXoJD$rVlit +rr3D'1CP:os8W%Y-jVT1p&G$lr;Qnd,6]<]rr3&f!$h.9%&G`g*M!00o4/RNAFog#!!)lq!!)or +"oXK1#VrO\rsR"!! +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpMuNf3Sb2p^!.k1?rrFgEjo>AN!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$O8f1[JcF4!s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:BL[!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4gsrW)Bds7$)fpq-a.naZ!=J,~> +!:9FZ!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4gsrW)Bds7$)fpq-a.naYsQJ,~> +!:0@Y!gFK%pAb*lJcFa0!!(OKrW(CH!k9!Gr;Q`sp\t3nO8o1ZlMghadf0BY('+:4!k9!Gr;Q`s +o)A[iK`;#PqZ$NpqYpNqo`"mkmJd.d^]+?:(R4gsrW)Bds7$)fpq-a.naYpiJ,~> +!:BL[!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(A[t1!:KmenGoN_]EG2'na/r!~> +!:9FZ!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(A[t1!:KmenGoN_]EG2'na'V5~> +!:0@Y!Z&cRo`"mkJcE%U!!(II!B%OZrr<%Yrr<&1rrG!iqu6[S]Rg+Mrr<&orr<&crr<&drr<&6 +rrW/7(A[t1!:KmenGoN_]EG2'n`tFM~> +!:BL[!!)or!W`6#qu6Wrg]%gQqqZ-Wq#2EH""YQbRqZ-WqrW)lr +"ILG<,b+f5rW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET)nG`IghZ!WW +rrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3#!:9^gQm;h\ +S+lpf]1ihD.=q0lqZ$[0s8W&uo`"smrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z +!W`6#r;Qfs!;ZWp!:KmenGoN_]EG2'na/r!~> +!:9FZ!!)or!W`6#qu6Wrg]%gQqqZ-Wq#2EH""YQbRqZ-WqrW)lr +"ILG<,b+f5rW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET)nG`IghZ!WW +rrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3#!:9^gQm;h\ +S+lpf]1ihD.=q0lqZ$[0s8W&uo`"smrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z +!W`6#r;Qfs!;ZWp!:KmenGoN_]EG2'na'V5~> +!:0@Y!!)or!W`6#qu6Wrg]%gQqqZ-Wq#2EH""YQbRqZ-WqrW)lr +"ILG<,b+f5rW)lr"ILG<,b+f5!W`6#o`"smrrDBb!!)$Y!!)?b"lEZ)"Y$;9rrET)nG`IghZ!WW +rrD]k"ILG<,b+N-!W`6#e,KCJo)A[ij8T;??Ps"rV=+?a%Jfo$!=ekRrr<&rrrN3#!:9^gQm;h\ +S+lpf]1ihD.=q0lqZ$[0s8W&uo`"smrrDHd!!)fo!!)Bc!!)Ed!!*#u!W`6#o`"smrrDrr!!)'Z +!W`6#r;Qfs!;ZWp!:KmenGoN_]EG2'n`tFM~> +!:BO\!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs7F$PN2GY;Z?akrr<&t +rs#ME_",5[Y5SA#!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrDHd +#-/c[o"Q0Iq#:OZT&KP'@SQb"!Cr:Nrr<&krrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3# +!;lcr!9=(\!<3&rrrE/uqYpNqmf3=W!3#\*"K:k\m7Mm~> +!:9I[!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs7F$PN2GY;Z?akrr<&t +rs#ME_",5[Y5SA#!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrDHd +#-/c[o"Q0Iq#:OZT&KP'@SQb"!Cr:Nrr<&krrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3# +!;lcr!9=(\!<3&rrrE/uqYpNqmf3=W!3#\*"K:k\lsG8~> +!:0CZ!W2uqrrN3#!;lcr!8IMT!<3&krrN3#!;lct9hJ1Yrr<&srr<&qrs7F$PN2GY;Z?akrr<&t +rs#ME_",5[Y5SA#!<)p*Wu]"H^DsEVrrE'!o`"smrrDBb!!)$Y!!)Bc#2^J_iV18[mf*7en,E@f +hZ!WWrrD`l#-/c[o"Q0Ip\t9prrCOJ!!)Ti!!)*[#2^J_iV18[mf*7eqYpNqdf0:Iqu6]trrDHd +#-/c[o"Q0Iq#:OZT&KP'@SQb"!Cr:Nrr<&krrN3#!:Bdd!;QQo!:9^c!:Bdd!<3!"!<3&krrN3# +!;lcr!9=(\!<3&rrrE/uqYpNqmf3=W!3#\*"K:k\lZdp~> +!:BR]!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rr<&nrr<&trrGE`rr3"p6N-oa!<)ou6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqtpBn!:Kme +nGoN_]EG2'na/r!~> +!:9L\!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rr<&nrr<&trrGE`rr3"p6N-oa!<)ou6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqtpBn!:Kme +nGoN_]EG2'na'V5~> +!:0F[!rK&>qu6]trrDrr!!)rs"nZFC(23C?rs,J[%3M/@rrE#t#QXo)c:ATQ1T^TU!W`6#qu?Zr +r;QfurrDus"SE8]%e]f#!!)rs!!)lq!F1Q[rr<&nrr<&trrGE`rr3"p6N-oa!<)ou6)X_^#,FTc +rrE'!o`"smrrE#trW)lr#6:hP#W'g,s8)frrrr=R+V7uOrr3B,M]E.as8V_(()CTVrVlitr;RB$ +B,27rp&G'fD\a(L!<<()M>R;`oOepTB_DE*!3@LQ1XH+$quH`rrW)lr(&)M['TE+ms87Nn&74u. +rrB,I#W'g+rsYh`%3M/@s87Nn&74u-rrN3#!;lfr!<)ou6)X_^!Mi'VrrN3#!;uj*W&5#+ScA`^ +B,27rp&=so!/hj)NW/qd!/hj)NW9%VKHUn5oDS[h!;ld#V'Q@4huE`R!<<)u!;uj/oOepTB_DE* +!3@LQ1XH+$?&AIY&+jKM(23C@s87Nn&74u.s82lrs82lrs8E#qrs#DZ%3M/@s8E#rrt#$\+V7uO +s8N)#-3uERs8Vrrrr3$"rrDrrrrD`l!C=/2!<)p'!<<'!R1pBOp\k*l!;ulr!;uj;c:ATQ1T^WV!3@LQ1XH+$r.H4)?M"3spM:TZN<&tX +!W`6#qu?Zrr;QfurrE#tqZ-Wq#69Z&$B>)c!<)p'!<<)sKHUn5oD\ak!<3&rrrO4BqtpBn!:Kme +nGoN_]EG2'n`tFM~> +!:BR]!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirriB?"WKt:r;Q`srVlm0k5PA]jV%Ol!!)ut +!>+Dmrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0 +!:9L\!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirriB?"WKt:r;Q`srVlm0k5PA]jV%Ol!!)ut +!>+Dmrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0 +!:0F[!WW7qqu6]trrDrr!!)rs&9CV0k"Bmts,nqOo[dUQrrE#t#QXo)+Jn](_bU42!W`6#qu?Zr +r;QfurrDus"L(8n6EpFg!!)rs#lkhH)b715rtjSirriB?"WKt:r;Q`srVlm0k5PA]jV%Ol!!)ut +!>+Dmrs%Qts8N*!!;-9m!<3&rrr<&srriC%i:MR]rVlitr;QqZ6f7<@E;okG!(P]-7K+DmrrM3op\t9prrE#t% +?`9\o[dUQs)Uruk"Bmsrr`&mUC/6rr<&rrrc9RonH!8rr<&qrr<&sr +t0 +!:BR]!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!9F.a!r;k3s7lchrrT29g&:pOO@oEM!!)Ed#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbT'A!!)Hes7$)fpq-a.naZ!=J,~> +!:9L\!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!9F.a!r;k3s7lchrrT29g&:pOO@oEM!!)Ed#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbT'A!!)Hes7$)fpq-a.naYsQJ,~> +!:0F[!r%6qo)A[ir;R'GgAh3*+ohQdb5;2=!<)p&!<<'BHbnkCjo5HlP5gYRrVlitq>UZd[kUEpr;R3Rh#IE=*rl6? +j8]/P$N9u)!9F.a!r;k3s7lchrrT29g&:pOO@oEM!!)Ed#QWTYs4SaurrE#t#QXo)!8@JQg*6Lq +!!)lq!!)rs"5rr<&rrrE,Vr;Q`srVm-'s8OJ% +s8V=)p&>(CJbT'A!!)Hes7$)fpq-a.naYpiJ,~> +!:BO\!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)or!Se@err<&trrE\orr3#\')hh1!<)ou&Ej&m!TasVrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&b +s8E#srrE\orr3#\'))>-qK!\#rVlrd(>/Na!!)Ed#QXZ"s7cp#rrE#t#QXo)!;QTop^-p!!!)lq +!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RGpa!!)Hes7$)fpq-a.naZ!=J,~> +!:9I[!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)or!Se@err<&trrE\orr3#\')hh1!<)ou&Ej&m!TasVrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&b +s8E#srrE\orr3#\'))>-qK!\#rVlrd(>/Na!!)Ed#QXZ"s7cp#rrE#t#QXo)!;QTop^-p!!!)lq +!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RGpa!!)Hes7$)fpq-a.naYsQJ,~> +!:0CZ!U9gYrr<&srs8r*s8Vg!s8N5pqu6WrrVm-'s8U\\0F8JnkPkbb(?#5M(B+74!!)cn"Pa[j +(#Sui!!)or!Se@err<&trrE\orr3#\')hh1!<)ou&Ej&m!TasVrr<&srr<&trr<&trr<&srrUEpr;Qa'r;Zp$s8N)trr<&trr<&b +s8E#srrE\orr3#\'))>-qK!\#rVlrd(>/Na!!)Ed#QXZ"s7cp#rrE#t#QXo)!;QTop^-p!!!)lq +!!)rs#hNQ?#o0H>rrE#t!s&B$$2ji0!rr9+q#CBg!9O4\!;lcs!<2or!!)ut!s&B$$2ji(!qlQo +"RGpa!!)Hes7$)fpq-a.naYpiJ,~> +!:BO\!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitqu6]U&cM_0!<)ou5cF\^!Mr-]rr<&trrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*aqV"5Gb* +lhpb`CiK7N!!)Ed'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:9I[!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitqu6]U&cM_0!<)ou5cF\^!Mr-]rr<&trrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*aqV"5Gb* +lhpb`CiK7N!!)Ed'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:0CZ!W<#hrrEH#rVm0GgAh3++TMHbbPV;C$2+>uiW/oV!rJi/kPkP#qu?`8rr2rup\tBT&cYjj +rVlitqu6]U&cM_0!<)ou5cF\^!Mr-]rr<&trrGB`rr3"q6K\:J!;uis!<)ot!<)ou!WN&t!@dI5 +rr<&rrrjLus8UaprVlm)p\k+(+56bpfc^=p,M2tqf`;'P>`&@X#Tqe#s4JOprrE#t!!)ut!!)lq +!!)rs#pS+'s4IDPs!dC5rr<&trr`?%ruoS_rrFS:li-uNW;cetV*a\O!?oY`rrjLus8Uaprr2ru +qYpNqqu6[GmeQk`$2=Du"XBQ+s6]mcrrE0"qu6Wrr;R$EgAh3++TMHArVm!#s8Q>\qu6sEgAh3+ ++TMHjmeQk_!;c]q!;c]q!;uit+j9]]!!)rs!@dI6rr<&trr<&trrE0"jo5?HW;cetV*aqV"5Gb* +lhpb`CiK7N!!)Ed'`ctfs4S[srsAAus5F%YrrCdQs4SasrrEH#qu6Wrq>UWqVA0(1!<)p#!<<'J +med"f,23(sf`:.6! +!:BL[!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;RO'\FK764E^\P(6mkSaoMH4\FK764E^W&!!)ut#-/i_o>)HMrVlitrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t"/?EYrqucteemlPrr<&rs8N)lrtPN1kNG`hs8P*3o\iaLs8N'q +kNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QErVlit +qu7*cKCn,%!<<([;;Crd:%nSfquccp!!)orrrDcms7$)fpq-a.naZ!=J,~> +!:9FZ!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;RO'\FK764E^\P(6mkSaoMH4\FK764E^W&!!)ut#-/i_o>)HMrVlitrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t"/?EYrqucteemlPrr<&rs8N)lrtPN1kNG`hs8P*3o\iaLs8N'q +kNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QErVlit +qu7*cKCn,%!<<([;;Crd:%nSfquccp!!)orrrDcms7$)fpq-a.naYsQJ,~> +!:0@Y!<`8krrP0Hr;Q^:E_tr^:36I8OY4ZHfkCEc3J6t_;ulsu7CMg[RjRh.rrD`l!HikjrrIRl +rr2rur;RO'\FK764E^\P(6mkSaoMH4\FK764E^W&!!)ut#-/i_o>)HMrVlitrVm)&+2[Wc*No,9 +rrDZj!!)rs!!)ut!!)ut!Z\QErr3._;;Crd:&b.m!;ld"E_tr^:36C6!]ZPErr4*];!7":F8u8j +8E8r4!<<)T*09+Sa[uMQ;!7":F8u7?rVlitrVlitqYpNqr;R=T;!@%:!<<([;;Crd:&k4nrVmE/ +s8S36`qA"us8S-Wh"\l`p&G$lrVm)&+2[Wc*NoDArrD`l%?W9_p"=$Ys)Ls!k>$*trr<&qrr<&r +rrnH\h"\l`rVlpYQi-j_"W=WAhcTsXrrO1Hr;?Qp!;uj&E_tr^:36I8!<)p7!<<)T*09+Sa[uMQ +;!7":F8u9$;;Crd:&Y(l!;c]q!;c]q!;uj#OY4ZHfkC?a!!)rs#`hj5s+2[Wc*NoDArrE#t"/?EYrqucteemlPrr<&rs8N)lrtPN1kNG`hs8P*3o\iaLs8N'q +kNG`lrVlpYQi-d]!!)rs#Xu2noU@3-rrE#t&-2b1O&=^-`_HL5HViqg:&sterrDZj!Z\QErVlit +qu7*cKCn,%!<<([;;Crd:%nSfquccp!!)orrrDcms7$)fpq-a.naYpiJ,~> +!:BL[!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*UEpr;Qid!$h4;s7$)fpq-a.naZ!=J,~> +!:9FZ!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*UEpr;Qid!$h4;s7$)fpq-a.naYsQJ,~> +!:0@Y!ZnlLo`#SdMlV>p-t'bt9Ns8N)trr<&trr<&ss82lrrt+p@())Z-s8W%Y-jVT1s8N)trr<&u +rsY_[$ltlSdMlV>p-t +'bt9Ns8W%Y-jVT1rVlitqYpNqr;ZZprVm(u1CP:os8Vusrr39&O!k8hXoJD$rVlitrVlts*UEpr;Qid!$h4;s7$)fpq-a.naYpiJ,~> +!:BL[!hL81JcFj3!g +!:9FZ!hL81JcFj3!g +!:0@Y!hL81JcFj3!g +!:>@;fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k17rrFgEp&G'^!3#\*"K:k\m7Mm~> +!:5::fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k17rrFgEp&G'^!3#\*"K:k\lsG8~> +!:,49fDbk*S[8>!>M/CTE0gM)0V*dpKDts+Sb2p^!.k17rrFgEp&G'^!3#\*"K:k\lZdp~> +!:>@;L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naZ!=J,~> +!:5::L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYsQJ,~> +!:,49L]7LO)AHTMJcC<$L]7>SJcFL)s7$)fpq-a.naYpiJ,~> +!:>@;JcC<$JcC<$JcF^/s7$)fpq-a.naZ!=J,~> +!:5::JcC<$JcC<$JcF^/s7$)fpq-a.naYsQJ,~> +!:,49JcC<$JcC<$JcF^/s7$)fpq-a.naYpiJ,~> +!:>@;kl1\c(R0LNJcC<$JcC<$rVuof!3#\*"K:k\m7Mm~> +!:5::kl1\c(R0LNJcC<$JcC<$rVuof!3#\*"K:k\lsG8~> +!:,49kl1\c(R0LNJcC<$JcC<$rVuof!3#\*"K:k\lZdp~> +!:>@;kl1__^_VM$JcC<$JcC<$rVuof!3#\*"K:k\m7Mm~> +!:5::kl1__^_VM$JcC<$JcC<$rVuof!3#\*"K:k\lsG8~> +!:,49kl1__^_VM$JcC<$JcC<$rVuof!3#\*"K:k\lZdp~> +!:BO\!W`6#oD\djo)A[ili."drrD]k!W`6#`;]l=rrDus!WE(Ms+13$s+13$s8DutnGoN_]EG2' +na/r!~> +!:9I[!W`6#oD\djo)A[ili."drrD]k!W`6#`;]l=rrDus!WE(Ms+13$s+13$s8DutnGoN_]EG2' +na'V5~> +!:0CZ!W`6#oD\djo)A[ili."drrD]k!W`6#`;]l=rrDus!WE(Ms+13$s+13$s8DutnGoN_]EG2' +n`tFM~> +!:BO\!W`6#oD\djo)A[ili."drrD]k!W`6#`;]l=rrDrr! +!:9I[!W`6#oD\djo)A[ili."drrD]k!W`6#`;]l=rrDrr! +!:0CZ!W`6#oD\djo)A[ili."drrD]k!W`6#`;]l=rrDrr! +!:BO\!W`6#rVm,J8.u1`XT/=t!<3!&V'Q@4huE`R!<<'!!<)p'!<<)E8.u1`XT&5$!<3&rs8N)s +rrN3#!<)p'c:ATQ1T^WV!<)ot!<3!$W&5#+Sc8X/W&5#+ScA`fKHUn5oDej98.u1`XT/=G8.u1` +XT&5$!<3&rrrO4Bqgncus+13$s+14Ms8VThW;+".W:BEF8q6~> +!:9I[!W`6#rVm,J8.u1`XT/=t!<3!&V'Q@4huE`R!<<'!!<)p'!<<)E8.u1`XT&5$!<3&rs8N)s +rrN3#!<)p'c:ATQ1T^WV!<)ot!<3!$W&5#+Sc8X/W&5#+ScA`fKHUn5oDej98.u1`XT/=G8.u1` +XT&5$!<3&rrrO4Bqgncus+13$s+14Ms8VThW;+".W:BEE?[r~> +!:0CZ!W`6#rVm,J8.u1`XT/=t!<3!&V'Q@4huE`R!<<'!!<)p'!<<)E8.u1`XT&5$!<3&rs8N)s +rrN3#!<)p'c:ATQ1T^WV!<)ot!<3!$W&5#+Sc8X/W&5#+ScA`fKHUn5oDej98.u1`XT/=G8.u1` +XT&5$!<3&rrrO4Bqgncus+13$s+14Ms8VThW;+".W:BEDG^o~> +!:BO\!W`6#rVm$DV=XH!:At1m!;ld!;q^hu8,`Gf!;uis!<)p'!<<'AV=XH!:B(7p!<3&rs8N)s +rrN3#!<)p'+Jn](_bU73!<)pG!<<(^/B%24A,lRl/B%24A,lRf6f7<@E<#q\V=XH!:B1>:V=XH! +:B(7p!<3&rrrSqr!.k0$s+13$s+14Ms8VThW;+".W:BEF8q6~> +!:9I[!W`6#rVm$DV=XH!:At1m!;ld!;q^hu8,`Gf!;uis!<)p'!<<'AV=XH!:B(7p!<3&rs8N)s +rrN3#!<)p'+Jn](_bU73!<)pG!<<(^/B%24A,lRl/B%24A,lRf6f7<@E<#q\V=XH!:B1>:V=XH! +:B(7p!<3&rrrSqr!.k0$s+13$s+14Ms8VThW;+".W:BEE?[r~> +!:0CZ!W`6#rVm$DV=XH!:At1m!;ld!;q^hu8,`Gf!;uis!<)p'!<<'AV=XH!:B(7p!<3&rs8N)s +rrN3#!<)p'+Jn](_bU73!<)pG!<<(^/B%24A,lRl/B%24A,lRf6f7<@E<#q\V=XH!:B1>:V=XH! +:B(7p!<3&rrrSqr!.k0$s+13$s+14Ms8VThW;+".W:BEDG^o~> +!:B:U" +!:94T" +!:0.S" +!:B:U"kR6<#o0H$ql[f(es+13$s+14Ls75[\m7Mm~> +!:94T"kR6<#o0H$ql[f(es+13$s+14Ls75[\lsG8~> +!:0.S"kR6<#o0H$ql[f(es+13$s+14Ls75[\lZdp~> +!:B1R!rJi/rVlm!rr)j#,Fn6&mK!4c! +!:9+Q!rJi/rVlm!rr)j#,Fn6&mK!4c! +!:0%P!rJi/rVlm!rr)j#,Fn6&mK!4c! +!:B:U"\#lkoU@3+rrO1Hr;Q^")7'(q=TJF#!Z\QErr3EfKCn,%!<<'f[e'-\-M@E=!;6@L7CMg[ +RjS183J6t_;ulsuOY4ZHfkCEcOY4ZHfkCEcO&=^-`_HL57CMg[RjS187CMg[RjRk/!W3%Ns+13$ +s+13$s8DugnH&#LJ,~> +!:94T"\#lkoU@3+rrO1Hr;Q^")7'(q=TJF#!Z\QErr3EfKCn,%!<<'f[e'-\-M@E=!;6@L7CMg[ +RjS183J6t_;ulsuOY4ZHfkCEcOY4ZHfkCEcO&=^-`_HL57CMg[RjS187CMg[RjRk/!W3%Ns+13$ +s+13$s8DugnH%u`J,~> +!:0.S"\#lkoU@3+rrO1Hr;Q^")7'(q=TJF#!Z\QErr3EfKCn,%!<<'f[e'-\-M@E=!;6@L7CMg[ +RjS183J6t_;ulsuOY4ZHfkCEcOY4ZHfkCEcO&=^-`_HL57CMg[RjS187CMg[RjRk/!W3%Ns+13$ +s+13$s8DugnH%s#J,~> +!:B:U"h$W#&k^XOrsP\E!W`9#\LRk.VuZer';ccO!<<)F1C#8/!<<)-56hfne+Nb@!;6@$[Qb!0 +9%3h?cSGeQXT8A#"Jmm_*M!-/*2PG"*M!00rJr?419LTV[Qb!09%3h?[Qb!09%3P7!rTJJJcC<$ +JcC<$JcG]Ko'lbJ8q6~> +!:94T"h$W#&k^XOrsP\E!W`9#\LRk.VuZer';ccO!<<)F1C#8/!<<)-56hfne+Nb@!;6@$[Qb!0 +9%3h?cSGeQXT8A#"Jmm_*M!-/*2PG"*M!00rJr?419LTV[Qb!09%3h?[Qb!09%3P7!rTJJJcC<$ +JcC<$JcG]Ko'lbI?[r~> +!:0.S"h$W#&k^XOrsP\E!W`9#\LRk.VuZer';ccO!<<)F1C#8/!<<)-56hfne+Nb@!;6@$[Qb!0 +9%3h?cSGeQXT8A#"Jmm_*M!-/*2PG"*M!00rJr?419LTV[Qb!09%3h?[Qb!09%3P7!rTJJJcC<$ +JcC<$JcG]Ko'lbHG^o~> +!:>@;kl1\b)4lEZJcC<$JcC<$rVuHY!UWL0~> +!:5::kl1\b)4lEZJcC<$JcC<$rVuHY!UO0D~> +!:,49kl1\b)4lEZJcC<$JcC<$rVuHY!UFu\~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/rUK_\rUBpU8q6~> +!:5::JcC<$JcC<$JcF^/rUK_\rUBpT?[r~> +!:,49JcC<$JcC<$JcF^/rUK_\rUBpSG^o~> +!:>@;JcC<$JcC<$JcF^/r:0\]r:'gT8q6~> +!:5::JcC<$JcC<$JcF^/r:0\]r:'gS?[r~> +!:,49JcC<$JcC<$JcF^/r:0\]r:'gRG^o~> +!:>@;JcC<$JcC<$JcF^/qsjY^qsa^S8q6~> +!:5::JcC<$JcC<$JcF^/qsjY^qsa^R?[r~> +!:,49JcC<$JcC<$JcF^/qsjY^qsa^QG^o~> +!:>@;JcC<$JcC<$JcF^/qXFP^qXFUR8q6~> +!:5::JcC<$JcC<$JcF^/qXFP^qXFUQ?[r~> +!:,49JcC<$JcC<$JcF^/qXFP^qXFUPG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +!:>@;JcC<$JcC<$JcF^/o'lbJ8q6~> +!:5::JcC<$JcC<$JcF^/o'lbI?[r~> +!:,49JcC<$JcC<$JcF^/o'lbHG^o~> +JaJ$UJaJ$UJaJ$Ud-Ug5J,~> +Ja@sSJa@sSJa@sSd-LaKJ,~> +Ja7mQJa7mQJa7mQd-C[hJ,~> +!*+SBJP(JcJP(JcJP+?_!EENX~> +!,R3nJR +!/c>PJTu`jJTu`jJU#Uf!K*Ct~> +!+URfJRF%:JRF%:JRHo6!Fobm~> +!.KKFJU2lnJU2lnJU5aj!IfZO~> +!24t6JXh:]JXh:]JXk/Y!MQEA~> +JSTgPJSTgPJSTgPcYJ%~> +JV\l5JV\l5JV\l5c\R)~> +JZXL*JZXL*JZXL*c`M]~> +JOG&WJOG&WJOG&WcU<9~> +JOG&WJOG&WJOG&WcU<9~> +JOG&WJOG&WJOG&WcU<9~> +%%EndData +showpage +%%Trailer +end +%%EOF diff --git a/lessons/misc/bash-intro/demo/LICENSE.txt b/lessons/misc/bash-intro/demo/LICENSE.txt new file mode 100644 index 000000000..3b4562cf6 --- /dev/null +++ b/lessons/misc/bash-intro/demo/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lessons/misc/bash-intro/demo/a.py b/lessons/misc/bash-intro/demo/a.py new file mode 100644 index 000000000..e69de29bb diff --git a/lessons/misc/bash-intro/demo/animals b/lessons/misc/bash-intro/demo/animals new file mode 100644 index 000000000..42fa760e1 --- /dev/null +++ b/lessons/misc/bash-intro/demo/animals @@ -0,0 +1,435 @@ +Aardvark +Aardwolf +African buffalo +African elephant +African leopard +Albatross +Alligator +Alpaca +American buffalo (bison) +American robin +Amphibian +Anaconda +Angelfish +Anglerfish +Ant +Anteater +Antelope +Antlion +Ape +Aphid +Arabian leopard +Arctic Fox +Arctic Wolf +Armadillo +Arrow crab +Asp +Ass (donkey) +Baboon +Badger +Bald eagle +Bandicoot +Barnacle +Barracuda +Basilisk +Bass +Bat +Beaked whale +Bear +Beaver +Bedbug +Bee +Beetle +Bird +Bison +Blackbird +Black panther +Black widow spider +Blue bird +Blue jay +Blue whale +Boa +Boar (wild pig) +Bobcat +Bobolink +Bonobo +Booby +Box jellyfish +Bovid +Buffalo, African +Buffalo, American (bison) +Bug +Butterfly +Buzzard +Camel +Canid +Cape buffalo +Capybara +Cardinal +Caribou +Carp +Cat +Catshark +Caterpillar +Catfish +Cattle +Centipede +Cephalopod +Chameleon +Cheetah +Chickadee +Chicken +Chimpanzee +Chinchilla +Chipmunk +Clam +Clownfish +Cobra +Cockroach +Cod +Condor +Constrictor +Coral +Cougar +Cow +Coyote +Crab +Crane +Crane fly +Crawdad +Crayfish +Cricket +Crocodile +Crow +Cuckoo +Cicada +Damselfly +Deer +Dingo +Dinosaur +Dog +Dolphin +Donkey +Dormouse +Dove +Dragonfly +Dragon +Duck +Dung beetle +Eagle +Earthworm +Earwig +Echidna +Eel +Egret +Elephant +Elephant seal +Elk +Emu +English pointer +Ermine +Falcon +Ferret +Finch +Firefly +Fish +Flamingo +Flea +Fly +Flyingfish +Fowl +Fox +Frog +Fruit bat +Gamefowl +Galliform +Gazelle +Gecko +Gerbil +Giant panda +Giant squid +Gibbon +Gila monster +Giraffe +Goat +Goldfish +Goose +Gopher +Gorilla +Grasshopper +Great blue heron +Great white shark +Grizzly bear +Ground shark +Ground sloth +Grouse +Guan +Guanaco +Guineafowl +Guinea pig +Gull +Guppy +Haddock +Halibut +Hammerhead shark +Hamster +Hare +Harrier +Hawk +Hedgehog +Hermit crab +Heron +Herring +Hippopotamus +Hookworm +Hornet +Horse +Hoverfly +Hummingbird +Humpback whale +Hyena +Iguana +Impala +Irukandji jellyfish +Jackal +Jaguar +Jay +Jellyfish +Junglefowl +Kangaroo +Kangaroo mouse +Kangaroo rat +Kingfisher +Kite +Kiwi +Koala +Koi +Komodo dragon +Krill +Ladybug +Lamprey +Landfowl +Land snail +Lark +Leech +Lemming +Lemur +Leopard +Leopon +Limpet +Lion +Lizard +Llama +Lobster +Locust +Loon +Louse +Lungfish +Lynx +Macaw +Mackerel +Magpie +Mammal +Manatee +Mandrill +Manta ray +Marlin +Marmoset +Marmot +Marsupial +Marten +Mastodon +Meadowlark +Meerkat +Mink +Minnow +Mite +Mockingbird +Mole +Mollusk +Mongoose +Monitor lizard +Monkey +Moose +Mosquito +Moth +Mountain goat +Mouse +Mule +Muskox +Narwhal +Newt +New World quail +Nightingale +Ocelot +Octopus +Old World quail +Opossum +Orangutan +Orca +Ostrich +Otter +Owl +Ox +Panda +Panther +Panthera hybrid +Parakeet +Parrot +Parrotfish +Partridge +Peacock +Peafowl +Pelican +Penguin +Perch +Peregrine falcon +Pheasant +Pig +Pigeon +Pike +Pilot whale +Pinniped +Piranha +Planarian +Platypus +Polar bear +Pony +Porcupine +Porpoise +Portuguese man o' war +Possum +Prairie dog +Prawn +Praying mantis +Primate +Ptarmigan +Puffin +Puma +Python +Quail +Quelea +Quokka +Rabbit +Raccoon +Rainbow trout +Rat +Rattlesnake +Raven +Ray (Batoidea) +Ray (Rajiformes) +Red panda +Reindeer +Reptile +Rhinoceros +Right whale +Roadrunner +Rodent +Rook +Rooster +Roundworm +Saber-toothed cat +Sailfish +Salamander +Salmon +Sawfish +Scale insect +Scallop +Scorpion +Seahorse +Sea lion +Sea slug +Sea snail +Shark +Sheep +Shrew +Shrimp +Silkworm +Silverfish +Skink +Skunk +Sloth +Slug +Smelt +Snail +Snake +Snipe +Snow leopard +Sockeye salmon +Sole +Sparrow +Sperm whale +Spider +Spider monkey +Spoonbill +Squid +Squirrel +Starfish +Star-nosed mole +Steelhead trout +Stingray +Stoat +Stork +Sturgeon +Sugar glider +Swallow +Swan +Swift +Swordfish +Swordtail +Tahr +Takin +Tapir +Tarantula +Tarsier +Tasmanian devil +Termite +Tern +Thrush +Tick +Tiger +Tiger shark +Tiglon +Toad +Tortoise +Toucan +Trapdoor spider +Tree frog +Trout +Tuna +Turkey +Turtle +Tyrannosaurus +Urial +Vampire bat +Vampire squid +Vicuna +Viper +Vole +Vulture +Wallaby +Walrus +Wasp +Warbler +Water Boa +Water buffalo +Weasel +Whale +Whippet +Whitefish +Whooping crane +Wildcat +Wildebeest +Wildfowl +Wolf +Wolverine +Wombat +Woodpecker +Worm +Wren +Xerinae +X-ray fish +Yak +Yellow perch +Zebra +Zebra finch diff --git a/lessons/misc/bash-intro/demo/b.py b/lessons/misc/bash-intro/demo/b.py new file mode 100644 index 000000000..e69de29bb diff --git a/lessons/misc/bash-intro/demo/c.py b/lessons/misc/bash-intro/demo/c.py new file mode 100644 index 000000000..e69de29bb diff --git a/lessons/misc/bash-intro/demo/command-for-animals.sh b/lessons/misc/bash-intro/demo/command-for-animals.sh new file mode 100644 index 000000000..474c103ed --- /dev/null +++ b/lessons/misc/bash-intro/demo/command-for-animals.sh @@ -0,0 +1,4 @@ +# The following command was used to create the animals file +# A list of animals was copied from Wikipedia, then this command is run +# the list is then pasted into the terminal, followed by ctrl-D (end of file) +cat | sed -e 's/\[edit\]//' | sed -e 's/ *(list)//' > animals diff --git a/lessons/misc/bash-intro/demo/minerals b/lessons/misc/bash-intro/demo/minerals new file mode 100644 index 000000000..e25ce53db --- /dev/null +++ b/lessons/misc/bash-intro/demo/minerals @@ -0,0 +1,1511 @@ +Abelsonite +Abenakiite-(Ce) +Abernathyite +Abhurite +Abramovite +Abswurmbachite +Acanthite +Achavalite +Actinolite +Acuminite +Adamite +Adamsite-(Y) +Adelite +Admontite +Aegirine +Aenigmatite +Aerinite +Aerugite +Aeschynite-(Ce) +Aeschynite-(Nd) +Aeschynite-(Y) +Afghanite +Afwillite +Agardite +Agrellite +Agrinierite +Aguilarite +Aheylite +Ahlfeldite +Aikinite +Ajoite +Akaganéite +Akatoreite +Akdalaite +Åkermanite +Akhtenskite +Akimotoite +Akrochordite +Aksaite +Aktashite +Alabandite +Alacránite +Alamosite +Alarsite +Albite +Albrechtschraufite +Aldermanite +Aleksite +Alforsite +Algodonite +Aliettite +Allabogdanite +Allactite +Allanite +Allanpringite +Allargentum +Alleghanyite +Alloclasite +Allophane +Alluaivite +Alluaudite +Almandine +Almarudite +Alsakharovite-Zn +Alstonite +Altaite +Althausite +Althupite +Altisite +Alum-(K) +Aluminite +Aluminium +Alunite +Alunogen +Amakinite +Amarantite +Amblygonite +Ameghinite +Amesite +Amicite +Amphibole (mineral group) +Analcime (analcite) +Anandite +Anapaite +Anatase +Ancylite (mineral group) +Andalusite +Andersonite +Andesine +Andorite (IV/VI) +Andradite +Andyrobertsite +Anglesite +Anhydrite +Ankerite +Annabergite +Annite +Anorthite +Anorthoclase +Antarcticite +Anthonyite +Anthophyllite +Antigorite +Antimony +Antitaenite +Antlerite +Apachite +Apatite (mineral group) +Aphthitalite +Apophyllite +Aragonite +Arcanite +Archerite +Arctite +Arcubisite +Ardaite +Arfvedsonite +Argentite +Argutite +Argyrodite +Armalcolite +Arsenic +Arseniosiderite +Arsenoclasite +Arsenolite +Arsenopyrite +Arthurite +Artinite +Artroeite +Ashburtonite +Ashoverite +Asisite +Astrophyllite +Atacamite +Athabascaite +Atheneite +Aubertite +Augelite +Augite +Aurichalcite +Auricupride +Aurostibite +Austinite +Autunite +Avicennite +Avogadrite +Awaruite +Axinite (mineral group) +Azurite +Adamantine spar (variety of corundum) +Agate (variety of quartz) +Alabaster (variety of gypsum) +Alexandrite (variety of chrysoberyl) +Allingite (synonym of amber) +Alum +Amazonite (variety of microcline) +Amber (fossilized resin) +Amethyst (purple variety of quartz) +Ammolite (organic; also a gemstone) +Amosite (asbestiform grunerite) +Antozonite (variety of fluorite) +Anyolite (metamorphic rock - zoisite, ruby, and hornblende) +Aquamarine (light blue variety of beryl) +Argentite (high temperature form of acanthite) +Asbestos (fibrous serpentine- or amphibole minerals) +Auerlite (variety of thorite) +Avalite (chromian variety of illite) +Aventurine (variety of quartz) +Biotite +Babefphite +Babingtonite +Baddeleyite +Bakerite +Balangeroite +Banalsite +Baotite +Bararite +Barrerite +Barstowite +Baryte (barite) +Barytocalcite +Bassanite +Bastnäsite (mineral group) +Baumhauerite +Bayldonite +Bayleyite +Bazzite +Becquerelite +Benitoite +Benstonite +Bentorite +Beraunite +Berborite +Bergenite +Berlinite +Berryite +Berthierite +Bertrandite +Beryl +Beryllonite +Beudantite +Bicchulite +Biehlite +Bílinite +Billietite +Billwiseite +Biotite +Birnessite +Bischofite +Bismite +Bismuth +Bismuthinite +Bismutite +Bityite +Bixbyite +Blödite +Blossite +Bobfergusonite +Boehmite +Boleite +Boltwoodite +Bonaccordite +Boracite +Borax +Bornite +Botallackite +Botryogen +Boulangerite +Bournonite +Boussingaultite +Bowieite +Braggite +Brassite +Braunite +Brazilianite +Breithauptite +Brewsterite (series of zeolites) +Brezinaite +Brianite +Brianyoungite +Briartite +Bridgmanite +Brochantite +Brockite +Bromargyrite +Bromellite +Bronzite +Brookite +Brownleeite +Brownmillerite +Brucite +Brushite +Buddingtonite +Bukovite +Bukovskyite +Bultfonteinite +Bunsenite +Bustamite +Bystrite +Barbertonite (polytype of stichtite) +Bauxite (aluminium ore) +Beckerite (natural resin) +Bentonite (mixture of montmorillonite and other clays) +Bixbite (red gem variety of beryl) +Bowenite (variety of antigorite) +Brammallite (variety of illite) +Brokenhillite +Buergerite (renamed to fluor-buergerite) +Bursaite +Bytownite (variety of anorthite) +Cabalzarite +Cabriite +Cacoxenite +Cadmium +Cadmoindite +Cadmoselite +Cadwaladerite +Cafarsite +Cafetite +Cahnite +Calaverite +Calciborite +Calcite +Calderite +Caledonite +Calumetite +Campigliaite +Canavesite +Cancrinite +Canfieldite +Carletonite +Carlosruizite +Carlsbergite +Carminite +Carnallite +Carnotite +Carobbiite +Carpathite +Carpholite +Carrollite +Caryopilite +Cassiterite +Cattierite +Cavansite +Celadonite +Celestine +Celsian +Cerite +Cerium +Cerussite +Cervandonite-(Ce) +Cervantite +Cesanite +Cesbronite +Chabazite (series of zeolites) +Chaidamuite +Chalcanthite +Chalcocite +Chalcophyllite +Chalcopyrite +Challacolloite +Chambersite +Chamosite +Changbaiite +Chaoite +Chapmanite +Charoite +Chatkalite +Chesterite +Chibaite +Childrenite +Chlorargyrite +Chlorite (mineral group) +Chloritoid +Chlormayenite +Chlorocalcite +Chloroxiphite +Chondrodite +Chrisstanleyite +Christite +Chromite +Chromium +Chrysoberyl +Chrysocolla +Chrysotile +Chvaleticeite +Cinnabar +Clarkeite +Claudetite +Clausthalite +Clearcreekite +Cleusonite +Clinoclase +Clinohedrite +Clinohumite +Clinoptilolite +Clinozoisite +Clintonite +Cobaltite +Coccinite +Coconinoite +Coesite +Coffinite +Cohenite +Colemanite +Colimaite +Collinsite +Coloradoite +Columbite (mineral group) +Combeite +Conichalcite +Connellite +Cooperite +Copiapite +Copper +Corderoite +Cordierite +Corkite +Cornubite +Cornwallite +Corundum +Cotunnite +Covellite +Coyoteite +Creedite +Cristobalite +Crocoite +Cronstedtite +Crookesite +Crossite +Cryolite +Cryptomelane +Cubanite +Cummingtonite +Cupalite +Cuprite +Cuprosklodowskite +Cuprospinel +Curite +Cuspidine +Cyanotrichite +Cylindrite +Cymrite +Cyrilovite +Native copper +Campylite (variety of mimetite) +Carnelian (variety of quartz) +Cementite (synthetic cohenite) +Ceylonite (variety of spinel) +Chalcedony (cryptocrystalline variety of quartz) +Chiastolite (variety of andalusite) +Chlorastrolite (variety of pumpellyite-(Mg)) +Chrysoprase (green nickel bearing chalcedony) +Chrysotile (group name - asbestiform serpentine) +Citrine (yellow variety of quartz) +Cleveite (variety of uraninite) +Clinochrysotile (polytype of chrysotile) +Coltan (short for minerals of the columbite group) +Crocidolite (asbestiform riebeckite) +Cumberlandite (igneous rock) +Cymophane (variety of chrysoberyl) +The slightly misshapen octahedral shape of this rough diamond crystal in matrix is typical of the mineral. +Danalite +Danburite +Datolite +Daubréeite +Daubréelite +Davidite +Dawsonite +Delafossite +Delvauxite +Demesmaekerite +Derriksite +Descloizite +Devilline +Diaboleite +Diadochite +Diamond +Diaspore +Dickite +Digenite +Dimorphite +Diopside +Dioptase +Djerfisherite +Djurleite +Dmitryivanovite +Dollaseite-(Ce) +Dolomite +Domeykite +Donnayite-(Y) +Drysdallite +Duftite +Dumortierite +Dundasite +Dypingite +Dyscrasite +Dzhalindite +Delessite (magnesian chamosite) +Diatomite (diatomaceous earth) +Edenite +Edingtonite +Efremovite +Ekanite +Elbaite +Emmonsite +Empressite +Enargite +Enstatite +Eosphorite +Ephesite +Epidote +Epsomite +Ericssonite +Erionite (series of zeolites) +Erythrite +Eskolaite +Esperite +Ettringite +Euchroite +Euclase +Eucryptite +Eudialyte +Eudialyte group +Euxenite-(Y) +Eveite +Evenkite +Eveslogite +Elsmoreite (pure hydrokenoelsmoreite) +Emerald (green gem variety of beryl) +Emery (a rock containing corundum) +Fabianite +Farneseite +Faujasite (subgroup of zeolites) +Faustite +Fayalite (olivine group) +Feldspar (mineral group) +Feldspathoid (mineral group) +Felsőbányaite +Ferberite +Fergusonite (mineral group) +Feroxyhyte +Ferrierite (subgroup of zeolite minerals) +Ferrihydrite +Ferrimolybdite +Ferro-actinolite +Ferrogedrite +Ferrohortonolite (olivine group) +Ferronigerite-2N1 +Ferropericlase +Ferroselite +Fettelite +Fichtelite +Fletcherite +Fluckite +Fluellite +Fluoborite +Fluocerite +Fluor-buergerite +Fluor-liddicoatite +Fluor-uvite +Fluorapatite (apatite group) +Fluorapophyllite-(K) +Fluorcaphite +Fluorellestadite +Fluorite +Fluororichterite (amphibole group) +Fornacite +Forsterite (olivine group) +Fougèrite (layered double hydroxide) +Fourmarierite +Fraipontite +Francevillite +Franckeite +Frankamenite +Frankdicksonite +Frankhawthorneite +Franklinite (spinel group) +Franklinphilite +Freibergite +Freieslebenite +Fukuchilite +Fassaite (variety of augite) +Ferricrete (iron oxide cemented soil or sediment) +Ferrocolumbite (synonym of columbite-(Fe)) +Ferrotantalite (synonym of tantalite-(Fe)) +Fluorspar (synonym of fluorite) +Francolite (variety of fluorapatite) +Gabrielite +Gadolinite (mineral group) +Gagarinite-(Ce) +Gahnite +Galaxite +Galena +Galkhaite +Gananite +Garnet (mineral group) +Gaspeite +Gatehouseite +Gaylussite +Gedrite +Geerite +Gehlenite +Geigerite +Geikielite +Geocronite +Georgerobinsonite +Germanite +Gersdorffite +Getchellite +Gibbsite +Gilalite +Gismondine +Glauberite +Glaucochroite +Glaucodot +Glauconite +Glaucophane +Gmelinite +Godovikovite +Goethite +Gold +Goldmanite +Gonnardite +Gordaite +Gormanite +Goslarite +Graftonite +Grandidierite +Grandreefite +Graphite +Gratonite +Greenalite +Greenockite +Gregoryite +Greifensteinite +Greigite +Grossite +Grossular +Groutite +Grunerite +Guettardite +Gugiaite +Guilleminite +Gunningite +Guyanaite +Gwihabaite +Gypsum +Garnierite (a nickel ore) +Gedanite (fossilized resin) +Glessite (natural resin) +Gummite (a mixture of uranium minerals) +Hanksite, from Searles Lake. +Hematite +Hafnon +Hagendorfite +Haggertyite +Haidingerite +Haiweeite +Håleniusite-(La) +Halite +Halloysite +Halotrichite +Hambergite +Hanksite +Hapkeite +Hardystonite +Harmotome +Hauerite +Hausmannite +Hauyne +Hawleyite +Haxonite +Hazenite +Heazlewoodite +Hectorite +Hedenbergite +Hellyerite +Hematite +Hemihedrite +Hemimorphite +Hemusite +Herbertsmithite +Hercynite +Herderite +Hessite +Heulandite (series of zeolites) +Hexaferrum +Hiärneite +Hibonite +Hidalgoite +Hilgardite +Hisingerite +Hodgkinsonite +Hoelite +Hollandite +Holmquistite +Homilite +Hopeite +Hornblende (series of amphiboles) +Howlite +Hsianghualite +Hubeite +Hübnerite +Huemulite +Humite +Huntite +Hureaulite +Hutchinsonite +Huttonite +Hydroboracite +Hydrogrossular (series of garnets) +Hydrohalite +Hydrokenoelsmoreite +Hydromagnesite +Hydrotalcite +Hydroxylapatite +Hydrozincite +Hatchettite (a paraffin wax) +Heliodor (greenish-yellow variety of beryl) +Heliotrope (variety of chalcedony) +Hessonite (variety of grossular) +Hiddenite (variety of spodumene) +Hyalite (variety of opal) +Hyalophane +Hypersthene (synonym of enstatite or ferrosilite, or mid-way member of the enstatite–ferrosilite series) +Ianbruceite +Icosahedrite +Idrialite +Ikaite +Illite +Ilmenite +Ilvaite +Imogolite +Indite +Indium +Inyoite +Iodargyrite +Iranite +Iridium +Iron +Ixiolite +Idocrase (synonym of vesuvianite) +Iolite (a gem-quality variety of cordierite) +Jacobsite +Jadarite +Jadeite +Jaffeite +Jalpaite +Jamesonite +Janggunite +Jarosewichite +Jarosite +Jennite +Jeremejevite +Jerrygibbsite +Jimthompsonite +Johannite +Jolliffeite +Jonesite +Jordanite +Julgoldite +Junitoite +Jurbanite +Jade (tough, green mineral either jadeite or nephrite amphibole) +Jasper (variety of quartz) +Jeffersonite (variety of augite) +Jet (fossilised wood) +Kaatialaite +Kadyrelite +Kaersutite +Kainite +Kainosite-(Y) +Kalininite +Kalinite +Kalsilite +Kamacite +Kambaldaite +Kamiokite +Kampfite +Kaňkite +Kanoite +Kaolinite +Karlite +Kassite +Kegelite +Keilite +Kermesite +Kernite +Kesterite +Keyite +Khatyrkite +Kieserite +Kinoite +Knebelite +Knorringite +Kobellite +Kochite +Kogarkoite +Kolbeckite +Kornerupine +Kosmochlor +Kostovite +Köttigite +Kovdorskite +Kratochvílite +Kremersite +Krennerite +Krieselite +Kröhnkite +Krotite +Krut'aite +Krutovite +Kukharenkoite-(Ce) +Kuratite +Kurnakovite +Kutnohorite +Kyanite +Keilhauite (variety of titanite) +Kerolite (variety of talc) +Krantzite (natural resin) +Kunzite (variety of spodumene) +Labradorite +Lanarkite +Langbeinite +Langite +Lansfordite +Lanthanite (group of rare earth carbonates) +Laplandite-(Ce) +Larnite +Laumontite +Laurionite +Laurite +Lautite +Lavendulan +Lawsonite +Lazulite +Lazurite +Lead +Leadhillite +Legrandite +Leifite +Leightonite +Lepidocrocite +Lepidolite +Letovicite +Leucite +Leucophanite +Leucophoenicite +Lévyne (series of zeolites) +Libethenite +Liebigite +Linarite +Lindgrenite +Linnaeite +Lipscombite +Liroconite +Litharge +Lithiophilite +Livingstonite +Lizardite +Loellingite +Lonsdaleite +Loparite-(Ce) +Lópezite +Lorándite +Lorenzenite +Loveringite +Ludlamite +Ludwigite +Lulzacite +Lyonsite +Lapis lazuli (a rock consisting primarily of lazurite, calcite and pyrite) +Larimar (blue variety of pectolite) +Lechatelierite (fused quartz glass) +Lignite (a type of coal) +Limonite (a mineraloid) +Lodestone (a synonym of magnetite) +Lublinite (variety of calcite) +A polished slice of Malachite +Muscovite +Macaulayite +Macdonaldite +Mackinawite +Madocite +Magadiite +Maghemite +Magnesioferrite +Magnesiohastingsite +Magnesiopascoite +Magnesite +Magnetite +Majorite +Malachite +Malayaite +Manganite +Manganosite +Manganvesuvianite +Marcasite +Margaritasite +Margarite +Marialite +Maricite +Marrite +Marthozite +Mascagnite +Massicot +Masuyite +Matlockite +Maucherite +Mawsonite +Mckelveyite-(Y) +Meionite +Melanophlogite +Melanterite +Melilite +Mellite +Melonite +Mendipite +Mendozite +Meneghinite +Mercury +Mereheadite +Merenskyite +Meridianiite +Merrillite +Mesolite +Messelite +Metacinnabar +Metatorbernite +Metazeunerite +Meyerhofferite +Miargyrite +Mica (a group of silicate minerals) +Microcline +Microlite +Milarite +Millerite +Millosevichite +Mimetite +Minium +Minnesotaite +Minyulite +Mirabilite +Mixite +Moganite +Mohite +Mohrite +Moissanite +Molybdenite +Molybdite +Monazite +Monohydrocalcite +Monticellite +Montmorillonite (clay mineral) +Mooihoekite +Moolooite +Mordenite +Moschellandsbergite +Mosesite +Mottramite +Motukoreaite +Mullite +Mundite +Murdochite +Muscovite +Musgravite (magnesiotaaffeite-6N'3S) +Magnesia +Magnesiocummingtonite (magnesium-rich variety of cummingtonite) +Malacolite (synonym of diopside) +Manganocolumbite (synonym of columbite-(Mn)) +Manganotantalite (synonym of tantalite-(Mn)) +Mariposite (variety of phengite/muscovite) +Meerschaum (variety of sepiolite) +Melanite (variety of andradite) +Menilite (variety of opal) +Milky quartz (a cloudy white quartz) +Morganite (a pink beryl) +Nabalamprophyllite +Nabesite +Nacrite +Nadorite +Nagyágite +Nahcolite +Naldrettite +Nambulite +Narsarsukite +Native copper +Natrolite +Natron +Natrophilite +Nekrasovite +Nelenite +Nenadkevichite +Nepheline +Népouite +Neptunite +Nichromite +Nickel +Nickeline +Niedermayrite +Niningerite +Nissonite +Niter +Nitratine +Nobleite +Nontronite +Norbergite +Normandite +Northupite +Nosean +Nsutite +Nyerereite +Nephrite (variety of actinolite) +Niobite (synonym of columbite) +Niobite-tantalite (synonym of columbite-tantalite) +Okenite +Oldhamite +Olgite +Olivenite +Olivine (a group of silicate minerals) +Omphacite +Ordóñezite +Oregonite +Orpiment +Orthoclase +Osarizawaite +Osmium +Osumilite +Otavite +Ottrelite +Otwayite +Opal +Obsidian (a mineraloid) +Oligoclase (a mixture of albite and anorthite) +Onyx (a monochromatic banded variety of chalcedony) +Opal (a mineraloid) +Orthochrysotile (a polytype of chrysotile) +Pääkkönenite +Pabstite +Painite +Palladium +Palygorskite +Panethite +Panguite +Papagoite +Paragonite +Paralaurionite +Paramelaconite +Pararealgar +Pargasite +Parisite-(Ce) +Parsonsite +Parthéite +Pascoite +Patrónite +Paulingite (series of zeolites) +Paulscherrerite +Pearceite +Pecoraite +Pectolite +Penikisite +Penroseite +Pentagonite +Pentlandite +Perhamite +Periclase +Perite +Perovskite +Petalite +Petzite +Pezzottaite +Pharmacolite +Pharmacosiderite +Phenakite +Phillipsite (series of zeolites) +Phlogopite +Phoenicochroite +Phosgenite +Phosphophyllite +Phosphuranylite +Pickeringite +Picropharmacolite +Piemontite +Pigeonite +Pinalite +Pinnoite +Piypite +Plagioclase Na-Ca feldspar series +Plancheite +Platinum +Plattnerite +Playfairite +Plumbogummite +Polarite +Pollucite +Polybasite +Polycrase +Polydymite +Polyhalite +Portlandite +Posnjakite +Poudretteite +Povondraite +Powellite +Prehnite +Proustite +Pseudobrookite +Pseudomalachite +Pseudowollastonite +Pumpellyite (group of sorosilicates) +Purpurite +Putnisite +Pyrargyrite +Pyrite +Pyrochlore (mineral group) +Pyrolusite +Pyromorphite +Pyrope +Pyrophanite +Pyrophyllite +Pyroxene (group of silicate minerals) +Pyroxferroite +Pyroxmangite +Pyrrhotite +Palagonite (basaltic volcanic glass) +Parachrysotile (a polytype of chrysotile) +Pelagosite (variety of aragonite) +Pericline (variety of albite) +Peridot (gem-quality olivine) +Perlite (volcanic glass) +Phengite (variety of muscovite) +Phosphorite (name given to impure, massive apatite.) +Pimelite ("discredited mineral species") +Pitchblende (a massive impure form of uraninite) +Plessite (mixture of kamacite and taenite) +Potassium alum or potash alum (as a mineral, is called alum-(K)) +Psilomelane (refers collectively to hard black manganese oxides) +Pumicite (synonym of pumice) +Quartz +Qingsongite +Quartz +Red amethyst is a type of quartz. This specimen was collected in Thunder Bay, Ontario, Canada. +Quenstedtite +Quintinite +Rambergite +Rameauite +Rammelsbergite +Rapidcreekite +Raspite +Realgar +Reidite +Reinerite +Renierite +Rheniite +Rhodium +Rhodochrosite +Rhodonite +Rhodplumsite +Rhomboclase +Richterite +Rickardite +Riebeckite +Ringwoodite +Roaldite +Robertsite +Rodalquilarite +Romanèchite +Romeite +Rosasite +Roscoelite +Roselite +Rosenbergite +Rosickýite +Routhierite +Rozenite +Rubicline +Ruizite +Russellite +Ruthenium +Rutherfordine +Rutile +Rynersonite +Rashleighite (variety of turquoise) +Rhodolite (variety of pyrope) +Rock crystal (quartz) +Rose quartz (pink variety of quartz) +Roumanite (amber) +Ruby (red gem corundum) +Sabatierite +Sabieite +Sabinaite +Sacrofanite +Safflorite +Sal ammoniac +Saleeite +Saliotite +Salzburgite +Samarskite-(Y) +Sampleite +Samsonite +Samuelsonite +Sanbornite +Saneroite +Sanidine (orthoclase variety) +Santabarbaraite +Santite +Saponite (clay mineral) +Sapphirine +Sarabauite +Sarkinite +Sassolite +Satterlyite +Sauconite +Sborgite +Scapolite (a group of silicate minerals) +Schäferite +Scheelite +Schmiederite +Schoepite +Schorl (black tourmaline) +Schreibersite +Schreyerite +Schröckingerite +Schwertmannite +Scolecite +Scorodite +Scorzalite +Scrutinyite +Seamanite +Searlesite +Seeligerite +Segelerite +Seifertite +Sekaninaite +Selenium +Seligmannite +Sellaite +Semseyite +Senarmontite +Sepiolite +Sérandite +Serendibite +Serpentine group +Serpierite +Sewardite +Shandite +Shattuckite +Shigaite +Shortite +Siderite +Siderophyllite +Siderotil +Siegenite +Silicate perovskite +Silicon +Sillimanite +Silver +Simonellite +Simpsonite +Sincosite +Sinkankasite +Sinoite +Skaergaardite +Sklodowskite +Skutterudite +Smaltite +Smectite (a group of clay minerals) +Smithsonite +Sodalite +Soddyite +Sonolite +Sperrylite +Spertiniite +Spessartine +Sphalerite +Spherocobaltite +Spinel +Spodumene +Spurrite +Stannite +Stannoidite +Staurolite +Steacyite +Stellerite +Stephanite +Stercorite +Stibarsen +Stibiconite +Stibiopalladinite +Stibnite +Stichtite +Stilbite (series of zeolites) +Stilleite +Stillwaterite +Stillwellite-(Ce) +Stilpnomelane +Stishovite +Stolzite +Strashimirite +Strengite +Stromeyerite +Strontianite +Struvite +Studenitsite +Studtite +Stützite +Suanite +Suessite +Sugilite +Sulfur +Sursassite +Susannite +Sussexite +Svanbergite +Sweetite +Switzerite +Sylvanite +Sylvite +Synchysite-(Ce) +Syngenite +Sapphire (gem corundum of any color except red, especially blue varieties) +Sard (a variety of chalcedony/quartz) +Satinspar (a variety of gypsum) +Selenite (a variety of gypsum) +Shungite (a lustrous black mineraloid) +Simetite (a variety of amber) +Smoky quartz (a brown or black variety of quartz) +Soapstone or steatite (a rock) +Soda niter (synonym of nitratine) +Spectrolite (a variety of labradorite) +Spessartite (synonym of spessartine) +Sphene (synonym of titanite) +Stantienite (a variety of amber) +Sunstone (a variety of either oligoclase or orthoclase) +Massive turquoise in matrix with quartz from Mineral Park, Arizona +Taaffeite +Tachyhydrite +Taenite +Talc +Talmessite +Talnakhite +Tamarugite +Tangeite +Tantalite +Tantite +Tapiolite (mineral series) +Taranakite +Tarapacaite +Tarbuttite +Tausonite +Teallite +Tellurite +Tellurium +Tellurobismuthite +Temagamite +Tennantite +Tenorite +Tephroite +Terlinguaite +Teruggite +Tetradymite +Tetrahedrite +Tetrataenite +Thaumasite +Thenardite +Thermonatrite +Thiospinel group +Thomasclarkite-(Y) +Thomsenolite +Thomsonite (series of zeolites) +Thorianite +Thorite +Thortveitite +Tiemannite +Tienshanite +Tin +Tinaksite +Tincalconite +Titanite +Titanium +Titanowodginite +Tobermorite +Todorokite +Tokyoite +Tongbaite +Topaz +Torbernite +Tourmaline (group of silicate minerals) +Tranquillityite +Tremolite +Trevorite +Tridymite +Triphylite +Triplite +Triploidite +Tripuhyite +Troilite +Trona +Tschermakite +Tschermigite +Tsumcorite +Tsumebite +Tugtupite +Tungsten +Tungstite +Tuperssuatsiaite +Turquoise +Tusionite +Tyrolite +Tyrrellite +Tyuyamunite +Tanzanite (variety of zoisite) +Thulite (variety of zoisite) +Thuringite (variety of chamosite) +Travertine (form of calcium carbonate) +Tsavorite (gem variety of grossularite garnet) +Uchucchacuaite +Uklonskovite +Ulexite +Ullmannite +Ulrichite +Ulvöspinel +Umangite +Umbite +Upalite +Uraninite +Uranocircite-I +Uranophane +Uranopilite +Urea +Uricite +Urusovite +Ussingite +Utahite +Uvarovite +Uytenbogaardtite +Ultramarine +Umber (earth pigment containing iron oxide and manganese oxide) +Unakite (a rock composed of feldspar, epidote and quartz) +Uralite (alteration actinolite) +Vaesite +Valentinite +Valleriite +Vanadinite +Vanadiocarpholite +Vanadium +Vantasselite +Vanuralite +Variscite +Vaterite +Vauquelinite +Vauxite +Veatchite +Vermiculite +Vesuvianite +Villiaumite +Violarite +Vishnevite +Vivianite +Vladimirite +Vlasovite +Volborthite +Vulcanite +Wadsleyite +Wagnerite +Wairakite +Wakabayashilite +Wakefieldite +Walfordite +Wardite +Warikahnite +Warwickite +Wassonite +Wavellite +Weddellite +Weeksite +Weilite +Weissite +Weloganite +Whewellite +Whiteite (group of minerals) +Whitlockite +Willemite +Wiluite +Witherite +Wodginite +Wolframite +Wollastonite +Woodhouseite +Wulfenite +Wurtzite +Wüstite +Wyartite +Wad +Xanthiosite +Xanthoconite +Xanthoxenite +Xenophyllite +Xenotime +Xiangjiangite +Xieite +Xifengite +Xilingolite +Ximengite +Xingzhongite +Xitieshanite +Xocolatlite +Xocomecatlite +Xonotlite +Ye'elimite +Yttrialite +Yttropyrochlore-(Y) (obruchevite) +Yuksporite +Yttrocerite (variety of fluorite) +Yttrocolumbite (variety columbite) +Zabuyelite +Zaccagnaite +Zaherite +Zaïrite +Zakharovite +Zanazziite +Zaratite +Zektzerite +Zemannite +Zeolite (group of silicate minerals) +Zeunerite +Zhanghengite +Zharchikhite +Zhemchuzhnikovite +Ziesite +Zimbabweite +Zincite +Zinclipscombite +Zincmelanterite +Zincobotryogen +Zincochromite +Zincolivenite +Zinkenite +Zinnwaldite +Zippeite +Zircon +Zirconolite +Zircophyllite +Zirkelite +Znucalite +Zoisite +Zorite +Zunyite +Zussmanite +Zykaite diff --git a/lessons/misc/bash-intro/demo/myscript.sh b/lessons/misc/bash-intro/demo/myscript.sh new file mode 100755 index 000000000..aa8fd3212 --- /dev/null +++ b/lessons/misc/bash-intro/demo/myscript.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +for i in $*; do + echo $i +done diff --git a/lessons/misc/bash-intro/demo/no-cats b/lessons/misc/bash-intro/demo/no-cats new file mode 100644 index 000000000..6f4a8abf2 --- /dev/null +++ b/lessons/misc/bash-intro/demo/no-cats @@ -0,0 +1,460 @@ +Aardvark +Aardwolf +African buffalo +African elephant +African leopard +Albatross +Alligator +Alpaca +American buffalo (bison) +American robin +Amphibian +Anaconda +Angelfish +Anglerfish +Ant +Anteater +Antelope +Antlion +Ape +Aphid +Arabian leopard +Arctic Fox +Arctic Wolf +Armadillo +Arrow crab +Asp +Ass (donkey) +B +Baboon +Badger +Bald eagle +Bandicoot +Barnacle +Barracuda +Basilisk +Bass +Bat +Beaked whale +Bear +Beaver +Bedbug +Bee +Beetle +Bird +Bison +Blackbird +Black panther +Black widow spider +Blue bird +Blue jay +Blue whale +Boa +Boar (wild pig) +Bobdog +Bobolink +Bonobo +Booby +Box jellyfish +Bovid +Buffalo, African +Buffalo, American (bison) +Bug +Butterfly +Buzzard +C +Camel +Canid +Cape buffalo +Capybara +Cardinal +Caribou +Carp +Cat +Catshark +Caterpillar +Catfish +Cattle +Centipede +Cephalopod +Chameleon +Cheetah +Chickadee +Chicken +Chimpanzee +Chinchilla +Chipmunk +Clam +Clownfish +Cobra +Cockroach +Cod +Condor +Constrictor +Coral +Cougar +Cow +Coyote +Crab +Crane +Crane fly +Crawdad +Crayfish +Cricket +Crocodile +Crow +Cuckoo +Cicada +D +Damselfly +Deer +Dingo +Dinosaur +Dog +Dolphin +Donkey +Dormouse +Dove +Dragonfly +Dragon +Duck +Dung beetle +E +Eagle +Earthworm +Earwig +Echidna +Eel +Egret +Elephant +Elephant seal +Elk +Emu +English pointer +Ermine +F +Falcon +Ferret +Finch +Firefly +Fish +Flamingo +Flea +Fly +Flyingfish +Fowl +Fox +Frog +Fruit bat +G +Gamefowl +Galliform +Gazelle +Gecko +Gerbil +Giant panda +Giant squid +Gibbon +Gila monster +Giraffe +Goat +Goldfish +Goose +Gopher +Gorilla +Grasshopper +Great blue heron +Great white shark +Grizzly bear +Ground shark +Ground sloth +Grouse +Guan +Guanaco +Guineafowl +Guinea pig +Gull +Guppy +H +Haddock +Halibut +Hammerhead shark +Hamster +Hare +Harrier +Hawk +Hedgehog +Hermit crab +Heron +Herring +Hippopotamus +Hookworm +Hornet +Horse +Hoverfly +Hummingbird +Humpback whale +Hyena +I +Iguana +Impala +Irukandji jellyfish +J +Jackal +Jaguar +Jay +Jellyfish +Junglefowl +K +Kangaroo +Kangaroo mouse +Kangaroo rat +Kingfisher +Kite +Kiwi +Koala +Koi +Komodo dragon +Krill +L +Ladybug +Lamprey +Landfowl +Land snail +Lark +Leech +Lemming +Lemur +Leopard +Leopon +Limpet +Lion +Lizard +Llama +Lobster +Locust +Loon +Louse +Lungfish +Lynx +M +Macaw +Mackerel +Magpie +Mammal +Manatee +Mandrill +Manta ray +Marlin +Marmoset +Marmot +Marsupial +Marten +Mastodon +Meadowlark +Meerkat +Mink +Minnow +Mite +Mockingbird +Mole +Mollusk +Mongoose +Monitor lizard +Monkey +Moose +Mosquito +Moth +Mountain goat +Mouse +Mule +Muskox +N +Narwhal +Newt +New World quail +Nightingale +O +Ocelot +Octopus +Old World quail +Opossum +Orangutan +Orca +Ostrich +Otter +Owl +Ox +P +Panda +Panther +Panthera hybrid +Parakeet +Parrot +Parrotfish +Partridge +Peacock +Peafowl +Pelican +Penguin +Perch +Peregrine falcon +Pheasant +Pig +Pigeon +Pike +Pilot whale +Pinniped +Piranha +Planarian +Platypus +Polar bear +Pony +Porcupine +Porpoise +Portuguese man o' war +Possum +Prairie dog +Prawn +Praying mantis +Primate +Ptarmigan +Puffin +Puma +Python +Q +Quail +Quelea +Quokka +R +Rabbit +Raccoon +Rainbow trout +Rat +Rattlesnake +Raven +Ray (Batoidea) +Ray (Rajiformes) +Red panda +Reindeer +Reptile +Rhinoceros +Right whale +Roadrunner +Rodent +Rook +Rooster +Roundworm +S +Saber-toothed dog +Sailfish +Salamander +Salmon +Sawfish +Scale insect +Scallop +Scorpion +Seahorse +Sea lion +Sea slug +Sea snail +Shark +Sheep +Shrew +Shrimp +Silkworm +Silverfish +Skink +Skunk +Sloth +Slug +Smelt +Snail +Snake +Snipe +Snow leopard +Sockeye salmon +Sole +Sparrow +Sperm whale +Spider +Spider monkey +Spoonbill +Squid +Squirrel +Starfish +Star-nosed mole +Steelhead trout +Stingray +Stoat +Stork +Sturgeon +Sugar glider +Swallow +Swan +Swift +Swordfish +Swordtail +T +Tahr +Takin +Tapir +Tarantula +Tarsier +Tasmanian devil +Termite +Tern +Thrush +Tick +Tiger +Tiger shark +Tiglon +Toad +Tortoise +Toucan +Trapdoor spider +Tree frog +Trout +Tuna +Turkey +Turtle +Tyrannosaurus +U +Urial +V +Vampire bat +Vampire squid +Vicuna +Viper +Vole +Vulture +W +Wallaby +Walrus +Wasp +Warbler +Water Boa +Water buffalo +Weasel +Whale +Whippet +Whitefish +Whooping crane +Wilddog +Wildebeest +Wildfowl +Wolf +Wolverine +Wombat +Woodpecker +Worm +Wren +X +Xerinae +X-ray fish +Y +Yak +Yellow perch +Z +Zebra +Zebra finch diff --git a/lessons/misc/bash-intro/demo/number-of-fish b/lessons/misc/bash-intro/demo/number-of-fish new file mode 100644 index 000000000..5dc22c4c5 --- /dev/null +++ b/lessons/misc/bash-intro/demo/number-of-fish @@ -0,0 +1 @@ + 20 diff --git a/lessons/misc/bash-intro/demo/some-file b/lessons/misc/bash-intro/demo/some-file new file mode 100644 index 000000000..df46a3bee --- /dev/null +++ b/lessons/misc/bash-intro/demo/some-file @@ -0,0 +1 @@ +this is some file diff --git a/lessons/misc/bash-intro/demo/src/my_script.py b/lessons/misc/bash-intro/demo/src/my_script.py new file mode 100644 index 000000000..0ab9637cd --- /dev/null +++ b/lessons/misc/bash-intro/demo/src/my_script.py @@ -0,0 +1 @@ +print('hello world!') diff --git a/lessons/misc/bash-intro/lesson.md b/lessons/misc/bash-intro/lesson.md new file mode 100644 index 000000000..ddf8ee19f --- /dev/null +++ b/lessons/misc/bash-intro/lesson.md @@ -0,0 +1,330 @@ +--- +layout: page +title: Introduction to Bash +visible: true +tags: + - misc + - beginner +--- + + - **Authors**: John Ladan + - **Research field**: Physics + - **Lesson topic**: Introduction to shells and the command-line with bash. + - **Lesson content URL**: + +In this tutorial, we cover the basics of interacting with a computer using Bash (the Bourne Again Shell). You may have heard the terms "command line", "terminal", "console", "shell", "interactive prompt", "git-bash", etc. To be imprecise, they all refer to using the keyboard to control your computer by typing commands. + +**Preparation for this lesson**: To follow along with this lesson, you will need to have `bash` installed. For Linux and OSX users, `bash` is included as part of the operating system. In OSX, it can be accessed with `terminal`, but I recommend [iTerm2](https://www.iterm2.com/), because it has many more features that make it consistent with the Linux experience. + +For Windows users, there are many options. Many people will use `git bash`, which is packaged with [git](https://git-scm.com/) (a common version control system). Others might use [Cygwin](https://www.cygwin.com/). As of August 2016, the Windows Subsystem for Linux (WSL) provides access to most command line tools provided by Ubuntu. See [here](https://msdn.microsoft.com/en-us/commandline/wsl/install_guide) for instructions to enable/install the WSL. + +# Why use a command line? + +The command line is a very precise and powerful way to interact with a computer. Because it is a scripting language, you can automate and perform complex tasks without much overhead. + +Shells are particularly well suited to interacting with files and running programs -- possibly your own! Not having a graphical interface turns out to be a strength, because it makes remote computing simple and reliable. + +At first, typing in commands will feel a bit cumbersome, but like learning any language the only way to get better is with practice. Lucky for us, bash is based on English with a very simplified grammar. + +# Example shells + +In this lesson, we're using bash, but most shells support all of the features covered here. Sometimes with different syntax. Some of the more modern shells include: +- Bash +- Zsh +- Fish (the Friendly Interactive Shell) +- rc ("run commands" - the Plan 9 shell) +- Powershell (the better Windows shell) + +Of the above, Powershell is the most different. The others are all based on the *Bourne shell*, but with many additions to make it easier to work with. + +# Bash command syntax + +The basic unit for a command line interpreter (CLI) is a *command*. This is a line that starts with a *commmand name* followed (optionally) by *arguments*. Examples of commands are, + +``` +ls +ls -a +date +man date +cd Documents +rm unwanted_file +vim hello.txt +sed -e 's/cat/dog/g' pets-file +echo 'hello world' +find . -not -name '*.py' -type f -exec rm {} + +which python +cal +``` + +Try them out and see what they do. + +Some arguments activate/deactivate options. Usually they are prefixed by a dash `-`. For example, `ls -a` lists **a**ll files, even hidden ones. Sometimes they are longer than one character, in which case they *usually* have two dashes e.g. `--help`. + +The command line options (aka flags or switches) can usually be found in the man pages. Often there will be a `-h` or `--help` flag to display common usage. + +# Common commands/tasks + +There are many commands available -- any executable or built-in command. The following are some that I use more often. + +- ls (-alhS...) +- cd (-) +- cp +- mv +- mkdir +- rm (-r) +- head/tail (-nf) +- grep +- man + +Many command names are the first two consonants of what they do: **c**o**p**y, **l**i**s**t, **m**o**v**e, **r**e**m**ove. Others are acronyms/abbreviations: **c**hange **d**irectory, **man**ual, **s**tream **ed**itor. + +## Explanations + +To list files, use `ls`. Common flags include `-a` for all files, `-l` for the full details (size, date, permissions...), `-h` for "human-readable" file sizes, `-S` to sort by file size. + +Change directories with `cd`. On many systems, `cd` with no arguments changes to your home directory (`cd ~`), and `cd -` changes to your previous directory. + +Copy and move files with `cp` and `mv`. The last argument is the new filename/directory. E.g. `cp a.py b.py c/` copies files `a.py` and `b.py` into the `c` directory. **Warning** `cp` and `mv` will overwrite files without warning you. + +Remove files with `rm`. The files cannot be recovered easily, and you won't be asked for confirmation. Directories won't be removed unless you use `-r` (for **r**ecursive. + +Probing contents of files with `head`, `tail`, `grep`. `head -n 10` shows the first 10 lines, and `tail` shows the last few lines in a file. To search for every line that contains a string, use `grep`. E.g. `grep pony animals.txt` finds the string "pony" in the file `animals.txt`. + +Strangely enough, "pony" isn't in the Wikipedia list of animals by common name. Instead, try `grep cat animals`. + +Finally, `man` provides manual pages for most commands that you can use from bash. Syntax: `man `. + +# Files + +Many commands end up using files, so it's good to have an idea of how to name them. Files are specified in arguments with a *pathname*. + + [directory-name/]filename + +Except for a few cases, the pathname is relative to the *current working directory*. So if you are in your home directory, `Desktop/my_script.py` refers to the `my_script.py` file in your own Desktop folder, not anyone else's. If you're in your `Desktop` folder, then `Desktop/my_script.py` refers to a file inside the Desktop folder inside your Desktop folder (which probably isn't there), but `my_script.py` refers to the previous file. + +Try it out: from your home directory, run the following commands (`touch` creates a file): + +``` +mkdir tmp +touch tmp/file_a +ls +``` + +In the list of files, you should see the `tmp` directory, but no `file_a`. Now execute + +``` +ls tmp +``` + +you should see the files in the `tmp` directory (`file_a`). Now try + +``` +cat tmp/file_a +cd tmp +cat tmp/file_a +``` + +What went wrong? + + +## Absolute paths + +Sometimes, you'll need to access files from another location in the file hierarchy. With relative paths, you can use `..` to access the parent directory, so `../../src/include/` goes up two directories, then down through `src` and `include`. This can get cumbersome if you're not sure exactly how many times you need to go up. + +Instead, there are absolute paths. On Unix systems, there is one root node for the file-system: `/` (compare this with `C:\` in Windows). All files are in subdirectories of root. Any pathname starting with `/` is an absolute path starting from the root. + +Try out `ls /` + +Another special location is your home directory. The short-form is `~/`. On a Mac, this would be `/Users/username/`. You can also short-form any user's home-directory with `~username/`. + +Try `cat ~/.bashrc`. + +Most of the time working with scripts, you should use relative paths, because one cannot assume the state of another's file system. + + +# Globbing + +If you want to pass more than one filename as an argument, you can use *globbing*. The special patterns for globbing are: + +- `*` Match any string of arbitrary length +- `?` Match any single character +- `[]` Match any of the characters within square brackets. + +Try moving all python files into the `src` directory. How about copying every file with `a`? + +# Getting more powerful + +Some true strengths of the command line come from combining commands. This is the "Unix philosophy" of having many small programs that perform their jobs well. These units can be combined to perform more complicated tasks. + +# Pipes (stdin/out) + +Commands can be strung together with pipes `|`. Those of you using R may have seen the concept in the `dplyr` package. Commands typically have an input (stdin) and an output (stdout). The pipe attaches the output of one command into the input of another. + +This is easier to see with commands like `cat` and `head`. Try these out using our demo directory: + +``` +head animals +cat animals +cat animals | head +ls | head -n2 +head +grep 'fish' animals | wc -l +``` + +Can you figure out how each of these commands behave from the above? + +You can also redirect output into a file with `>` or `>>`. The former over-writes the file, while `>>` appends to the file if it exists. For example, + +``` +grep 'fish' animals > list-of-fish +``` + +Will create a new file with a list of fish. Files can also be used for `stdin` using the `<` character. The above command would be + +``` +grep fish < animals > list-of-fish +``` + +Or, with pipes, + +``` +grep fish < animals | wc -l > number-of-fish +``` + +Note that `<` appears after the first command, because each line must start witha command. What would happen if you tried `animals > grep fish`? + +Another stream worth mentioning is `stderr`, which is how most errors or warnings are reported. This can be accessed with `2>`. For example, so save compiler errors for later, try + + gcc some-code.c -o my-program 2> log-file + + +## Usage examples + +If the output of a command is very long, use `less`: + + long-output-command | less + +You can then scroll up and down and quit less by typing `q`. + +Joining (concatenating) files with `cat`. + + cat file1 file2 > both-files + +Appending a line to a file + + echo "put this at the end" >> some-file + +Search and replace in a file + + sed -e 's/cat/dog/g' < animals > no-cats + +## Multiple commands in a line + +You can also run multiple commands without piping their inputs/outputs together. There are a few ways characters for this: + +- `;` separates commands like they are on separate lines +- `&&` does the next command if the previous one succeeds +- `||` does the next command if the previous one fails +- `&` runs the previous command in the "background" + +# Variables + +Bash happens to be a full scripting language (aka bash script). As part of that are variables. They can be assigned with `=`. Try the following: + + myOne=1 + myName=John + mySubject = Physics + +What happened in the last example? In bash, there cannot be a space between the variable name and `=`. Now let's try accessing our variables. + + echo myName + +Why doesn't that work? Bash has no way of knowing whether `myName` is a variablename or string-literal, so it always assumes a string. To access variables, we use `$varname`. + + echo $myName + echo $myOne + echo $mySubject + +Note that if a variable isn't defined, then it simply returns an empty string. Everything in bash is a string. Even numbers are strings which are cast to ints for arithmetic. + +There are special variables called *environment variables* which are used by bash and other programs to affect behaviour. One of the most important ones is `$PATH`: + + echo $PATH + +The path is a list of all directories to search for commands. To add a directory to your path, + + export PATH="${HOME}/.local/bin:${PATH}" + +That adds the `~/.local/bin` directory to my path, so any programs installed there are now first-class commands in this bash session. + +All defined environment variables can be found with the `env` command. For example, + + `env | sed 's/=.*$//'` + +will print all defined variable names. + +# Loops + +Repetitive tasks call for loops! Bash has loops: + +``` +for i in 1 2 3 4 5; do + echo The value of i is $i +done +``` + +The basic syntax is + +``` +for variable_name in a_list; do + [commands] +done +``` + +The list is just like an argument list to a command: each item is a string, separated by spaces. Try using different values in the for loop, or putting quotes around different items. + +One common task I have is performing a command on each file in a directory. For example, consider adding a license preamble to every sourcefile in your project. If the license is in `LICENSE.txt`, then + +``` +for fn in *.py; do + cat LICENSE.txt $fn > tmpfile + mv tmpfile $fn +done +rm tmpfile +``` + +Unfortunately, there isn't a simple, universal way to prepend a file without a temporary file. + +# Running scripts + +Scripts are files that contain lists of commands, very much like scripts in Python, Ruby, R, Perl, etc. They can be run in much the same way. + + bash myscript.sh + +Another trick is to use the "shebang" syntax at the beginning of a file + +``` +#!/bin/bash + +echo "The first argument is $1" + +echo "All of the arguments are" +for i in $*; do + echo $i +done +``` + +If the file is made executable (`chmod u+x myscript.sh`), then it can be executed with `./myscript.sh`. You can take it one step further and insert it in your path. + +The shebang syntax can be used for any interpreted language, like for Python: + + #!/usr/bin/env python + +# Wrapping up + +At first, using the command line might seem cumbersome, and like a lot to remember. But this is just like learning any language: at first you will be limited by your vocabulary, but with time and practice you'll be able to do much more. + +A tools you may want to look into when working with more files/strings are: + - Regular expressions. Used in tools like `grep` and `sed` are great for searching in strings/files. + - `find` can do some really powerful things when working with files. + - `xargs` creates/executes commands built from `stdin` diff --git a/lessons/misc/careers-outside-academia/lesson.md b/lessons/misc/careers-outside-academia/lesson.md new file mode 100644 index 000000000..1a5080011 --- /dev/null +++ b/lessons/misc/careers-outside-academia/lesson.md @@ -0,0 +1,41 @@ +--- +layout: page +title: Careers Outside Academia +visible: true +tags: + - misc +--- + + - **Authors**: UofT Coders + - **Research field**: Science + - **Lesson topic**: Discussion on experiences outside an academic career path + - **Lesson content URL**: + +This is a list of notes and resources that were brought up during our discussion on careers outside academia. +I did my best to find appropriate links, but some things might not be accurate. Feel free to add to or modify this list! + +## Hackathons, coding groups, and places to find them +* [Civic Tech Toronto](http://civictech.ca/) +* [Meetup.com](https://www.meetup.com/) +* [Hacking Health](https://hackinghealth.ca/city/toronto-canada/) +* Mozilla Global Sprint ([2016 website](https://science.mozilla.org/programs/events/global-sprint-2016)) - annually in June +* [NeurotechX](http://neurotechx.com/) + +## Professional development, courses, summer schools etc. +* MBA courses at UofT - possibly free for graduate students if taken during registered terms +* [Graduate Professional Skills Program](https://www.sgs.utoronto.ca/currentstudents/Pages/Professional-Development.aspx) at UofT +* [RADIANT neurotechnology summer school](https://www.dal.ca/dept/radiant-create.html) - Dalhousie University +* Sunnybrook lecture series on medical devices - schedule [here](http://sunnybrook.ca/calendar/?c=4&d=11/17/2016) +* [Mozilla Open Science mentorship program](https://github.com/MozillaFoundation/mentorship-program#mentorship-program) +* [HackerYou](https://github.com/MozillaFoundation/mentorship-program#mentorship-program) +* [Bitmaker](https://bitmaker.co/) +* [Lighthouse Labs](https://lighthouselabs.ca/) +* [Insight Data Science Fellowship](http://insightdatascience.com/) +* Second degree programs in computer science - [UBC](https://www.cs.ubc.ca/students/undergrad/programs/second-degree), [McMaster University](http://academiccalendars.romcmaster.ca/preview_program.php?catoid=7&poid=3965&returnto=563), and [University of Alberta](https://www.ualberta.ca/computing-science/undergraduate-studies/programs-and-admissions) were mentioned + +## Ways to "get yourself out there" +* Make a LinkedIn profile and keep it current +* Make a blog - post code, write about your research, etc. +* Contribute to open science on GitHub - [some ideas from Mozilla Science Lab](https://science.mozilla.org/projects) +* Recruiting firms, such as [Randstad](https://www.randstad.ca/) +* [DevHub](https://www.meetup.com/Devhub/) diff --git a/lessons/misc/code-review/lesson.md b/lessons/misc/code-review/lesson.md new file mode 100644 index 000000000..922f94554 --- /dev/null +++ b/lessons/misc/code-review/lesson.md @@ -0,0 +1,66 @@ +--- +layout: page +title: 'Code Review Overview' +visible: true +tags: + - misc + - beginner +--- + +## Why Do Code Review? ## + +Code review is the process of having your code read by another programmer (or yourself; or better, in pairs) in order to: +- catch bugs +- making sure it is clear to someone who might take up the project after you (i.e. improve the documentation) +- ensure efficiency/simplicity +- that all cases have been considered and appropriately addressed +- many other reasons! + +Not only do we want to catch any bugs in code, but code review aims to make sure that there is a standard set of rules for code that you want to uphold within a lab, or collaborative group, allowing for consistent and higher quality code. + +Ideally you would want there to be good communication about what the standards are, and whether they are being met throughout the entire process from conception of the idea to the finished code. This involves sitting down and thinking carefully about the design of the project, and defining the standards of the code along with frequent code review as it is being written. + +If you often pair up to review eachother's code, you learn new tips and tricks, and you may find alternative approaches to the same task, and also to write a coherent script pipeline. This is particularly important if you each code different parts of the project. + +Many studies have found code review to be effective not only to improve the code, but for knowledge transfer and team awareness (see [here](https://dl.acm.org/citation.cfm?id=314753) and [here](https://dl.acm.org/citation.cfm?id=2486882) for examples). + + +## Tips on Conducting Code Review + +- Review code frequently and early on. This way you don't have to sit through huge chunks of code, and that way the code is still fresh in your mind. +- Review no more than 300-500 lines of code per hour, any more and you risk not taking the time to understand each line because you feel rushed to finish. +- Focus on the right things such as clarity and function. Differences in formatting and style should be addressed but leave that to linters and other tools designed to look for those types of mistakes. +- Use checklists if this will be a regular thing in your lab or group (which it should be!) that everyone refers to as they write the code and should be somewhat specific for your purposes, however many general items will be common to most lists. This might include: + - are functions broken down into the simplest components as possible? + - is the code efficient? is there a faster way to go about computing something? + - is the current documentation (docstrings, comments) clear? If you did not have the writer explain it to you, would you understand? + - are there edge cases that haven't been considered? You can discuss how to address these cases if they exist. + - Is the code repetitive? If so, perhaps break it down to a function that can be reused. + - Does the file structure, naming conventions match with the predetermined standards? +- Make sure that everyone is clear on what the final goal of the code is so feedback can attest to these goals as well instead of only addressing superficial bugs +- The process is not truly complete until the comments and suggestions made have all been addressed either by fixing the bugs (or restructuring the code if need be) and confirming that changes are sufficient to meet the standards agreed upon. This can take time and doesn't have to occur in just one sitting, but will save time in the long run! +- be nice, be objective, be collaborative. + +## Ways to Code Review + +- Review your code yourself using your own checklist based off a general checklist including common mistakes optimized for your project +- Review code with one, or if possible, many people at once as you walk through the code and give context while they make suggestions and context +- Another way to conduct code review includes distributing the code and having many people go over it on their own time or during a designated time, and then you go over the comments afterwards, making sure there is a process in place to then confirm fixes have been made + +## Review using Github +Code review is of course built on good version control. So, by now, you probably use Github (Gitlab) or other resources to do version control and share the work with collaborators. You can furthere utilize Github for reviewing each other's code. Using Github, the code review happens between the first pull request by the original author, before it is merged: +- The author (or the project manager) can manually request a review on the pending PR. You can also configure projects to *require* a review before a pull request can be merged. +- The reviewer can make general or line-by-line comments +- Further discussion can continue under each comment thread +- make changes to the code as per the decisions reached in comments +- make the merge (whether the author of the code, or the reviewer does the merge should be communicated between members of the project prior to the review process) + + + + +## Resources +https://mozillascience.github.io/codeReview/intro.html (and other links therein) +https://blog.fogcreek.com/effective-code-reviews-9-tips-from-a-converted-skeptic/ + +https://the-turing-way.netlify.com/reviewing/reviewing.html + diff --git a/lessons/misc/inkscape-intro/bitmap_sample.png b/lessons/misc/inkscape-intro/bitmap_sample.png new file mode 100644 index 000000000..563a9eb95 Binary files /dev/null and b/lessons/misc/inkscape-intro/bitmap_sample.png differ diff --git a/lessons/misc/inkscape-intro/bitmap_sample_300.png b/lessons/misc/inkscape-intro/bitmap_sample_300.png new file mode 100644 index 000000000..2c6314e67 Binary files /dev/null and b/lessons/misc/inkscape-intro/bitmap_sample_300.png differ diff --git a/lessons/misc/inkscape-intro/demos/beaker_demo.svg b/lessons/misc/inkscape-intro/demos/beaker_demo.svg new file mode 100644 index 000000000..fbf6943bd --- /dev/null +++ b/lessons/misc/inkscape-intro/demos/beaker_demo.svg @@ -0,0 +1,1966 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lessons/misc/inkscape-intro/demos/dna_demo.svg b/lessons/misc/inkscape-intro/demos/dna_demo.svg new file mode 100644 index 000000000..06f587178 --- /dev/null +++ b/lessons/misc/inkscape-intro/demos/dna_demo.svg @@ -0,0 +1,634 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <latexit sha1_base64="eCjuNVPPdcAGdomI2RCZZOijzEw=">AAAB73icbVBNS8NAEJ34WetX1aOXxSLUgyURQb0VvXisYGylLWWz3bRLN5uwOxFK6K/w4kHFq3/Hm//GbZuDtj4YeLw3w8y8IJHCoOt+O0vLK6tr64WN4ubW9s5uaW//wcSpZtxnsYx1M6CGS6G4jwIlbyaa0yiQvBEMbyZ+44lrI2J1j6OEdyLaVyIUjKKVHiveaXLS5ki7pbJbdacgi8TLSRly1Lulr3YvZmnEFTJJjWl5boKdjGoUTPJxsZ0anlA2pH3eslTRiJtONj14TI6t0iNhrG0pJFP190RGI2NGUWA7I4oDM+9NxP+8VorhZScTKkmRKzZbFKaSYEwm35Oe0JyhHFlCmRb2VsIGVFOGNqOiDcGbf3mR+GfVq6p7d16uXedpFOAQjqACHlxADW6hDj4wiOAZXuHN0c6L8+58zFqXnHzmAP7A+fwB5tuPXA==</latexit> + + + + + + + <latexit sha1_base64="eCjuNVPPdcAGdomI2RCZZOijzEw=">AAAB73icbVBNS8NAEJ34WetX1aOXxSLUgyURQb0VvXisYGylLWWz3bRLN5uwOxFK6K/w4kHFq3/Hm//GbZuDtj4YeLw3w8y8IJHCoOt+O0vLK6tr64WN4ubW9s5uaW//wcSpZtxnsYx1M6CGS6G4jwIlbyaa0yiQvBEMbyZ+44lrI2J1j6OEdyLaVyIUjKKVHiveaXLS5ki7pbJbdacgi8TLSRly1Lulr3YvZmnEFTJJjWl5boKdjGoUTPJxsZ0anlA2pH3eslTRiJtONj14TI6t0iNhrG0pJFP190RGI2NGUWA7I4oDM+9NxP+8VorhZScTKkmRKzZbFKaSYEwm35Oe0JyhHFlCmRb2VsIGVFOGNqOiDcGbf3mR+GfVq6p7d16uXedpFOAQjqACHlxADW6hDj4wiOAZXuHN0c6L8+58zFqXnHzmAP7A+fwB5tuPXA==</latexit> + + + + + + + + + + diff --git a/lessons/misc/inkscape-intro/demos/eqns.pdf b/lessons/misc/inkscape-intro/demos/eqns.pdf new file mode 100644 index 000000000..6f8729f7c Binary files /dev/null and b/lessons/misc/inkscape-intro/demos/eqns.pdf differ diff --git a/lessons/misc/inkscape-intro/demos/flow_chart.svg b/lessons/misc/inkscape-intro/demos/flow_chart.svg new file mode 100644 index 000000000..09a71bffa --- /dev/null +++ b/lessons/misc/inkscape-intro/demos/flow_chart.svg @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + Question + yes + no + Hello World Hello World + diff --git a/lessons/misc/inkscape-intro/demos/lattice_demo.svg b/lessons/misc/inkscape-intro/demos/lattice_demo.svg new file mode 100644 index 000000000..a052ca1c3 --- /dev/null +++ b/lessons/misc/inkscape-intro/demos/lattice_demo.svg @@ -0,0 +1,2809 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lessons/misc/inkscape-intro/demos/phage_demo.svg b/lessons/misc/inkscape-intro/demos/phage_demo.svg new file mode 100644 index 000000000..b311507aa --- /dev/null +++ b/lessons/misc/inkscape-intro/demos/phage_demo.svg @@ -0,0 +1,2182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + Clone, then rotate + Spray brush, then arrange + + diff --git a/lessons/misc/inkscape-intro/demos/phage_flow_demo.svg b/lessons/misc/inkscape-intro/demos/phage_flow_demo.svg new file mode 100644 index 000000000..2ec88651c --- /dev/null +++ b/lessons/misc/inkscape-intro/demos/phage_flow_demo.svg @@ -0,0 +1,3272 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lessons/misc/inkscape-intro/lesson.md b/lessons/misc/inkscape-intro/lesson.md new file mode 100644 index 000000000..0c6553d99 --- /dev/null +++ b/lessons/misc/inkscape-intro/lesson.md @@ -0,0 +1,161 @@ +--- +layout: page +title: 'Intro to Inkscape for graphic design' +visible: true +tags: + - misc + - beginner +--- + +# Vector Graphics vs. Rasterized (Bitmap) Graphics + +In general, diagrams are usually best made in a *vector* format, while photo-realistic images or paintings are better served with *bitmaps*. A rasterisation is the conversion of a vector-graphics format to bitmap. This has to be done to display it (in editors, browsers, print, etc.), but preferably as a last step. + +## Features + + + + + + + + +
    Vector Bitmap
    data type shapes pixels
    stored as object and parameters arrays of colours
    editing lossless editing loss due to rasterization (e.g. aliasing)
    uses diagrams photos
    + +## Example + +![Vector vs. Bitmap](./vector_bitmap.svg) + +Notice how at its regular size, all copies look the same for screen/printing resolutions lower than 96dpi. The difference is noticeable once we try to zoom in, or view it at higher resolutions. + +# Closed/Proprietary vs. Open Source + +There are all sorts of philosophical reasons for opening source code and toolsets, and others for opening up content created. When it comes down to practice, the reasons are basically: +- **it's free**; +- you can open and change it in the future; +- other people can make new work from yours. + +Inkscape is the most mature, and most cross-platform vector graphics program. + +# Interface Tour + +The interface of inkscape tends to be quite crowded, so it can be overwhelming when you first open the application. In fact, it's so crowded, I don't think it will help much to include a screenshot. + +Instead, here are the important things to notice (in order of importance): +- Tool palette, typically on the left +- Tool-specific options, typically top-left +- Tool tips (e.g. modifier keys), at the bottom +- General toolbar (save, copy, group, **show panels**), maybe top or right +- Transform/Format/etc. panels, typically hidden, but on the right when shown +- Snaps, typically bottom or right +- Colour palette, at the bottom + +# Keyboard and mouse +The other tricky part is that it's optimized for keyboard and mouse. Most tools have different behaviour when a modifier key is held down. For example, with the selector tool, shift+click adds to the selection, Alt+Drag does a path-selection instead of rectangle, and shift+alt+drag adds to the current selection with a path-selection. +**Note**: if something is already selected, alt+drag moves the object. + +Right-clicks and middle-clicks will also have different behaviours. + +A notable modifier key is *Ctrl* (^). This will often force more "regular" shapes/orientations. For example, horizontal/vertical lines and moves, 45-degree rotation, and aspect-ratio locked scaling. + +Often, *Shift* is used as a secondary modifier for opposite behaviour. Examples, +- ctrl+z is undo, shift+ctrl+z is redo +- ctrl+g groups objects, shift+ctrl+g ungroups + +## Notable hotkeys + +Most hotkeys can be seen in the menus, or hovering over buttons on the interface. The following are ones that I use frequently. + +- Escape will change tools and/or deselect. Keep pressing it until you're back at the selection tool with nothing selected. +- The number row handles zooming + - `=`, `-` zoom in and out + - `5` zooms to fit document + - `1` goes 1:1 + - back-tick (`) goes to the previous zoom (like undo) +- ctrl-z for undo +- ctrl-d for duplicate +- alt-d for clone (like duplicate, but the new object is linked to the original) +- ctrl-g for group +- ctrl-c for copy +- shift-ctrl-c for past style (stroke and fill) + + +# Demo Tutorials + +Everything else is probably best learned through using it. Here are some samples of what we'll make in the tutorial. + + +

    + + + + +## Python extensions + +There may be a problem related to python versions when running some extensions. If an extension raises a syntax error, be sure to have Python 2.7 installed, and then specify the interpreter in `~/.config/inkscape/preferences.xml` + +On my system (Mac OSX), Python 2.7 was located at `/usr/bin/python2.7`. +The interpreter option will likely not be there initially. + +``` + +``` + +The `plot function` extension also depended on the `lxml` module, which can be installed with `pip` (`pip2` if you have multiple versions of Python). diff --git a/lessons/misc/inkscape-intro/vector_bitmap.svg b/lessons/misc/inkscape-intro/vector_bitmap.svg new file mode 100644 index 000000000..de85c84e2 --- /dev/null +++ b/lessons/misc/inkscape-intro/vector_bitmap.svg @@ -0,0 +1,640 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + The quick brown fox + + + + + + + + + + + + + + + + + + + + + + + + + + The quick brown fox + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lessons/misc/inkscape-intro/vector_sample.svg b/lessons/misc/inkscape-intro/vector_sample.svg new file mode 100644 index 000000000..db2d20308 --- /dev/null +++ b/lessons/misc/inkscape-intro/vector_sample.svg @@ -0,0 +1,230 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + The quick brown fox + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lessons/misc/jekyll-ghpages/lesson.md b/lessons/misc/jekyll-ghpages/lesson.md new file mode 100644 index 000000000..7391dcfa0 --- /dev/null +++ b/lessons/misc/jekyll-ghpages/lesson.md @@ -0,0 +1,294 @@ +--- +layout: page +title: 'Web design with Jekyll/GitHub Pages' +visible: true +tags: + - misc + - beginner +--- + +- **Authors**: Dawn Walker [@dcwalk](https://github.com/dcwalk) +- **Research field**: Information Studies (Information System Design) +- **Lesson topic**: Introduction to using GitHub Pages and Jekyll for website design +- **Lesson content URL**: +- **Lesson video stream**: + +## Preface + +This is a basic introduction to using GitHub Pages and Jekyll to host a web page. GitHub Pages are a feature of GitHub that allows users to host websites for individuals, projects, or organizations right from their repositories! The engine GitHub uses to accomplish this is Jekyll, a ["simple, static, blog-aware, site generator"](https://jekyllrb.com/), but it also supports regular HTML content. + +In this code-along we'll cover what GitHub Pages are, why you might want to use them, and how to do so both online and locally with some jekyll basics! + +### Pre-requisites + +- GitHub account (if you don't already have one go to [github.com/join](https://github.com/join)) +- git installed, and configured on your machine ([git-scm.com](https://git-scm.com/downloads)) +- comfort with material covered in UofT Coders lessons **[(Brief) Introduction to Git + GitHub](https://uoftcoders.github.io/studyGroup/lessons/git/intro/lesson/)**, **[An Intermediate Look at Git + GitHub](https://uoftcoders.github.io/studyGroup/lessons/git/advanced/lesson/)**, and **[Using Branches in Git](https://uoftcoders.github.io/studyGroup/lessons/git/branches/lesson/)** + +### Bluebird Conditions (AKA would be great to have!) + +- jekyll and its requirements installed on your machine ([jekyllrb.com/docs/installation](https://jekyllrb.com/docs/installation/)) + - ruby ([ruby-lang.org/en/documentation/installation](https://www.ruby-lang.org/en/documentation/installation/)) + - rubygems ([rubygems.org/pages/download](https://rubygems.org/pages/download)) + +- some familiarity with **[markdown](https://help.github.com/articles/basic-writing-and-formatting-syntax/)** and **[HTML](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Introduction)** + + + +## Lesson Overview + +The lesson will cover: + +- What GitHub Pages are, why you might want to use them +- Creating a GitHub Pages site + - Online: using the Automatic Page Generator + - Locally: using Git and Jekyll +- Jekyll Basics + +## Why (and What) are GitHub Pages + +Github Pages are a feature of GitHub that allows users to host static websites for individuals, projects, or organizations from a repository + +#### Static vs. Dynamic Websites + +- **Dynamic** ones have pages that are generated in real-time +- **Static** ones have pages that are converted (or written directly) as static HTML. + +- Does this mean it is also _static vs. 'interactive'_? No, doesn't have to be the case! + +#### Reasons to Use + +- Free! +- Static sites are more secure(ish*) +- Manage all the different content for your project(s) in the same place +- ... others? + +#### Examples + +- **Github Developer** [developer.github.com](https://developer.github.com/) [`github.com/github/developer.github.com`](https://github.com/github/developer.github.com) +- **Open Knowledge Foundation: Open Data Handbook** [opendatahandbook.org/guide](http://opendatahandbook.org/guide/en/) [`github.com/okfn/opendatahandbook`](https://github.com/okfn/opendatahandbook) +- **2048** [gabrielecirulli.github.io/2048/](https://gabrielecirulli.github.io/2048/) [`github.com/gabrielecirulli/2048/`](https://github.com/gabrielecirulli/2048/) + +#### Naming Conventions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Type of GitHub Pages sitePages default domain & host location on GitHubPublishing branch
    User Pages siteusername.github.iomaster
    Organization Pages siteorgname.github.iomaster
    Project Pages site owned by a user accountusername.github.io/projectnamegh-pages
    Project Pages site owned by an organizationorgname.github.io/projectnamegh-pages
    + +## Online Editing: Automatic Page Generator + +1. Create a new repository ([github.com/new](https://github.com/new)) + - There are 4 types of GitHub Pages site (in the table above and on **[GitHub](https://help.github.com/articles/user-organization-and-project-pages/)**) + - **following naming conventions is really important!** `.github.io` for user and organizations +2. Navigate to **Settings** and click **Automatic Page Generator** +Or just go to generated_pages url for your repository: +`https://github.com///generated_pages/new` + - Make some edits to the content + - Select a theme/layout + - Publish! +3. We have a website! +`.github.io//` + - Let's check it out +4. Make an update +5. Check out the commit history + +## Working Locally: Git and Jekyll + +1. First, we need to make sure we have everything installed + + $ git --version + git version X.X.X + $ jekyll -v + jekyll X.X.X + +2. We'll have to create (or choose) a repo for a project + + $ git init first-website + Initialized empty Git repository in /first-website/.git/ + +_Note: There are a few extra steps if you want a project page for an existing repository! Please see: [help.github.com/articles/creating-project-pages-manually](https://help.github.com/articles/creating-project-pages-manually/)_ + +#### Jekyll Basics + +Jekyll is a package (ruby gem) that makes a `jekyll` executable available from your command line. + +There aren't too many commands you need to get going: `jekyll new` and `jekyll serve` +and another one: `jekyll build` but `serve` calls build, so the command is not often needed + +let's test them out: + +~~~ +$ jekyll new first-website +New jekyll site installed in /first-website. +~~~ + +So we have a project, let's check out what's there! + +~~~ +$ cd first-website +$ ls -lFA +$ git status +~~~ + +Lots of files. Before we dig in let's try to get our website built + +~~~ +$ jekyll serve +... +Server address: http://127.0.0.1:4000/ +Server running... press ctrl-c to stop. +~~~ + +...and check it out in the browser. + +Why don't we try to make some changes and see how it looks? +Let's edit `index.html`, see how it updates in the browser automatically + +If we want to make more substantial edits to the site name, our contact details we'll have to modify `_config.yml`, but it won't update in the browser until we re-serve the page + +#### Anatomy of a Jekyll Project + +Before doing more let's take a look at all those files and folders in our directory again. [Jekyll](https://jekyllrb.com/docs/structure/) docs and the `tree` command can do a better job than me... + +~~~ +$ ls -lFA +$ tree +~~~ + +A clumsy equation for jekyll: +`_*` files and folders * `*.html/markdown/md/textile` = your static site (in `_site`) + +#### Front matter & Liquid Tags + +In order for those `*.html/markdown/md/textile` files to be transformed into working static pages, jekyll makes use of: + +**YAML Front Matter** (Yet Another Markup Language YAML Ain't Markup Language), once again I'll lean on [jekyll](https://jekyllrb.com/docs/frontmatter/) docs + +~~~ +$ cat about.md +--- +layout: page +title: About +permalink: /about/ +--- +... +~~~ + +and **[Liquid](https://shopify.github.io/liquid/) Filters and Tags** (A templating Language for handling dynamic content), thrice those handy [jekyll](https://jekyllrb.com/docs/templates/) docs + +{% raw %} +~~~ +$ cat about.md +--- +... +{% include icon-github.html username="jglovier" %} +... +~~~ +{% endraw %} + +I hope that is enough to start, there are lots more fiddly bits, but the docs and additional resources (below), as well as google, have lots to offer! + +#### Making your site live + +`` + +Okay, we've got a great site, spent some time on the content and now we want everyone on the internet to see it too. + +Before we get this up on GitHub we should make sure that the repo is set up to not commit the static version of the site. GitHub does not need it to host your site, as they use jekyll to generate sites on their end too: + +~~~ +$ git status +... +.gitignore +... +$ .gitignore +~~~ + +Github helpfully publishes all sorts of template .gitignores, the [jekyll](https://github.com/github/gitignore/blob/master/Jekyll.gitignore) one only has three items... + +While on GitHub let's set up our repo, remember the naming conventions above: `.github.io//` + +now, to commit our changes... + +~~~ +$ git checkout -b gh-pages +$ git add . +$ git commit -m '' +~~~ + +and push them to GitHub... + +~~~ +$ git remote add origin +$ git push --set-upstream origin gh-pages +~~~ + +success! (hopefully...?) + +#### Using Themes + +Many times you won't want to build up your site from scratch, instead you'll continue the lofty tradition of standing on the shoulders of giants and use a pre-made **theme**: + +[jekyllthemes.org](http://jekyllthemes.org/) + +If you are feeling overwhelmed so many I selected a couple: + +- [jekyllthemes.org/themes/twenty/](http://jekyllthemes.org/themes/twenty/) +- [jekyllthemes.org/themes/read-only/](http://jekyllthemes.org/themes/read-only/) +- [jekyllthemes.org/themes/end2end/](http://jekyllthemes.org/themes/end2end/) + +#### And more... + +- [Custom Domains (help.github.com on CNAME records)](https://help.github.com/articles/custom-domain-redirects-for-github-pages-sites/) +- Securing your Site with SSL! [Not easy unfortunately (github/issues)](https://github.com/isaacs/github/issues/156) +- ... others? + +## Resources + +- [GitHub Pages](https://pages.github.com/) + - [Creating Pages with the automatic generator](https://help.github.com/articles/creating-pages-with-the-automatic-generator/) + - [Creating Project Pages manually](https://help.github.com/articles/creating-project-pages-manually/) + +- [Jekyll](https://jekyllrb.com/docs/installation/) +- [Liquid](https://shopify.github.io/liquid/) +- [jekyllthemes.org](http://jekyllthemes.org/) +- Icon Font Kit [Font Awesome](https://fortawesome.github.io/Font-Awesome/) +- Popular Framework [Bootstrap](https://getbootstrap.com/) +- [GitBook](https://www.gitbook.com/), open source book format using Git and Markdown +- [StaticGen](https://www.staticgen.com/), ranking of Open-Source Static Site Generators (there are so many ) + +### Glossary + +- a **dynamic** website "contains web pages... that are generated in real-time. These pages include Web scripting code, such as PHP..." (from [techterms](https://techterms.com/)) +- **"static site generator"** tools that help with the creation of static websites by converting input (usually written in a markup language like **markdown**) into static HTML through the use of templates. +- a **static** website "contains web pages with fixed content. Each page... displays the same information to every visitor" (from [techterms](https://techterms.com/)) diff --git a/lessons/misc/latex-intro/.gitignore b/lessons/misc/latex-intro/.gitignore new file mode 100644 index 000000000..32f436fa9 --- /dev/null +++ b/lessons/misc/latex-intro/.gitignore @@ -0,0 +1,19 @@ +# LaTeX stuff +*.aux +*.backup +*.bbl +*.blg +*.idx +*.ilg +*.ind +*.ist +*.lof +*.log +*.lot +*.nav +*.out +*.pdf +*.snm +*.synctex.gz +*.toc +*.vrb \ No newline at end of file diff --git a/lessons/misc/latex-intro/Intro-to-Latex-Sara/MyLibrary.bib b/lessons/misc/latex-intro/Intro-to-Latex-Sara/MyLibrary.bib new file mode 100644 index 000000000..377f23eb3 --- /dev/null +++ b/lessons/misc/latex-intro/Intro-to-Latex-Sara/MyLibrary.bib @@ -0,0 +1,8153 @@ + +@article{Womelsdorf2011, + title = {Deciphering the Attentional Search Engine of the Brain}, + volume = {15}, + issn = {1364-6613, 1879-307X}, + doi = {10.1016/j.tics.2011.08.001}, + language = {English}, + number = {10}, + journal = {Trends in Cognitive Sciences}, + author = {Womelsdorf, Thilo}, + month = oct, + year = {2011}, + pages = {451-452}, + file = {C:\\Users\\saram\\Zotero\\storage\\IQG2WRAG\\Womelsdorf 2011 Deciphering the attentional search engine of the brain.pdf} +} + +@article{Vinck2012, + title = {Improved Measures of Phase-Coupling between Spikes and the {{Local Field Potential}}}, + volume = {33}, + issn = {0929-5313, 1573-6873}, + doi = {10.1007/s10827-011-0374-4}, + language = {en}, + number = {1}, + journal = {Journal of Computational Neuroscience}, + author = {Vinck, Martin and Battaglia, Francesco Paolo and Womelsdorf, Thilo and Pennartz, Cyriel}, + month = aug, + year = {2012}, + pages = {53-75}, + file = {C:\\Users\\saram\\Zotero\\storage\\9IMS3U3R\\Vinck 2012 Improved measures of phase-coupling between spikes and the Local Field Potential.pdf} +} + +@article{Womelsdorf2014, + title = {Dynamic Circuit Motifs Underlying Rhythmic Gain Control, Gating and Integration}, + volume = {17}, + issn = {1097-6256, 1546-1726}, + doi = {10.1038/nn.3764}, + number = {8}, + journal = {Nature Neuroscience}, + author = {Womelsdorf, Thilo and Valiante, Taufik A and Sahin, Ned T and Miller, Kai J and Tiesinga, Paul}, + month = jul, + year = {2014}, + pages = {1031-1039}, + file = {C:\\Users\\saram\\Zotero\\storage\\SEVU6VJ6\\Womelsdorf 2014 Dynamic circuit motifs underlying rhythmic gain control, gating and integration.pdf} +} + +@article{Oemisch2015, + title = {Interareal {{Spike}}-{{Train Correlations}} of {{Anterior Cingulate}} and {{Dorsal Prefrontal Cortex}} during {{Attention Shifts}}}, + volume = {35}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.1262-15.2015}, + language = {en}, + number = {38}, + journal = {Journal of Neuroscience}, + author = {Oemisch, M. and Westendorff, S. and Everling, S. and Womelsdorf, T.}, + month = sep, + year = {2015}, + pages = {13076-13089}, + file = {C:\\Users\\saram\\Zotero\\storage\\F69ZN5FW\\Oemisch 2015 Interareal Spike-Train Correlations of Anterior Cingulate and Dorsal Prefrontal.pdf} +} + +@article{Womelsdorf2006, + title = {Gamma-Band Synchronization in Visual Cortex Predicts Speed of Change Detection}, + volume = {439}, + issn = {0028-0836, 1476-4679}, + doi = {10.1038/nature04258}, + number = {7077}, + journal = {Nature}, + author = {Womelsdorf, Thilo and Fries, Pascal and Mitra, Partha P. and Desimone, Robert}, + month = feb, + year = {2006}, + pages = {733-736}, + file = {C:\\Users\\saram\\Zotero\\storage\\RED32TGH\\Womelsdorf 2006 Gamma-band synchronization in visual cortex predicts speed of change detection.pdf} +} + +@article{Womelsdorf2007a, + title = {Modulation of {{Neuronal Interactions Through Neuronal Synchronization}}}, + volume = {316}, + issn = {0036-8075, 1095-9203}, + doi = {10.1126/science.1139597}, + language = {en}, + number = {5831}, + journal = {Science}, + author = {Womelsdorf, T. and Schoffelen, J.-M. and Oostenveld, R. and Singer, W. and Desimone, R. and Engel, A. K. and Fries, P.}, + month = jun, + year = {2007}, + pages = {1609-1612}, + file = {C:\\Users\\saram\\Zotero\\storage\\C3UBGKTV\\Womelsdorf 2007 Modulation of Neuronal Interactions Through Neuronal Synchronization.pdf} +} + +@article{Womelsdorf2007, + title = {The Role of Neuronal Synchronization in Selective Attention}, + volume = {17}, + issn = {09594388}, + doi = {10.1016/j.conb.2007.02.002}, + language = {en}, + number = {2}, + journal = {Current Opinion in Neurobiology}, + author = {Womelsdorf, Thilo and Fries, Pascal}, + month = apr, + year = {2007}, + pages = {154-160}, + file = {C:\\Users\\saram\\Zotero\\storage\\6R69VFXU\\Womelsdorf and Fries - 2007 - The role of neuronal synchronization in selective .pdf} +} + +@article{Womelsdorf2012, + title = {Orientation Selectivity and Noise Correlation in Awake Monkey Area {{V1}} Are Modulated by the Gamma Cycle}, + volume = {109}, + number = {11}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Womelsdorf, Thilo and Lima, Bruss and Vinck, Martin and Oostenveld, Robert and Singer, Wolf and Neuenschwander, Sergio and Fries, Pascal}, + year = {2012}, + pages = {4302--4307}, + file = {C:\\Users\\saram\\Zotero\\storage\\FWQR9URX\\Womelsdorf 2012 Orientation selectivity and noise correlation in awake monkey area V1 are.pdf} +} + +@article{Womelsdorf2014a, + title = {Burst {{Firing Synchronizes Prefrontal}} and {{Anterior Cingulate Cortex}} during {{Attentional Control}}}, + volume = {24}, + issn = {09609822}, + doi = {10.1016/j.cub.2014.09.046}, + language = {en}, + number = {22}, + journal = {Current Biology}, + author = {Womelsdorf, Thilo and Ardid, Salva and Everling, Stefan and Valiante, Taufik A.}, + month = nov, + year = {2014}, + pages = {2613-2621}, + file = {C:\\Users\\saram\\Zotero\\storage\\QVUQQJD2\\Womelsdorf 2014 Burst Firing Synchronizes Prefrontal and Anterior Cingulate Cortex during.pdf;C:\\Users\\saram\\Zotero\\storage\\X3U65XA5\\Womelsdorf 2014 Burst Firing Synchronizes Prefrontal and Anterior Cingulate Cortex during (SM).pdf} +} + +@article{Jadi2014, + title = {Cortical Oscillations Arise from Contextual Interactions That Regulate Sparse Coding}, + volume = {111}, + number = {18}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Jadi, Monika P. and Sejnowski, Terrence J.}, + year = {2014}, + pages = {6780--6785}, + file = {C:\\Users\\saram\\Zotero\\storage\\4QU622XR\\Jadi and Sejnowski - 2014 - Cortical oscillations arise from contextual intera.pdf} +} + +@article{Druckmann2013, + title = {A {{Hierarchical Structure}} of {{Cortical Interneuron Electrical Diversity Revealed}} by {{Automated Statistical Analysis}}}, + volume = {23}, + issn = {1047-3211, 1460-2199}, + doi = {10.1093/cercor/bhs290}, + language = {en}, + number = {12}, + journal = {Cerebral Cortex}, + author = {Druckmann, Shaul and Hill, Sean and Sch{\"u}rmann, Felix and Markram, Henry and Segev, Idan}, + month = jan, + year = {2013}, + pages = {2994-3006}, + file = {C:\\Users\\saram\\Zotero\\storage\\P9IDQ7F4\\Druckmann 2013 A Hierarchical Structure of Cortical Interneuron Electrical Diversity Revealed.pdf}, + pmid = {22989582} +} + +@article{Schlingloff2014, + title = {Mechanisms of {{Sharp Wave Initiation}} and {{Ripple Generation}}}, + volume = {34}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0867-14.2014}, + language = {en}, + number = {34}, + journal = {Journal of Neuroscience}, + author = {Schlingloff, D. and Kali, S. and Freund, T. F. and Hajos, N. and Gulyas, A. I.}, + month = aug, + year = {2014}, + pages = {11385-11398}, + file = {C:\\Users\\saram\\Zotero\\storage\\RD3UA9BM\\Schlingloff 2014 Mechanisms of Sharp Wave Initiation and Ripple Generation.pdf} +} + +@article{Abasolo2015, + title = {Lempel-{{Ziv}} Complexity of Cortical Activity during Sleep and Waking in Rats}, + volume = {113}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00575.2014}, + language = {en}, + number = {7}, + journal = {Journal of Neurophysiology}, + author = {Ab{\'a}solo, Daniel and Simons, Samantha and {Morgado da Silva}, Rita and Tononi, Giulio and Vyazovskiy, Vladyslav V.}, + month = apr, + year = {2015}, + pages = {2742-2752}, + file = {C:\\Users\\saram\\Zotero\\storage\\946ZCPJT\\Abasolo 2015 Lempel-Ziv complexity of cortical activity during sleep and waking in rats.pdf} +} + +@article{Aertsen1989, + title = {Dynamics of Neuronal Firing Correlation: Modulation of" Effective Connectivity"}, + volume = {61}, + shorttitle = {Dynamics of Neuronal Firing Correlation}, + number = {5}, + journal = {Journal of neurophysiology}, + author = {Aertsen, A. M. and Gerstein, G. L. and Habib, M. K. and Palm, G.}, + year = {1989}, + pages = {900--917}, + file = {C:\\Users\\saram\\Zotero\\storage\\MWJIR8WE\\Aertsen 1989 Dynamics of neuronal firing correlation - modulation of effective connectivity.pdf} +} + +@article{Dossi2014, + title = {Multi-Electrode {{Array Recordings}} of {{Human Epileptic Postoperative Cortical Tissue}}}, + issn = {1940-087X}, + doi = {10.3791/51870}, + abstract = {Epilepsy, affecting about 1\% of the population, comprises a group of neurological disorders characterized by the periodic occurrence of seizures, which disrupt normal brain function. Despite treatment with currently available antiepileptic drugs targeting neuronal functions, one third of patients with epilepsy are pharmacoresistant. In this condition, surgical resection of the brain area generating seizures remains the only alternative treatment. Studying human epileptic tissues has contributed to understand new epileptogenic mechanisms during the last 10 years. Indeed, these tissues generate spontaneous interictal epileptic discharges as well as pharmacologically-induced ictal events which can be recorded with classical electrophysiology techniques. Remarkably, multi-electrode arrays (MEAs), which are microfabricated devices embedding an array of spatially arranged microelectrodes, provide the unique opportunity to simultaneously stimulate and record field potentials, as well as action potentials of multiple neurons from different areas of the tissue. Thus MEAs recordings offer an excellent approach to study the spatio-temporal patterns of spontaneous interictal and evoked seizure-like events and the mechanisms underlying seizure onset and propagation. Here we describe how to prepare human cortical slices from surgically resected tissue and to record with MEAs interictal and ictal-like events ex vivo.}, + number = {92}, + journal = {Journal of Visualized Experiments : JoVE}, + author = {Dossi, Elena and Blauwblomme, Thomas and Nabbout, Rima and Huberfeld, Gilles and Rouach, Nathalie}, + month = oct, + year = {2014}, + file = {C:\\Users\\saram\\Zotero\\storage\\RE8CX2B8\\Dossi et al. - 2014 - Multi-electrode Array Recordings of Human Epilepti.pdf}, + pmid = {25407747}, + pmcid = {PMC4353385} +} + +@article{Mazzoni2015, + title = {Computing the {{Local Field Potential}} ({{LFP}}) from {{Integrate}}-and-{{Fire Network Models}}}, + volume = {11}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1004584}, + abstract = {Author Summary Leaky integrate-and-fire (LIF) networks are often used to model neural network activity. The spike trains they produce, however, cannot be directly compared to the local field potentials (LFPs) that are measured by low-pass filtering the potential recorded from extracellular electrodes. This is because LFPs are generated by neurons with spatial extensions, while LIF networks typically consist of point neurons. In order to still be able to approximately predict LFPs from LIF network simulations, we here explore simple proxies for computing LFPs based on standard output from LIF network simulations. Predictions from the various LFP proxies were compared with ``ground-truth'' LFPs computed by means of well-established volume conduction theory where synaptic currents corresponding to the LIF network simulation were injected into populations of multi-compartmental neurons with realistic morphologies. We found that a simple weighted sum of the LIF synaptic currents with a single universally applicable set of weights excellently capture the time course of the LFP signal when the LFP predominantly is generated by a single population of pyramidal cells. Our study therefore provides a simple formula by which the LFP signal can be estimated directly from the LIF network activity, providing a missing quantitative link between simple neural models and LFP measures in vivo.}, + number = {12}, + journal = {PLOS Computational Biology}, + author = {Mazzoni, Alberto and Lind{\'e}n, Henrik and Cuntz, Hermann and Lansner, Anders and Panzeri, Stefano and Einevoll, Gaute T.}, + month = dec, + year = {2015}, + keywords = {Synapses,Neurons,Neural networks,Gamma-aminobutyric acid,Neuronal dendrites,Interneurons,Neuronal morphology,simulated,Action potentials}, + pages = {e1004584}, + file = {C:\\Users\\saram\\Zotero\\storage\\FQ6J75I9\\Mazzoni 2015 Computing the Local Field Potential (LFP) from Integrate-and-Fire Network Models.pdf} +} + +@article{Ray2010, + title = {Differences in Gamma Frequencies across Visual Cortex Restrict Their Possible Use in Computation}, + volume = {67}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2010.08.004}, + abstract = {Neuronal oscillations in the gamma band (30-80 Hz) have been suggested to play a central role in feature binding or establishing channels for neural communication. For these functions, the gamma rhythm frequency must be consistent across neural assemblies encoding the features of a stimulus. Here we test the dependence of gamma frequency on stimulus contrast in V1 cortex of awake behaving macaques and show that gamma frequency increases monotonically with contrast. Changes in stimulus contrast over time leads to a reliable gamma frequency modulation on a fast timescale. Further, large stimuli whose contrast varies across space generate gamma rhythms at significantly different frequencies in simultaneously recorded neuronal assemblies separated by as little as 400 $\mu$m, making the gamma rhythm a poor candidate for binding or communication, at least in V1. Instead, our results suggest that the gamma rhythm arises from local interactions between excitation and inhibition.}, + number = {5}, + journal = {Neuron}, + author = {Ray, Supratim and Maunsell, John H.R.}, + month = sep, + year = {2010}, + pages = {885-896}, + file = {C:\\Users\\saram\\Zotero\\storage\\QGWFS9C9\\Ray_Maunsell 2010 Differences in gamma frequencies across visual cortex restrict their possible.pdf}, + pmid = {20826318}, + pmcid = {PMC3001273} +} + +@inproceedings{Parasuram2015, + title = {Exploiting Point Source Approximation on Detailed Neuronal Models to Reconstruct Single Neuron Electric Field and Population {{LFP}}}, + doi = {10.1109/IJCNN.2015.7280607}, + abstract = {Extracellular electrodes record local field potential as an average response from the neurons within the vicinity of the electrode. Here, we used neuronal models and point source approximation techniques to study the compartmental contribution of single neuron LFP and the attenuation properties of extracellular medium. Cable compartmental contribution of single neuron LFP was estimated by computing electric potential generated by localized ion channels. We simulated the electric potential generated from axon-hillock region contributed significantly to the single neuron extracellular field. Models of cerebellar granule neuron and L5 pyramidal neuron were used to study single neuron extracellular field potentials. Attenuation properties of the extracellular medium were studied via the granule cell model. A computational model of a rat Crus-IIa cerebellar granular layer, built with detailed anatomical and physiological properties allowed reconstructing population LFP. As with single neurons, the same technique was able to reconstruct the T and C waves of evoked postsynaptic in vivo LFP trace. In addition to role of attenuation on the width of signals, plasticity was simulated via modifications of intrinsic properties of underlying neurons and population LFP validated experimental data correlating network function to underlying single neuron activity.}, + booktitle = {2015 {{International Joint Conference}} on {{Neural Networks}} ({{IJCNN}})}, + author = {Parasuram, H. and Nair, B. and Naldi, G. and D'Angelo, E. and Diwakar, S.}, + month = jul, + year = {2015}, + keywords = {simulated,cellular biophysics,medical signal processing,neurophysiology,L5 pyramidal neuron,attenuation property,axon-hillock region,cable compartmental contribution,cerebellar granule neuron,computational model,electric potential,evoked postsynaptic in vivo LFP trace,extracellular electrode,extracellular medium,local field potential,localized ion channel,neuron extracellular field potential,neuronal model,plasticity,point source approximation technique,population LFP,rat Crus-IIa cerebellar granular layer,single neuron LFP,single neuron activity,single neuron electric field,Attenuation,Biological system modeling,Conductivity,Convergence,Physiology,Computational Neuroscience,L5 neuron,Point Source Approximation}, + pages = {1-7}, + file = {C:\\Users\\saram\\Zotero\\storage\\ADKW3KIG\\Parasuram 2015 Exploiting point source approximation on detailed neuronal models to.pdf} +} + +@article{Banerjee2012, + title = {Parametric Models to Relate Spike Train and {{LFP}} Dynamics with Neural Information Processing}, + volume = {6}, + issn = {1662-5188}, + doi = {10.3389/fncom.2012.00051}, + abstract = {Spike trains and local field potentials (LFPs) resulting from extracellular current flows provide a substrate for neural information processing. Understanding the neural code from simultaneous spike-field recordings and subsequent decoding of information processing events will have widespread applications. One way to demonstrate an understanding of the neural code, with particular advantages for the development of applications, is to formulate a parametric statistical model of neural activity and its covariates. Here, we propose a set of parametric spike-field models (unified models) that can be used with existing decoding algorithms to reveal the timing of task or stimulus specific processing. Our proposed unified modeling framework captures the effects of two important features of information processing: time-varying stimulus-driven inputs and ongoing background activity that occurs even in the absence of environmental inputs. We have applied this framework for decoding neural latencies in simulated and experimentally recorded spike-field sessions obtained from the lateral intraparietal area (LIP) of awake, behaving monkeys performing cued look-and-reach movements to spatial targets. Using both simulated and experimental data, we find that estimates of trial-by-trial parameters are not significantly affected by the presence of ongoing background activity. However, including background activity in the unified model improves goodness of fit for predicting individual spiking events. Uncovering the relationship between the model parameters and the timing of movements offers new ways to test hypotheses about the relationship between neural activity and behavior. We obtained significant spike-field onset time correlations from single trials using a previously published data set where significantly strong correlation was only obtained through trial averaging. We also found that unified models extracted a stronger relationship between neural response latency and trial-by-trial behavioral performance than existing models of neural information processing. Our results highlight the utility of the unified modeling framework for characterizing spike-LFP recordings obtained during behavioral performance.}, + journal = {Frontiers in Computational Neuroscience}, + author = {Banerjee, Arpan and Dean, Heather L. and Pesaran, Bijan}, + month = jul, + year = {2012}, + keywords = {simulated}, + file = {C:\\Users\\saram\\Zotero\\storage\\AE52RTV9\\Banerjee 2012 Parametric models to relate spike train and LFP dynamics with neural.pdf}, + pmid = {22837745}, + pmcid = {PMC3403111} +} + +@article{Suffczynski2014, + title = {Afferent Inputs to Cortical Fast-Spiking Interneurons Organize Pyramidal Cell Network Oscillations at High-Gamma Frequencies (60\textendash{}200 {{Hz}})}, + volume = {112}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00844.2013}, + abstract = {High-gamma activity, ranging in frequency between $\sim$60 Hz and 200 Hz, has been observed in local field potential, electrocorticography, EEG and magnetoencephalography signals during cortical activation, in a variety of functional brain systems. The origin of these signals is yet unknown. Using computational modeling, we show that a cortical network model receiving thalamic input generates high-gamma responses comparable to those observed in local field potential recorded in monkey somatosensory cortex during vibrotactile stimulation. These high-gamma oscillations appear to be mediated mostly by an excited population of inhibitory fast-spiking interneurons firing at high-gamma frequencies and pacing excitatory regular-spiking pyramidal cells, which fire at lower rates but in phase with the population rhythm. The physiological correlates of high-gamma activity, in this model of local cortical circuits, appear to be similar to those proposed for hippocampal ripples generated by subsets of interneurons that regulate the discharge of principal cells.}, + language = {en}, + number = {11}, + journal = {Journal of Neurophysiology}, + author = {Suffczynski, Piotr and Crone, Nathan E. and Franaszczuk, Piotr J.}, + month = dec, + year = {2014}, + pages = {3001-3011}, + file = {C:\\Users\\saram\\Zotero\\storage\\PWSR49DU\\Suffczynski 2014 Afferent inputs to cortical fast-spiking interneurons organize pyramidal cell.pdf}, + pmid = {25210164} +} + +@article{Anderson2007, + title = {Studies of Stimulus Parameters for Seizure Disruption Using Neural Network Simulations}, + volume = {97}, + issn = {0340-1200}, + doi = {10.1007/s00422-007-0166-0}, + abstract = {A large scale neural network simulation with realistic cortical architecture has been undertaken to investigate the effects of external electrical stimulation on the propagation and evolution of ongoing seizure activity. This is an effort to explore the parameter space of stimulation variables to uncover promising avenues of research for this therapeutic modality. The model consists of an approximately 800 $\mu$m \texttimes{} 800 $\mu$m region of simulated cortex, and includes seven neuron classes organized by cortical layer, inhibitory or excitatory properties, and electrophysiological characteristics. The cell dynamics are governed by a modified version of the Hodgkin-Huxley equations in single compartment format. Axonal connections are patterned after histological data and published models of local cortical wiring. Stimulation induced action potentials take place at the axon initial segments, according to threshold requirements on the applied electric field distribution. Stimulation induced action potentials in horizontal axonal branches are also separately simulated. The calculations are performed on a 16 node distributed 32-bit processor system. Clear differences in seizure evolution are presented for stimulated versus the undisturbed rhythmic activity. Data is provided for frequency dependent stimulation effects demonstrating a plateau effect of stimulation efficacy as the applied frequency is increased from 60 Hz to 200 Hz. Timing of the stimulation with respect to the underlying rhythmic activity demonstrates a phase dependent sensitivity. Electrode height and position effects are also presented. Using a dipole stimulation electrode arrangement, clear orientation effects of the dipole with respect to the model connectivity is also demonstrated. A sensitivity analysis of these results as a function of the stimulation threshold is also provided.}, + number = {2}, + journal = {Biological cybernetics}, + author = {Anderson, William S. and Kudela, Pawel and Cho, Ryan J. and Bergey, Gregory K. and Franaszczuk, Piotr}, + month = aug, + year = {2007}, + keywords = {simulated}, + pages = {173-194}, + file = {C:\\Users\\saram\\Zotero\\storage\\C92V77SJ\\Anderson 2007 Studies of stimulus parameters for seizure disruption using neural network.pdf}, + pmid = {17619199}, + pmcid = {PMC2738632} +} + +@article{Regalia2016, + title = {A {{Framework}} for the {{Comparative Assessment}} of {{Neuronal Spike Sorting Algorithms}} towards {{More Accurate Off}}-{{Line}} and {{On}}-{{Line Microelectrode Arrays Data Analysis}}}, + volume = {2016}, + issn = {1687-5265}, + doi = {10.1155/2016/8416237}, + abstract = {Neuronal spike sorting algorithms are designed to retrieve neuronal network activity on a single-cell level from extracellular multiunit recordings with Microelectrode Arrays (MEAs). In typical analysis of MEA data, one spike sorting algorithm is applied indiscriminately to all electrode signals. However, this approach neglects the dependency of algorithms' performances on the neuronal signals properties at each channel, which require data-centric methods. Moreover, sorting is commonly performed off-line, which is time and memory consuming and prevents researchers from having an immediate glance at ongoing experiments. The aim of this work is to provide a versatile framework to support the evaluation and comparison of different spike classification algorithms suitable for both off-line and on-line analysis. We incorporated different spike sorting ``building blocks'' into a Matlab-based software, including 4 feature extraction methods, 3 feature clustering methods, and 1 template matching classifier. The framework was validated by applying different algorithms on simulated and real signals from neuronal cultures coupled to MEAs. Moreover, the system has been proven effective in running on-line analysis on a standard desktop computer, after the selection of the most suitable sorting methods. This work provides a useful and versatile instrument for a supported comparison of different options for spike sorting towards more accurate off-line and on-line MEA data analysis.}, + language = {en}, + journal = {Computational Intelligence and Neuroscience}, + author = {Regalia, Giulia and Coelli, Stefania and Biffi, Emilia and Ferrigno, Giancarlo and Pedrocchi, Alessandra}, + month = apr, + year = {2016}, + keywords = {clustering}, + pages = {e8416237}, + file = {C:\\Users\\saram\\Zotero\\storage\\DUM38HU2\\Regalia 2016 A Framework for the Comparative Assessment of Neuronal Spike Sorting Algorithms.pdf;C:\\Users\\saram\\Zotero\\storage\\XZ7B6XHQ\\Regalia 2016 A Framework for the Comparative Assessment of Neuronal Spike Sorting Algorithms towards More Accurate Off-Line and On-Line Microelectrod.pdf} +} + +@article{Eyal2016, + title = {Unique Membrane Properties and Enhanced Signal Processing in Human Neocortical Neurons}, + volume = {5}, + copyright = {\textcopyright{} 2016, Eyal et al. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.}, + issn = {2050-084X}, + doi = {10.7554/eLife.16553}, + abstract = {Models and experiments reveal that human L2/3 pyramidal neurons have distinctively low specific membrane capacitance which might have a significant impact on signal processing in human neocortex.}, + language = {en}, + journal = {eLife}, + author = {Eyal, Guy and Verhoog, Matthijs B. and Testa-Silva, Guilherme and Deitcher, Yair and Lodder, Johannes C. and Benavides-Piccione, Ruth and Morales, Juan and DeFelipe, Javier and de Kock, Christiaan PJ and Mansvelder, Huibert D. and Segev, Idan}, + month = oct, + year = {2016}, + keywords = {compartmental modeling,human neurons,neurons computation,membrane properties,Mouse,DrV suggestion,Journal Club,human}, + pages = {e16553}, + file = {C:\\Users\\saram\\Zotero\\storage\\66S54Q3J\\Eyal 2016 Unique membrane properties and enhanced signal processing in human neocortical.pdf}, + pmid = {27710767} +} + +@article{Heuschkel2002, + title = {A Three-Dimensional Multi-Electrode Array for Multi-Site Stimulation and Recording in Acute Brain Slices}, + volume = {114}, + issn = {0165-0270}, + doi = {10.1016/S0165-0270(01)00514-3}, + abstract = {Several multi-electrode array devices integrating planar metal electrodes were designed in the past 30 years for extracellular stimulation and recording from cultured neuronal cells and organotypic brain slices. However, these devices are not well suited for recordings from acute brain slice preparations due to a dead cell layer at the tissue slice border that appears during the cutting procedure. To overcome this problem, we propose the use of protruding 3D electrodes, i.e. tip-shaped electrodes, allowing tissue penetration in order to get closer to living neurons in the tissue slice. In this paper, we describe the design and fabrication of planar and 3D protruding multi-electrode arrays. The electrical differences between planar and 3D protruding electrode configuration were simulated and verified experimentally. Finally, a comparison between the planar and 3D protruding electrode configuration was realized by stimulation and recording from acute rat hippocampus slices. The results show that larger signal amplitudes in the millivolt range can be obtained with the 3D electrode devices. Spikes corresponding to single cell activity could be monitored in the hippocampus CA3 and CA1 region using 3D electrodes.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Heuschkel, Marc Olivier and Fejtl, Michael and Raggenbass, Mario and Bertrand, Daniel and Renaud, Philippe}, + month = mar, + year = {2002}, + keywords = {Multi-electrode array,Protruding electrodes,Tip-shaped electrodes,Simulation,Acute slice,Rat hippocampus,Electrical stimulation,Extracellular recording,MEA,spontaneous activity,Laura}, + pages = {135-148}, + file = {C:\\Users\\saram\\Zotero\\storage\\2T9HIH7J\\Heuschkel 2002 A three-dimensional multi-electrode array for multi-site stimulation and.pdf;C:\\Users\\saram\\Zotero\\storage\\JQIN6KJ3\\S0165027001005143.html} +} + +@article{DelgadoRuz2014, + title = {Localising and Classifying Neurons from High Density {{MEA}} Recordings}, + volume = {233}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2014.05.037}, + abstract = {Neuronal microcircuits are formed of a myriad of spatially and functionally specific cell classes. Despite the importance of the spatial component in the characterisation of neural circuits, it has not received the attention it deserves. While multi-electrodes are widely used in the study of microcircuits, the spatial information available from them remains largely unexploited for analysis beyond spike sorting. Here we show how the spatial pattern of the extracellular signal is determined by both the electrophysiology and morphology of neurons. Starting from known current source models for the generation of the extracellular potential, we use the spatial pattern observed across a multi-electrode array to localise and classify neurons into putative morphological classes. We evaluated the localisation and classification models with low fitting errors in simulated data. When applying them to recorded data we found correspondence between localisation statistics and expected recording radius and found evidence to support the separation into putative morphological classes. While existing localisation methods do not hold for the recording distances expected on multi-electrode recordings (under 60 $\mu$m), classification methods have been limited to the temporal component by either characterising spike shape or firing patterns. We show here how the information available from extracellular recordings can be used to localise and classify neurons based on the spatial pattern seen by multi-electrode arrays. Together they can improve current characterisation and classification of neurons based on complementary criteria such us firing pattern and functional characterisation.}, + journal = {Journal of Neuroscience Methods}, + author = {Delgado Ruz, Isabel and Schultz, Simon R.}, + month = aug, + year = {2014}, + keywords = {simulated,Extracellular recording,MEA,Laura,Multi-electrode,Neuron classification,Neuron localisation,Morphology}, + pages = {115-128}, + file = {C:\\Users\\saram\\Zotero\\storage\\C9P5IF9X\\Delgado Ruz_Schultz 2014 Localising and classifying neurons from high density MEA recordings.pdf} +} + +@article{Steidl2006, + title = {The Adult Rat Hippocampal Slice Revisited with Multi-Electrode Arrays}, + volume = {1096}, + issn = {0006-8993}, + doi = {10.1016/j.brainres.2006.04.034}, + abstract = {The multi-electrode arrays (MEA) technology for the recording of brain slices is available for more than 10 years. However, despite its relative simplicity, this recording technique is not widely used in academic or pharmaceutical research laboratories. We illustrate here that MEA provide multiple possibilities to investigate some network physiological properties as well as to evaluate the pharmacological effects of compounds. We first document that MEA allow to trigger and to record conventional FP which are inhibited by the block of action potential propagation (with 500 nM TTX). FP recorded with MEA are sensitive to ionic substitutions, to ionotropic glutamate receptor antagonists (CNQX or NBQX) and to energetic failure. Second, we illustrate that different "classical" protocols (paired-pulse, LTP, chemical LTD), revealing synaptic plasticity mechanisms, could be performed. Third, we document that MEA allow spatial and temporal discriminations for the effects of known pharmacological compounds such as competitive antagonist (gabazine, bicuculline) and allosteric modulators (steroids) of GABA(A) receptors. In conclusion, we illustrate that MEA recordings of adult rat hippocampal slices constitute a powerful and sensitive system to evaluate the effect of molecules on basic synaptic propagation/transmission and on synaptic plasticity processes.}, + language = {eng}, + number = {1}, + journal = {Brain Research}, + author = {Steidl, Esther-Marie and Neveu, Estelle and Bertrand, Daniel and Buisson, Bruno}, + month = jun, + year = {2006}, + keywords = {Animals,Electrodes,MEA,Laura,Data Interpretation; Statistical,Electric Stimulation,Electrophysiology,GABA Antagonists,In Vitro Techniques,Ion Channels,Long-Term Potentiation,Methoxyhydroxyphenylglycol,Neurotransmitter Agents,Pyridazines,Rats,Rats; Sprague-Dawley,Receptor; Metabotropic Glutamate 5,Receptors; Metabotropic Glutamate,Receptors; Presynaptic,Tetrodotoxin,acute slice,hippocampus}, + pages = {70-84}, + file = {C:\\Users\\saram\\Zotero\\storage\\TCMACF5U\\Steidl 2006 The adult rat hippocampal slice revisited with multi-electrode arrays.pdf}, + pmid = {16716268} +} + +@article{Egert2002, + title = {Two-Dimensional Monitoring of Spiking Networks in Acute Brain Slices}, + volume = {142}, + issn = {0014-4819}, + doi = {10.1007/s00221-001-0932-5}, + abstract = {To understand spatiotemporally coordinated activity in neural networks and interaction between different areas or layers in brain tissue, simultaneous multisite recording is a prerequisite. For in vitro studies pursuing these goals, substrate integrated, planar microelectrode arrays (MEAs) have been developed to monitor spikes and local field potentials. Here we report for the first time recordings of single-unit spike activity with MEAs in acute slice preparations of the rat cerebellum. We compare these recordings to results of conventional techniques, and discuss the recording conditions in view of the equivalent circuits commonly used. Simultaneous recordings with tungsten microelectrodes and MEAs verified that recording characteristics and signal-to-noise ratios of MEA electrodes were comparable to those of conventional extracellular electrodes. Spike shapes were identical on both electrodes. We found no detectable overlap between spike signals recorded at neighboring MEA electrodes (200 microm spacing). Neuronal spike activity was detected with MEA electrodes at distances of up to 100 microm from the site of spike generation. We conclude that extracellular recording of independent single-unit spike activity with MEAs is indeed suitable to monitor network activity in acute slices, making MEAs an exceptionally useful tool for the assessment of fast network dynamics in acute slices.}, + language = {eng}, + number = {2}, + journal = {Experimental Brain Research}, + author = {Egert, Ulrich and Heck, D. and Aertsen, A.}, + month = jan, + year = {2002}, + keywords = {Neurons,Animals,Electronics; Medical,Nerve Net,Neural Pathways,MEA,Laura,Electrophysiology,Rats,Rats; Sprague-Dawley,acute slice,Artifacts,Cerebellum,Microelectrodes,Organ Culture Techniques,Tungsten,Action potentials}, + pages = {268-274}, + file = {C:\\Users\\saram\\Zotero\\storage\\NI5SJ939\\Egert_2001.pdf}, + pmid = {11807580} +} + +@article{Killian2016a, + title = {A {{Device}} for {{Long}}-{{Term Perfusion}}, {{Imaging}}, and {{Electrical Interfacing}} of {{Brain Tissue In}} Vitro}, + volume = {10}, + issn = {1662-453X}, + doi = {10.3389/fnins.2016.00135}, + abstract = {Distributed microelectrode array (MEA) recordings from consistent, viable, $\geq$ 500 $\mathrm{\mu}$m thick tissue preparations over time periods from days to weeks may aid in studying a wide range of problems in neurobiology that require in vivo-like organotypic morphology. Existing tools for electrically interfacing with organotypic slices do not address necrosis that inevitably occurs within thick slices with limited diffusion of nutrients and gas, and limited removal of waste. We developed an integrated device that enables long-term maintenance of thick, functionally active, brain tissue models using interstitial perfusion and distributed recordings from thick sections of explanted tissue on a perforated multi-electrode array. This novel device allows for automated culturing, in situ imaging, and extracellular multi-electrode interfacing with brain slices, 3 D cell cultures, and potentially other tissue culture models. The device is economical, easy to assemble, and integrable with standard electrophysiology tools. We found that convective perfusion through the culture thickness provided a functional benefit to the preparations as firing rates were generally higher in perfused cultures compared to their respective unperfused controls. This work is a step towards the development of integrated tools for days-long experiments with more consistent, healthier, thicker, and functionally more active tissue cultures with built-in distributed electrophysiological recording and stimulation functionality. The results may be useful for the study of normal processes, pathological conditions, and drug screening strategies currently hindered by the limitations of acute (a few hours long) brain slice preparations.}, + language = {English}, + journal = {Frontiers in Neuroscience}, + author = {Killian, Nathaniel J. and Vernekar, Varadraj N. and Potter, Steve M. and Vukasinovic, Jelena}, + year = {2016}, + keywords = {MEA,perforated microelectrode array,brain slice,three-dimensional culture,Neuron,culture}, + file = {C:\\Users\\saram\\Zotero\\storage\\MN3DQFW2\\Killian 2016 A Device for Long-Term Perfusion, Imaging, and Electrical Interfacing of Brain.pdf} +} + +@article{Aru2015, + series = {SI: Brain rhythms and dynamic coordination}, + title = {Untangling Cross-Frequency Coupling in Neuroscience}, + volume = {31}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2014.08.002}, + abstract = {Cross-frequency coupling (CFC) has been proposed to coordinate neural dynamics across spatial and temporal scales. Despite its potential relevance for understanding healthy and pathological brain function, the standard CFC analysis and physiological interpretation come with fundamental problems. For example, apparent CFC can appear because of spectral correlations due to common non-stationarities that may arise in the total absence of interactions between neural frequency components. To provide a road map towards an improved mechanistic understanding of CFC, we organize the available and potential novel statistical/modeling approaches according to their biophysical interpretability. While we do not provide solutions for all the problems described, we provide a list of practical recommendations to avoid common errors and to enhance the interpretability of CFC analysis.}, + journal = {Current Opinion in Neurobiology}, + author = {Aru, Juhan and Aru, Jaan and Priesemann, Viola and Wibral, Michael and Lana, Luiz and Pipa, Gordon and Singer, Wolf and Vicente, Raul}, + month = apr, + year = {2015}, + pages = {51-61}, + file = {C:\\Users\\saram\\Zotero\\storage\\IAAQHD35\\mmc1.doc;C:\\Users\\saram\\Zotero\\storage\\WP58EHN7\\Aru 2015 Untangling cross-frequency coupling in neuroscience.pdf} +} + +@article{Friston2015, + series = {SI: Brain rhythms and dynamic coordination}, + title = {{{LFP}} and Oscillations\textemdash{}what Do They Tell Us?}, + volume = {31}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2014.05.004}, + abstract = {This review surveys recent trends in the use of local field potentials\textemdash{}and their non-invasive counterparts\textemdash{}to address the principles of functional brain architectures. In particular, we treat oscillations as the (observable) signature of context-sensitive changes in synaptic efficacy that underlie coordinated dynamics and message-passing in the brain. This rich source of information is now being exploited by various procedures\textemdash{}like dynamic causal modelling\textemdash{}to test hypotheses about neuronal circuits in health and disease. Furthermore, the roles played by neuromodulatory mechanisms can be addressed directly through their effects on oscillatory phenomena. These neuromodulatory or gain control processes are central to many theories of normal brain function (e.g. attention) and the pathophysiology of several neuropsychiatric conditions (e.g. Parkinson's disease).}, + journal = {Current Opinion in Neurobiology}, + author = {Friston, Karl J and Bastos, Andr{\'e} M and Pinotsis, Dimitris and Litvak, Vladimir}, + month = apr, + year = {2015}, + pages = {1-6}, + file = {C:\\Users\\saram\\Zotero\\storage\\7Z65DQGR\\Friston et al. 2015 LFP and oscillations—what do they tell us.pdf} +} + +@article{Principe2015, + series = {SI: Brain rhythms and dynamic coordination}, + title = {Representing and Decomposing Neural Potential Signals}, + volume = {31}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2014.07.023}, + abstract = {This paper reviews methodologies for analyzing neural potentials via frequency, time\textendash{}frequency, or wavelet representations, and adaptive models that estimate the signal's spatial or temporal structure. The fundamental assumptions of each method are discussed. In particular, the Fourier transform is contrasted with overcomplete representations, which are able to precisely delineate the timing and/or frequency of neural events. Finally, a novel approach that combines overcomplete representations with adaptive signal models is presented. This approach describes a continuous signal as a linear combination of reoccurring waveforms, referred to as phasic events, which are often associated with neural processing. The new methodology automatically learns the reoccurring waveforms and quantifies the neural potentials by the set of amplitudes and timings.}, + journal = {Current Opinion in Neurobiology}, + author = {Principe, Jose C and Brockmeier, Austin J}, + month = apr, + year = {2015}, + pages = {13-17}, + file = {C:\\Users\\saram\\Zotero\\storage\\SK6DMWF5\\Principe and Brockmeier 2015 Representing and decomposing neural potential signals.pdf} +} + +@article{Nakhnikian2016, + title = {A Novel Cross-Frequency Coupling Detection Method Using the Generalized {{Morse}} Wavelets}, + volume = {269}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2016.04.019}, + abstract = {Background +Cross-frequency coupling (CFC) occurs when non-identical frequency components entrain one another. A ubiquitous example from neuroscience is low frequency phase to high frequency amplitude coupling in electrophysiological signals. Seminal work by Canolty revealed CFC in human ECoG data. Established methods band-pass the data into component frequencies then convert the band-passed signals into the analytic representation, from which we infer the instantaneous amplitude and phase of each component. Though powerful, such methods resolve signals with respect to time and frequency without addressing the multiresolution problem. +New method +We build upon the ground-breaking work of Canolty and others and derive a wavelet-based CFC detection algorithm that efficiently searches a range of frequencies using a sequence of filters with optimal trade-off between time and frequency resolution. We validate our method using simulated data and analyze CFC within and between the primary motor cortex and dorsal striatum of rats under ketamine-xylazine anesthesia. +Results +Our method detects the correct CFC in simulated data and reveals CFC between frequency bands that were previously shown to participate in corticostriatal effective connectivity. +Comparison with existing methods +Other CFC detection methods address the need to increase bandwidth when analyzing high frequency components but none to date permit rigorous bandwidth selection with no a priori knowledge of underlying CFC. Our method is thus particularly useful for exploratory studies. +Conclusions +The method developed here permits rigorous and efficient exploration of a hypothesis space and is particularly useful when the frequencies participating in CFC are unknown.}, + journal = {Journal of Neuroscience Methods}, + author = {Nakhnikian, A. and Ito, S. and Dwiel, L. L. and Grasse, L. M. and Rebec, G. V. and Lauridsen, L. N. and Beggs, J. M.}, + month = aug, + year = {2016}, + keywords = {Cross-frequency coupling,Generalized Morse wavelets,In vivo electrophysiology,Anesthesia,Signal processing}, + pages = {61-73}, + file = {C:\\Users\\saram\\Zotero\\storage\\EU5DCWEB\\Nakhnikian et al. 2016 A novel cross-frequency coupling detection method using the generalized Morse wavelets.pdf} +} + +@article{Cole2017, + title = {Brain {{Oscillations}} and the {{Importance}} of {{Waveform Shape}}}, + volume = {21}, + issn = {1364-6613}, + doi = {10.1016/j.tics.2016.12.008}, + abstract = {Oscillations are a prevalent feature of brain recordings. They are believed to play key roles in neural communication and computation. Current analysis methods for studying neural oscillations often implicitly assume that the oscillations are sinusoidal. While these approaches have proven fruitful, we show here that there are numerous instances in which neural oscillations are nonsinusoidal. We highlight approaches to characterize nonsinusoidal features and account for them in traditional spectral analysis. Instead of being a nuisance, we discuss how these nonsinusoidal features may provide crucial and so far overlooked physiological information related to neural communication, computation, and cognition.}, + number = {2}, + journal = {Trends in Cognitive Sciences}, + author = {Cole, Scott R. and Voytek, Bradley}, + month = feb, + year = {2017}, + keywords = {oscillation,nonsinusoidal,waveform,shape,phase–amplitude coupling}, + pages = {137-149}, + file = {C:\\Users\\saram\\Zotero\\storage\\KRSTITDQ\\Cole and Voytek 2017 Brain Oscillations and the Importance of Waveform Shape.pdf} +} + +@article{Tort2010, + title = {Measuring {{Phase}}-{{Amplitude Coupling Between Neuronal Oscillations}} of {{Different Frequencies}}}, + volume = {104}, + issn = {0022-3077}, + doi = {10.1152/jn.00106.2010}, + abstract = {Neuronal oscillations of different frequencies can interact in several ways. There has been particular interest in the modulation of the amplitude of high-frequency oscillations by the phase of low-frequency oscillations, since recent evidence suggests a functional role for this type of cross-frequency coupling (CFC). Phase-amplitude coupling has been reported in continuous electrophysiological signals obtained from the brain at both local and macroscopic levels. In the present work, we present a new measure for assessing phase-amplitude CFC. This measure is defined as an adaptation of the Kullback\textendash{}Leibler distance\textemdash{}a function that is used to infer the distance between two distributions\textemdash{}and calculates how much an empirical amplitude distribution-like function over phase bins deviates from the uniform distribution. We show that a CFC measure defined this way is well suited for assessing the intensity of phase-amplitude coupling. We also review seven other CFC measures; we show that, by some performance benchmarks, our measure is especially attractive for this task. We also discuss some technical aspects related to the measure, such as the length of the epochs used for these analyses and the utility of surrogate control analyses. Finally, we apply the measure and a related CFC tool to actual hippocampal recordings obtained from freely moving rats and show, for the first time, that the CA3 and CA1 regions present different CFC characteristics.}, + number = {2}, + journal = {Journal of Neurophysiology}, + author = {Tort, Adriano B. L. and Komorowski, Robert and Eichenbaum, Howard and Kopell, Nancy}, + month = aug, + year = {2010}, + pages = {1195-1210}, + file = {C:\\Users\\saram\\Zotero\\storage\\JT5DZ7Q9\\Tort 2010-Measuring phase-amplitude coupling between neuronal oscillations of different frequencies (1).pdf}, + pmid = {20463205}, + pmcid = {PMC2941206} +} + +@article{Voloh2015, + title = {Theta\textendash{}gamma Coordination between Anterior Cingulate and Prefrontal Cortex Indexes Correct Attention Shifts}, + volume = {112}, + issn = {0027-8424}, + doi = {10.1073/pnas.1500438112}, + abstract = {During flexible goal-directed behavior, our frontal cortex coordinates goal-relevant information from widely distributed neuronal systems to prioritize the relevant over irrelevant information. This coordination may be realized by entraining multiple distributed systems with slow activity oscillation to phase-align their local fast oscillatory activity. We analyzed this spatially distributed oscillatory coupling in macaques during actual attentional stimulus selection. We identified that successful\textemdash{}but not failed\textemdash{}selection of relevant information followed the coupling of slow and fast frequencies at narrow oscillation phases, with interareal anatomical specificity, and based on a reset mechanism for the slow oscillation. These findings suggest a specific functional and mechanistic solution to the fundamental coordination problem in primate brains., Anterior cingulate and lateral prefrontal cortex (ACC/PFC) are believed to coordinate activity to flexibly prioritize the processing of goal-relevant over irrelevant information. This between-area coordination may be realized by common low-frequency excitability changes synchronizing segregated high-frequency activations. We tested this coordination hypothesis by recording in macaque ACC/PFC during the covert utilization of attention cues. We found robust increases of 5\textendash{}10 Hz (theta) to 35\textendash{}55 Hz (gamma) phase\textendash{}amplitude correlation between ACC and PFC during successful attention shifts but not before errors. Cortical sites providing theta phases (i) showed a prominent cue-induced phase reset, (ii) were more likely in ACC than PFC, and (iii) hosted neurons with burst firing events that synchronized to distant gamma activity. These findings suggest that interareal theta\textendash{}gamma correlations could follow mechanistically from a cue-triggered reactivation of rule memory that synchronizes theta across ACC/PFC.}, + number = {27}, + journal = {Proceedings of the National Academy of Sciences of the United States of America}, + author = {Voloh, Benjamin and Valiante, Taufik A. and Everling, Stefan and Womelsdorf, Thilo}, + month = jul, + year = {2015}, + pages = {8457-8462}, + file = {C:\\Users\\saram\\Zotero\\storage\\SJGJ23SX\\Voloh et al. 2015 Theta–gamma coordination between anterior cingulate and prefrontal cortex indexes correct attention shifts.pdf}, + pmid = {26100868}, + pmcid = {PMC4500211} +} + +@inproceedings{Paparrizos2015, + address = {New York, NY, USA}, + series = {SIGMOD '15}, + title = {K-{{Shape}}: {{Efficient}} and {{Accurate Clustering}} of {{Time Series}}}, + isbn = {978-1-4503-2758-9}, + shorttitle = {K-{{Shape}}}, + doi = {10.1145/2723372.2737793}, + abstract = {The proliferation and ubiquity of temporal data across many disciplines has generated substantial interest in the analysis and mining of time series. Clustering is one of the most popular data mining methods, not only due to its exploratory power, but also as a preprocessing step or subroutine for other techniques. In this paper, we present k-Shape, a novel algorithm for time-series clustering. k-Shape relies on a scalable iterative refinement procedure, which creates homogeneous and well-separated clusters. As its distance measure, k-Shape uses a normalized version of the cross-correlation measure in order to consider the shapes of time series while comparing them. Based on the properties of that distance measure, we develop a method to compute cluster centroids, which are used in every iteration to update the assignment of time series to clusters. To demonstrate the robustness of k-Shape, we perform an extensive experimental evaluation of our approach against partitional, hierarchical, and spectral clustering methods, with combinations of the most competitive distance measures. k-Shape outperforms all scalable approaches in terms of accuracy. Furthermore, k-Shape also outperforms all non-scalable (and hence impractical) combinations, with one exception that achieves similar accuracy results. However, unlike k-Shape, this combination requires tuning of its distance measure and is two orders of magnitude slower than k-Shape. Overall, k-Shape emerges as a domain-independent, highly accurate, and highly efficient clustering approach for time series with broad applications.}, + booktitle = {Proceedings of the 2015 {{ACM SIGMOD International Conference}} on {{Management}} of {{Data}}}, + publisher = {{ACM}}, + author = {Paparrizos, John and Gravano, Luis}, + year = {2015}, + keywords = {clustering,centroid computation,distance measure,time-series data}, + pages = {1855--1870}, + file = {C:\\Users\\saram\\Zotero\\storage\\QUAQEZNC\\Paparrizos_Gravano 2015 k-Shape - Efficient and Accurate Clustering of Time Series.pdf} +} + +@article{Scheffer-Teixeira2016, + title = {On Cross-Frequency Phase-Phase Coupling between Theta and Gamma Oscillations in the Hippocampus}, + volume = {5}, + copyright = {\textcopyright{} 2016, Scheffer-Teixeira et al. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.}, + issn = {2050-084X}, + doi = {10.7554/eLife.20515}, + abstract = {Phase-locking of hippocampal theta and gamma waves has been proposed to support memory formation, but an analysis using robust statistical methods finds no convincing evidence for the phenomenon.}, + language = {en}, + journal = {eLife}, + author = {Scheffer-Teixeira, Robson and Tort, Adriano BL}, + month = dec, + year = {2016}, + keywords = {local field potential,Electrophysiology,Cross-frequency coupling,brain rhythms,neuronal oscillations,Rat}, + pages = {e20515}, + file = {C:\\Users\\saram\\Zotero\\storage\\T73HJJ46\\Scheffer-Teixeira and Tort 2016 On cross-frequency phase-phase coupling between theta and gamma oscillations in the hippocampus.pdf}, + pmid = {27925581} +} + +@book{Bezdek2013, + title = {Pattern {{Recognition}} with {{Fuzzy Objective Function Algorithms}}}, + isbn = {978-1-4757-0450-1}, + abstract = {The fuzzy set was conceived as a result of an attempt to come to grips with the problem of pattern recognition in the context of imprecisely defined categories. In such cases, the belonging of an object to a class is a matter of degree, as is the question of whether or not a group of objects form a cluster. A pioneering application of the theory of fuzzy sets to cluster analysis was made in 1969 by Ruspini. It was not until 1973, however, when the appearance of the work by Dunn and Bezdek on the Fuzzy ISODATA (or fuzzy c-means) algorithms became a landmark in the theory of cluster analysis, that the relevance of the theory of fuzzy sets to cluster analysis and pattern recognition became clearly established. Since then, the theory of fuzzy clustering has developed rapidly and fruitfully, with the author of the present monograph contributing a major share of what we know today. In their seminal work, Bezdek and Dunn have introduced the basic idea of determining the fuzzy clusters by minimizing an appropriately defined functional, and have derived iterative algorithms for computing the membership functions for the clusters in question. The important issue of convergence of such algorithms has become much better understood as a result of recent work which is described in the monograph.}, + language = {en}, + publisher = {{Springer Science \& Business Media}}, + author = {Bezdek, James C.}, + month = mar, + year = {2013}, + keywords = {Mathematics / General,Computers / Computer Science} +} + +@book{Theodoridis2009, + address = {London}, + title = {Pattern Recognition}, + isbn = {978-1-59749-272-0}, + publisher = {{Academic Press}}, + author = {Theodoridis, Sergios.}, + editor = {Koutroumbas, Konstantinos.}, + year = {2009}, + keywords = {Pattern recognition systems.,Reconnaissance des formes (Informatique),Patroonherkenning.|2gtt} +} + +@article{Biffi2010, + title = {Development and {{Validation}} of a {{Spike Detection}} and {{Classification Algorithm Aimed}} at {{Implementation}} on {{Hardware Devices}}}, + volume = {2010}, + issn = {1687-5265}, + doi = {10.1155/2010/659050}, + abstract = {Neurons cultured in vitro on MicroElectrode Array (MEA) devices connect to each other, forming a network. To study electrophysiological activity and long term plasticity effects, long period recording and spike sorter methods are needed. Therefore, on-line and real time analysis, optimization of memory use and data transmission rate improvement become necessary. We developed an algorithm for amplitude-threshold spikes detection, whose performances were verified with (a) statistical analysis on both simulated and real signal and (b) Big O Notation. Moreover, we developed a PCA-hierarchical classifier, evaluated on simulated and real signal. Finally we proposed a spike detection hardware design on FPGA, whose feasibility was verified in terms of CLBs number, memory occupation and temporal requirements; once realized, it will be able to execute on-line detection and real time waveform analysis, reducing data storage problems.}, + language = {en}, + journal = {Computational Intelligence and Neuroscience}, + author = {Biffi, E. and Ghezzi, D. and Pedrocchi, A. and Ferrigno, G.}, + month = mar, + year = {2010}, + pages = {e659050}, + file = {C:\\Users\\saram\\Zotero\\storage\\7IE85UD6\\Biffi 2010 Development and Validation of a Spike Detection and Classification Algorithm.pdf}, + pmid = {20300592} +} + +@article{Bargmann2013, + title = {From the Connectome to Brain Function}, + volume = {10}, + copyright = {\textcopyright{} 2013 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + doi = {10.1038/nmeth.2451}, + abstract = {In this Historical Perspective, we ask what information is needed beyond connectivity diagrams to understand the function of nervous systems. Informed by invertebrate circuits whose connectivities are known, we highlight the importance of neuronal dynamics and neuromodulation, and the existence of parallel circuits. The vertebrate retina has these features in common with invertebrate circuits, suggesting that they are general across animals. Comparisons across these systems suggest approaches to study the functional organization of large circuits based on existing knowledge of small circuits.}, + language = {en}, + number = {6}, + journal = {Nature Methods}, + author = {Bargmann, Cornelia I. and Marder, Eve}, + month = jun, + year = {2013}, + keywords = {neurophysiology,Neuroscience}, + pages = {483-490}, + file = {C:\\Users\\saram\\Zotero\\storage\\8KZENNTT\\Bargmann, 2013, From the connectome to brain function.pdf} +} + +@article{Lein2007, + title = {Genome-Wide Atlas of Gene Expression in the Adult Mouse Brain}, + volume = {445}, + copyright = {\textcopyright{} 2006 Nature Publishing Group}, + issn = {0028-0836}, + doi = {10.1038/nature05453}, + abstract = {Molecular approaches to understanding the functional circuitry of the nervous system promise new insights into the relationship between genes, brain and behaviour. The cellular diversity of the brain necessitates a cellular resolution approach towards understanding the functional genomics of the nervous system. We describe here an anatomically comprehensive digital atlas containing the expression patterns of 20,000 genes in the adult mouse brain. Data were generated using automated high-throughput procedures for in situ hybridization and data acquisition, and are publicly accessible online. Newly developed image-based informatics tools allow global genome-scale structural analysis and cross-correlation, as well as identification of regionally enriched genes. Unbiased fine-resolution analysis has identified highly specific cellular markers as well as extensive evidence of cellular heterogeneity not evident in classical neuroanatomical atlases. This highly standardized atlas provides an open, primary data resource for a wide variety of further studies concerning brain organization and function.}, + language = {en}, + number = {7124}, + journal = {Nature}, + author = {Lein, Ed S. and Hawrylycz, Michael J. and Ao, Nancy and Ayres, Mikael and Bensinger, Amy and Bernard, Amy and Boe, Andrew F. and Boguski, Mark S. and Brockway, Kevin S. and Byrnes, Emi J. and Chen, Lin and Chen, Li and Chen, Tsuey-Ming and Chi Chin, Mei and Chong, Jimmy and Crook, Brian E. and Czaplinska, Aneta and Dang, Chinh N. and Datta, Suvro and Dee, Nick R. and Desaki, Aimee L. and Desta, Tsega and Diep, Ellen and Dolbeare, Tim A. and Donelan, Matthew J. and Dong, Hong-Wei and Dougherty, Jennifer G. and Duncan, Ben J. and Ebbert, Amanda J. and Eichele, Gregor and Estin, Lili K. and Faber, Casey and Facer, Benjamin A. and Fields, Rick and Fischer, Shanna R. and Fliss, Tim P. and Frensley, Cliff and Gates, Sabrina N. and Glattfelder, Katie J. and Halverson, Kevin R. and Hart, Matthew R. and Hohmann, John G. and Howell, Maureen P. and Jeung, Darren P. and Johnson, Rebecca A. and Karr, Patrick T. and Kawal, Reena and Kidney, Jolene M. and Knapik, Rachel H. and Kuan, Chihchau L. and Lake, James H. and Laramee, Annabel R. and Larsen, Kirk D. and Lau, Christopher and Lemon, Tracy A. and Liang, Agnes J. and Liu, Ying and Luong, Lon T. and Michaels, Jesse and Morgan, Judith J. and Morgan, Rebecca J. and Mortrud, Marty T. and Mosqueda, Nerick F. and Ng, Lydia L. and Ng, Randy and Orta, Geralyn J. and Overly, Caroline C. and Pak, Tu H. and Parry, Sheana E. and Pathak, Sayan D. and Pearson, Owen C. and Puchalski, Ralph B. and Riley, Zackery L. and Rockett, Hannah R. and Rowland, Stephen A. and Royall, Joshua J. and Ruiz, Marcos J. and Sarno, Nadia R. and Schaffnit, Katherine and Shapovalova, Nadiya V. and Sivisay, Taz and Slaughterbeck, Clifford R. and Smith, Simon C. and Smith, Kimberly A. and Smith, Bryan I. and Sodt, Andy J. and Stewart, Nick N. and Stumpf, Kenda-Ruth and Sunkin, Susan M. and Sutram, Madhavi and Tam, Angelene and Teemer, Carey D. and Thaller, Christina and Thompson, Carol L. and Varnam, Lee R. and Visel, Axel and Whitlock, Ray M. and Wohnoutka, Paul E. and Wolkey, Crissa K. and Wong, Victoria Y. and Wood, Matthew and Yaylaoglu, Murat B. and Young, Rob C. and Youngstrom, Brian L. and Feng Yuan, Xu and Zhang, Bin and Zwingman, Theresa A. and Jones, Allan R.}, + month = jan, + year = {2007}, + keywords = {Laminar,layers}, + pages = {168-176}, + file = {C:\\Users\\saram\\Zotero\\storage\\34G3DJS6\\Lein 2007 Genome-wide atlas of gene expression in the adult mouse brain.pdf} +} + +@article{Baker2011, + title = {Microscopy: {{Bright}} Light, Better Labels}, + volume = {478}, + copyright = {\textcopyright{} 2011 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {0028-0836}, + shorttitle = {Microscopy}, + doi = {10.1038/478137a}, + abstract = {The tiniest structures in cells can be seen only using sophisticated instrumentation and informatics, but what biologists really need are improved fluorescent probes.}, + language = {en}, + number = {7367}, + journal = {Nature}, + author = {Baker, Monya}, + month = oct, + year = {2011}, + keywords = {Biophysics,Physical Sciences,Cell biology,Biological Sciences}, + pages = {137-142}, + file = {C:\\Users\\saram\\Zotero\\storage\\XUACETXA\\478137a.pdf} +} + +@article{Osten2013, + title = {Mapping Brain Circuitry with a Light Microscope}, + volume = {10}, + copyright = {\textcopyright{} 2013 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + doi = {10.1038/nmeth.2477}, + abstract = {The beginning of the 21st century has seen a renaissance in light microscopy and anatomical tract tracing that together are rapidly advancing our understanding of the form and function of neuronal circuits. The introduction of instruments for automated imaging of whole mouse brains, new cell type\textendash{}specific and trans-synaptic tracers, and computational methods for handling the whole-brain data sets has opened the door to neuroanatomical studies at an unprecedented scale. We present an overview of the present state and future opportunities in charting long-range and local connectivity in the entire mouse brain and in linking brain circuits to function.}, + language = {en}, + number = {6}, + journal = {Nature Methods}, + author = {Osten, Pavel and Margrie, Troy W.}, + month = jun, + year = {2013}, + keywords = {neurophysiology,Neuroscience,Light-sheet microscopy,Fluorescence imaging}, + pages = {515-523}, + file = {C:\\Users\\saram\\Zotero\\storage\\EXX3XRMR\\Osten Margrie 2013 Mapping brain circuitry with a light microscope2.pdf} +} + +@article{Garcia-Lopez2010, + title = {The {{Histological Slides}} and {{Drawings}} of {{Cajal}}}, + volume = {4}, + issn = {1662-5129}, + doi = {10.3389/neuro.05.009.2010}, + abstract = {Ram{\'o}n y Cajal's studies in the field of neuroscience provoked a radical change in the course of its history. For this reason he is considered as the father of modern neuroscience. Some of his original preparations are housed at the Cajal Museum (Cajal Institute, CSIC, Madrid, Spain). In this article, we catalogue and analyse more than 4,500 of Cajal's histological preparations, the same preparations he used during his scientific career. Furthermore, we catalogued Cajal's original correspondence, both manuscripts and personal letters, drawings and plates. This is the first time anyone has compiled an account of Cajal's enormous scientific production, offering some curious insights into his work and his legacy.}, + journal = {Frontiers in Neuroanatomy}, + author = {Garcia-Lopez, Pablo and Garcia-Marin, Virginia and Freire, Miguel}, + month = mar, + year = {2010}, + file = {C:\\Users\\saram\\Zotero\\storage\\GTS7AV74\\Garcia-Lopez 2010 The Histological Slides and Drawings of Cajal.pdf}, + pmid = {20339483}, + pmcid = {PMC2845060} +} + +@article{DeFelipe1992, + title = {Santiago {{Ram{\'o}n}} y {{Cajal}} and Methods in Neurohistology}, + volume = {15}, + issn = {0166-2236}, + doi = {10.1016/0166-2236(92)90057-F}, + abstract = {Controversy, misunderstanding or uninformed opinion abound over the extent to which the great Spanish neurohistologist, Santiago Ram{\'o}n y Cajal, specified his staining methods in his analytical papers, the methods by which he analysed and presented his data, and the microscopes available to him. In this paper, we have attempted to outline the information on these points that we have been able to obtain from a detailed examination of his writings and a study of the evidence remaining in the Cajal Museum in Madrid.}, + number = {7}, + journal = {Trends in Neurosciences}, + author = {DeFelipe, Javier and Jones, Edward G.}, + month = jul, + year = {1992}, + pages = {237-246}, + file = {C:\\Users\\saram\\Zotero\\storage\\UAVDKNPH\\DeFelipe_Jones 1992 Santiago Ramon y Cajal and methods in neurohistology.pdf} +} + +@article{Akemann2010, + title = {Imaging Brain Electric Signals with Genetically Targeted Voltage-Sensitive Fluorescent Proteins}, + volume = {7}, + copyright = {\textcopyright{} 2010 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + doi = {10.1038/nmeth.1479}, + abstract = {Cortical information processing relies on synaptic interactions between diverse classes of neurons with distinct electrophysiological and connection properties. Uncovering the operational principles of these elaborate circuits requires the probing of electrical activity from selected populations of defined neurons. Here we show that genetically encoded voltage-sensitive fluorescent proteins (VSFPs) provide an optical voltage report from targeted neurons in culture, acute brain slices and living mice. By expressing VSFPs in pyramidal cells of mouse somatosensory cortex, we also demonstrate that these probes can report cortical electrical responses to single sensory stimuli in vivo. These protein-based voltage probes will facilitate the analysis of cortical circuits in genetically defined cell populations and are hence a valuable addition to the optogenetic toolbox. +View full text}, + language = {en}, + number = {8}, + journal = {Nature Methods}, + author = {Akemann, Walther and Mutoh, Hiroki and Perron, Am{\'e}lie and Rossier, Jean and Kn{\"o}pfel, Thomas}, + month = aug, + year = {2010}, + keywords = {Electrophysiology,Brain imaging,Fluorescent proteins}, + pages = {643-649}, + file = {C:\\Users\\saram\\Zotero\\storage\\5X7QBS69\\Akemann et al. 2010 Imaging brain electric signals with genetically targeted voltage-sensitive fluorescent proteins.pdf} +} + +@article{Ahrens2013, + title = {Whole-Brain Functional Imaging at Cellular Resolution Using Light-Sheet Microscopy}, + volume = {10}, + copyright = {\textcopyright{} 2013 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + doi = {10.1038/nmeth.2434}, + abstract = {Brain function relies on communication between large populations of neurons across multiple brain areas, a full understanding of which would require knowledge of the time-varying activity of all neurons in the central nervous system. Here we use light-sheet microscopy to record activity, reported through the genetically encoded calcium indicator GCaMP5G, from the entire volume of the brain of the larval zebrafish in vivo at 0.8 Hz, capturing more than 80\% of all neurons at single-cell resolution. Demonstrating how this technique can be used to reveal functionally defined circuits across the brain, we identify two populations of neurons with correlated activity patterns. One circuit consists of hindbrain neurons functionally coupled to spinal cord neuropil. The other consists of an anatomically symmetric population in the anterior hindbrain, with activity in the left and right halves oscillating in antiphase, on a timescale of 20 s, and coupled to equally slow oscillations in the inferior olive. +View full text}, + language = {en}, + number = {5}, + journal = {Nature Methods}, + author = {Ahrens, Misha B. and Orger, Michael B. and Robson, Drew N. and Li, Jennifer M. and Keller, Philipp J.}, + month = may, + year = {2013}, + keywords = {Computational Neuroscience,Light-sheet microscopy,Brain imaging}, + pages = {413-420}, + file = {C:\\Users\\saram\\Zotero\\storage\\VTT58TGB\\Ahrens et al. 2013 Whole-brain functional imaging at cellular resolution using light-sheet microscopy.pdf} +} + +@article{Davidson2003, + title = {Viral Vectors for Gene Delivery to the Nervous System}, + volume = {4}, + copyright = {\textcopyright{} 2003 Nature Publishing Group}, + issn = {1471-003X}, + doi = {10.1038/nrn1104}, + abstract = {Our ability to manipulate the genetic constitution of the nervous system has come of age with various technologies, including virus vectors that can efficiently deliver genes to neurons and other neural cells in vitro and in vivo. These vectors allow us to monitor neurobiological functions, replace, correct, express or block expression of target genes, tag cells for fate determination, and change the physiological state of specific cell populations. The available vectors differ in their suitability for different applications, which depends on factors such as the size of the transgene, route of delivery, tropism, duration and regulation of gene expression, and side effects.}, + language = {en}, + number = {5}, + journal = {Nature Reviews Neuroscience}, + author = {Davidson, Beverly L. and Breakefield, Xandra O.}, + month = may, + year = {2003}, + pages = {353-364}, + file = {C:\\Users\\saram\\Zotero\\storage\\F5CX2XXU\\Davidson and Breakefield 2003 Viral vectors for gene delivery to the nervous system.pdf} +} + +@article{Oheim2001, + title = {Two-Photon Microscopy in Brain Tissue: Parameters Influencing the Imaging Depth}, + volume = {111}, + issn = {0165-0270}, + shorttitle = {Two-Photon Microscopy in Brain Tissue}, + doi = {10.1016/S0165-0270(01)00438-1}, + abstract = {Light scattering by tissue limits the imaging depth of two-photon microscopy and its use for functional brain imaging in vivo. We investigate the influence of scattering on both fluorescence excitation and collection, and identify tissue and instrument parameters that limit the imaging depth in the brain. (i) In brain slices, we measured that the scattering length at $\lambda$=800 nm is a factor 2 higher in juvenile cortical tissue (P14\textendash{}P18) than in adult tissue (P90). (ii) In a detection geometry typical for in vivo imaging, we show that the collected fraction of fluorescence drops at large depths, and that it is proportional to the square of the effective angular acceptance of the detection optics. Matching the angular acceptance of the microscope to that of the objective lens can result in a gain of $\sim$3 in collection efficiency at large depths (\>500 $\mu$m). A low-magnification (20\texttimes), high-numerical aperture objective (0.95) further increases fluorescence collection by a factor of $\sim$10 compared with a standard 60\texttimes\textendash{}63\texttimes{} objective without compromising the resolution. This improvement should allow fluorescence measurements related to neuronal or vascular brain activity at \>100 $\mu$m deeper than with standard objectives.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Oheim, Martin and Beaurepaire, Emmanuel and Chaigneau, Emmanuelle and Mertz, Jerome and Charpak, Serge}, + month = oct, + year = {2001}, + keywords = {Fluorescence,Two-photon,Brain slices,In vivo,Monte Carlo,Scattering media}, + pages = {29-37}, + file = {C:\\Users\\saram\\Zotero\\storage\\U6EG4PIF\\Oheim et al. 2001 Two-photon microscopy in brain tissue parameters influencing the imaging depth.pdf} +} + +@article{Helmchen2005, + title = {Deep Tissue Two-Photon Microscopy}, + volume = {2}, + copyright = {Copyright Nature Publishing Group Dec 2005}, + issn = {15487091}, + doi = {http://dx.doi.org.myaccess.library.utoronto.ca/10.1038/nmeth818}, + abstract = {With few exceptions biological tissues strongly scatter light, making high-resolution deep imaging impossible for traditional-including confocal-fluorescence microscopy. Nonlinear optical microscopy, in particular two photon-excited fluorescence microscopy, has overcome this limitation, providing large depth penetration mainly because even multiply scattered signal photons can be assigned to their origin as the result of localized nonlinear signal generation. Two-photon microscopy thus allows cellular imaging several hundred microns deep in various organs of living animals. Here we review fundamental concepts of nonlinear microscopy and discuss conditions relevant for achieving large imaging depths in intact tissue.}, + language = {English}, + number = {12}, + journal = {Nature Methods; New York}, + author = {Helmchen, Fritjof and Denk, Winfried}, + month = dec, + year = {2005}, + keywords = {Sciences: Comprehensive Works,Chemistry}, + pages = {932-40}, + file = {C:\\Users\\saram\\Zotero\\storage\\WFHIKBE8\\Helmchen and Denk 2005 Deep tissue two-photon microscopy.pdf} +} + +@article{Oh2014, + title = {A Mesoscale Connectome of the Mouse Brain}, + volume = {508}, + copyright = {\textcopyright{} 2014 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {0028-0836}, + doi = {10.1038/nature13186}, + abstract = {Comprehensive knowledge of the brain's wiring diagram is fundamental for understanding how the nervous system processes information at both local and global scales. However, with the singular exception of the C. elegans microscale connectome, there are no complete connectivity data sets in other species. Here we report a brain-wide, cellular-level, mesoscale connectome for the mouse. The Allen Mouse Brain Connectivity Atlas uses enhanced green fluorescent protein (EGFP)-expressing adeno-associated viral vectors to trace axonal projections from defined regions and cell types, and high-throughput serial two-photon tomography to image the EGFP-labelled axons throughout the brain. This systematic and standardized approach allows spatial registration of individual experiments into a common three dimensional (3D) reference space, resulting in a whole-brain connectivity matrix. A computational model yields insights into connectional strength distribution, symmetry and other network properties. Virtual tractography illustrates 3D topography among interconnected regions. Cortico-thalamic pathway analysis demonstrates segregation and integration of parallel pathways. The Allen Mouse Brain Connectivity Atlas is a freely available, foundational resource for structural and functional investigations into the neural circuits that support behavioural and cognitive processes in health and disease. +View full text}, + language = {en}, + number = {7495}, + journal = {Nature}, + author = {Oh, Seung Wook and Harris, Julie A. and Ng, Lydia and Winslow, Brent and Cain, Nicholas and Mihalas, Stefan and Wang, Quanxin and Lau, Chris and Kuan, Leonard and Henry, Alex M. and Mortrud, Marty T. and Ouellette, Benjamin and Nguyen, Thuc Nghi and Sorensen, Staci A. and Slaughterbeck, Clifford R. and Wakeman, Wayne and Li, Yang and Feng, David and Ho, Anh and Nicholas, Eric and Hirokawa, Karla E. and Bohn, Phillip and Joines, Kevin M. and Peng, Hanchuan and Hawrylycz, Michael J. and Phillips, John W. and Hohmann, John G. and Wohnoutka, Paul and Gerfen, Charles R. and Koch, Christof and Bernard, Amy and Dang, Chinh and Jones, Allan R. and Zeng, Hongkui}, + month = apr, + year = {2014}, + keywords = {Mouse,Neuroscience,3-D reconstruction}, + pages = {207-214}, + file = {C:\\Users\\saram\\Zotero\\storage\\JWQSRT4R\\Oh et al. 2014 A mesoscale connectome of the mouse brain.pdf} +} + +@article{Yang2014, + title = {Single-{{Cell Phenotyping}} within {{Transparent Intact Tissue}} through {{Whole}}-{{Body Clearing}}}, + volume = {158}, + issn = {0092-8674, 1097-4172}, + doi = {10.1016/j.cell.2014.07.017}, + abstract = {Understanding the structure-function relationships at cellular, circuit, and organ-wide scale requires 3D anatomical and phenotypical maps, currently unavailable for many organs across species. At the root of this knowledge gap is the absence of a method that enables whole-organ imaging. Herein, we present techniques for tissue clearing in which whole organs and bodies are rendered macromolecule-permeable and optically transparent, thereby exposing their cellular structure with intact connectivity. We describe PACT (passive clarity technique), a protocol for passive tissue clearing and immunostaining of intact organs; RIMS (refractive index matching solution), a mounting media for imaging thick tissue; and PARS (perfusion-assisted agent release in situ), a method for whole-body clearing and immunolabeling. We show that in rodents PACT, RIMS, and PARS are compatible with endogenous-fluorescence, immunohistochemistry, RNA single-molecule FISH, long-term storage, and microscopy with cellular and subcellular resolution. These methods are applicable for high-resolution, high-content mapping and phenotyping of normal and pathological elements within intact organs and bodies.}, + language = {English}, + number = {4}, + journal = {Cell}, + author = {Yang, Bin and Treweek, Jennifer B. and Kulkarni, Rajan P. and Deverman, Benjamin E. and Chen, Chun-Kan and Lubeck, Eric and Shah, Sheel and Cai, Long and Gradinaru, Viviana}, + month = aug, + year = {2014}, + pages = {945-958}, + file = {C:\\Users\\saram\\Zotero\\storage\\UP79WE4E\\Yang Gradinaru 2014 Single-Cell Phenotyping within Transparent Intact Tissue through whole body clearing.pdf}, + pmid = {25088144} +} + +@article{Marx2014, + title = {Microscopy: Seeing through Tissue}, + volume = {11}, + copyright = {\textcopyright{} 2014 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + shorttitle = {Microscopy}, + doi = {10.1038/nmeth.3181}, + abstract = {Tissue samples scatter light and shut out a deeper gaze. Tissue-clearing agents have changed that, but scientists must consider optimizing the optics when using these methods.}, + language = {en}, + number = {12}, + journal = {Nature Methods}, + author = {Marx, Vivien}, + month = dec, + year = {2014}, + keywords = {Fluorescence imaging,Cellular neuroscience,Technology}, + pages = {1209-1214}, + file = {C:\\Users\\saram\\Zotero\\storage\\UE4PQDRU\\Marx 2014 Microscopy seeing through tissue.pdf} +} + +@article{Marx2016, + title = {Optimizing Probes to Image Cleared Tissue}, + volume = {13}, + copyright = {\textcopyright{} 2016 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + doi = {10.1038/nmeth.3774}, + abstract = {Probes and imaging finesse for a clearer view of tissue.}, + language = {en}, + number = {3}, + journal = {Nature Methods}, + author = {Marx, Vivien}, + month = mar, + year = {2016}, + keywords = {Light-sheet microscopy,Technology,Confocal microscopy,Sensors and probes}, + pages = {205-209}, + file = {C:\\Users\\saram\\Zotero\\storage\\8UP5FREI\\Marx 2016 Optimizing probes to image cleared tissue.pdf} +} + +@article{Azaripour2016, + title = {A Survey of Clearing Techniques for {{3D}} Imaging of Tissues with Special Reference to Connective Tissue}, + volume = {51}, + issn = {0079-6336}, + doi = {10.1016/j.proghi.2016.04.001}, + abstract = {For 3-dimensional (3D) imaging of a tissue, 3 methodological steps are essential and their successful application depends on specific characteristics of the type of tissue. The steps are 1$^\circ$ clearing of the opaque tissue to render it transparent for microscopy, 2$^\circ$ fluorescence labeling of the tissues and 3$^\circ$ 3D imaging. In the past decades, new methodologies were introduced for the clearing steps with their specific advantages and disadvantages. Most clearing techniques have been applied to the central nervous system and other organs that contain relatively low amounts of connective tissue including extracellular matrix. However, tissues that contain large amounts of extracellular matrix such as dermis in skin or gingiva are difficult to clear. The present survey lists methodologies that are available for clearing of tissues for 3D imaging. We report here that the BABB method using a mixture of benzyl alcohol and benzyl benzoate and iDISCO using dibenzylether (DBE) are the most successful methods for clearing connective tissue-rich gingiva and dermis of skin for 3D histochemistry and imaging of fluorescence using light-sheet microscopy.}, + number = {2}, + journal = {Progress in Histochemistry and Cytochemistry}, + author = {Azaripour, Adriano and Lagerweij, Tonny and Scharfbillig, Christina and Jadczak, Anna Elisabeth and Willershausen, Brita and Van Noorden, Cornelis J. F.}, + month = aug, + year = {2016}, + keywords = {3D histochemistry,3D imaging,Gingiva,Skin,Connective tissue,Extracellular matrix,Light-sheet microscopy,Clearing}, + pages = {9-23}, + file = {C:\\Users\\saram\\Zotero\\storage\\C2HTNBU8\\Azaripour 2016 A survey of clearing techniques for 3D imaging of tissues with special reference to connective tissue.pdf} +} + +@article{Epp2015, + title = {Optimization of {{CLARITY}} for {{Clearing Whole}}-{{Brain}} and {{Other Intact Organs}}(1,2,3)}, + volume = {2}, + doi = {10.1523/ENEURO.0022-15.2015}, + abstract = {The development, refinement, and use of techniques that allow high-throughput imaging of whole brains with cellular resolution will help us understand the complex functions of the brain. Such techniques are crucial for the analysis of complete neuronal morphology-anatomical and functional-connectivity, and repeated molecular phenotyping. CLARITY is a recently introduced technique that produces structurally intact, yet optically transparent tissue, which may be labeled and imaged without sectioning. However, the utility of this technique depends on several procedural variables during the process in which the light-scattering lipids in a tissue are replaced by a transparent hydrogel matrix. Here, we systematically varied a number of factors (including temperature, hydrogel composition, and polymerization conditions) to provide an optimized, highly replicable CLARITY procedure for clearing mouse brains. We found that for these preparations optimal tissue clearing requires electrophoresis (and cannot be achieved with passive clearing alone) for 5 d with a combination of 37 and 55$^\circ$C temperature. Although this protocol is optimized for brains, we also show that it can be used to clear and analyze a variety of organs. Brain or other tissue prepared using this protocol is suitable for high-throughput imaging with confocal or single-plane illumination microscopy.}, + language = {eng}, + number = {3}, + journal = {eNeuro}, + author = {Epp, Jonathan R. and Niibori, Yosuke and Liz Hsiang, Hwa-Lin and Mercaldo, Valentina and Deisseroth, Karl and Josselyn, Sheena A. and Frankland, Paul W.}, + year = {2015 May-Jun}, + keywords = {3D imaging,CLARITY,light sheet microscopy,neuron morphology,tissue clearing,whole-brain imaging}, + file = {C:\\Users\\saram\\Zotero\\storage\\W4UHSHM7\\Epp 2015 Optimization of CLARITY for Clearing Whole-Brain and Other Intact Organs.pdf}, + pmid = {26464982}, + pmcid = {PMC4586927} +} + +@article{Susaki2016, + title = {Whole-Body and {{Whole}}-{{Organ Clearing}} and {{Imaging Techniques}} with {{Single}}-{{Cell Resolution}}: {{Toward Organism}}-{{Level Systems Biology}} in {{Mammals}}}, + volume = {23}, + issn = {2451-9456, 2451-9448}, + shorttitle = {Whole-Body and {{Whole}}-{{Organ Clearing}} and {{Imaging Techniques}} with {{Single}}-{{Cell Resolution}}}, + doi = {10.1016/j.chembiol.2015.11.009}, + abstract = {Some of the most powerful methods to obtain organism-level systems biology information +are based on using optical probes and methods to peer into organs, tissues, and organisms. +Susaki and Ueda review the state of the art in the field, focusing on chemistry-based +whole-body and whole-organ clearing techniques.}, + language = {English}, + number = {1}, + journal = {Cell Chemical Biology}, + author = {Susaki, Etsuo A. and Ueda, Hiroki R.}, + month = jan, + year = {2016}, + pages = {137-157}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZGHEIVJX\\Susaki and Ueda 2016 Whole-body and Whole-Organ Clearing and Imaging Techniques with Single-Cell Resolution Toward Organism-Level Systems Biology in Mammals.pdf} +} + +@article{Mormann2017, + title = {Scene-Selective Coding by Single Neurons in the Human Parahippocampal Cortex}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.1608159113}, + abstract = {Imaging, electrophysiological, and lesion studies have shown a relationship between the parahippocampal cortex (PHC) and the processing of spatial scenes. Our present knowledge of PHC, however, is restricted to the macroscopic properties and dynamics of bulk tissue; the behavior and selectivity of single parahippocampal neurons remains largely unknown. In this study, we analyzed responses from 630 parahippocampal neurons in 24 neurosurgical patients during visual stimulus presentation. We found a spatially clustered subpopulation of scene-selective units with an associated event-related field potential. These units form a population code that is more distributed for scenes than for other stimulus categories, and less sparse than elsewhere in the medial temporal lobe. Our electrophysiological findings provide insight into how individual units give rise to the population response observed with functional imaging in the parahippocampal place area.}, + language = {en}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Mormann, Florian and Kornblith, Simon and Cerf, Moran and Ison, Matias J. and Kraskov, Alexander and Tran, Michelle and Knieling, Simeon and Quiroga, Rodrigo Quian and Koch, Christof and Fried, Itzhak}, + month = jan, + year = {2017}, + keywords = {Electrophysiology,single units,scene selectivity,population code}, + pages = {201608159}, + file = {C:\\Users\\saram\\Zotero\\storage\\PWKDCUNX\\Mormann 2017 Scene-selective coding by single neurons in the human parahippocampal cortex.pdf}, + pmid = {28096381} +} + +@article{Chalk, + title = {Neural Oscillations as a Signature of Efficient Coding in the Presence of Synaptic Delays}, + volume = {5}, + issn = {2050-084X}, + doi = {10.7554/eLife.13824}, + abstract = {Cortical networks exhibit 'global oscillations', in which neural spike times are entrained to an underlying oscillatory rhythm, but where individual neurons fire irregularly, on only a fraction of cycles. While the network dynamics underlying global oscillations have been well characterised, their function is debated. Here, we show that such global oscillations are a direct consequence of optimal efficient coding in spiking networks with synaptic delays and noise. To avoid firing unnecessary spikes, neurons need to share information about the network state. Ideally, membrane potentials should be strongly correlated and reflect a 'prediction error' while the spikes themselves are uncorrelated and occur rarely. We show that the most efficient representation is when: (i) spike times are entrained to a global Gamma rhythm (implying a consistent representation of the error); but (ii) few neurons fire on each cycle (implying high efficiency), while (iii) excitation and inhibition are tightly balanced. This suggests that cortical networks exhibiting such dynamics are tuned to achieve a maximally efficient population code., DOI: +http://dx.doi.org/10.7554/eLife.13824.001}, + journal = {eLife}, + author = {Chalk, Matthew and Gutkin, Boris and Den{\`e}ve, Sophie}, + file = {C:\\Users\\saram\\Zotero\\storage\\J6NXPRAU\\Chalk et al. - Neural oscillations as a signature of efficient co.pdf}, + pmid = {27383272}, + pmcid = {PMC4959845} +} + +@article{Axmacher2010, + title = {Cross-Frequency Coupling Supports Multi-Item Working Memory in the Human Hippocampus}, + volume = {107}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0911531107}, + abstract = {Recent findings indicate that the hippocampus supports not only long-term memory encoding but also plays a role in working memory (WM) maintenance of multiple items; however, the neural mechanism underlying multi-item maintenance is still unclear. Theoretical work suggests that multiple items are being maintained by neural assemblies synchronized in the gamma frequency range (25\textendash{}100 Hz) that are locked to consecutive phase ranges of oscillatory activity in the theta frequency range (4\textendash{}8 Hz). Indeed, cross-frequency coupling of the amplitude of high-frequency activity to the phase of slower oscillations has been described both in animals and in humans, but has never been linked to a theoretical model of a cognitive process. Here we used intracranial EEG recordings in human epilepsy patients to test pivotal predictions from theoretical work. First, we show that simultaneous maintenance of multiple items in WM is accompanied by cross-frequency coupling of oscillatory activity in the hippocampus, which is recruited during multi-item WM. Second, maintenance of an increasing number of items is associated with modulation of beta/gamma amplitude with theta band activity of lower frequency, consistent with the idea that longer cycles are required for an increased number of representations by gamma cycles. This effect cannot be explained by a difference in theta or beta/gamma power. Third, we describe how the precision of cross-frequency coupling predicts individual WM performance. These data support the idea that working memory in humans depends on a neural code using phase information.}, + language = {en}, + number = {7}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Axmacher, Nikolai and Henseler, Melanie M. and Jensen, Ole and Weinreich, Ilona and Elger, Christian E. and Fell, Juergen}, + month = feb, + year = {2010}, + pages = {3228-3233}, + file = {C:\\Users\\saram\\Zotero\\storage\\VD7TP57E\\Axmacher et al_2010_Cross-frequency coupling supports multi-item working memory in the human.pdf}, + pmid = {20133762} +} + +@article{Teeter2017, + title = {Generalized {{Leaky Integrate}}-{{And}}-{{Fire Models Classify Multiple Neuron Types}}}, + copyright = {\textcopyright{} 2017, Posted by Cold Spring Harbor Laboratory. The copyright holder for this pre-print is the author. All rights reserved. The material may not be redistributed, re-used or adapted without the author's permission.}, + doi = {10.1101/104703}, + abstract = {In the mammalian neocortex, there is a high diversity of neuronal types. To facilitate construction of system models with multiple cell types, we generate a database of point models associated with the Allen Cell Types Database. We construct a series of generalized integrate-and-fire (GLIF) models of increasing complexity aiming to reproduce the spiking behaviors of the recorded neurons. We test the performance of these GLIF models on data from 771 neurons from 14 transgenic lines, with increasing model performance for more complex models. To answer how complex a model needs to be to reproduce the number of electrophysiological cell types, we perform unsupervised clustering on the parameters extracted from these models. The number of clusters is smaller for individual model types, but when combining all GLIF parameters 18 clusters are obtained, while 11 clusters are obtained using 16 electrophysiological features. Therefore, these low dimensional models have the capacity to characterize the diversity of cell types without the need for a priori defined features.}, + language = {en}, + journal = {bioRxiv}, + author = {Teeter, Corinne and Iyer, Ramakrishnan and Menon, Vilas and Gouwens, Nathan and Feng, David and Berg, Jim and Cain, Nicholas and Koch, Christof and Mihalas, Stefan}, + month = jan, + year = {2017}, + pages = {104703}, + file = {C:\\Users\\saram\\Zotero\\storage\\AHTXK27V\\Teeter et al_2017_Generalized Leaky Integrate-And-Fire Models Classify Multiple Neuron Types.pdf} +} + +@article{Shimamoto2013, + title = {Subthalamic {{Nucleus Neurons Are Synchronized}} to {{Primary Motor Cortex Local Field Potentials}} in {{Parkinson}}'s {{Disease}}}, + volume = {33}, + copyright = {Copyright \textcopyright{} 2013 the authors 0270-6474/13/337220-14\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.4676-12.2013}, + abstract = {In Parkinson's disease (PD), striatal dopamine denervation results in a cascade of abnormalities in the single-unit activity of downstream basal ganglia nuclei that include increased firing rate, altered firing patterns, and increased oscillatory activity. However, the effects of these abnormalities on cortical function are poorly understood. Here, in humans undergoing deep brain stimulator implantation surgery, we use the novel technique of subdural electrocorticography in combination with subthalamic nucleus (STN) single-unit recording to study basal ganglia\textendash{}cortex interactions at the millisecond time scale. We show that in patients with PD, STN spiking is synchronized with primary motor cortex (M1) local field potentials in two distinct patterns: first, STN spikes are phase-synchronized with M1 rhythms in the theta, alpha, or beta (4\textendash{}30 Hz) bands. Second, STN spikes are synchronized with M1 gamma activity over a broad spectral range (50\textendash{}200 Hz). The amplitude of STN spike-synchronized gamma activity in M1 is itself rhythmically modulated by the phase of a lower-frequency rhythm (phase-amplitude coupling), such that ``waves'' of phase-synchronized gamma activity precede the occurrence of STN spikes. We show the disease specificity of these phenomena in PD, by comparison with STN-M1 paired recordings performed in a group of patients with a different disorder, primary craniocervical dystonia. Our findings support a model of the basal ganglia-thalamocortical loop in PD in which gamma activity in primary motor cortex, modulated by the phase of low-frequency rhythms, drives STN unit discharge.}, + language = {en}, + number = {17}, + journal = {Journal of Neuroscience}, + author = {Shimamoto, Shoichi A. and Ryapolova-Webb, Elena S. and Ostrem, Jill L. and Galifianakis, Nicholas B. and Miller, Kai J. and Starr, Philip A.}, + month = apr, + year = {2013}, + pages = {7220-7233}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z7E2IIXE\\Shimamoto et al_2013_Subthalamic Nucleus Neurons Are Synchronized to Primary Motor Cortex Local.pdf}, + pmid = {23616531} +} + +@article{Lisman1995, + title = {Storage of 7 +/- 2 Short-Term Memories in Oscillatory Subcycles}, + volume = {267}, + copyright = {\textcopyright{} 1995}, + issn = {0036-8075, 1095-9203}, + doi = {10.1126/science.7878473}, + abstract = {Psychophysical measurements indicate that human subjects can store approximately seven short-term memories. Physiological studies suggest that short-term memories are stored by patterns of neuronal activity. Here it is shown that activity patterns associated with multiple memories can be stored in a single neural network that exhibits nested oscillations similar to those recorded from the brain. Each memory is stored in a different high-frequency ("40 hertz") subcycle of a low-frequency oscillation. Memory patterns repeat on each low-frequency (5 to 12 hertz) oscillation, a repetition that relies on activity-dependent changes in membrane excitability rather than reverberatory circuits. This work suggests that brain oscillations are a timing mechanism for controlling the serial processing of short-term memories.}, + language = {en}, + number = {5203}, + journal = {Science}, + author = {Lisman, J. E. and Idiart, M. A.}, + month = mar, + year = {1995}, + pages = {1512-1515}, + file = {C:\\Users\\saram\\Zotero\\storage\\ESTPICE3\\Lisman_Idiart_1995_Storage of 7 +-- 2 short-term memories in oscillatory subcycles.pdf}, + pmid = {7878473} +} + +@article{Bragin1995a, + title = {Gamma (40-100 {{Hz}}) Oscillation in the Hippocampus of the Behaving Rat}, + volume = {15}, + copyright = {\textcopyright{} 1995 by Society for Neuroscience}, + issn = {0270-6474, 1529-2401}, + abstract = {The cellular generation and spatial distribution of gamma frequency (40\textendash{} 100 Hz) activity was examined in the hippocampus of the awake rat. Field potentials and unit activity were recorded by multiple site silicon probes (5- and 16-site shanks) and wire electrode arrays. Gamma waves were highly coherent along the long axis of the dentate hilus, but average coherence decreased rapidly in the CA3 and CA1 directions. Analysis of short epochs revealed large fluctuations in coherence values between the dentate and CA1 gamma waves. Current source density analysis revealed large sinks and sources in the dentate gyrus with spatial distribution similar to the dipoles evoked by stimulation of the perforant path. The frequency changes of gamma and theta waves positively correlated (40\textendash{}100 Hz and 5\textendash{}10 Hz, respectively). Putative interneurons in the dentate gyrus discharged at gamma frequency and were phase-locked to the ascending part of the gamma waves recorded from the hilus. Following bilateral lesion of the entorhinal cortex the power and frequency of hilar gamma activity significantly decreased or disappeared. Instead, a large amplitude but slower gamma pattern (25\textendash{}50 Hz) emerged in the CA3-CA1 network. We suggest that gamma oscillation emerges from an interaction between intrinsic oscillatory properties of interneurons and the network properties of the dentate gyrus. We also hypothesize that under physiological conditions the hilar gamma oscillation may be entrained by the entorhinal rhythm and that gamma oscillation in the CA3-CA1 circuitry is suppressed by either the hilar region or the entorhinal cortex.}, + language = {en}, + number = {1}, + journal = {Journal of Neuroscience}, + author = {Bragin, A. and Jando, G. and Nadasdy, Z. and Hetke, J. and Wise, K. and Buzsaki, G.}, + month = jan, + year = {1995}, + pages = {47-60}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZINI29DJ\\Bragin et al_1995_Gamma (40-100 Hz) oscillation in the hippocampus of the behaving rat.pdf}, + pmid = {7823151} +} + +@article{Bragin1995, + title = {Gamma (40-100 {{Hz}}) Oscillation in the Hippocampus of the Behaving Rat}, + volume = {15}, + copyright = {\textcopyright{} 1995 by Society for Neuroscience}, + issn = {0270-6474, 1529-2401}, + abstract = {The cellular generation and spatial distribution of gamma frequency (40\textendash{} 100 Hz) activity was examined in the hippocampus of the awake rat. Field potentials and unit activity were recorded by multiple site silicon probes (5- and 16-site shanks) and wire electrode arrays. Gamma waves were highly coherent along the long axis of the dentate hilus, but average coherence decreased rapidly in the CA3 and CA1 directions. Analysis of short epochs revealed large fluctuations in coherence values between the dentate and CA1 gamma waves. Current source density analysis revealed large sinks and sources in the dentate gyrus with spatial distribution similar to the dipoles evoked by stimulation of the perforant path. The frequency changes of gamma and theta waves positively correlated (40\textendash{}100 Hz and 5\textendash{}10 Hz, respectively). Putative interneurons in the dentate gyrus discharged at gamma frequency and were phase-locked to the ascending part of the gamma waves recorded from the hilus. Following bilateral lesion of the entorhinal cortex the power and frequency of hilar gamma activity significantly decreased or disappeared. Instead, a large amplitude but slower gamma pattern (25\textendash{}50 Hz) emerged in the CA3-CA1 network. We suggest that gamma oscillation emerges from an interaction between intrinsic oscillatory properties of interneurons and the network properties of the dentate gyrus. We also hypothesize that under physiological conditions the hilar gamma oscillation may be entrained by the entorhinal rhythm and that gamma oscillation in the CA3-CA1 circuitry is suppressed by either the hilar region or the entorhinal cortex.}, + language = {en}, + number = {1}, + journal = {Journal of Neuroscience}, + author = {Bragin, A. and Jando, G. and Nadasdy, Z. and Hetke, J. and Wise, K. and Buzsaki, G.}, + month = jan, + year = {1995}, + pages = {47-60}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZJIHTAGT\\Bragin et al_1995_Gamma (40-100 Hz) oscillation in the hippocampus of the behaving rat.pdf}, + pmid = {7823151} +} + +@article{Lopez-Azcarate2010, + title = {Coupling between {{Beta}} and {{High}}-{{Frequency Activity}} in the {{Human Subthalamic Nucleus May Be}} a {{Pathophysiological Mechanism}} in {{Parkinson}}'s {{Disease}}}, + volume = {30}, + copyright = {Copyright \textcopyright{} 2010 the authors 0270-6474/10/306667-11\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.5459-09.2010}, + abstract = {In Parkinson's disease (PD), the oscillatory activity recorded from the basal ganglia shows dopamine-dependent changes. In the ``off'' parkinsonian motor state, there is prominent activity in the beta band (12\textendash{}30 Hz) that is mostly attenuated after dopaminergic therapy (``on'' medication state). The on state is also characterized by activity in the gamma (60\textendash{}80 Hz) and high-frequency (300 Hz) bands that is modulated by movement. We recorded local field potentials from a group of 15 PD patients (three females) treated with bilateral deep brain stimulation of the subthalamic nucleus, using a high sampling rate (2 kHz) and filters suitable to study high-frequency activity (0.3\textendash{}1000 Hz). We observed high-frequency oscillations (HFOs) in both the off and on motor states. In the off state, the amplitude of the HFOs was coupled to the phase of the abnormal beta activity. The beta-coupled HFOs showed little or even negative movement-related changes in amplitude. Moreover, the degree of movement-related modulation of the HFOs correlated negatively with the rigidity/bradykinesia scores. In the on motor state, the HFOs were liberated from this beta coupling, and they displayed marked movement-related amplitude modulation. Cross-frequency interactions between the phase of slow activities and the amplitude of fast frequencies have been attributed an important role in information processing in cortical structures. Our findings suggest that nonlinear coupling between frequencies may not only be a physiological mechanism (as shown previously) but also that it may participate in the pathophysiology of parkinsonism.}, + language = {en}, + number = {19}, + journal = {Journal of Neuroscience}, + author = {L{\'o}pez-Azc{\'a}rate, Jon and Tainta, Mikel and Rodr{\'\i}guez-Oroz, Mar{\'\i}a C. and Valencia, Miguel and Gonz{\'a}lez, Rafael and Guridi, Jorge and Iriarte, Jorge and Obeso, Jos{\'e} A. and Artieda, Julio and Alegre, Manuel}, + month = may, + year = {2010}, + pages = {6667-6677}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZW3I29AX\\López-Azcárate et al_2010_Coupling between Beta and High-Frequency Activity in the Human Subthalamic.pdf}, + pmid = {20463229} +} + +@article{Tort2009, + title = {Theta\textendash{}gamma Coupling Increases during the Learning of Item\textendash{}context Associations}, + volume = {106}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0911331106}, + abstract = {Phase-amplitude cross-frequency coupling (CFC) between theta (4\textendash{}12 Hz) and gamma (30\textendash{}100 Hz) oscillations occurs frequently in the hippocampus. However, it still remains unclear whether theta\textendash{}gamma coupling has any functional significance. To address this issue, we studied CFC in local field potential oscillations recorded from the CA3 region of the dorsal hippocampus of rats as they learned to associate items with their spatial context. During the course of learning, the amplitude of the low gamma subband (30\textendash{}60 Hz) became more strongly modulated by theta phase in CA3, and higher levels of theta\textendash{}gamma modulation were maintained throughout overtraining sessions. Furthermore, the strength of theta\textendash{}gamma coupling was directly correlated with the increase in performance accuracy during learning sessions. These findings suggest a role for hippocampal theta\textendash{}gamma coupling in memory recall.}, + language = {en}, + number = {49}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Tort, Adriano B. L. and Komorowski, Robert W. and Manns, Joseph R. and Kopell, Nancy J. and Eichenbaum, Howard}, + month = aug, + year = {2009}, + keywords = {local field potential,brain rhythms,associative memory}, + pages = {20942-20947}, + file = {C:\\Users\\saram\\Zotero\\storage\\F5924JSX\\Tort et al_2009_Theta–gamma coupling increases during the learning of item–context associations.pdf}, + pmid = {19934062} +} + +@article{Cohen2017, + title = {Multivariate Cross-Frequency Coupling via Generalized Eigendecomposition}, + volume = {6}, + copyright = {\textcopyright{} 2017, Cohen et al. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.}, + issn = {2050-084X}, + doi = {10.7554/eLife.21792}, + abstract = {A novel methodological framework for cross-frequency coupling and spike-field coherence in multichannel (LFP, EEG, MEG) electrophysiology data reveals new manifestations of coupling dynamics.}, + language = {en}, + journal = {eLife}, + author = {Cohen, Michael X.}, + month = jan, + year = {2017}, + keywords = {dimensionality reduction,Mouse,Cross-frequency coupling,Rat,Rhesus macaque,neural oscillations,source separation,spike-field coherence,human}, + pages = {e21792}, + file = {C:\\Users\\saram\\Zotero\\storage\\3BDPRITP\\elife-21792-fig1-figsupp3-v1.jpg;C:\\Users\\saram\\Zotero\\storage\\4XKA5FV6\\elife-21792-fig1-figsupp1-v1.jpg;C:\\Users\\saram\\Zotero\\storage\\F42Q9A58\\elife-21792-fig10-figsupp1-v1.jpg;C:\\Users\\saram\\Zotero\\storage\\F7MGUH33\\elife-21792-fig5-figsupp1-v1.jpg;C:\\Users\\saram\\Zotero\\storage\\JQ4VTN9C\\elife-21792-fig1-figsupp2-v1.jpg;C:\\Users\\saram\\Zotero\\storage\\NFRTIUEQ\\elife-21792-fig3-figsupp1-v1.jpg;C:\\Users\\saram\\Zotero\\storage\\R7GZIQB7\\Cohen_2017_Multivariate cross-frequency coupling via generalized eigendecomposition.pdf}, + pmid = {28117662} +} + +@article{Kramer2008, + title = {Sharp Edge Artifacts and Spurious Coupling in {{EEG}} Frequency Comodulation Measures}, + volume = {170}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2008.01.020}, + abstract = {Recent electroencephalogram (EEG), electrocorticogram (ECoG), and local field potential (LFP) observations suggest that distinct frequency bands interact. Numerous measures have been proposed to analyze such interactions, including the amplitude envelope modulation of high frequency activity by the phase or signal of low frequency activity. In this short communication, we describe how abrupt increases or decreases in voltage data may produce spurious coupling in these measures and suggest techniques to detect these effects.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Kramer, Mark A. and Tort, Adriano B. L. and Kopell, Nancy J.}, + month = may, + year = {2008}, + keywords = {Frequency comodulation,Nesting,Hilbert transform,gamma,theta}, + pages = {352-357}, + file = {C:\\Users\\saram\\Zotero\\storage\\4S7RF3Z9\\Kramer 2008-Sharp edge artifacts and spurious coupling in EEG frequency comodulation measures.pdf} +} + +@article{Shirvalkar2010, + title = {Bidirectional Changes to Hippocampal Theta\textendash{}gamma Comodulation Predict Memory for Recent Spatial Episodes}, + volume = {107}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0911184107}, + abstract = {Episodic memory requires the hippocampus, which is thought to bind cortical inputs into conjunctive codes. Local field potentials (LFPs) reflect dendritic and synaptic oscillations whose temporal structure may coordinate cellular mechanisms of plasticity and memory. We now report that single-trial spatial memory performance in rats was predicted by the power comodulation of theta (4\textendash{}10 Hz) and low gamma (30\textendash{}50 Hz) rhythms in the hippocampus. Theta\textendash{}gamma comodulation (TGC) was prominent during successful memory retrieval but was weak when memory failed or was unavailable during spatial exploration in sample trials. Muscimol infusion into medial septum reduced the probability of TGC and successful memory retrieval. In contrast, patterned electrical stimulation of the fimbria-fornix increased TGC in amnestic animals and partially rescued memory performance in the water maze. The results suggest that TGC accompanies memory retrieval in the hippocampus and that patterned brain stimulation may inform therapeutic strategies for cognitive disorders.}, + language = {en}, + number = {15}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Shirvalkar, Prasad R. and Rapp, Peter R. and Shapiro, Matthew L.}, + month = apr, + year = {2010}, + keywords = {medial septum,theta-burst stimulation,fimbria-fornix,retrieval,hippocampus}, + pages = {7054-7059}, + file = {C:\\Users\\saram\\Zotero\\storage\\6ANGVFB6\\Shirvalkar 2010 Bidirectional changes to hippocampal theta–gamma comodulation predict memory.pdf}, + pmid = {20351262} +} + +@article{Pal1997, + title = {Cluster Validation Using Graph Theoretic Concepts}, + volume = {30}, + issn = {00313203}, + doi = {10.1016/S0031-3203(96)00127-6}, + language = {en}, + number = {6}, + journal = {Pattern Recognition}, + author = {Pal, N.R. and Biswas, J.}, + month = jun, + year = {1997}, + pages = {847-857}, + file = {C:\\Users\\saram\\Zotero\\storage\\6NVDUBWI\\Pal_Biswas 1997 Cluster validation using graph theoretic concepts.pdf} +} + +@misc{zotero-372, + title = {Some {{New Indexes Of Cluster Validity}} - {{Systems}}, {{Man}} and {{Cybernetics}}, {{Part B}}, {{IEEE Transactions}} on - Ieee\_{{Bezdek}}\_00678624\_cluster Validity.Pdf}, + howpublished = {http://ece.ut.ac.ir/classpages/F83/Fuzzysets/Papers/Clustering/ieee\_Bezdek\_00678624\_cluster\%20validity.pdf}, + file = {C:\\Users\\saram\\Zotero\\storage\\Q2XSIRVT\\Some New Indexes Of Cluster Validity - Systems, Man and Cybernetics, Part B,.pdf} +} + +@article{Dickey2009a, + title = {Single-Unit Stability Using Chronically Implanted Multielectrode Arrays}, + volume = {102}, + issn = {0022-3077}, + doi = {10.1152/jn.90920.2008}, + abstract = {The use of chronic intracortical multielectrode arrays has become increasingly prevalent in neurophysiological experiments. However, it is not obvious whether neuronal signals obtained over multiple recording sessions come from the same or different neurons. Here, we develop a criterion to assess single-unit stability by measuring the similarity of 1) average spike waveforms and 2) interspike interval histograms (ISIHs). Neuronal activity was recorded from four Utah arrays implanted in primary motor and premotor cortices in three rhesus macaque monkeys during 10 recording sessions over a 15- to 17-day period. A unit was defined as stable through a given day if the stability criterion was satisfied on all recordings leading up to that day. We found that 57\% of the original units were stable through 7 days, 43\% were stable through 10 days, and 39\% were stable through 15 days. Moreover, stable units were more likely to remain stable in subsequent recording sessions (i.e., 89\% of the neurons that were stable through four sessions remained stable on the fifth). Using both waveform and ISIH data instead of just waveforms improved performance by reducing the number of false positives. We also demonstrate that this method can be used to track neurons across days, even during adaptation to a visuomotor rotation. Identifying a stable subset of neurons should allow the study of long-term learning effects across days and has practical implications for pooling of behavioral data across days and for increasing the effectiveness of brain-machine interfaces.}, + language = {eng}, + number = {2}, + journal = {Journal of Neurophysiology}, + author = {Dickey, Adam S. and Suminski, Aaron and Amit, Yali and Hatsopoulos, Nicholas G.}, + month = aug, + year = {2009}, + keywords = {Neurons,Animals,Macaca mulatta,Time Factors,Electrophysiology,Algorithms,Adaptation; Psychological,Electrodes; Implanted,Frontal Lobe,Motor Activity,Motor Cortex,Action potentials}, + pages = {1331-1339}, + file = {C:\\Users\\saram\\Zotero\\storage\\WS4NTJPM\\Dickey et al_2009_Single-unit stability using chronically implanted multielectrode arrays.pdf}, + pmid = {19535480}, + pmcid = {PMC2724357} +} + +@article{Telenczuk2017, + title = {Local Field Potentials Primarily Reflect Inhibitory Neuron Activity in Human and Monkey Cortex}, + volume = {7}, + copyright = {\textcopyright{} 2017 Macmillan Publishers Limited, part of Springer Nature. All rights reserved.}, + issn = {2045-2322}, + doi = {10.1038/srep40211}, + abstract = {The local field potential (LFP) is generated by large populations of neurons, but unitary contribution of spiking neurons to LFP is not well characterised.}, + language = {en}, + journal = {Scientific Reports}, + author = {Tele{\'n}czuk, Bartosz and Dehghani, Nima and Quyen, Michel Le Van and Cash, Sydney S. and Halgren, Eric and Hatsopoulos, Nicholas G. and Destexhe, Alain}, + month = jan, + year = {2017}, + keywords = {citing Dickey}, + pages = {40211}, + file = {C:\\Users\\saram\\Zotero\\storage\\NA4SC8NU\\Telenczuk 2017 Local field potentials primarily reflect inhibitory neuron activity in human.pdf;C:\\Users\\saram\\Zotero\\storage\\QFWUDWAS\\Teleńczuk et al_2017_Local field potentials primarily reflect inhibitory neuron activity in human.pdf} +} + +@article{Williamson2016, + title = {Scaling {{Properties}} of {{Dimensionality Reduction}} for {{Neural Populations}} and {{Network Models}}}, + volume = {12}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1005141}, + abstract = {Author Summary We seek to understand how billions of neurons in the brain work together to give rise to everyday brain function. In most current experimental settings, we can only record from tens of neurons for a few hours at a time. A major question in systems neuroscience is whether our interpretation of how neurons interact would change if we monitor orders of magnitude more neurons and for substantially more time. In this study, we use realistic networks of model neurons, which allow us to analyze the activity from as many model neurons as we want for as long as we want. For these models, we found that we can identify the salient interactions among neurons and interpret their activity meaningfully within the range of neurons and recording time available in current experiments. Furthermore, we studied how the neural activity from the models reflects how the neurons are connected. These results help to guide the interpretation of analyses using populations of neurons in the context of the larger network to understand brain function.}, + number = {12}, + journal = {PLOS Computational Biology}, + author = {Williamson, Ryan C. and Cowley, Benjamin R. and Litwin-Kumar, Ashok and Doiron, Brent and Kohn, Adam and Smith, Matthew A. and Yu, Byron M.}, + month = dec, + year = {2016}, + keywords = {Neurons,Neural networks,Network analysis,Single neuron function,Covariance,Macaque,Eigenvectors,Action potentials}, + pages = {e1005141}, + file = {C:\\Users\\saram\\Zotero\\storage\\RWU2GCB9\\Williamson et al. 2016 Scaling Properties of Dimensionality Reduction for Neural Populations and Network Models.pdf} +} + +@article{Noda2014, + title = {Amplitude and Phase-Locking Adaptation of Neural Oscillation in the Rat Auditory Cortex in Response to Tone Sequence}, + volume = {79}, + issn = {0168-0102}, + doi = {10.1016/j.neures.2013.11.002}, + abstract = {Sensory adaptation allows stimulus sensitivity to be dynamically modulated according to stimulus statistics and plays pivotal roles in efficient neural computation. Here, it is hypothesized that in the auditory cortex, phase locking of local field potentials (LFPs) to test tones exhibits an adaptation property, i.e., phase-locking adaptation, which is distinct from the amplitude adaptation of oscillatory components. Series of alternating tone sequences were applied in which the inter-tone interval (ITI) and frequency difference ($\Delta$F) between successive tones were varied. Then, adaptation was characterized by the temporal evolution of the band-specific amplitude and phase locking evoked by the test tones. Differences as well as similarities were revealed between amplitude and phase-locking adaptations. First, both amplitude and phase-locking adaptations were enhanced by short ITIs and small $\Delta$Fs. Second, the amplitude adaptation was more effective in a higher frequency band, while the phase-locking adaptation was more effective in a lower frequency band. Third, as with the adaptation of multiunit activities (MUAs), the amplitude adaptation occurred mainly within a second, while the phase-locking showed multi-second adaptation specifically in the gamma band for short ITI and small $\Delta$F conditions. Fourth, the amplitude adaptation and phase-locking adaptation were co-modulated in a within-second time scale, while this co-modulation was not observed in a multi-second time scale. These findings suggest that the amplitude and phase-locking adaptations have different mechanisms and functions. The phase-locking adaptation is likely to play more crucial roles in encoding a temporal structure of stimulus than the amplitude adaptation.}, + journal = {Neuroscience Research}, + author = {Noda, Takahiro and Kanzaki, Ryohei and Takahashi, Hirokazu}, + month = feb, + year = {2014}, + keywords = {local field potential,Rat,Auditory cortex,Inter-trial phase coherence,Multi-second adaptation,Auditory stream segregation}, + pages = {52-60}, + file = {C:\\Users\\saram\\Zotero\\storage\\FI4ZE5JM\\Noda et al. 2014 Amplitude and phase-locking adaptation of neural oscillation in the rat auditory cortex in response to tone sequence.pdf} +} + +@article{Gratiy2017, + title = {From {{Maxwell}}'s Equations to the Theory of Current-Source Density Analysis}, + issn = {1460-9568}, + doi = {10.1111/ejn.13534}, + abstract = {Despite the widespread use of current-source density (CSD) analysis of extracellular potential recordings in the brain, the physical mechanisms responsible for the generation of the signal are still debated. While the extracellular potential is thought to be exclusively generated by the transmembrane currents, recent studies suggest that extracellular diffusive, advective and displacement currents\textemdash{}traditionally neglected\textemdash{}may also contribute considerably towards extracellular potential recordings. Here, we first justify the application of the electro-quasistatic approximation of Maxwell's equations to describe the electromagnetic field of physiological origin. Subsequently, we perform spatial averaging of currents in neural tissue to arrive at the notion of the CSD and derive an equation relating it to the extracellular potential. We show that, in general, the extracellular potential is determined by the CSD of membrane currents as well as the gradients of the putative extracellular diffusion current. The diffusion current can contribute significantly to the extracellular potential at frequencies less than a few Hertz; in which case it must be subtracted to obtain correct CSD estimates. We also show that the advective and displacement currents in the extracellular space are negligible for physiological frequencies while, within cellular membrane, displacement current contributes toward the CSD as a capacitive current. Taken together, these findings elucidate the relationship between electric currents and the extracellular potential in brain tissue and form the necessary foundation for the analysis of extracellular recordings. This article is protected by copyright. All rights reserved.}, + language = {en}, + journal = {European Journal of Neuroscience}, + author = {Gratiy, Sergey L. and Halnes, Geir and Denman, Daniel and Hawrylycz, Michael J. and Koch, Christof and Einevoll, Gaute T. and Anastassiou, Costas A.}, + month = feb, + year = {2017}, + keywords = {Electrical stimulation,electrical conductivity,extracellular recordings,field potentials,current transfer}, + pages = {n/a-n/a}, + file = {C:\\Users\\saram\\Zotero\\storage\\HIVG5CII\\Gratiy et al. 2017 From Maxwell's equations to the theory of current-source density analysis.pdf} +} + +@article{Noda2017, + title = {Stimulus {{Phase Locking}} of {{Cortical Oscillations}} for {{Rhythmic Tone Sequences}} in {{Rats}}}, + volume = {11}, + issn = {1662-5110}, + doi = {10.3389/fncir.2017.00002}, + abstract = {Humans can detect regular patterns very rapidly (i.e., within a few cycles) without any special attention to the acoustic environment. This suggests that human sensory systems are equipped with a powerful mechanism for the automatic prediction of forthcoming stimuli in order to detect regularity. It has recently been hypothesized that the neural basis of sensory predictions exist not only for what happens (predictive coding), but also for when a particular stimulus occurs (predictive timing). We here hypothesized that the phase of neural oscillations is critical in predictive timing and that these oscillations are modulated in a band-specific manner when acoustic patterns become predictable, i.e., regular. A high-density microelectrode array (10 x 10 within 4 x 4 mm2) characterized spatial patterns of band-specific oscillations when a random tone sequence was switched to a regular tone sequence. Increasing the regularity of tone sequence enhanced the phase locking in a band-specific manner, irrespective of the type of regular sound pattern: gamma-band phase locking increased immediately after the transition from random to regular sequences, while beta-band phase locking gradually evolved with time after the transition. The amplitude of the tone-evoked response, on the other hand, increased with frequency separation with respect to the prior tone, suggesting that the evoked-response amplitude encodes the sequence information on a local scale, i.e., the local order of tones. In terms of a spatial pattern, the phase-locking modulation spread widely over the auditory cortex, while the amplitude modulation was locally confined around the activation foci. Thus, our data suggest that oscillatory phase, rather than amplitude, plays a more important role in neuronal detection of tone sequence regularity, which is closely related to predictive timing. Furthermore, their band-specific contributions may support the recent theories that the gamma oscillations encode bottom-up prediction error, whereas the beta oscillations are involved in top-down prediction.}, + language = {English}, + journal = {Frontiers in Neural Circuits}, + author = {Noda, Takahiro and Amemiya, Tomoki and Shiramatsu, Tomoyo I. and Takahashi, Hirokazu}, + year = {2017}, + keywords = {Rat,Auditory cortex,Regular tone sequences,high-density microelectrode array,oscillatory phase locking}, + file = {C:\\Users\\saram\\Zotero\\storage\\FF7MGFZ5\\Noda et al_2017_Stimulus Phase Locking of Cortical Oscillations for Rhythmic Tone Sequences in.pdf} +} + +@inproceedings{Havens2008, + title = {Dunn's Cluster Validity Index as a Contrast Measure of {{VAT}} Images}, + doi = {10.1109/ICPR.2008.4761772}, + abstract = {This paper addresses the relationship between the visual assessment of cluster tendency (VAT) algorithm and Dunnpsilas cluster validity index. We present an analytical comparison in conjunction with numerical examples to demonstrate that the effectiveness of VAT in showing cluster tendency is directly related to Dunnpsilas index. This analysis is important to understanding the underlying theory of VAT and VAT-based algorithms and, more generally, other algorithms that are based on, or similar to, Primpsilas Algorithm.}, + booktitle = {2008 19th {{International Conference}} on {{Pattern Recognition}}}, + author = {Havens, T. C. and Bezdek, J. C. and Keller, J. M. and Popescu, M.}, + month = dec, + year = {2008}, + keywords = {image processing,pattern clustering,Dunns cluster validity index,VAT image,visual assessment of cluster tendency,Algorithm design and analysis,Clustering algorithms,Couplings,Electric variables measurement,Feedback,Matrix converters,Partitioning algorithms,Pixel}, + pages = {1-4}, + file = {C:\\Users\\saram\\Zotero\\storage\\AF45H87M\\Havens 2008 Dunn's cluster validity index as a contrast measure of VAT images.pdf} +} + +@article{Kumar2016, + title = {A {{Hybrid Approach}} to {{Clustering}} in {{Big Data}}}, + volume = {46}, + issn = {2168-2267}, + doi = {10.1109/TCYB.2015.2477416}, + abstract = {Clustering of big data has received much attention recently. In this paper, we present a new clusiVAT algorithm and compare it with four other popular data clustering algorithms. Three of the four comparison methods are based on the well known, classical batch k-means model. Specifically, we use k-means, single pass k-means, online k-means, and clustering using representatives (CURE) for numerical comparisons. clusiVAT is based on sampling the data, imaging the reordered distance matrix to estimate the number of clusters in the data visually, clustering the samples using a relative of single linkage (SL), and then noniteratively extending the labels to the rest of the data-set using the nearest prototype rule. Previous work has established that clusiVAT produces true SL clusters in compact-separated data. We have performed experiments to show that k-means and its modified algorithms suffer from initialization issues that cause many failures. On the other hand, clusiVAT needs no initialization, and almost always finds partitions that accurately match ground truth labels in labeled data. CURE also finds SL type partitions but is much slower than the other four algorithms. In our experiments, clusiVAT proves to be the fastest and most accurate of the five algorithms; e.g., it recovers 97\% of the ground truth labels in the real world KDD-99 cup data (4292637 samples in 41 dimensions) in 76 s.}, + number = {10}, + journal = {IEEE Transactions on Cybernetics}, + author = {Kumar, D. and Bezdek, J. C. and Palaniswami, M. and Rajasegarar, S. and Leckie, C. and Havens, T. C.}, + month = oct, + year = {2016}, + keywords = {pattern clustering,Algorithm design and analysis,Clustering algorithms,Partitioning algorithms,Big Data,visual databases,CURE,SL type partitioning,batch k-means model,clusiVAT algorithm,clustering-using representatives,data clustering algorithm,data sampling,distance matrix,ground truth labels,hybrid approach,nearest prototype rule,noniterative data labelling,online-k-means,real world KDD-99 cup data,single linkage,single-pass k-means,Cybernetics,Image edge detection,Indexes,Big data cluster analysis,Internet of things,cluster tendency assessment,data analytics}, + pages = {2372-2385} +} + +@article{Fahiman2016, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {1608.01072}, + primaryClass = {cs}, + title = {Fuzzy C-{{Shape}}: {{A}} New Algorithm for Clustering Finite Time Series Waveforms}, + shorttitle = {Fuzzy C-{{Shape}}}, + abstract = {The existence of large volumes of time series data in many applications has motivated data miners to investigate specialized methods for mining time series data. Clustering is a popular data mining method due to its powerful exploratory nature and its usefulness as a preprocessing step for other data mining techniques. This article develops two novel clustering algorithms for time series data that are extensions of a crisp c-shapes algorithm. The two new algorithms are heuristic derivatives of fuzzy c-means (FCM). Fuzzy c-Shapes plus (FCS+) replaces the inner product norm in the FCM model with a shape-based distance function. Fuzzy c-Shapes double plus (FCS++) uses the shape-based distance, and also replaces the FCM cluster centers with shape-extracted prototypes. Numerical experiments on 48 real time series data sets show that the two new algorithms outperform state-of-the-art shape-based clustering algorithms in terms of accuracy and efficiency. Four external cluster validity indices (the Rand index, Adjusted Rand Index, Variation of Information, and Normalized Mutual Information) are used to match candidate partitions generated by each of the studied algorithms. All four indices agree that for these finite waveform data sets, FCS++ gives a small improvement over FCS+, and in turn, FCS+ is better than the original crisp c-shapes method. Finally, we apply two tests of statistical significance to the three algorithms. The Wilcoxon and Friedman statistics both rank the three algorithms in exactly the same way as the four cluster validity indices.}, + journal = {arXiv:1608.01072 [cs]}, + author = {Fahiman, Fateme and Bezdek, Jame C. and Erfani, Sarah M. and Leckie, Christopher and Palaniswami, Marimuthu}, + month = aug, + year = {2016}, + keywords = {Computer Science - Learning}, + file = {C:\\Users\\saram\\Zotero\\storage\\G2RJVH8Q\\Fahiman et al. 2016 Fuzzy c-Shape A new algorithm for clustering finite time series waveforms.pdf} +} + +@article{Shapcott2016, + title = {Correlated Activity of Cortical Neurons Survives Extensive Removal of Feedforward Sensory Input}, + volume = {6}, + copyright = {\textcopyright{} 2017 Macmillan Publishers Limited, part of Springer Nature. All rights reserved.}, + issn = {2045-2322}, + doi = {10.1038/srep34886}, + abstract = {A fundamental property of brain function is that the spiking activity of cortical neurons is variable and that some of this variability is correlated between neurons.}, + language = {en}, + journal = {Scientific Reports}, + author = {Shapcott, Katharine A. and Schmiedt, Joscha T. and Saunders, Richard C. and Maier, Alexander and Leopold, David A. and Schmid, Michael C.}, + month = oct, + year = {2016}, + keywords = {Klusters,Lynn Hazan}, + pages = {34886}, + file = {C:\\Users\\saram\\Zotero\\storage\\UDM3I2DF\\srep34886.pdf} +} + +@inproceedings{Choi2005, + title = {A {{New Overlapping Resolution Method}} for {{Multi}}-Channel {{Spike Sorting}}}, + doi = {10.1109/CNE.2005.1419717}, + abstract = {Overlapping is one of the serious problems in the spike sorting of multi-channel recordings. Although techniques to resolve this problem have been developed, there still remains much room for improvement. We present in this paper a new overlapping resolution method which is simple and can easily be incorporated in the existing spike sorting systems. The proposed method combines spike sorting algorithms with the linear projections, such that each projection eliminates single-neuronal activity. Simulations show that our method successfully resolves overlapping in real neural data}, + booktitle = {Conference {{Proceedings}}. 2nd {{International IEEE EMBS Conference}} on {{Neural Engineering}}, 2005.}, + author = {Choi, Joon Hwan and Kim, Dohoon and Kim, Taejeong}, + month = mar, + year = {2005}, + keywords = {Neurons,medical signal processing,neurophysiology,Electrodes,shape,source separation,bioelectric phenomena,signal resolution,multi-channel spike sorting,overlapping resolution method,single-neuronal activity elimination,Blind source separation,Feature extraction,Independent component analysis,Sorting,principal component analysis}, + pages = {683-686}, + file = {C:\\Users\\saram\\Zotero\\storage\\BU488QXS\\Choi et al. 2005 A New Overlapping Resolution Method for Multi-channel Spike Sorting.pdf} +} + +@article{Hazan2006, + title = {Klusters, {{NeuroScope}}, {{NDManager}}: {{A}} Free Software Suite for Neurophysiological Data Processing and Visualization}, + volume = {155}, + issn = {0165-0270}, + shorttitle = {Klusters, {{NeuroScope}}, {{NDManager}}}, + doi = {10.1016/j.jneumeth.2006.01.017}, + abstract = {Recent technological advances now allow for simultaneous recording of large populations of anatomically distributed neurons in behaving animals. The free software package described here was designed to help neurophysiologists process and view recorded data in an efficient and user-friendly manner. This package consists of several well-integrated applications, including NeuroScope (http://neuroscope.sourceforge.net), an advanced viewer for electrophysiological and behavioral data with limited editing capabilities, Klusters (http://klusters.sourceforge.net), a graphical cluster cutting application for manual and semi-automatic spike sorting, NDManager (http://ndmanager.sourceforge.net), an experimental parameter and data processing manager. All of these programs are distributed under the GNU General Public License (GPL, see http://www.gnu.org/licenses/gpl.html), which gives its users legal permission to copy, distribute and/or modify the software. Also included are extensive user manuals and sample data, as well as source code and documentation.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Hazan, Lynn and Zugaro, Micha{\"e}l and Buzs{\'a}ki, Gy{\"o}rgy}, + month = sep, + year = {2006}, + keywords = {Spike sorting,Cluster cutting,Data mining,Unit activity,Local field potentials}, + pages = {207-216}, + file = {C:\\Users\\saram\\Zotero\\storage\\AATHJQ8E\\Hazan et al. 2006 Klusters, NeuroScope, NDManager A free software suite for neurophysiological data processing and visualization.pdf} +} + +@article{Friston2011, + title = {Functional and {{Effective Connectivity}}: {{A Review}}}, + volume = {1}, + issn = {2158-0014}, + shorttitle = {Functional and {{Effective Connectivity}}}, + doi = {10.1089/brain.2011.0008}, + abstract = {Over the past 20 years, neuroimaging has become a predominant technique in systems neuroscience. One might envisage that over the next 20 years the neuroimaging of distributed processing and connectivity will play a major role in disclosing the brain's functional architecture and operational principles. The inception of this journal has been foreshadowed by an ever-increasing number of publications on functional connectivity, causal modeling, connectomics, and multivariate analyses of distributed patterns of brain responses. I accepted the invitation to write this review with great pleasure and hope to celebrate and critique the achievements to date, while addressing the challenges ahead.}, + number = {1}, + journal = {Brain Connectivity}, + author = {Friston, Karl J.}, + month = jan, + year = {2011}, + pages = {13-36}, + file = {C:\\Users\\saram\\Zotero\\storage\\4DIUFW56\\Friston_2011_Functional and Effective Connectivity.pdf} +} + +@article{2016, + title = {Correlations and {{Neuronal Population Information}}}, + volume = {39}, + doi = {10.1146/annurev-neuro-070815-013851}, + abstract = {Brain function involves the activity of neuronal populations. Much recent effort has been devoted to measuring the activity of neuronal populations in different parts of the brain under various experimental conditions. Population activity patterns contain rich structure, yet many studies have focused on measuring pairwise relationships between members of a larger population\textemdash{}termed noise correlations. Here we review recent progress in understanding how these correlations affect population information, how information should be quantified, and what mechanisms may give rise to correlations. As population coding theory has improved, it has made clear that some forms of correlation are more important for information than others. We argue that this is a critical lesson for those interested in neuronal population responses more generally: Descriptions of population responses should be motivated by and linked to well-specified function. Within this context, we offer suggestions of where current theoretical frameworks fall short.}, + number = {1}, + journal = {Annual Review of Neuroscience}, + year = {2016}, + pages = {237-256}, + file = {C:\\Users\\saram\\Zotero\\storage\\ET3DBU5V\\2016_Correlations and Neuronal Population Information.pdf}, + pmid = {27145916} +} + +@article{Blankertz2008, + title = {Optimizing {{Spatial}} Filters for {{Robust EEG Single}}-{{Trial Analysis}}}, + volume = {25}, + issn = {1053-5888}, + doi = {10.1109/MSP.2008.4408441}, + abstract = {Due to the volume conduction multichannel electroencephalogram (EEG) recordings give a rather blurred image of brain activity. Therefore spatial filters are extremely useful in single-trial analysis in order to improve the signal-to-noise ratio. There are powerful methods from machine learning and signal processing that permit the optimization of spatio-temporal filters for each subject in a data dependent fashion beyond the fixed filters based on the sensor geometry, e.g., Laplacians. Here we elucidate the theoretical background of the common spatial pattern (CSP) algorithm, a popular method in brain-computer interface (BCD research. Apart from reviewing several variants of the basic algorithm, we reveal tricks of the trade for achieving a powerful CSP performance, briefly elaborate on theoretical aspects of CSP, and demonstrate the application of CSP-type preprocessing in our studies of the Berlin BCI (BBCI) project.}, + number = {1}, + journal = {IEEE Signal Processing Magazine}, + author = {Blankertz, B. and Tomioka, R. and Lemm, S. and Kawanabe, M. and r Muller, K.}, + year = {2008}, + keywords = {medical signal processing,neurophysiology,Signal processing,learning (artificial intelligence),spatial filters,user interfaces,Berlin BCI project,brain activity,brain-computer interface,common spatial pattern algorithm,electroencephalogram,machine learning,robust EEG analysis,signal-to-noise ratio,single-trial analysis,spatiotemporal filters,volume conduction multichannel EEG,Brain,Geometry,Optimization methods,Robustness,Signal analysis,Signal processing algorithms,Signal to noise ratio,Electroencephalography}, + pages = {41-56}, + file = {C:\\Users\\saram\\Zotero\\storage\\JHVA63X8\\Blankertz 2008 Optimizing Spatial filters for Robust EEG Single-Trial Analysis.pdf} +} + +@article{Lisman2013, + title = {The {{Theta}}-{{Gamma Neural Code}}}, + volume = {77}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2013.03.007}, + abstract = {Theta and gamma frequency oscillations occur in the same brain regions and interact with each other, a process called cross-frequency coupling. Here, we review evidence for the following hypothesis: that the dual oscillations form a code for representing multiple items in an ordered way. This form of coding has been most clearly demonstrated in the hippocampus, where different spatial information is represented in different gamma subcycles of a theta cycle. Other experiments have tested the functional importance of oscillations and their coupling. These involve correlation of oscillatory properties with memory states, correlation with memory performance, and effects of disrupting oscillations on memory. Recent work suggests that this coding scheme coordinates communication between brain regions and is involved in sensory as well as memory processes.}, + number = {6}, + journal = {Neuron}, + author = {Lisman, John E. and Jensen, Ole}, + month = mar, + year = {2013}, + pages = {1002-1016}, + file = {C:\\Users\\saram\\Zotero\\storage\\P5XNBT7N\\Lisman and Jensen 2013 The Theta-Gamma Neural Code.pdf} +} + +@article{Parra2004, + title = {Blind {{Source Separation}} via {{Generalized Eigenvalue Decomposition}}}, + volume = {4}, + issn = {1532-4435}, + doi = {10.1162/jmlr.2003.4.7-8.1261}, + abstract = {In this short note we highlight the fact that linear blind source separation can be formulated as a generalized eigenvalue decomposition under the assumptions of non-Gaussian, non-stationary, or non-white independent sources. The solution for the unmixing matrix is given by the generalized eigenvectors that simultaneously diagonalize the covariance matrix of the observations and an additional symmetric matrix whose form depends upon the particular assumptions. The method critically determines the mixture coefficients and is therefore not robust to estimation errors. However it provides a rather general and unified solution that summarizes the conditions for successful blind source separation. To demonstrate the method, which can be implemented in two lines of matlab code, we present results for artificial mixtures of speech and real mixtures of electroencephalography (EEG) data, showing that the same sources are recovered under the various assumptions.}, + number = {7-8}, + journal = {J. Mach. Learn. Res.}, + author = {Parra, Lucas and Sajda, Paul}, + month = oct, + year = {2004}, + keywords = {Blind source separation,generalized eigenvalue decomposition,non-Gaussian,non-stationary,non-white}, + pages = {1261--1269}, + file = {C:\\Users\\saram\\Zotero\\storage\\2FIXKZZP\\tutorial-bss.pdf;C:\\Users\\saram\\Zotero\\storage\\CSDFWRB7\\parra03a.pdf} +} + +@article{Parra2005, + title = {Recipes for the Linear Analysis of {{EEG}}}, + volume = {28}, + issn = {1053-8119}, + doi = {10.1016/j.neuroimage.2005.05.032}, + abstract = {In this paper, we describe a simple set of ``recipes'' for the analysis of high spatial density EEG. We focus on a linear integration of multiple channels for extracting individual components without making any spatial or anatomical modeling assumptions, instead requiring particular statistical properties such as maximum difference, maximum power, or statistical independence. We demonstrate how corresponding algorithms, for example, linear discriminant analysis, principal component analysis and independent component analysis, can be used to remove eye-motion artifacts, extract strong evoked responses, and decompose temporally overlapping components. The general approach is shown to be consistent with the underlying physics of EEG, which specifies a linear mixing model of the underlying neural and non-neural current sources.}, + number = {2}, + journal = {NeuroImage}, + author = {Parra, Lucas C. and Spence, Clay D. and Gerson, Adam D. and Sajda, Paul}, + month = nov, + year = {2005}, + keywords = {generalized eigenvalue decomposition,Electroencephalography (EEG),Linear integration,Source estimation,Brain computer interfaces}, + pages = {326-341}, + file = {C:\\Users\\saram\\Zotero\\storage\\74J7SCST\\Parra et al. 2005 Recipes for the linear analysis of EEG.pdf} +} + +@article{Keshtkaran2017, + title = {Noise-Robust Unsupervised Spike Sorting Based on Discriminative Subspace Learning with Outlier Handling}, + issn = {1741-2552}, + doi = {10.1088/1741-2552/aa6089}, + abstract = {Abstract Objective: Spike sorting is a fundamental preprocessing step for many neuroscience studies which rely on the analysis of spike trains. Most of the feature extraction and dimensionality reduction techniques that have been used for spike sorting give a projection subspace which is not necessarily the most discriminative one. Therefore, the clusters which appear inherently separable in some discriminative subspace may overlap if projected using conventional feature extraction approaches leading to a poor sorting accuracy especially when the noise level is high. In this paper, we propose a noise robust and unsupervised spike sorting algorithm based on learning discriminative spike features for clustering. Method: The proposed algorithm uses discriminative subspace learning to extract low dimensional and most discriminative features from the spike waveforms, and perform clustering with automatic detection of the number of the clusters. The core part of the algorithm involves iterative subspace selection using linear discriminant analysis (LDA) and clustering using Gaussian mixture model (GMM) with outlier detection. A statistical test in the discriminative subspace is proposed to automatically detect the number of the clusters. Main results: Comparative results on publicly available simulated and real in-vivo datasets demonstrate that our algorithm achieves substantially improved cluster distinction leading to higher sorting accuracy and more reliable detection of clusters which are highly overlapping and not detectable using conventional feature extraction techniques such PCA or wavelets. Significance: By providing more accurate information about the activity of more number of individual neurons with high robustness to neural noise and outliers, the proposed unsupervised spike sorting algorithm facilitates more detailed and accurate analysis of single- and multi-unit activities in neuroscience and brain machine interface studies.}, + language = {en}, + journal = {Journal of Neural Engineering}, + author = {Keshtkaran, Mohammad Reza and Yang, Zhi}, + year = {2017}, + file = {C:\\Users\\saram\\Zotero\\storage\\4U2D6I7N\\Keshtkaran_Yang 2017 Noise-robust unsupervised spike sorting based on discriminative subspace.pdf} +} + +@misc{zotero-440, + title = {Sarela05a.Dvi - Sarela05a.Pdf}, + howpublished = {http://www.jmlr.org/papers/volume6/sarela05a/sarela05a.pdf}, + file = {C:\\Users\\saram\\Zotero\\storage\\DZV7TVQV\\sarela05a.html} +} + +@article{Sarela2005, + title = {Denoising {{Source Separation}}}, + volume = {6}, + issn = {ISSN 1533-7928}, + number = {Mar}, + journal = {Journal of Machine Learning Research}, + author = {S{\"a}rel{\"a}, Jaakko and Valpola, Harri}, + year = {2005}, + pages = {233-272}, + file = {C:\\Users\\saram\\Zotero\\storage\\D9HVMSQ4\\Sarela_Valpola 2005 Denoising Source Separation.pdf} +} + +@article{Haufe2014, + title = {On the Interpretation of Weight Vectors of Linear Models in Multivariate Neuroimaging}, + volume = {87}, + issn = {1053-8119}, + doi = {10.1016/j.neuroimage.2013.10.067}, + abstract = {The increase in spatiotemporal resolution of neuroimaging devices is accompanied by a trend towards more powerful multivariate analysis methods. Often it is desired to interpret the outcome of these methods with respect to the cognitive processes under study. Here we discuss which methods allow for such interpretations, and provide guidelines for choosing an appropriate analysis for a given experimental goal: For a surgeon who needs to decide where to remove brain tissue it is most important to determine the origin of cognitive functions and associated neural processes. In contrast, when communicating with paralyzed or comatose patients via brain\textendash{}computer interfaces, it is most important to accurately extract the neural processes specific to a certain mental state. These equally important but complementary objectives require different analysis methods. Determining the origin of neural processes in time or space from the parameters of a data-driven model requires what we call a forward model of the data; such a model explains how the measured data was generated from the neural sources. Examples are general linear models (GLMs). Methods for the extraction of neural information from data can be considered as backward models, as they attempt to reverse the data generating process. Examples are multivariate classifiers. Here we demonstrate that the parameters of forward models are neurophysiologically interpretable in the sense that significant nonzero weights are only observed at channels the activity of which is related to the brain process under study. In contrast, the interpretation of backward model parameters can lead to wrong conclusions regarding the spatial or temporal origin of the neural signals of interest, since significant nonzero weights may also be observed at channels the activity of which is statistically independent of the brain process under study. As a remedy for the linear case, we propose a procedure for transforming backward models into forward models. This procedure enables the neurophysiological interpretation of the parameters of linear backward models. We hope that this work raises awareness for an often encountered problem and provides a theoretical basis for conducting better interpretable multivariate neuroimaging analyses.}, + journal = {NeuroImage}, + author = {Haufe, Stefan and Meinecke, Frank and G{\"o}rgen, Kai and D{\"a}hne, Sven and Haynes, John-Dylan and Blankertz, Benjamin and Bie{\ss}mann, Felix}, + month = feb, + year = {2014}, + keywords = {decoding,Neuroimaging,Multivariate,Univariate,fMRI,EEG,Forward/backward models,Generative/discriminative models,Encoding,Activation patterns,Extraction filters,Interpretability,Regularization,Sparsity}, + pages = {96-110}, + file = {C:\\Users\\saram\\Zotero\\storage\\6JDPVNC9\\Haufe et al. 2014 On the interpretation of weight vectors of linear models in multivariate neuroimaging.pdf} +} + +@article{Bassett2017, + title = {Network Neuroscience}, + volume = {20}, + copyright = {\textcopyright{} 2017 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1097-6256}, + doi = {10.1038/nn.4502}, + abstract = {Despite substantial recent progress, our understanding of the principles and mechanisms underlying complex brain function and cognition remains incomplete. Network neuroscience proposes to tackle these enduring challenges. Approaching brain structure and function from an explicitly integrative perspective, network neuroscience pursues new ways to map, record, analyze and model the elements and interactions of neurobiological systems. Two parallel trends drive the approach: the availability of new empirical tools to create comprehensive maps and record dynamic patterns among molecules, neurons, brain areas and social systems; and the theoretical framework and computational tools of modern network science. The convergence of empirical and computational advances opens new frontiers of scientific inquiry, including network dynamics, manipulation and control of brain networks, and integration of network processes across spatiotemporal domains. We review emerging trends in network neuroscience and attempt to chart a path toward a better understanding of the brain as a multiscale networked system.}, + language = {en}, + number = {3}, + journal = {Nature Neuroscience}, + author = {Bassett, Danielle S. and Sporns, Olaf}, + month = mar, + year = {2017}, + keywords = {Cognitive neuroscience,Network models}, + pages = {353-364}, + file = {C:\\Users\\saram\\Zotero\\storage\\FM39RBRC\\Bassett_Sporns_2017_Network neuroscience.pdf} +} + +@article{Benjamin2017, + title = {Modern Machine Learning Far Outperforms {{GLMs}} at Predicting Spikes}, + copyright = {\textcopyright{} 2017, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NonCommercial-NoDerivs 4.0 International), CC BY-NC-ND 4.0, as described at http://creativecommons.org/licenses/by-nc-nd/4.0/}, + doi = {10.1101/111450}, + abstract = {Neuroscience has long focused on finding encoding models that effectively ask 'what predicts neural spiking?' and generalized linear models (GLMs) are a typical approach. Modern machine learning techniques have the potential to perform better. Here we directly compared GLMs to three leading methods: feedforward neural networks, gradient boosted trees, and stacked ensembles that combine the predictions of several methods. We predicted spike counts in macaque motor (M1) and somatosensory (S1) cortices from reaching kinematics, and in rat hippocampal cells from open field location and orientation. In general, the modern methods produced far better spike predictions and were less sensitive to the preprocessing of features. XGBoost and the ensemble were the best-performing methods and worked well even on neural data with very low spike rates. This overall performance suggests that tuning curves built with GLMs are at times inaccurate and can be easily improved upon. Our publicly shared code uses standard packages and can be quickly applied to other datasets. Encoding models built with machine learning techniques more accurately predict spikes and can offer meaningful benchmarks for simpler models.}, + language = {en}, + journal = {bioRxiv}, + author = {Benjamin, Ari S. and Fernandes, Hugo L. and Tomlinson, Tucker and Ramkumar, Pavan and VerSteeg, Chris and Miller, Lee and Kording, Konrad Paul}, + month = feb, + year = {2017}, + pages = {111450}, + file = {C:\\Users\\saram\\Zotero\\storage\\S9GMTJ5P\\Benjamin et al. 2017 Modern machine learning far outperforms GLMs at predicting spikes.pdf} +} + +@article{Einevoll2013, + title = {Modelling and Analysis of Local Field Potentials for Studying the Function of Cortical Circuits}, + volume = {14}, + copyright = {\textcopyright{} 2013 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1471-003X}, + doi = {10.1038/nrn3599}, + abstract = {The past decade has witnessed a renewed interest in cortical local field potentials (LFPs) \textemdash{} that is, extracellularly recorded potentials with frequencies of up to \textasciitilde{}500 Hz. This is due to both the advent of multielectrodes, which has enabled recording of LFPs at tens to hundreds of sites simultaneously, and the insight that LFPs offer a unique window into key integrative synaptic processes in cortical populations. However, owing to its numerous potential neural sources, the LFP is more difficult to interpret than are spikes. Careful mathematical modelling and analysis are needed to take full advantage of the opportunities that this signal offers in understanding signal processing in cortical circuits and, ultimately, the neural basis of perception and cognition.}, + language = {en}, + number = {11}, + journal = {Nature Reviews Neuroscience}, + author = {Einevoll, Gaute T. and Kayser, Christoph and Logothetis, Nikos K. and Panzeri, Stefano}, + month = nov, + year = {2013}, + keywords = {Computational Neuroscience,Electrophysiology,Computational models,Sensory systems}, + pages = {770-785}, + file = {C:\\Users\\saram\\Zotero\\storage\\F7R37UKU\\Einevoll et al. 2013 Modelling and analysis of local field potentials for studying the function of cortical circuits.pdf} +} + +@article{Marblestone2016, + title = {Toward an {{Integration}} of {{Deep Learning}} and {{Neuroscience}}}, + volume = {10}, + issn = {1662-5188}, + doi = {10.3389/fncom.2016.00094}, + abstract = {Neuroscience has focused on the detailed implementation of computation, studying neural codes, dynamics and circuits. In machine learning, however, artificial neural networks tend to eschew precisely designed codes, dynamics or circuits in favor of brute force optimization of a cost function, often using simple and relatively uniform initial architectures. Two recent developments have emerged within machine learning that create an opportunity to connect these seemingly divergent perspectives. First, structured architectures are used, including dedicated systems for attention, recursion and various forms of short- and long-term memory storage. Second, cost functions and training procedures have become more complex and are varied across layers and over time. Here we think about the brain in terms of these ideas. We hypothesize that (1) the brain optimizes cost functions, (2) the cost functions are diverse and differ across brain locations and over development, and (3) optimization operates within a pre-structured architecture matched to the computational problems posed by behavior. In support of these hypotheses, we argue that a range of implementations of credit assignment through multiple layers of neurons are compatible with our current knowledge of neural circuitry, and that the brain's specialized systems can be interpreted as enabling efficient optimization for specific problem classes. Such a heterogeneously optimized system, enabled by a series of interacting cost functions, serves to make learning data-efficient and precisely targeted to the needs of the organism. We suggest directions by which neuroscience could seek to refine and test these hypotheses.}, + language = {English}, + journal = {Frontiers in Computational Neuroscience}, + author = {Marblestone, Adam H. and Wayne, Greg and Kording, Konrad P.}, + year = {2016}, + keywords = {Neural networks,Cost functions,Cognitive Architecture,Developmental Bootstrapping,unsupervised learning,memory systems,reinforcement learning}, + file = {C:\\Users\\saram\\Zotero\\storage\\NCRD6VU4\\Marblestone et al. 2016 Toward an Integration of Deep Learning and Neuroscience.pdf} +} + +@misc{zotero-458, + title = {How to {{Describe Neuronal Activity}}: {{Spikes}}, {{Rates}}, or {{Assemblies}}? - 850-How-to-Describe-Neuronal-Activity-Spikes-Rates-or-Assemblies.Pdf}, + howpublished = {https://papers.nips.cc/paper/850-how-to-describe-neuronal-activity-spikes-rates-or-assemblies.pdf}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZQDE99RP\\850-how-to-describe-neuronal-activity-spikes-rates-or-assemblies.html} +} + +@article{Gong2015, + title = {High-Speed Recording of Neural Spikes in Awake Mice and Flies with a Fluorescent Voltage Sensor}, + copyright = {Copyright \textcopyright{} 2015, American Association for the Advancement of Science}, + issn = {0036-8075, 1095-9203}, + doi = {10.1126/science.aab0810}, + abstract = {Genetically encoded voltage indicators (GEVIs) are a promising technology for fluorescence readout of millisecond-scale neuronal dynamics. Prior GEVIs had insufficient signaling speed and dynamic range to resolve action potentials in live animals. We coupled fast voltage-sensing domains from a rhodopsin protein to bright fluorophores via resonance energy transfer. The resulting GEVIs are sufficiently bright and fast to report neuronal action potentials and membrane voltage dynamics in awake mice and flies, resolving fast spike trains with 0.2-millisecond timing precision at spike detection error rates orders of magnitude better than prior GEVIs. In vivo imaging revealed sensory-evoked responses, including somatic spiking, dendritic dynamics, and intracellular voltage propagation. These results empower in vivo optical studies of neuronal electrophysiology and coding and motivate further advancements in high-speed microscopy.}, + language = {en}, + journal = {Science}, + author = {Gong, Yiyang and Huang, Cheng and Li, Jin Zhong and Grewe, Benjamin F. and Zhang, Yanping and Eismann, Stephan and Schnitzer, Mark J.}, + month = nov, + year = {2015}, + pages = {aab0810}, + file = {C:\\Users\\saram\\Zotero\\storage\\E49WZE6A\\Gong et al_2015_High-speed recording of neural spikes in awake mice and flies with a.pdf}, + pmid = {26586188} +} + +@article{Kandel1993, + title = {Cerebellar Neuronal Activity Correlates with Spike and Wave {{EEG}} Patterns in the Rat}, + volume = {16}, + issn = {0920-1211}, + abstract = {In this study we investigated the involvement of the cerebellum in high voltage spike-and-wave spindles, a rodent model of petit mal epilepsy. High voltage spindles, recorded epidurally from the sensorimotor neocortex, were correlated with single or multiple unit activity in the cerebellar cortex and deep cerebellar nuclei. The majority of neurons or neuronal groups in the cerebellum (77.9\%) fired rhythmically and phase-locked with the high voltage spindles, either during the spike (43.2\%; n = 41) or during the wave (34.7\%; n = 33) component of the high voltage spindle. Tremor of the head and neck musculature, recorded with an accelero-meter, occurred during the high voltage spindle in approximately half of the rats. When present, rhythmic movement occurred predominantly during the wave phase of the high voltage spindle. The remaining half of the rats did not show tremor during high voltage spindles but, nevertheless, had cerebellar units that burst during the spike or wave phase of the high voltage spindle. These latter results demonstrate that phase-locked bursting of cerebellar units during high voltage spindle is independent of rhythmic movement. The findings suggest that rhythmic output from the cerebellum may contribute to the maintenance of generalized petit mal seizures.}, + language = {eng}, + number = {1}, + journal = {Epilepsy Research}, + author = {Kandel, A. and Buzs{\'a}ki, G.}, + month = sep, + year = {1993}, + keywords = {Neurons,Animals,Rats,Cerebellum,Motor Activity,Female,Male,Rats; Inbred BN,Rats; Inbred F344,Rats; Inbred Strains,Electroencephalography}, + pages = {1-9}, + pmid = {8243435} +} + +@article{Burns2010, + title = {Comparisons of the {{Dynamics}} of {{Local Field Potential}} and {{Multiunit Activity Signals}} in {{Macaque Visual Cortex}}}, + volume = {30}, + copyright = {Copyright \textcopyright{} 2010 the authors 0270-6474/10/3013739-11\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0743-10.2010}, + abstract = {The local field potential (LFP) and multiunit activity (MUA) are extracellularly recorded signals that describe local neuronal network dynamics. In our experiments, the LFP and MUA, recorded from the same electrode in macaque primary visual cortex V1 in response to drifting grating visual stimuli, were evaluated on coarse timescales ($\sim$1\textendash{}5 s) and fine timescales ($<$0.1 s). On coarse timescales, MUA and the LFP both produced sustained visual responses to optimal and non-optimal oriented visual stimuli. The sustainedness of the two signals across the population of recording sites was correlated (correlation coefficient, $\sim$0.4). At most recording sites, the MUA was at least as sustained as the LFP and significantly more sustained for optimal orientations. In previous literature, the blood oxygen level-dependent (BOLD) signal of functional magnetic resonance imaging studies was found to be more strongly correlated with the LFP than with the MUA as a result of the lack of sustained response in the MUA signal. Because we found that MUA was as sustained as the LFP, MUA may also be correlated with BOLD. On fine timescales, we computed the coherence between the LFP and MUA over the frequency range 10\textendash{}150 Hz. The LFP and MUA were weakly but significantly coherent ($\sim$0.14) in the gamma band (20\textendash{}90 Hz). The amount of gamma-band coherence was correlated with the power in the gamma band of the LFP. The data were consistent with the proposal that the LFP and MUA are generated in a noisy, resonant cortical network.}, + language = {en}, + number = {41}, + journal = {Journal of Neuroscience}, + author = {Burns, Samuel P. and Xing, Dajun and Shapley, Robert M.}, + month = oct, + year = {2010}, + pages = {13739-13749}, + file = {C:\\Users\\saram\\Zotero\\storage\\RKFVRSKW\\Burns et al_2010_Comparisons of the Dynamics of Local Field Potential and Multiunit Activity.pdf}, + pmid = {20943914} +} + +@article{Zerlaut2016, + title = {Heterogeneous Firing Rate Response of Mouse Layer {{V}} Pyramidal Neurons in the Fluctuation-Driven Regime}, + volume = {594}, + issn = {1469-7793}, + doi = {10.1113/JP272317}, + abstract = {KEY POINTS: We recreated in vitro the fluctuation-driven regime observed at the soma during asynchronous network activity in vivo and we studied the firing rate response as a function of the properties of the membrane potential fluctuations. We provide a simple analytical template that captures the firing response of both pyramidal neurons and various theoretical models. We found a strong heterogeneity in the firing rate response of layer V pyramidal neurons: in particular, individual neurons differ not only in their mean excitability level, but also in their sensitivity to fluctuations. Theoretical modelling suggest that this observed heterogeneity might arise from various expression levels of the following biophysical properties: sodium inactivation, density of sodium channels and spike frequency adaptation. +ABSTRACT: Characterizing the input-output properties of neocortical neurons is of crucial importance for understanding the properties emerging at the network level. In the regime of low-rate irregular firing (such as in the awake state), determining those properties for neocortical cells remains, however, both experimentally and theoretically challenging. Here, we studied this problem using a combination of theoretical modelling and in vitro experiments. We first identified, theoretically, three somatic variables that describe the dynamical state at the soma in this fluctuation-driven regime: the mean, standard deviation and time constant of the membrane potential fluctuations. Next, we characterized the firing rate response of individual layer V pyramidal cells in this three-dimensional space by means of perforated-patch recordings and dynamic clamp in the visual cortex of juvenile mice in vitro. We found that individual neurons strongly differ not only in terms of their excitability, but also, and unexpectedly, in their sensitivities to fluctuations. Finally, using theoretical modelling, we attempted to reproduce these results. The model predicts that heterogeneous levels of biophysical properties such as sodium inactivation, sharpness of sodium activation and spike frequency adaptation account for the observed diversity of firing rate responses. Because the firing rate response will determine population rate dynamics during asynchronous neocortical activity, our results show that cortical populations are functionally strongly inhomogeneous in young mouse visual cortex, which should have important consequences on the strategies of cortical computation at early stages of sensory processing.}, + language = {eng}, + number = {13}, + journal = {The Journal of Physiology}, + author = {Zerlaut, Y. and Tele{\'n}czuk, B. and Deleuze, C. and Bal, T. and Ouanounou, G. and Destexhe, A.}, + month = jul, + year = {2016}, + pages = {3791-3808}, + file = {C:\\Users\\saram\\Zotero\\storage\\GH48DE8Q\\Zerlaut et al_2016_Heterogeneous firing rate response of mouse layer V pyramidal neurons in the.pdf}, + pmid = {27146816}, + pmcid = {PMC4929333} +} + +@article{Meij2012, + title = {Phase\textendash{}{{Amplitude Coupling}} in {{Human Electrocorticography Is Spatially Distributed}} and {{Phase Diverse}}}, + volume = {32}, + copyright = {Copyright \textcopyright{} 2012 the authors 0270-6474/12/320111-13\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.4816-11.2012}, + abstract = {Spatially distributed phase-amplitude coupling (PAC) is a possible mechanism for selectively routing information through neuronal networks. If so, two key properties determine its selectivity and flexibility, phase diversity over space, and frequency diversity. To investigate these issues, we analyzed 42 human electrocorticographic recordings from 27 patients performing a working memory task. We demonstrate that (1) spatially distributed PAC occurred at distances $>$10 cm, (2) involved diverse preferred coupling phases, and (3) involved diverse frequencies. Using a novel technique [N-way decomposition based on the PARAFAC (for Parallel Factor analysis) model], we demonstrate that (4) these diverse phases originated mainly from the phase-providing oscillations. With these properties, PAC can be the backbone of a mechanism that is able to separate spatially distributed networks operating in parallel.}, + language = {en}, + number = {1}, + journal = {Journal of Neuroscience}, + author = {van der Meij, Roemer and Kahana, Michael and Maris, Eric}, + month = jan, + year = {2012}, + pages = {111-123}, + file = {C:\\Users\\saram\\Zotero\\storage\\6JAKKZAR\\Meij et al. 2012 Phase–Amplitude Coupling in Human Electrocorticography Is Spatially Distributed and Phase Diverse.pdf}, + pmid = {22219274} +} + +@article{Maris2011b, + title = {Spatially Distributed Patterns of Oscillatory Coupling between High-Frequency Amplitudes and Low-Frequency Phases in Human {{iEEG}}}, + volume = {54}, + issn = {1095-9572}, + doi = {10.1016/j.neuroimage.2010.09.029}, + abstract = {Spatially distributed coherent oscillations provide temporal windows of excitability that allow for interactions between distinct neuronal groups. It has been hypothesized that this mechanism for neuronal communication is realized by bursts of high-frequency oscillations that are phase-coupled to a low-frequency spatially distributed coupling oscillation. This mechanism requires multiple physiologically different interacting sources, one generating the low-frequency coupling oscillation and the others generating phase-coupled high-frequency oscillations. Using human intracranial EEG (iEEG) data, we provide evidence for multiple oscillatory patterns, as characterized on the basis of their spatial maps (topographies) and their frequency spectra. In fact, we show that the spatial maps for the coupling oscillations are much more widespread than the ones for the associated phase-coupled bursts. Second, in the majority of the patterns of phase-amplitude coupling (PAC), phase-coupled bursts of high-frequency activity are synchronized across brain areas. Third and last, working memory operations affect the PAC strength in a heterogeneous way: in some PAC patterns, working memory operations increase their strength, whereas in others they decrease it.}, + language = {eng}, + number = {2}, + journal = {NeuroImage}, + author = {Maris, Eric and {van Vugt}, Marieke and Kahana, Michael}, + month = jan, + year = {2011}, + keywords = {Brain,Brain Mapping,Humans,Signal Processing; Computer-Assisted,Electroencephalography}, + pages = {836-850}, + pmid = {20851192} +} + +@article{Maris2011a, + title = {Spatially Distributed Patterns of Oscillatory Coupling between High-Frequency Amplitudes and Low-Frequency Phases in Human {{iEEG}}}, + volume = {54}, + issn = {1053-8119}, + doi = {10.1016/j.neuroimage.2010.09.029}, + abstract = {Spatially distributed coherent oscillations provide temporal windows of excitability that allow for interactions between distinct neuronal groups. It has been hypothesized that this mechanism for neuronal communication is realized by bursts of high-frequency oscillations that are phase-coupled to a low-frequency spatially distributed coupling oscillation. This mechanism requires multiple physiologically different interacting sources, one generating the low-frequency coupling oscillation and the others generating phase-coupled high-frequency oscillations. Using human intracranial EEG (iEEG) data, we provide evidence for multiple oscillatory patterns, as characterized on the basis of their spatial maps (topographies) and their frequency spectra. In fact, we show that the spatial maps for the coupling oscillations are much more widespread than the ones for the associated phase-coupled bursts. Second, in the majority of the patterns of phase-amplitude coupling (PAC), phase-coupled bursts of high-frequency activity are synchronized across brain areas. Third and last, working memory operations affect the PAC strength in a heterogeneous way: in some PAC patterns, working memory operations increase their strength, whereas in others they decrease it.}, + number = {2}, + journal = {NeuroImage}, + author = {Maris, Eric and {van Vugt}, Marieke and Kahana, Michael}, + month = jan, + year = {2011}, + pages = {836-850}, + file = {C:\\Users\\saram\\Zotero\\storage\\9V73UED4\\Maris et al. 2011 Spatially distributed patterns of oscillatory coupling between high-frequency amplitudes and low-frequency phases in human iEEG.pdf} +} + +@article{Lundstrom2008, + title = {Fractional Differentiation by Neocortical Pyramidal Neurons}, + volume = {11}, + copyright = {\textcopyright{} 2008 Nature Publishing Group}, + issn = {1097-6256}, + doi = {10.1038/nn.2212}, + abstract = {Neural systems adapt to changes in stimulus statistics. However, it is not known how stimuli with complex temporal dynamics drive the dynamics of adaptation and the resulting firing rate. For single neurons, it has often been assumed that adaptation has a single time scale. We found that single rat neocortical pyramidal neurons adapt with a time scale that depends on the time scale of changes in stimulus statistics. This multiple time scale adaptation is consistent with fractional order differentiation, such that the neuron's firing rate is a fractional derivative of slowly varying stimulus parameters. Biophysically, even though neuronal fractional differentiation effectively yields adaptation with many time scales, we found that its implementation required only a few properly balanced known adaptive mechanisms. Fractional differentiation provides single neurons with a fundamental and general computation that can contribute to efficient information processing, stimulus anticipation and frequency-independent phase shifts of oscillatory neuronal firing.}, + language = {en}, + number = {11}, + journal = {Nature Neuroscience}, + author = {Lundstrom, Brian N. and Higgs, Matthew H. and Spain, William J. and Fairhall, Adrienne L.}, + month = nov, + year = {2008}, + pages = {1335-1342}, + file = {C:\\Users\\saram\\Zotero\\storage\\WEQ9NIZ5\\Lundstrom 2008 Fractional differentiation by neocortical pyramidal neurons.pdf} +} + +@article{Teka2014, + title = {Neuronal {{Spike Timing Adaptation Described}} with a {{Fractional Leaky Integrate}}-and-{{Fire Model}}}, + volume = {10}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1003526}, + abstract = {Author Summary Spike adaptation is a property of most neurons. When spike time adaptation occurs over multiple time scales, the dynamics can be described by a power-law. We study the computational properties of a leaky integrate-and-fire model with power-law adaptation. Instead of explicitly modeling the adaptation process by the contribution of slowly changing conductances, we use a fractional temporal derivative framework. The exponent of the fractional derivative represents the degree of adaptation of the membrane voltage, where 1 is the normal leaky integrator while values less than 1 produce increasing correlations in the voltage trace. The temporal correlation is interpreted as a memory trace that depends on the value of the fractional derivative. We identify the memory trace in the fractional model as the sum of the instantaneous differentiation weighted by a function that depends on the fractional exponent, and it provides non-local information to the incoming stimulus. The spiking dynamics of the fractional leaky integrate-and-fire model show memory dependence that can result in downward or upward spike adaptation. Our model provides a framework for understanding how long-range membrane voltage correlations affect spiking dynamics and information integration in neurons.}, + number = {3}, + journal = {PLOS Computational Biology}, + author = {Teka, Wondimu and Marinov, Toma M. and Santamaria, Fidel}, + month = mar, + year = {2014}, + keywords = {Neurons,Memory,Membrane potential,Neuronal differentiation,Signal filtering,Simulation and modeling,Sine waves,Action potentials}, + pages = {e1003526}, + file = {C:\\Users\\saram\\Zotero\\storage\\HEWUQJ39\\Teka 2014 Neuronal Spike Timing Adaptation Described with a Fractional Leaky.pdf} +} + +@book{Bezdek2017, + address = {Sarasota, FL}, + title = {A {{Primer}} on {{Cluster Analysis}}: 4 {{Basic Methods}} That (Usually) {{Work}}}, + isbn = {978-1-5069-0275-3}, + shorttitle = {A {{Primer}} on {{Cluster Analysis}}}, + abstract = {What's in this book? This book is a step backwards, to four classical methods for clustering in small, static data sets, which have all withstood the tests of time. The youngest of the four methods is now more than 40 years old: Gaussian Mixture Decomposition (GMD, 1898) Hard c-means (HCM, 1956, often called "k-means") Fuzzy c-means (FCM, 1973, reduces to HCM in a certain limit) SAHN Clustering (principally single linkage (SL, 1909))~~~~~~~~ The dates shown are the first known writing (to me, anyway) about these four models. There are many different algorithms that attempt to optimize the first three models, which all define good clusters as part of extrema of optimization problems defined by their objective functions. The SAHN models are deterministic, and operate in a very different way. The expansion of cluster analysis into every corner of our modern lives (big data, social networks, streaming video, wireless sensor networks, ... the list is endless) still rests on the foundation provided by these four models. I am (with apologies to Marvel Comics) very comfortable in calling HCM, FCM, GMD and SL the fantastic four. As in many branches of information technology, this is a vast topic. The overall picture in clustering is quite overwhelming, so any attempt to swim at the deep end of the pool in even a very specialized subfield requires a lot of training. But we all start out at the shallow end (or at least that's where we should start!), and this book is aimed squarely at teaching toddlers not to be afraid of the water. With the exception of Chapter 10, there is not a section of this book that, if explored in real depth, cannot be expanded into its own volume. So, if your needs are for an in-depth treatment of all the latest developments in any topic in this volume, the best I can do \textendash{} what I will try to do anyway - is lead you to the pool, and show you where to jump in. If you are a graduate student, professor, or professional in computational science or engineering, you may already know more than this book contains, so it won't be very useful to you. My hope is that this volume will be useful to the real novice, who thinks that clustering might be a good thing to try, but who knows very little about it. To close this part of the introduction, I repeat a cautionary statement made by Marriott (1974) about the dangers of believing what a computer tells you about clusters your data: ``If the results disagree with informed opinion, do not admit a simple logical interpretation, and do not show up clearly in a graphical presentation, they are probably wrong. There is no magic about numerical methods, and many ways in which they can break down. They are a valuable aid to the interpretation of data, not sausage machines automatically transforming bodies of numbers into packets of scientific fact.'' \mbox{}Jim received the PhD in Applied Mathematics from Cornell University in 1973. Jim is past president of NAFIPS (North American Fuzzy Information Processing Society), IFSA (International Fuzzy Systems Association) and the IEEE CIS (Computational Intelligence Society): founding editor the Int'l. Jo. Approximate Reasoning and the IEEE Transactions on Fuzzy Systems: Life fellow of the IEEE and IFSA; and a recipient of the IEEE 3rd Millennium, CIS Fuzzy Systems Pioneer, and technical field award Rosenblatt medals, and the IPMU Kempe de Feret Award. Jim retired in 2007, and will be coming to a university near you soon (especially if there is fishing nearby). Keywords: Cluster Analysis, Hard Clustering, K-Means, Fuzzy Clustering, Fuzzy C-Means, Probabilistic Clustering, Gaussian Mixture Decomposition, Single Linkage Clustering, Alternating Optimization, Clustering In Big Data}, + language = {English}, + publisher = {{First Edition Design Publishing}}, + author = {Bezdek, James C.}, + month = feb, + year = {2017} +} + +@article{Perez-Alcazar2016, + title = {Human {{Cerebrospinal Fluid Promotes Neuronal Viability}} and {{Activity}} of {{Hippocampal Neuronal Circuits In Vitro}}}, + volume = {10}, + issn = {1662-5102}, + doi = {10.3389/fncel.2016.00054}, + abstract = {For decades it has been hypothesized that molecules within the cerebrospinal fluid (CSF) diffuse into the brain parenchyma and influence the function of neurons. However, the functional consequences of CSF on neuronal circuits are largely unexplored and unknown. A major reason for this is the absence of appropriate neuronal in vitro model systems, and it is uncertain if neurons cultured in pure CSF survive and preserve electrophysiological functionality in vitro. In this article we present an approach to address how human CSF (hCSF) influences neuronal circuits in vitro. We validate our approach by comparing the morphology, viability, and electrophysiological function of single neurons and at the network level in rat organotypic slice and primary neuronal cultures cultivated either in hCSF or in defined standard culture media. Our results demonstrate that rodent hippocampal slices and primary neurons cultured in hCSF maintain neuronal morphology and preserve synaptic transmission. Importantly, we show that hCSF increases neuronal viability and the number of electrophysiologically active neurons in comparison to the culture media. In summary, our data indicate that hCSF represents a physiological environment for neurons in vitro and a superior culture condition compared to the defined standard media. Moreover, this experimental approach paves the way to assess the functional consequences of CSF on neuronal circuits as well as suggesting a novel strategy for CNS disease modeling.}, + language = {English}, + journal = {Frontiers in Cellular Neuroscience}, + author = {Perez-Alcazar, Marta and Culley, Georgia and Lyckenvik, Tim and Mobarrez, Kristoffer and Bjorefeldt, Andreas and Wasling, Pontus and Seth, Henrik and Asztely, Frederik and Harrer, Andrea and Iglseder, Bernhard and Aigner, Ludwig and Hanse, Eric and Illes, Sebastian}, + year = {2016}, + keywords = {Human cerebrospinal fluid,hippocampal neuronal function,hippocampal neuronal survival,Organotypic hippocampal slice cultures,hippocampal neuronal cultures,multi-electrode array technology}, + file = {C:\\Users\\saram\\Zotero\\storage\\VVR7AVZZ\\Perez-Alcazar et al. 2016 Human Cerebrospinal Fluid Promotes Neuronal Viability and Activity of Hippocampal Neuronal Circuits In Vitro.pdf} +} + +@article{Nigam2016, + title = {Rich-{{Club Organization}} in {{Effective Connectivity}} among {{Cortical Neurons}}}, + volume = {36}, + copyright = {Copyright \textcopyright{} 2016 Nigam et al.. This article is freely available online through the J Neurosci Author Open Choice option.}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.2177-15.2016}, + abstract = {The performance of complex networks, like the brain, depends on how effectively their elements communicate. Despite the importance of communication, it is virtually unknown how information is transferred in local cortical networks, consisting of hundreds of closely spaced neurons. To address this, it is important to record simultaneously from hundreds of neurons at a spacing that matches typical axonal connection distances, and at a temporal resolution that matches synaptic delays. We used a 512-electrode array (60 $\mu$m spacing) to record spontaneous activity at 20 kHz from up to 500 neurons simultaneously in slice cultures of mouse somatosensory cortex for 1 h at a time. We applied a previously validated version of transfer entropy to quantify information transfer. Similar to in vivo reports, we found an approximately lognormal distribution of firing rates. Pairwise information transfer strengths also were nearly lognormally distributed, similar to reports of synaptic strengths. Some neurons transferred and received much more information than others, which is consistent with previous predictions. Neurons with the highest outgoing and incoming information transfer were more strongly connected to each other than chance, thus forming a ``rich club.'' We found similar results in networks recorded in vivo from rodent cortex, suggesting the generality of these findings. A rich-club structure has been found previously in large-scale human brain networks and is thought to facilitate communication between cortical regions. The discovery of a small, but information-rich, subset of neurons within cortical regions suggests that this population will play a vital role in communication, learning, and memory. +SIGNIFICANCE STATEMENT Many studies have focused on communication networks between cortical brain regions. In contrast, very few studies have examined communication networks within a cortical region. This is the first study to combine such a large number of neurons (several hundred at a time) with such high temporal resolution (so we can know the direction of communication between neurons) for mapping networks within cortex. We found that information was not transferred equally through all neurons. Instead, $\sim$70\% of the information passed through only 20\% of the neurons. Network models suggest that this highly concentrated pattern of information transfer would be both efficient and robust to damage. Therefore, this work may help in understanding how the cortex processes information and responds to neurodegenerative diseases.}, + language = {en}, + number = {3}, + journal = {Journal of Neuroscience}, + author = {Nigam, Sunny and Shimono, Masanori and Ito, Shinya and Yeh, Fang-Chin and Timme, Nicholas and Myroshnychenko, Maxym and Lapish, Christopher C. and Tosi, Zachary and Hottowy, Pawel and Smith, Wesley C. and Masmanidis, Sotiris C. and Litke, Alan M. and Sporns, Olaf and Beggs, John M.}, + month = jan, + year = {2016}, + keywords = {effective connectivity,information transfer,microcircuits,rich club,transfer entropy}, + pages = {670-684}, + file = {C:\\Users\\saram\\Zotero\\storage\\TN2QXRFE\\Nigam et al. 2016 Rich-Club Organization in Effective Connectivity among Cortical Neurons.pdf}, + pmid = {26791200} +} + +@article{Obien2015, + title = {Revealing Neuronal Function through Microelectrode Array Recordings}, + volume = {8}, + issn = {1662-4548}, + doi = {10.3389/fnins.2014.00423}, + abstract = {Microelectrode arrays and microprobes have been widely utilized to measure neuronal activity, both in vitro and in vivo. The key advantage is the capability to record and stimulate neurons at multiple sites simultaneously. However, unlike the single-cell or single-channel resolution of intracellular recording, microelectrodes detect signals from all possible sources around every sensor. Here, we review the current understanding of microelectrode signals and the techniques for analyzing them. We introduce the ongoing advancements in microelectrode technology, with focus on achieving higher resolution and quality of recordings by means of monolithic integration with on-chip circuitry. We show how recent advanced microelectrode array measurement methods facilitate the understanding of single neurons as well as network function.}, + journal = {Frontiers in Neuroscience}, + author = {Obien, Marie Engelene J. and Deligkaris, Kosmas and Bullmann, Torsten and Bakkum, Douglas J. and Frey, Urs}, + month = jan, + year = {2015}, + file = {C:\\Users\\saram\\Zotero\\storage\\TCVFWJCX\\Obien et al. 2015 Revealing neuronal function through microelectrode array recordings.pdf}, + pmid = {25610364}, + pmcid = {PMC4285113} +} + +@article{Spira2013, + title = {Multi-Electrode Array Technologies for Neuroscience and Cardiology}, + volume = {8}, + copyright = {\textcopyright{} 2013 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1748-3387}, + doi = {10.1038/nnano.2012.265}, + abstract = {At present, the prime methodology for studying neuronal circuit-connectivity, physiology and pathology under in vitro or in vivo conditions is by using substrate-integrated microelectrode arrays. Although this methodology permits simultaneous, cell-non-invasive, long-term recordings of extracellular field potentials generated by action potentials, it is 'blind' to subthreshold synaptic potentials generated by single cells. On the other hand, intracellular recordings of the full electrophysiological repertoire (subthreshold synaptic potentials, membrane oscillations and action potentials) are, at present, obtained only by sharp or patch microelectrodes. These, however, are limited to single cells at a time and for short durations. Recently a number of laboratories began to merge the advantages of extracellular microelectrode arrays and intracellular microelectrodes. This Review describes the novel approaches, identifying their strengths and limitations from the point of view of the end users \textemdash{} with the intention to help steer the bioengineering efforts towards the needs of brain-circuit research.}, + language = {en}, + number = {2}, + journal = {Nature Nanotechnology}, + author = {Spira, Micha E. and Hai, Aviad}, + month = feb, + year = {2013}, + keywords = {Nanomedicine,Nanosensors}, + pages = {83-94}, + file = {C:\\Users\\saram\\Zotero\\storage\\326DSNS2\\Spira and Hai 2013 Multi-electrode array technologies for neuroscience and cardiology.pdf} +} + +@article{Shew2010, + title = {Simultaneous Multi-Electrode Array Recording and Two-Photon Calcium Imaging of Neural Activity}, + volume = {192}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2010.07.023}, + abstract = {A complete understanding of how brain circuits function will require measurement techniques which monitor large scale network activity simultaneously with the activity of local neural populations at a small scale. Here we present a useful step towards achieving this aim: simultaneous two-photon calcium imaging and multi-electrode array (MEA) recordings. The primary challenge of this method is removing an electrical artifact from the MEA signals that is caused by the imaging laser. Here we show that artifact removal can be achieved with a simple filtering scheme. As a demonstration of this technique we compare large-scale local field potential signals to single-neuron activity in a small-scale group of cells recorded from rat acute slices under two conditions: suppressed vs. intact inhibitory interactions between neurons.}, + number = {1}, + journal = {Journal of neuroscience methods}, + author = {Shew, Woodrow L. and Bellay, Timothy and Plenz, Dietmar}, + month = sep, + year = {2010}, + pages = {75-82}, + file = {C:\\Users\\saram\\Zotero\\storage\\PFIVY4WH\\Shew et al. 2010 Simultaneous multi-electrode array recording and two-photon calcium imaging of neural activity.pdf;C:\\Users\\saram\\Zotero\\storage\\VTSX4FJG\\tileshop.fcgi.jpg}, + pmid = {20659501}, + pmcid = {PMC2934901} +} + +@article{Bjorefeldt2015, + title = {Human Cerebrospinal Fluid Increases the Excitability of Pyramidal Neurons in the in Vitro Brain Slice}, + volume = {593}, + issn = {1469-7793}, + doi = {10.1113/jphysiol.2014.284711}, + abstract = {Key points + +* The cerebrospinal fluid contains numerous neuromodulators at ambient levels but whether, and how, they affect the activity of central neurons is unknown. + +* This study provides experimental evidence that human cerebrospinal fluid (hCSF) increases the excitability of hippocampal and neocortical pyramidal neurons. + +* Hippocampal CA1 pyramidal neurons in hCSF displayed lowered firing thresholds, depolarized resting membrane potentials and reduced input resistance, mimicking properties of pyramidal neurons recorded in vivo. + +* The excitability-increasing effect of hCSF on CA1 pyramidal neurons was entirely occluded by intracellular application of GTP$\gamma$S, suggesting that neuromodulatory effects were mediated by G-protein coupled receptors. + +* These results indicate that the CSF promotes spontaneous excitatory neuronal activity, and may help to explain observed differences in the activity of pyramidal neurons recorded in vivo and in vitro. + +Abstract + +The composition of brain extracellular fluid is shaped by a continuous exchange of substances between the cerebrospinal fluid (CSF) and interstitial fluid. The CSF is known to contain a wide range of endogenous neuromodulatory substances, but their collective influence on neuronal activity has been poorly investigated. We show here that replacing artificial CSF (aCSF), routinely used for perfusion of brain slices in vitro, with human CSF (hCSF) powerfully boosts spontaneous firing of CA1, CA3 and layer 5 pyramidal neurons in the rat brain slice. CA1 pyramidal neurons in hCSF display lowered firing thresholds, more depolarized resting membrane potentials and reduced input resistance, mimicking properties of pyramidal neurons recorded in vivo. The increased excitability of CA1 pyramidal neurons was completely occluded by intracellular application of GTP$\gamma$S, suggesting that endogenous neuromodulators in hCSF act on G-protein coupled receptors to enhance excitability. We found no increase in spontaneous inhibitory synaptic transmission by hCSF, indicating a differential effect on glutamatergic and GABAergic neurons. Our findings highlight a previously unknown function of the CSF in promoting spontaneous excitatory activity, and may help to explain differences observed in the activity of pyramidal neurons recorded in vivo and in vitro.}, + language = {en}, + number = {1}, + journal = {The Journal of Physiology}, + author = {Bjorefeldt, Andreas and Andreasson, Ulf and Daborg, Jonny and Riebe, Ilse and Wasling, Pontus and Zetterberg, Henrik and Hanse, Eric}, + month = jan, + year = {2015}, + pages = {231-243}, + file = {C:\\Users\\saram\\Zotero\\storage\\J97NWV4M\\Bjorefeldt et al. 2015 Human cerebrospinal fluid increases the excitability of pyramidal neurons in the in vitro brain slice.pdf} +} + +@misc{zotero-524, + title = {Wiley: {{Pattern Classification}}, 2nd {{Edition}} - {{Richard O}}. {{Duda}}, {{Peter E}}. {{Hart}}, {{David G}}. {{Stork}}}, + shorttitle = {Wiley}, + howpublished = {http://www.wiley.com/WileyCDA/WileyTitle/productCd-0471056693.html} +} + +@book{Duda2012, + title = {Pattern Classification}, + publisher = {{John Wiley \& Sons}}, + author = {Duda, Richard O. and Hart, Peter E. and Stork, David G.}, + year = {2012}, + file = {C:\\Users\\saram\\Zotero\\storage\\RWHCSR25\\Duda et al. 2012 Pattern classification.pdf} +} + +@book{Jain1988, + address = {Englewood Cliffs, N.J}, + title = {Algorithms for {{Clustering Data}}}, + isbn = {978-0-13-022278-7}, + language = {English}, + publisher = {{Prentice Hall College Div}}, + author = {Jain, Anil K. and Dubes, Richard C.}, + month = mar, + year = {1988}, + file = {C:\\Users\\saram\\Zotero\\storage\\8RU4UKH2\\Clustering_Jain_Dubes.pdf} +} + +@article{Dubes1979, + title = {Validity Studies in Clustering Methodologies}, + volume = {11}, + issn = {0031-3203}, + doi = {10.1016/0031-3203(79)90034-7}, + abstract = {Clustering algorithms tend to generate clusters even when applied to random data. This paper provides a semi-tutorial review of the state-of-the-art in cluster validity, or the verification of results from clustering algorithms. The paper covers ways of measuring clustering tendency, the fit of hierarchical and partitional structures and indices of compactness and isolation for individual clusters. Included are structural criteria for validating clusters and the factors involved in choosing criteria, according to which the literature of cluster validity is classified. An application to speaker identification demonstrates several indices. The development of new clustering techniques and the wide availability of clustering programs necessitates vigorous research in cluster validity.}, + number = {4}, + journal = {Pattern Recognition}, + author = {Dubes, Richard and Jain, Anil K}, + month = jan, + year = {1979}, + keywords = {clustering,Cluster validity,Hierarchical structure,Clustering tendency,Compactness,Isolation,Intrinsic dimensionality,Global fit}, + pages = {235-254}, + file = {C:\\Users\\saram\\Zotero\\storage\\F6STSPZE\\Dubes and Jain 1979 Validity studies in clustering methodologies.pdf} +} + +@article{Milligan1985, + title = {An Examination of Procedures for Determining the Number of Clusters in a Data Set}, + volume = {50}, + issn = {0033-3123, 1860-0980}, + doi = {10.1007/BF02294245}, + abstract = {A Monte Carlo evaluation of 30 procedures for determining the number of clusters was conducted on artificial data sets which contained either 2, 3, 4, or 5 distinct nonoverlapping clusters. To provide a variety of clustering solutions, the data sets were analyzed by four hierarchical clustering methods. External criterion measures indicated excellent recovery of the true cluster structure by the methods at the correct hierarchy level. Thus, the clustering present in the data was quite strong. The simulation results for the stopping rules revealed a wide range in their ability to determine the correct number of clusters in the data. Several procedures worked fairly well, whereas others performed rather poorly. Thus, the latter group of rules would appear to have little validity, particularly for data sets containing distinct clusters. Applied researchers are urged to select one or more of the better criteria. However, users are cautioned that the performance of some of the criteria may be data dependent.}, + language = {en}, + number = {2}, + journal = {Psychometrika}, + author = {Milligan, Glenn W. and Cooper, Martha C.}, + month = jun, + year = {1985}, + pages = {159-179}, + file = {C:\\Users\\saram\\Zotero\\storage\\2RE3GTMB\\Milligan and Cooper 1985 An examination of procedures for determining the number of clusters in a data set.pdf} +} + +@article{Gurrutxaga2011, + title = {Towards a Standard Methodology to Evaluate Internal Cluster Validity Indices}, + volume = {32}, + issn = {0167-8655}, + doi = {10.1016/j.patrec.2010.11.006}, + abstract = {The evaluation and comparison of internal cluster validity indices is a critical problem in the clustering area. The methodology used in most of the evaluations assumes that the clustering algorithms work correctly. We propose an alternative methodology that does not make this often false assumption. We compared 7 internal cluster validity indices with both methodologies and concluded that the results obtained with the proposed methodology are more representative of the actual capabilities of the compared indices.}, + number = {3}, + journal = {Pattern Recognition Letters}, + author = {Gurrutxaga, Ibai and Muguerza, Javier and Arbelaitz, Olatz and P{\'e}rez, Jes{\'u}s M. and Mart{\'\i}n, Jos{\'e} I.}, + month = feb, + year = {2011}, + keywords = {unsupervised learning,Cluster validation,Cluster validity index}, + pages = {505-515}, + file = {C:\\Users\\saram\\Zotero\\storage\\A2ZMTVUM\\Gurrutxaga et al. 2011 Towards a standard methodology to evaluate internal cluster validity indices.pdf} +} + +@article{Dimitriadou2002, + title = {An Examination of Indexes for Determining the Number of Clusters in Binary Data Sets}, + volume = {67}, + issn = {0033-3123, 1860-0980}, + doi = {10.1007/BF02294713}, + abstract = {The problem of choosing the correct number of clusters is as old as cluster analysis itself. A number of authors have suggested various indexes to facilitate this crucial decision. One of the most extensive comparative studies of indexes was conducted by Milligan and Cooper (1985). The present piece of work pursues the same goal under different conditions. In contrast to Milligan and Cooper's work, the emphasis here is on high-dimensional empirical binary data. Binary artificial data sets are constructed to reflect features typically encountered in real-world data situations in the field of marketing research. The simulation includes 162 binary data sets that are clustered by two different algorithms and lead to recommendations on the number of clusters for each index under consideration. Index results are evaluated and their performance is compared and analyzed.}, + language = {en}, + number = {1}, + journal = {Psychometrika}, + author = {Dimitriadou, Evgenia and Dolni{\v c}ar, Sara and Weingessel, Andreas}, + month = mar, + year = {2002}, + pages = {137-159}, + file = {C:\\Users\\saram\\Zotero\\storage\\KN5HJEZ7\\Dimitriadou et al. 2002 An examination of indexes for determining the number of clusters in binary data sets.pdf} +} + +@article{Vinh2010, + title = {Information {{Theoretic Measures}} for {{Clusterings Comparison}}: {{Variants}}, {{Properties}}, {{Normalization}} and {{Correction}} for {{Chance}}}, + volume = {11}, + issn = {1532-4435}, + shorttitle = {Information {{Theoretic Measures}} for {{Clusterings Comparison}}}, + abstract = {Information theoretic measures form a fundamental class of measures for comparing clusterings, and have recently received increasing interest. Nevertheless, a number of questions concerning their properties and inter-relationships remain unresolved. In this paper, we perform an organized study of information theoretic measures for clustering comparison, including several existing popular measures in the literature, as well as some newly proposed ones. We discuss and prove their important properties, such as the metric property and the normalization property. We then highlight to the clustering community the importance of correcting information theoretic measures for chance, especially when the data size is small compared to the number of clusters present therein. Of the available information theoretic based measures, we advocate the normalized information distance (NID) as a general measure of choice, for it possesses concurrently several important properties, such as being both a metric and a normalized measure, admitting an exact analytical adjusted-for-chance form, and using the nominal [0,1] range better than other normalized variants.}, + journal = {J. Mach. Learn. Res.}, + author = {Vinh, Nguyen Xuan and Epps, Julien and Bailey, James}, + month = dec, + year = {2010}, + pages = {2837--2854}, + file = {C:\\Users\\saram\\Zotero\\storage\\5QBJHSAQ\\Vinh et al. 2010 Information Theoretic Measures for Clusterings Comparison Variants, Properties, Normalization and Correction for Chance.pdf} +} + +@article{Arbelaitz2013, + title = {An Extensive Comparative Study of Cluster Validity Indices}, + volume = {46}, + issn = {0031-3203}, + doi = {10.1016/j.patcog.2012.07.021}, + abstract = {The validation of the results obtained by clustering algorithms is a fundamental part of the clustering process. The most used approaches for cluster validation are based on internal cluster validity indices. Although many indices have been proposed, there is no recent extensive comparative study of their performance. In this paper we show the results of an experimental work that compares 30 cluster validity indices in many different environments with different characteristics. These results can serve as a guideline for selecting the most suitable index for each possible application and provide a deep insight into the performance differences between the currently available indices.}, + number = {1}, + journal = {Pattern Recognition}, + author = {Arbelaitz, Olatz and Gurrutxaga, Ibai and Muguerza, Javier and P{\'e}rez, Jes{\'u}s M. and Perona, I{\~n}igo}, + month = jan, + year = {2013}, + keywords = {Cluster validity index,Crisp clustering,Comparative analysis}, + pages = {243-256}, + file = {C:\\Users\\saram\\Zotero\\storage\\S88J8N5U\\Arbelaitz et al. 2013 An extensive comparative study of cluster validity indices.pdf} +} + +@article{Dunn1973, + title = {A {{Fuzzy Relative}} of the {{ISODATA Process}} and {{Its Use}} in {{Detecting Compact Well}}-{{Separated Clusters}}}, + volume = {3}, + issn = {0022-0280}, + doi = {10.1080/01969727308546046}, + abstract = {Two fuzzy versions of the k-means optimal, least squared error partitioning problem are formulated for finite subsets X of a general inner product space. In both cases, the extremizing solutions are shown to be fixed points of a certain operator T on the class of fuzzy, k-partitions of X, and simple iteration of T provides an algorithm which has the descent property relative to the least squared error criterion function. In the first case, the range of T consists largely of ordinary (i.e. non-fuzzy) partitions of X and the associated iteration scheme is essentially the well known ISODATA process of Ball and Hall. However, in the second case, the range of T consists mainly of fuzzy partitions and the associated algorithm is new; when X consists of k compact well separated (CWS) clusters, Xi , this algorithm generates a limiting partition with membership functions which closely approximate the characteristic functions of the clusters Xi . However, when X is not the union of k CWS clusters, the limiting partition is truly fuzzy in the sense that the values of its component membership functions differ substantially from 0 or 1 over certain regions of X. Thus, unlike ISODATA, the ``fuzzy'' algorithm signals the presence or absence of CWS clusters in X. Furthermore, the fuzzy algorithm seems significantly less prone to the ``cluster-splitting'' tendency of ISODATA and may also be less easily diverted to uninteresting locally optimal partitions. Finally, for data sets X consisting of dense CWS clusters embedded in a diffuse background of strays, the structure of X is accurately reflected in the limiting partition generated by the fuzzy algorithm. Mathematical arguments and numerical results are offered in support of the foregoing assertions.}, + number = {3}, + journal = {Journal of Cybernetics}, + author = {Dunn, J. C.}, + month = jan, + year = {1973}, + pages = {32-57}, + file = {C:\\Users\\saram\\Zotero\\storage\\EFXRN22J\\Dunn 1973 A Fuzzy Relative of the ISODATA Process and Its Use in Detecting Compact Well-Separated Clusters.pdf} +} + +@article{Bezdek1998a, + title = {Some {{New Indexes}} of {{Cluster Validity}}}, + volume = {28}, + issn = {1083-4419}, + doi = {10.1109/3477.678624}, + abstract = {We review two clustering algorithms (hard c-means and single linkage) and three indexes of crisp cluster validity (Hubert's statistics, the Davies-Bouldin index, and Dunn's index). We illustrate two deficiencies of Dunn's index which make it overly sensitive to noisy clusters and propose several generalizations of it that are not as brittle to outliers in the clusters. Our numerical examples show that the standard measure of interset distance (the minimum distance between points in a pair of sets) is the worst (least reliable) measure upon which to base cluster validation indexes when the clusters are expected to form volumetric clouds. Experimental results also suggest that intercluster separation plays a more important role in cluster validation than cluster diameter. Our simulations show that while Dunn's original index has operational flaws, the concept it embodies provides a rich paradigm for validation of partitions that have cloud-like clusters. Five of our generalized Dunn's indexes provide the best validation results for the simulations presented}, + number = {3}, + journal = {Trans. Sys. Man Cyber. Part B}, + author = {Bezdek, J. C. and Pal, N. R.}, + month = jun, + year = {1998}, + pages = {301--315} +} + +@article{Bezdek1998, + title = {Some New Indexes of Cluster Validity}, + volume = {28}, + issn = {1083-4419}, + doi = {10.1109/3477.678624}, + abstract = {We review two clustering algorithms (hard c-means and single linkage) and three indexes of crisp cluster validity (Hubert's statistics, the Davies-Bouldin index, and Dunn's index). We illustrate two deficiencies of Dunn's index which make it overly sensitive to noisy clusters and propose several generalizations of it that are not as brittle to outliers in the clusters. Our numerical examples show that the standard measure of interset distance (the minimum distance between points in a pair of sets) is the worst (least reliable) measure upon which to base cluster validation indexes when the clusters are expected to form volumetric clouds. Experimental results also suggest that intercluster separation plays a more important role in cluster validation than cluster diameter. Our simulations show that while Dunn's original index has operational flaws, the concept it embodies provides a rich paradigm for validation of partitions that have cloud-like clusters. Five of our generalized Dunn's indexes provide the best validation results for the simulations presented}, + number = {3}, + journal = {IEEE Transactions on Systems, Man, and Cybernetics, Part B (Cybernetics)}, + author = {Bezdek, J. C. and Pal, N. R.}, + month = jun, + year = {1998}, + keywords = {Clustering algorithms,Couplings,Partitioning algorithms,Cybernetics,Indexes,Cluster validity,man-machine systems,Davies-Bouldin index,Dunn's index,volumetric clouds,Clouds,Computer science,Fuzzy logic,Machine intelligence,Measurement standards,Statistics,Volume measurement}, + pages = {301-315}, + file = {C:\\Users\\saram\\Zotero\\storage\\SRB2C3B6\\Bezdek_Pal 1998 Some new indexes of cluster validity.pdf} +} + +@article{Morris2008, + title = {A {{Survey}} of {{Vision}}-{{Based Trajectory Learning}} and {{Analysis}} for {{Surveillance}}}, + volume = {18}, + issn = {1051-8215}, + doi = {10.1109/TCSVT.2008.927109}, + abstract = {This paper presents a survey of trajectory-based activity analysis for visual surveillance. It describes techniques that use trajectory data to define a general set of activities that are applicable to a wide range of scenes and environments. Events of interest are detected by building a generic topographical scene description from underlying motion structure as observed over time. The scene topology is automatically learned and is distinguished by points of interest and motion characterized by activity paths. The methods we review are intended for real-time surveillance through definition of a diverse set of events for further analysis triggering, including virtual fencing, speed profiling, behavior classification, anomaly detection, and object interaction.}, + number = {8}, + journal = {IEEE Transactions on Circuits and Systems for Video Technology}, + author = {Morris, B. T. and Trivedi, M. M.}, + month = aug, + year = {2008}, + keywords = {image motion analysis,surveillance,anomaly detection,behavior classification,motion structure,object interaction,speed profiling,surveillance analysis,virtual fencing,vision-based trajectory learning,Event Detection,Motion Analysis,Situational Awareness,Statistical Learning}, + pages = {1114-1127}, + file = {C:\\Users\\saram\\Zotero\\storage\\7K9BGI7I\\Morris_Trivedi 2008 A Survey of Vision-Based Trajectory Learning and Analysis for Surveillance.pdf} +} + +@article{Franke2012, + title = {High-Density Microelectrode Array Recordings and Real-Time Spike Sorting for Closed-Loop Experiments: An Emerging Technology to Study Neural Plasticity}, + volume = {6}, + issn = {1662-5110}, + shorttitle = {High-Density Microelectrode Array Recordings and Real-Time Spike Sorting for Closed-Loop Experiments}, + doi = {10.3389/fncir.2012.00105}, + abstract = {Understanding plasticity of neural networks is a key to comprehending their development and function. A powerful technique to study neural plasticity includes recording and control of pre- and postsynaptic neural activity, e.g., by using simultaneous intracellular recording and stimulation of several neurons. Intracellular recording is, however, a demanding technique and has its limitations in that only a small number of neurons can be stimulated and recorded from at the same time. Extracellular techniques offer the possibility to simultaneously record from larger numbers of neurons with relative ease, at the expenses of increased efforts to sort out single neuronal activities from the recorded mixture, which is a time consuming and error prone step, referred to as spike sorting. In this mini-review, we describe recent technological developments in two separate fields, namely CMOS-based high-density microelectrode arrays, which also allow for extracellular stimulation of neurons, and real-time spike sorting. We argue that these techniques, when combined, will provide a powerful tool to study plasticity in neural networks consisting of several thousand neurons in vitro.}, + language = {English}, + journal = {Frontiers in Neural Circuits}, + author = {Franke, Felix and J{\"a}ckel, David and Dragas, Jelena and M{\"u}ller, Jan and Radivojevic, Milos and Bakkum, Douglas and Hierlemann, Andreas}, + year = {2012}, + keywords = {Spike sorting,closed-loop,Real-time,multielectrode arrays,neural cultures}, + file = {C:\\Users\\saram\\Zotero\\storage\\8XI6NVQW\\fncir-06-00105.pdf} +} + +@article{Mohan2015, + title = {Dendritic and {{Axonal Architecture}} of {{Individual Pyramidal Neurons}} across {{Layers}} of {{Adult Human Neocortex}}}, + volume = {25}, + issn = {1047-3211}, + doi = {10.1093/cercor/bhv188}, + number = {12}, + journal = {Cerebral Cortex}, + author = {Mohan, Hemanth and Verhoog, Matthijs B. and Doreswamy, Keerthi K. and Eyal, Guy and Aardse, Romy and Lodder, Brendan N. and Goriounova, Natalia A. and Asamoah, Boateng and Brakspear, B. and Clementine, A. B. and Groot, Colin and {van der Sluis}, Sophie and Testa-Silva, Guilherme and Obermayer, Joshua and Boudewijns, Zimbo S. R. M. and Narayanan, Rajeevan T. and Baayen, Johannes C. and Segev, Idan and Mansvelder, Huibert D. and Kock, De and P.j, Christiaan}, + month = dec, + year = {2015}, + pages = {4839-4853}, + file = {C:\\Users\\saram\\Zotero\\storage\\UCZRAF4E\\Mohan et al_2015_Dendritic and Axonal Architecture of Individual Pyramidal Neurons across Layers.pdf} +} + +@article{Cohen, + title = {Where {{Does EEG Come From}} and {{What Does It Mean}}?}, + issn = {0166-2236}, + doi = {10.1016/j.tins.2017.02.004}, + abstract = {Electroencephalography (EEG) has been instrumental in making discoveries about cognition, brain function, and dysfunction. However, where do EEG signals come from and what do they mean? The purpose of this paper is to argue that we know shockingly little about the answer to this question, to highlight what we do know, how important the answers are, and how modern neuroscience technologies that allow us to measure and manipulate neural circuits with high spatiotemporal accuracy might finally bring us some answers. Neural oscillations are perhaps the best feature of EEG to use as anchors because oscillations are observed and are studied at multiple spatiotemporal scales of the brain, in multiple species, and are widely implicated in cognition and in neural computations.}, + journal = {Trends in Neurosciences}, + author = {Cohen, Michael X}, + file = {C:\\Users\\saram\\Zotero\\storage\\FD9TXSCE\\Cohen Where Does EEG Come From and What Does It Mean.pdf} +} + +@misc{zotero-577, + title = {Chp\%{{3A10}}.1007\%{{2F978}}-3-319-26450-9\_11.Pdf}, + howpublished = {http://download.springer.com/static/pdf/582/chp\%253A10.1007\%252F978-3-319-26450-9\_11.pdf?originUrl=http\%3A\%2F\%2Flink.springer.com\%2Fchapter\%2F10.1007\%2F978-3-319-26450-9\_11\&token2=exp=1490130433\textasciitilde{}acl=\%2Fstatic\%2Fpdf\%2F582\%2Fchp\%25253A10.1007\%25252F978-3-319-26450-9\_11.pdf\%3ForiginUrl\%3Dhttp\%253A\%252F\%252Flink.springer.com\%252Fchapter\%252F10.1007\%252F978-3-319-26450-9\_11*\textasciitilde{}hmac=cb4eb1cd749c07822eb1e48bfb60f839f1535bd943db67a2643ec2d60dc0c0cb}, + file = {C:\\Users\\saram\\Zotero\\storage\\3ICMQEP3\\chp%3A10.1007%2F978-3-319-26450-9_11.html} +} + +@incollection{Valdes2016, + series = {Studies in Computational Intelligence}, + title = {Visualization of {{Handwritten Signatures Based}} on {{Haptic Information}}}, + copyright = {\textcopyright{}2016 Springer International Publishing Switzerland}, + isbn = {978-3-319-26448-6 978-3-319-26450-9}, + abstract = {The problem of user authentication is a crucial component of many solutions related to defense and security. The identification and verification of users allows the implementation of technologies and services oriented to the intended user and to prevent misuse by illegitimate users. It has become an essential part of many systems and it is used in several applications, particularly in the military. The handwritten signature is an element intrinsically endowed with specificity related to an individual and it has been used extensively as a key element in identification/authentication. Haptic technologies allow the use of additional information like kinesthetic and tactile feedback from the user, thus providing new sources of biometric information that can be incorporated within the process in addition to the traditional image-based sources. While work had been done on using haptic information for the analysis of handwritten signatures, most efforts have been oriented to the direct use of machine learning techniques for identification/verification. Comparatively fewer targeted information visualization and understanding the internal structure of the data. Here a variety of techniques are used for obtaining representations of the data in low dimensional spaces amenable to visual inspection (two and three dimensions). The approach is unsupervised, although for illustration and comparison purposes, class information is used as qualitative reference. Estimations of the intrinsic dimension for the haptic data are obtained which shows that low dimensional subspaces contains most of the data structure. Implicit and explicit mappings techniques transforming the original high dimensional data to low dimensional spaces are considered. They include linear and nonlinear, classical and computational intelligence based methods: Principal Components, Sammon mapping, Isomap, Locally Linear Embedding, Spectral Embedding, t-Distributed Stochastic Neighbour Embedding, Generative Topographic Mapping, Neuroscale and Genetic Programming. They provided insight about common and specific characteristics found in haptic signatures, their within/among subjects variability and the important role of certain types of haptic variables. The results obtained suggest ways how to design new representations for identification and verification procedures using tactile devices.}, + language = {en}, + number = {621}, + booktitle = {Recent {{Advances}} in {{Computational Intelligence}} in {{Defense}} and {{Security}}}, + publisher = {{Springer International Publishing}}, + author = {Vald{\'e}s, Julio J. and Alsulaiman, Fawaz A. and Saddik, Abdulmotaleb El}, + editor = {Abielmona, Rami and Falcon, Rafael and Zincir-Heywood, Nur and Abbass, Hussein A.}, + year = {2016}, + keywords = {dimensionality reduction,Computational Intelligence,Artificial Intelligence (incl. Robotics),Security Science and Technology,Intrinsic dimension,Manifolds,Nonlinear transformations,Implicit/explicit mappings,Haptics,User authentication}, + pages = {277-307}, + file = {C:\\Users\\saram\\Zotero\\storage\\FI7DXJI4\\Valdés et al. 2016 Visualization of Handwritten Signatures Based on Haptic Information.pdf}, + doi = {10.1007/978-3-319-26450-9_11} +} + +@inproceedings{Bezdek2002, + title = {{{VAT}}: A Tool for Visual Assessment of (Cluster) Tendency}, + volume = {3}, + shorttitle = {{{VAT}}}, + doi = {10.1109/IJCNN.2002.1007487}, + abstract = {A method is given for visually assessing the cluster tendency of a set of Objects O = o1, . . . ,on when they are represented either as object vectors or by numerical pairwise dissimilarity values. The objects are reordered and the reordered matrix of pair wise object dissimilarities is displayed as an intensity image. Clusters are indicated by dark blocks of pixels along the diagonal}, + booktitle = {Proceedings of the 2002 {{International Joint Conference}} on {{Neural Networks}}, 2002. {{IJCNN}} '02}, + author = {Bezdek, J. C. and Hathaway, R. J.}, + year = {2002}, + keywords = {pattern clustering,Clustering algorithms,Pixel,Computer science,data analysis,data visualisation,neural nets,VAT,cluster tendency visual assessment tool,intensity image,numerical pairwise dissimilarity values,object vectors,pair wise object dissimilarities,reordered matrix,Clustering methods,Digital images,Mathematical model,Mathematics,Pattern recognition,Symmetric matrices}, + pages = {2225-2230}, + file = {C:\\Users\\saram\\Zotero\\storage\\XHQA2KQH\\Bezdek and Hathaway 2002 VAT a tool for visual assessment of (cluster) tendency.pdf} +} + +@article{Havens2012, + title = {An {{Efficient Formulation}} of the {{Improved Visual Assessment}} of {{Cluster Tendency}} ({{iVAT}}) {{Algorithm}}}, + volume = {24}, + issn = {1041-4347}, + doi = {10.1109/TKDE.2011.33}, + abstract = {The VAT algorithm is a visual method for determining the possible number of clusters in, or the cluster tendency of a set of objects. The improved VAT (iVAT) algorithm uses a graph-theoretic distance transform to improve the effectiveness of the VAT algorithm for ``tough'' cases where VAT fails to accurately show the cluster tendency. In this paper, we present an efficient formulation of the iVAT algorithm which reduces the computational complexity of the iVAT algorithm from O(N3) to O(N2). We also prove a direct relationship between the VAT image and the iVAT image produced by our efficient formulation. We conclude with three examples displaying clustering tendencies in three of the Karypis data sets that illustrate the improvement offered by the iVAT transformation. We also provide a comparison of iVAT images to those produced by the Reverse Cuthill-Mckee (RCM) algorithm; our examples suggest that iVAT is superior to the RCM method of display.}, + number = {5}, + journal = {IEEE Transactions on Knowledge and Data Engineering}, + author = {Havens, T. C. and Bezdek, J. C.}, + month = may, + year = {2012}, + keywords = {clustering,pattern clustering,VAT image,Algorithm design and analysis,Clustering algorithms,Couplings,Partitioning algorithms,computational complexity,graph theory,transforms,Karypis data set,O(N2) complexity,O(N3) complexity,graph-theoretic distance transform,iVAT algorithm,iVAT image,improved visual assessment of cluster tendency,reverse Cuthill-Mckee algorithm,visual method,Complexity theory,Visualization,VAT.,cluster tendency}, + pages = {813-822}, + file = {C:\\Users\\saram\\Zotero\\storage\\TBZASDBN\\Havens and Bezdek 2012 An Efficient Formulation of the Improved Visual Assessment of Cluster Tendency (iVAT) Algorithm.pdf} +} + +@article{Weinstein2008, + title = {A {{Postgenomic Visual Icon}}}, + volume = {319}, + copyright = {\textcopyright{} 2008 American Association for the Advancement of Science}, + issn = {0036-8075, 1095-9203}, + doi = {10.1126/science.1151888}, + abstract = {A decade of experience in visualizing large-scale genotypic and phenotypic data as heat maps has illuminated the strengths and limitations of the approach. +A decade of experience in visualizing large-scale genotypic and phenotypic data as heat maps has illuminated the strengths and limitations of the approach. +A decade of experience in visualizing large-scale genotypic and phenotypic data as heat maps has illuminated the strengths and limitations of the approach.}, + language = {en}, + number = {5871}, + journal = {Science}, + author = {Weinstein, John N.}, + month = mar, + year = {2008}, + pages = {1772-1773}, + file = {C:\\Users\\saram\\Zotero\\storage\\74VSCNBP\\Weinstein 2008 A Postgenomic Visual Icon.pdf}, + pmid = {18369130} +} + +@article{Wilkinson2009, + title = {The {{History}} of the {{Cluster Heat Map}}}, + volume = {63}, + issn = {0003-1305}, + doi = {10.1198/tas.2009.0033}, + abstract = {The cluster heat map is an ingenious display that simultaneously reveals row and column hierarchical cluster structure in a data matrix. It consists of a rectangular tiling, with each tile shaded on a color scale to represent the value of the corresponding element of the data matrix. The rows (columns) of the tiling are ordered such that similar rows (columns) are near each other. On the vertical and horizontal margins of the tiling are hierarchical cluster trees. This cluster heat map is a synthesis of several different graphic displays developed by statisticians over more than a century. We locate the earliest sources of this display in late 19th century publications, and trace a diverse 20th century statistical literature that provided a foundation for this most widely used of all bioinformatics displays.}, + number = {2}, + journal = {The American Statistician}, + author = {Wilkinson, Leland and Friendly, Michael}, + month = may, + year = {2009}, + keywords = {Visualization,Cluster analysis,Heatmap,Microarray}, + pages = {179-184}, + file = {C:\\Users\\saram\\Zotero\\storage\\8PAG8J4X\\Wilkinson and Friendly 2009 The History of the Cluster Heat Map.pdf} +} + +@article{Prim1957, + title = {Shortest {{Connection Networks And Some Generalizations}}}, + volume = {36}, + issn = {1538-7305}, + doi = {10.1002/j.1538-7305.1957.tb01515.x}, + abstract = {The basic problem considered is that of interconnecting a given set of terminals with a shortest possible network of direct links. Simple and practical procedures are given for solving this problem both graphically and computationally. It develops that these procedures also provide solutions for a much broader class of problems, containing other examples of practical interest.}, + language = {en}, + number = {6}, + journal = {Bell System Technical Journal}, + author = {Prim, R. C.}, + month = nov, + year = {1957}, + pages = {1389-1401} +} + +@article{Havens2009, + title = {Is {{VAT}} Really Single Linkage in Disguise?}, + volume = {55}, + issn = {1012-2443, 1573-7470}, + doi = {10.1007/s10472-009-9157-2}, + abstract = {This paper addresses the relationship between the Visual Assessment of cluster Tendency (VAT) algorithm and single linkage hierarchical clustering. We present an analytical comparison of the two algorithms in conjunction with numerical examples to show that VAT reordering of dissimilarity data is directly related to the clusters produced by single linkage hierarchical clustering. This analysis is important to understanding the underlying theory of VAT and, more generally, other algorithms that are based on VAT-ordered dissimilarity data.}, + language = {en}, + number = {3-4}, + journal = {Annals of Mathematics and Artificial Intelligence}, + author = {Havens, Timothy C. and Bezdek, James C. and Keller, James M. and Popescu, Mihail and Huband, Jacalyn M.}, + month = apr, + year = {2009}, + pages = {237}, + file = {C:\\Users\\saram\\Zotero\\storage\\4WH3PAQ8\\Havens et al. 2009 Is VAT really single linkage in disguise.pdf} +} + +@inproceedings{Havens2013, + title = {Scalable Single Linkage Hierarchical Clustering for Big Data}, + doi = {10.1109/ISSNIP.2013.6529823}, + abstract = {Personal computing technologies are everywhere; hence, there are an abundance of staggeringly large data sets-the Library of Congress has stored over 160 terabytes of web data and it is estimated that Facebook alone logs nearly a petabyte of data per day. Thus, there is a pertinent need for systems by which one can elucidate the similarity and dissimilarity among and between groups in these big data sets. Clustering is one way to find these groups. In this paper, we extend the scalable Visual Assessment of Tendency (sVAT) algorithm to return single-linkage partitions of big data sets. The sVAT algorithm is designed to provide visual evidence of the number of clusters in unloadable (big) data sets. The extension we describe for sVAT enables it to also then efficiently return the data partition as indicated by the visual evidence. The computational complexity and storage requirements of sVAT are (usually) significantly less than the O(n2) requirement of the classic single-linkage hierarchical algorithm. We show that sVAT is a scalable instantiation of single-linkage clustering for data sets that contain c compact-separated clusters, where c $\ll$ n; n is the number of objects. For data sets that do not contain compact-separated clusters, we show that sVAT produces a good approximation of single-linkage partitions. Experimental results are presented for both synthetic and real data sets.}, + booktitle = {2013 {{IEEE Eighth International Conference}} on {{Intelligent Sensors}}, {{Sensor Networks}} and {{Information Processing}}}, + author = {Havens, T. C. and Bezdek, J. C. and Palaniswami, M.}, + month = apr, + year = {2013}, + keywords = {pattern clustering,Algorithm design and analysis,Clustering algorithms,Partitioning algorithms,Big Data,computational complexity,Visualization,personal computing,storage management,Facebook,Library of Congress,Web data,big data sets,compact-separated clusters,large data sets,personal computing technologies,sVAT algorithm,scalable single linkage hierarchical clustering,scalable visual assessment of tendency algorithm,single-linkage partitions,storage requirements,Approximation algorithms,Vectors}, + pages = {396-401}, + file = {C:\\Users\\saram\\Zotero\\storage\\Q957GNBZ\\Havens et al. 2013 Scalable single linkage hierarchical clustering for big data.pdf} +} + +@article{Maaten2008, + title = {Visualizing {{Data}} Using T-{{SNE}}}, + volume = {9}, + issn = {ISSN 1533-7928}, + number = {Nov}, + journal = {Journal of Machine Learning Research}, + author = {van der Maaten, Laurens and Hinton, Geoffrey}, + year = {2008}, + pages = {2579-2605}, + file = {C:\\Users\\saram\\Zotero\\storage\\DVGDGTM2\\Maaten and Hinton 2008 Visualizing Data using t-SNE.pdf} +} + +@article{Bartho2004, + title = {Characterization of Neocortical Principal Cells and Interneurons by Network Interactions and Extracellular Features}, + volume = {92}, + issn = {0022-3077}, + doi = {10.1152/jn.01170.2003}, + abstract = {Most neuronal interactions in the cortex occur within local circuits. Because principal cells and GABAergic interneurons contribute differently to cortical operations, their experimental identification and separation is of utmost important. We used 64-site two-dimensional silicon probes for high-density recording of local neurons in layer 5 of the somatosensory and prefrontal cortices of the rat. Multiple-site monitoring of units allowed for the determination of their two-dimensional spatial position in the brain. Of the approximately 60,000 cell pairs recorded, 0.2\% showed robust short-term interactions. Units with significant, short-latency ($<$3 ms) peaks following their action potentials in their cross-correlograms were characterized as putative excitatory (pyramidal) cells. Units with significant suppression of spiking of their partners were regarded as putative GABAergic interneurons. A portion of the putative interneurons was reciprocally connected with pyramidal cells. Neurons physiologically identified as inhibitory and excitatory cells were used as templates for classification of all recorded neurons. Of the several parameters tested, the duration of the unfiltered (1 Hz to 5 kHz) spike provided the most reliable clustering of the population. High-density parallel recordings of neuronal activity, determination of their physical location and their classification into pyramidal and interneuron classes provide the necessary tools for local circuit analysis.}, + language = {eng}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Barth{\'o}, Peter and Hirase, Hajime and Monconduit, Lena{\"\i}c and Zugaro, Michael and Harris, Kenneth D. and Buzs{\'a}ki, Gy{\"o}rgy}, + month = jul, + year = {2004}, + keywords = {Interneurons,Animals,Nerve Net,Rats,Rats; Sprague-Dawley,Extracellular Fluid,Neocortex,Neural Inhibition,Action potentials}, + pages = {600-608}, + file = {C:\\Users\\saram\\Zotero\\storage\\FINUX526\\Bartho, Buzsaki, 2004, Characterization of Neocortical Principal Cells and Interneurons by Network Interactions and Extracellular Features.pdf}, + pmid = {15056678} +} + +@article{VidalRuiz1985, + title = {Is the {{DTW}} ``Distance'' Really a Metric? {{An}} Algorithm Reducing the Number of {{DTW}} Comparisons in Isolated Word Recognition}, + volume = {4}, + issn = {0167-6393}, + shorttitle = {Is the {{DTW}} ``Distance'' Really a Metric?}, + doi = {10.1016/0167-6393(85)90058-5}, + abstract = {In general, the inter-word dissimilarity measure supplied by Dynamic Time Warping algorithms can not be assumed to be a metric because it does not fully satisfy all the required properties (the triangle inequality in particular). In this paper, however, empirical evidence of loose satisfaction of these properties with real speech will be presented, allowing the assumption of a ``loose metric space'' structure in the set of parametric representations of words in a given vocabulary. Based on this structure, a search algorithm will be introduced which eliminates the need of computing the DTW-distance between the test word and many of the prototypes in the dictionary for Isolated Word Recognition. Experiments with vocabularies of different characteristics, have proved that the algorithm finds the nearest prototype by performing DTW computations with an average of only 30\% of the words in the dictionary. This figure has been observed to decrease with increasing dictionary size, and also if the test word is close to the corresponding prototype (``well uttered'' word). Das sich aus der Anwendung des dynamischen Zeitverzerrungsalgorithmus (DTW0 ergebende Un{\"a}hnlichkeitsma$\beta$ zwischen W{\"o}rten kann im allgemeinen nicht als Metrik betrachtet werden, da es nicht alle erforderlichen Eigenschaften besitzt (insbesondere die Eigenschaft der Dreiecksungleichung). In diesem Beitrag wird jedoch eine ann{\"a}hernde Erf{\"u}llung dieser Eigenschaften im nat{\"u}rlichen Sprachsignal empirisch nachgewiesen. Die erlaubt die Annahme einer ``losen'' metrischen Struktur innerhalb des Raumes der parametrischen Darstellungen der W{\"o}rter eines Wortschatzes f{\"u}r ein Einzelworterkennungssystem. Gest{\"u}tzt auf diese Struktur, wird ein Suchalgorithms eingef{\"u}hrt, welcher die Berechnung der DTW-Distanz zwischen dem Testwort und vielen Prototypen im Lexikon {\"u}berfl{\"u}ssig macht. Versuche mit Wortverzeichnissen unterschiedlicher Charakteristika zeigen, da$\beta$ der Algorithms den besten Prototyp schon nach Berechnung der DTW-Distanz von durchschnittlich 30\% des Gesamtinventars findet. Diese Zahl nimmit bei steigendes Lexikonumfang sowie zunehmender {\"A}hnlichkeit des Testwortes mit einem entsprechenden Prototyp (bewu$\beta$t ``korrekt'' ausgesprochenes Wort) ab. G{\'e}n{\'e}ralement, la mesure de dissimilarit{\'e} inter-mots fournie par les algorithmes de ``distorsion temporelle dynamique'' (DTW) ne peut sevir de m{\'e}trique, car elle ne satisfait pas {\`a} toutes les propri{\'e}tes requises (l'in{\'e}gralit{\'e} triangulaire en particulier). Dans cet article, cependant, l'{\'e}vidence empirique selon laquelle la parole naturelle satisfait approximativement {\`a} ces propri{\'e}t{\'e}s, est mise en lumi{\`e}re; ce fait autorise l'hypoth{\`e}se d'une structure ``d'espace m{\'e}trique vague'' dans l'ensemble des repr{\'e}sentations param{\'e}triques des mots dans un vocabulaire donn{\'e}. Bas{\'e} sur cette structure, un algorithme de recherche dans cet espace est introduit, algorithme qui en Reconnaissance de Mots Isol{\'e}s, {\'e}limine la n{\'e}cessit{\'e} de calculer la distance-DTW entre le mot-test et un grand nombre de mots prototypes du dictionnaire. Des exp{\'e}riences men{\'e}es sur des vocabulaires de caract{\'e}ristiques diff{\'e}rentes ont d{\'e}montr{\'e} que cet algorithme d{\'e}termine le prototype le plus proche en effectuant les op{\'e}rations de ``distortion temporelle dynamique'' (DTW) sur une moyenne de 30\% seulement des mots du dictionnaire. Il a {\'e}t{\'e} observ{\'e} que ce chiffre tend {\`a} d{\'e}cro{\^\i}tre avec l'accroissement de la taille du dictionnaire, et aussi dans le cas o{\`u} le mot est proche du prototype correspondant (mot ``beien prononc{\'e}'').}, + number = {4}, + journal = {Speech Communication}, + author = {Vidal Ruiz, Enrique and Casacuberta Nolla, Francisco and Rulot Segovia, Hector}, + month = dec, + year = {1985}, + keywords = {Isolated word recognition,dynamic time warping,triangle inequality,metric spaces,nearest neighbours,search algorithms,computational geometry}, + pages = {333-344}, + file = {C:\\Users\\saram\\Zotero\\storage\\SKTB9Z3R\\Vidal Ruiz et al. 1985 Is the DTW “distance” really a metric An algorithm reducing the number of DTW comparisons in isolated word recognition.pdf} +} + +@article{Gower1969, + title = {Minimum {{Spanning Trees}} and {{Single Linkage Cluster Analysis}}}, + volume = {18}, + issn = {0035-9254}, + doi = {10.2307/2346439}, + abstract = {Minimum spanning trees (MST) and single linkage cluster analysis (SLCA) are explained and it is shown that all the information required for the SLCA of a set of points is contained in their MST. Known algorithms for finding the MST are discussed. They are efficient even when there are very many points; this makes a SLCA practicable when other methods of cluster analysis are not. The relevant computing procedures are published in the Algorithm section of the same issue of Applied Statistics. The use of the MST in the interpretation of vector diagrams arising in multivariate analysis is illustrated by an example.}, + number = {1}, + journal = {Journal of the Royal Statistical Society. Series C (Applied Statistics)}, + author = {Gower, J. C. and Ross, G. J. S.}, + year = {1969}, + pages = {54-64} +} + +@article{Kumar2017, + title = {A Visual-Numeric Approach to Clustering and Anomaly Detection for Trajectory Data}, + volume = {33}, + issn = {0178-2789, 1432-2315}, + doi = {10.1007/s00371-015-1192-x}, + abstract = {This paper proposes a novel application of Visual Assessment of Tendency (VAT)-based hierarchical clustering algorithms (VAT, iVAT, and clusiVAT) for trajectory analysis. We introduce a new clustering based anomaly detection framework named iVAT+ and clusiVAT+ and use it for trajectory anomaly detection. This approach is based on partitioning the VAT-generated Minimum Spanning Tree based on an efficient thresholding scheme. The trajectories are classified as normal or anomalous based on the number of paths in the clusters. On synthetic datasets with fixed and variable numbers of clusters and anomalies, we achieve 98 \% classification accuracy. Our two-stage clusiVAT method is applied to 26,039 trajectories of vehicles and pedestrians from a parking lot scene from the real life MIT trajectories dataset. The first stage clusters the trajectories ignoring directionality. The second stage divides the clusters obtained from the first stage by considering trajectory direction. We show that our novel two-stage clusiVAT approach can produce natural and informative trajectory clusters on this real life dataset while finding representative anomalies.}, + language = {en}, + number = {3}, + journal = {The Visual Computer}, + author = {Kumar, Dheeraj and Bezdek, James C. and Rajasegarar, Sutharshan and Leckie, Christopher and Palaniswami, Marimuthu}, + month = mar, + year = {2017}, + pages = {265-281}, + file = {C:\\Users\\saram\\Zotero\\storage\\MV4DR2J8\\Kumar et al. 2017 A visual-numeric approach to clustering and anomaly detection for trajectory data.pdf} +} + +@article{Gerstein2000, + title = {Cross-Correlation Measures of Unresolved Multi-Neuron Recordings}, + volume = {100}, + issn = {0165-0270}, + doi = {10.1016/S0165-0270(00)00226-0}, + abstract = {An increasing number of laboratories are studying population properties of the nervous system using data where the spike activity of more than one neuron is recorded on each electrode and where, accidentally or deliberately, these activities are not resolved into single unit spike trains. We have previously examined the consequences for measurement of cross-correlation between two such electrodes in the limited case where all individual distant (between electrode) correlations are the same and all individual close (on a single electrode) correlations are the same [Bedenbaugh, P.H., and Gerstein, G.L. (1997). Multiunit normalized cross correlation differs from the average single-unit normalized correlation. Neural Computation 9, 1265\textendash{}1275]. Here, we lift these unrealistic restrictions to allow all values of individual correlation, and examine explicitly the cases of two or three unresolved neurons on each electrode. In these situations, the cross-correlation coefficient measured between the electrodes is a linear sum of the distant correlations, divided by a non-linear function of the close correlations. We then examine in detail the case of a single direct distant correlation and take account of all relevant indirect correlations. The measured interelectrode correlation shows a reduction of this actual distant correlation by a non-linear function of the close correlations on each electrode over most of their possible values. Finally, we examine the consequences of poor waveform sorting for correlation measures; here a supposedly isolated spike train is contaminated by some fraction of the activity of another train, a situation that unfortunately is all too common in experiments. All these distortions become far more serious in the more realistic situation of dynamic firing rates and correlations. This paper is intended as a cautionary note for those who want to draw inferences about neuronal organization and/or coding or representation by using cross-correlation analysis of unresolved recordings.}, + number = {1\textendash{}2}, + journal = {Journal of Neuroscience Methods}, + author = {Gerstein, George L.}, + month = jul, + year = {2000}, + keywords = {Multi-neuron,Extracellular spikes,Waveform sorting,Cross-correlation}, + pages = {41-51}, + file = {C:\\Users\\saram\\Zotero\\storage\\IAMTHH5S\\Gerstein 2000 Cross-correlation measures of unresolved multi-neuron recordings.pdf} +} + +@article{Ventura2012, + title = {Accurately Estimating Neuronal Correlation Requires a New Spike-Sorting Paradigm}, + volume = {109}, + issn = {0027-8424}, + doi = {10.1073/pnas.1115236109}, + abstract = {Neurophysiology is increasingly focused on identifying coincident activity among neurons. Strong inferences about neural computation are made from the results of such studies, so it is important that these results be accurate. However, the preliminary step in the analysis of such data, the assignment of spike waveforms to individual neurons (``spike-sorting''), makes a critical assumption which undermines the analysis: that spikes, and hence neurons, are independent. We show that this assumption guarantees that coincident spiking estimates such as correlation coefficients are biased. We also show how to eliminate this bias. Our solution involves sorting spikes jointly, which contrasts with the current practice of sorting spikes independently of other spikes. This new ``ensemble sorting'' yields unbiased estimates of coincident spiking, and permits more data to be analyzed with confidence, improving the quality and quantity of neurophysiological inferences. These results should be of interest outside the context of neuronal correlations studies. Indeed, simultaneous recording of many neurons has become the rule rather than the exception in experiments, so it is essential to spike sort correctly if we are to make valid inferences about any properties of, and relationships between, neurons.}, + number = {19}, + journal = {Proceedings of the National Academy of Sciences of the United States of America}, + author = {Ventura, Val{\'e}rie and Gerkin, Richard C.}, + month = may, + year = {2012}, + pages = {7230-7235}, + file = {C:\\Users\\saram\\Zotero\\storage\\65PGE8ZS\\Ventura and Gerkin 2012 Accurately estimating neuronal correlation requires a new spike-sorting paradigm.pdf}, + pmid = {22529350}, + pmcid = {PMC3358902} +} + +@article{Grun2009a, + title = {Data-{{Driven Significance Estimation}} for {{Precise Spike Correlation}}}, + volume = {101}, + issn = {0022-3077}, + doi = {10.1152/jn.00093.2008}, + abstract = {The mechanisms underlying neuronal coding and, in particular, the role of temporal spike coordination are hotly debated. However, this debate is often confounded by an implicit discussion about the use of appropriate analysis methods. To avoid incorrect interpretation of data, the analysis of simultaneous spike trains for precise spike correlation needs to be properly adjusted to the features of the experimental spike trains. In particular, nonstationarity of the firing of individual neurons in time or across trials, a spike train structure deviating from Poisson, or a co-occurrence of such features in parallel spike trains are potent generators of false positives. Problems can be avoided by including these features in the null hypothesis of the significance test. In this context, the use of surrogate data becomes increasingly important, because the complexity of the data typically prevents analytical solutions. This review provides an overview of the potential obstacles in the correlation analysis of parallel spike data and possible routes to overcome them. The discussion is illustrated at every stage of the argument by referring to a specific analysis tool (the Unitary Events method). The conclusions, however, are of a general nature and hold for other analysis techniques. Thorough testing and calibration of analysis tools and the impact of potentially erroneous preprocessing stages are emphasized.}, + number = {3}, + journal = {Journal of Neurophysiology}, + author = {Gr{\"u}n, Sonja}, + month = mar, + year = {2009}, + pages = {1126-1140}, + pmid = {19129298}, + pmcid = {PMC2666402} +} + +@article{Grun2009, + title = {Data-{{Driven Significance Estimation}} for {{Precise Spike Correlation}}}, + volume = {101}, + copyright = {Copyright \textcopyright{} 2009 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00093.2008}, + abstract = {The mechanisms underlying neuronal coding and, in particular, the role of temporal spike coordination are hotly debated. However, this debate is often confounded by an implicit discussion about the use of appropriate analysis methods. To avoid incorrect interpretation of data, the analysis of simultaneous spike trains for precise spike correlation needs to be properly adjusted to the features of the experimental spike trains. In particular, nonstationarity of the firing of individual neurons in time or across trials, a spike train structure deviating from Poisson, or a co-occurrence of such features in parallel spike trains are potent generators of false positives. Problems can be avoided by including these features in the null hypothesis of the significance test. In this context, the use of surrogate data becomes increasingly important, because the complexity of the data typically prevents analytical solutions. This review provides an overview of the potential obstacles in the correlation analysis of parallel spike data and possible routes to overcome them. The discussion is illustrated at every stage of the argument by referring to a specific analysis tool (the Unitary Events method). The conclusions, however, are of a general nature and hold for other analysis techniques. Thorough testing and calibration of analysis tools and the impact of potentially erroneous preprocessing stages are emphasized.}, + language = {en}, + number = {3}, + journal = {Journal of Neurophysiology}, + author = {Gr{\"u}n, Sonja}, + month = mar, + year = {2009}, + pages = {1126-1140}, + file = {C:\\Users\\saram\\Zotero\\storage\\GQBXIR2M\\Grün 2009 Data-Driven Significance Estimation for Precise Spike Correlation.pdf}, + pmid = {19129298} +} + +@article{Kaneko2007, + title = {Tracking {{Spike}}-{{Amplitude Changes}} to {{Improve}} the {{Quality}} of {{Multineuronal Data Analysis}}}, + volume = {54}, + issn = {0018-9294}, + doi = {10.1109/TBME.2006.886934}, + abstract = {During extracellular electrophysiological recording experiments, the waveform of neuronal spikes recorded from a single neuron often changes. These spike-waveform changes make single-neuron identification difficult, particularly when the activities of multiple neurons are simultaneously recorded with a multichannel microelectrode, such as a tetrode or a heptode. We have developed a tracking method of individual neurons despite their changing spike amplitudes. The method is based on a bottom-up hierarchical clustering algorithm that tracks each neuron's spike cluster during temporally overlapping clustering periods. We evaluated this method by comparing spike sorting with and without cluster tracking of an identical series of multineuronal spikes recorded from monkey area-TE neurons responding to a set of visual stimuli. According to Shannon's information theory, errors in spike-amplitude tracking reduce the expected value of the amount of information about a stimulus set that is transferred by the spike train of a cluster. In this study, cluster tracking significantly increased the expected value of the amount of information transferred by a spike train (p$<$0.01). Additionally, the stability of the stimulus preference and that of the cross-correlation between clusters improved significantly (p$<$0.000001). We conclude that cluster tracking improves the quality of multineuronal data analysis}, + number = {2}, + journal = {IEEE Transactions on Biomedical Engineering}, + author = {Kaneko, H. and Tamura, H. and Suzuki, S. S.}, + month = feb, + year = {2007}, + keywords = {Neurons,Animals,cellular biophysics,medical signal processing,neurophysiology,Electrodes,Nerve Net,Electrophysiology,Microelectrodes,Algorithms,bioelectric phenomena,Spike sorting,Humans,data analysis,information theory,statistical analysis,Shannon information theory,bottom-up hierarchical clustering algorithm,cross correlation,extracellular electrophysiological recording,heptode,monkey area-TE neurons,multichannel microelectrode,multineuronal data analysis,neuronal spikes,spike train,spike-amplitude changes,spike-waveform changes,temporally overlapping clustering periods,tetrode,Biomedical engineering,Disk recording,Extracellular,microelectrode recording,single-unit recording,spike discrimination,spike sorter,vision,Diagnosis; Computer-Assisted,Discriminant Analysis,Evoked Potentials; Visual,Macaca,Pattern Recognition; Automated,Temporal Lobe,Action potentials,Electroencephalography}, + pages = {262-272}, + file = {C:\\Users\\saram\\Zotero\\storage\\EIFJC27D\\Kaneko et al. 2007 Tracking Spike-Amplitude Changes to Improve the Quality of Multineuronal Data Analysis.pdf} +} + +@article{Cao2016, + title = {A Real-Time Spike Classification Method Based on Dynamic Time Warping for Extracellular Enteric Neural Recording with Large Waveform Variability}, + volume = {261}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2015.12.006}, + abstract = {Background +Computationally efficient spike recognition methods are required for real-time analysis of extracellular neural recordings. The enteric nervous system (ENS) is important to human health but less well-understood with few appropriate spike recognition algorithms due to large waveform variability. +New method +Here we present a method based on dynamic time warping (DTW) with high tolerance to variability in time and magnitude. Adaptive temporal gridding for ``fastDTW'' in similarity calculation significantly reduces the computational cost. The automated threshold selection allows for real-time classification for extracellular recordings. +Results +Our method is first evaluated on synthesized data at different noise levels, improving both classification accuracy and computational complexity over the conventional cross-correlation based template-matching method (CCTM) and PCA + k-means clustering without time warping. Our method is then applied to analyze the mouse enteric neural recording with mechanical and chemical stimuli. Successful classification of biphasic and monophasic spikes is achieved even when the spike variability is larger than millisecond in width and millivolt in magnitude. +Comparison with existing method(s) +In comparison with conventional template matching and clustering methods, the fastDTW method is computationally efficient with high tolerance to waveform variability. +Conclusions +We have developed an adaptive fastDTW algorithm for real-time spike classification of ENS recording with large waveform variability against colony motility, ambient changes and cellular heterogeneity.}, + journal = {Journal of Neuroscience Methods}, + author = {Cao, Yingqiu and Rakhilin, Nikolai and Gordon, Philip H. and Shen, Xiling and Kan, Edwin C.}, + month = mar, + year = {2016}, + keywords = {dynamic time warping,Enteric nervous system,FET sensors,Extracellular action potentials}, + pages = {97-109}, + file = {C:\\Users\\saram\\Zotero\\storage\\KHNIRJ87\\1-s2.0-S016502701500446X-main.pdf} +} + +@article{Kim2007a, + title = {Automatic Spike Detection Based on Adaptive Template Matching for Extracellular Neural Recordings}, + volume = {165}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2007.05.033}, + abstract = {Recordings of extracellular neural activity are used in many clinical applications and scientific studies. In most cases, these signals are analyzed as a point process, and a spike detection algorithm is required to estimate the times at which action potentials occurred. Recordings from high-density microelectrode arrays (MEAs) and low-impedance microelectrodes often have a low signal-to-noise ratio (SNR \< 10) and contain action potentials from more than one neuron. We describe a new detection algorithm based on template matching that only requires the user to specify the minimum and maximum firing rates of the neurons. The algorithm iteratively estimates the morphology of the most prominent action potentials. It is able to achieve a sensitivity of \>90\% with a false positive rate of \<5 Hz in recordings with an estimated SNR = 3, and it performs better than an optimal threshold detector in recordings with an estimated SNR \> 2.5.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Kim, Sunghan and McNames, James}, + month = sep, + year = {2007}, + keywords = {spike train,spike discrimination,Spike detection,Extracellular neuronal recordings,Action potential,Matched filter,Eigenfilter,Threshold selection}, + pages = {165-174}, + file = {C:\\Users\\saram\\Zotero\\storage\\VGIUJCQF\\Kim and McNames 2007 Automatic spike detection based on adaptive template matching for extracellular neural recordings.pdf} +} + +@article{Quirk1999, + title = {Interaction between Spike Waveform Classification and Temporal Sequence Detection}, + volume = {94}, + issn = {0165-0270}, + doi = {10.1016/S0165-0270(99)00124-7}, + abstract = {In vivo extracellular recordings have allowed researchers to study the response properties of neurons to behaviorally relevant stimuli. In this paper we use multiple tetrode recordings from the hippocampus of the freely behaving rat to show that the action potential amplitude of a given cell can vary in a systematic and activity dependent manner over behaviorally relevant time scales. Since the discrimination algorithms used by experimenters to isolate cells from extracellular recordings are based on differences in waveforms, we show how these systematic changes in waveform shape can lead to non-random errors in single cell isolation. We further demonstrate that these non-random errors can lead to apparent temporal ordering effects between neurons in the absence of any specific temporal relationship. A firm understanding of these naturally occurring physiological changes is therefore critical for the evaluation of higher order phenomena such as the temporally correlated firing of ensembles of neurons.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Quirk, Michael C and Wilson, Matthew A}, + month = dec, + year = {1999}, + keywords = {Spike waveform classification,Temporal sequence detection,Interaction}, + pages = {41-52}, + file = {C:\\Users\\saram\\Zotero\\storage\\GN7N3PHB\\Quirk and Wilson 1999 Interaction between spike waveform classification and temporal sequence detection.pdf} +} + +@article{Pouzat2002, + title = {Using Noise Signature to Optimize Spike-Sorting and to Assess Neuronal Classification Quality}, + volume = {122}, + issn = {0165-0270}, + doi = {10.1016/S0165-0270(02)00276-5}, + abstract = {We have developed a simple and expandable procedure for classification and validation of extracellular data based on a probabilistic model of data generation. This approach relies on an empirical characterization of the recording noise. We first use this noise characterization to optimize the clustering of recorded events into putative neurons. As a second step, we use the noise model again to assess the quality of each cluster by comparing the within-cluster variability to that of the noise. This second step can be performed independently of the clustering algorithm used, and it provides the user with quantitative as well as visual tests of the quality of the classification.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Pouzat, Christophe and Mazor, Ofer and Laurent, Gilles}, + month = dec, + year = {2002}, + keywords = {Multi-electrode,tetrode,Data clustering,Expectation-maximization,Antennal lobe,Locust,Sampling jitter}, + pages = {43-57}, + file = {C:\\Users\\saram\\Zotero\\storage\\UGC5J8AG\\Pouzat et al. 2002 Using noise signature to optimize spike-sorting and to assess neuronal classification quality.pdf} +} + +@inproceedings{Sato2007, + title = {Fast {{Automatic Template Matching}} for {{Spike Sorting Based}} on {{Davies}}-{{Bouldin Validation Indices}}}, + doi = {10.1109/IEMBS.2007.4353010}, + abstract = {The present study introduces an approach to detecting and classifying the extracellular action potentials of neurons, a process usually referred to as spike sorting. Our approach is based on template matching which is an optimal filter under Gaussian noise. However, this is usually expensive in terms of computational time, and constructing appropriate templates can be also problematic. Despite its theoretical consistency, only a few algorithms have been proposed to efficiently solve this problem. To speed up the filter, it is important to curtail the matching process when the distance between the template and waveform exceeds some threshold. We approach this aspect of the problem using Davies-Bouldin validation indices (DBVIs), which are a function of the ratio of the sum of within-cluster scatter to between-cluster separation to prioritize point-by-point calculation. The templates are also constructed automatically by combining principle component analysis (PCA) and k-means clustering. This matching process performed well, with a shorter computational time and fewer incorrect classifications than other ordering methods.}, + booktitle = {2007 29th {{Annual International Conference}} of the {{IEEE Engineering}} in {{Medicine}} and {{Biology Society}}}, + author = {Sato, T. and Suzuki, T. and Mabuchi, K.}, + month = aug, + year = {2007}, + keywords = {Neurons,Animals,medical signal processing,neurophysiology,Rats,Algorithms,Sorting,Spike sorting,Extracellular,Diagnosis; Computer-Assisted,Pattern Recognition; Automated,Gaussian noise,pattern classification,pattern matching,Davies-Bouldin validation index,automatic template matching,k-means clustering,optimal filter,principle component analysis,Computational efficiency,Detection algorithms,Matched filters,Nonlinear filters,Scattering,Artificial Intelligence,Action potentials,principal component analysis,Electroencephalography,hippocampus}, + pages = {3200-3203}, + file = {C:\\Users\\saram\\Zotero\\storage\\7AAPBRJV\\Sato et al. 2007 Fast Automatic Template Matching for Spike Sorting Based on Davies-Bouldin Validation Indices.pdf} +} + +@article{Franke2015c, + title = {Bayes Optimal Template Matching for Spike Sorting - Combining Fisher Discriminant Analysis with Optimal Filtering}, + volume = {38}, + issn = {1573-6873}, + doi = {10.1007/s10827-015-0547-7}, + abstract = {Spike sorting, i.e., the separation of the firing activity of different neurons from extracellular measurements, is a crucial but often error-prone step in the analysis of neuronal responses. Usually, three different problems have to be solved: the detection of spikes in the extracellular recordings, the estimation of the number of neurons and their prototypical (template) spike waveforms, and the assignment of individual spikes to those putative neurons. If the template spike waveforms are known, template matching can be used to solve the detection and classification problem. Here, we show that for the colored Gaussian noise case the optimal template matching is given by a form of linear filtering, which can be derived via linear discriminant analysis. This provides a Bayesian interpretation for the well-known matched filter output. Moreover, with this approach it is possible to compute a spike detection threshold analytically. The method can be implemented by a linear filter bank derived from the templates, and can be used for online spike sorting of multielectrode recordings. It may also be applicable to detection and classification problems of transient signals in general. Its application significantly decreases the error rate on two publicly available spike-sorting benchmark data sets in comparison to state-of-the-art template matching procedures. Finally, we explore the possibility to resolve overlapping spikes using the template matching outputs and show that they can be resolved with high accuracy.}, + language = {eng}, + number = {3}, + journal = {Journal of Computational Neuroscience}, + author = {Franke, Felix and Quian Quiroga, Rodrigo and Hierlemann, Andreas and Obermayer, Klaus}, + month = jun, + year = {2015}, + keywords = {Neurons,Algorithms,Models; Neurological,Reproducibility of Results,Discriminant Analysis,Bayes Theorem,Benchmarking,Neural Networks (Computer),Normal Distribution,Action potentials}, + pages = {439-459}, + pmid = {25652689}, + pmcid = {PMC4420847} +} + +@article{Navajas2014, + title = {Minimum Requirements for Accurate and Efficient Real-Time on-Chip Spike Sorting}, + volume = {230}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2014.04.018}, + abstract = {Background +Extracellular recordings are performed by inserting electrodes in the brain, relaying the signals to external power-demanding devices, where spikes are detected and sorted in order to identify the firing activity of different putative neurons. A main caveat of these recordings is the necessity of wires passing through the scalp and skin in order to connect intracortical electrodes to external amplifiers. The aim of this paper is to evaluate the feasibility of an implantable platform (i.e. a chip) with the capability to wirelessly transmit the neural signals and perform real-time on-site spike sorting. +New method +We computationally modelled a two-stage implementation for online, robust, and efficient spike sorting. In the first stage, spikes are detected on-chip and streamed to an external computer where mean templates are created and sent back to the chip. In the second stage, spikes are sorted in real-time through template matching. +Results +We evaluated this procedure using realistic simulations of extracellular recordings and describe a set of specifications that optimise performance while keeping to a minimum the signal requirements and the complexity of the calculations. +Comparison with existing methods +A key bottleneck for the development of long-term BMIs is to find an inexpensive method for real-time spike sorting. Here, we simulated a solution to this problem that uses both offline and online processing of the data. +Conclusions +Hardware implementations of this method therefore enable low-power long-term wireless transmission of multiple site extracellular recordings, with application to wireless BMIs or closed-loop stimulation designs.}, + journal = {Journal of Neuroscience Methods}, + author = {Navajas, Joaquin and Barsakcioglu, Deren Y. and Eftekhar, Amir and Jackson, Andrew and Constandinou, Timothy G. and Quian Quiroga, Rodrigo}, + month = jun, + year = {2014}, + keywords = {extracellular recordings,Spike sorting,Real-time,BMIs,On-chip,On-line,Template matching}, + pages = {51-64}, + file = {C:\\Users\\saram\\Zotero\\storage\\NDI86AKI\\Navajas et al. 2014 Minimum requirements for accurate and efficient real-time on-chip spike sorting.pdf} +} + +@article{Franke2015b, + title = {Bayes Optimal Template Matching for Spike Sorting \textendash{} Combining Fisher Discriminant Analysis with Optimal Filtering}, + volume = {38}, + issn = {0929-5313, 1573-6873}, + doi = {10.1007/s10827-015-0547-7}, + abstract = {Spike sorting, i.e., the separation of the firing activity of different neurons from extracellular measurements, is a crucial but often error-prone step in the analysis of neuronal responses. Usually, three different problems have to be solved: the detection of spikes in the extracellular recordings, the estimation of the number of neurons and their prototypical (template) spike waveforms, and the assignment of individual spikes to those putative neurons. If the template spike waveforms are known, template matching can be used to solve the detection and classification problem. Here, we show that for the colored Gaussian noise case the optimal template matching is given by a form of linear filtering, which can be derived via linear discriminant analysis. This provides a Bayesian interpretation for the well-known matched filter output. Moreover, with this approach it is possible to compute a spike detection threshold analytically. The method can be implemented by a linear filter bank derived from the templates, and can be used for online spike sorting of multielectrode recordings. It may also be applicable to detection and classification problems of transient signals in general. Its application significantly decreases the error rate on two publicly available spike-sorting benchmark data sets in comparison to state-of-the-art template matching procedures. Finally, we explore the possibility to resolve overlapping spikes using the template matching outputs and show that they can be resolved with high accuracy.}, + language = {en}, + number = {3}, + journal = {Journal of Computational Neuroscience}, + author = {Franke, Felix and Quiroga, Rodrigo Quian and Hierlemann, Andreas and Obermayer, Klaus}, + month = jun, + year = {2015}, + pages = {439-459}, + file = {C:\\Users\\saram\\Zotero\\storage\\QC2KJJZ8\\Franke et al. 2015 Bayes optimal template matching for spike sorting – combining fisher discriminant analysis with optimal filtering.pdf} +} + +@article{Franke2015a, + title = {Spike Sorting of Synchronous Spikes from Local Neuron Ensembles}, + volume = {114}, + issn = {1522-1598}, + doi = {10.1152/jn.00993.2014}, + abstract = {Synchronous spike discharge of cortical neurons is thought to be a fingerprint of neuronal cooperativity. Because neighboring neurons are more densely connected to one another than neurons that are located further apart, near-synchronous spike discharge can be expected to be prevalent and it might provide an important basis for cortical computations. Using microelectrodes to record local groups of neurons does not allow for the reliable separation of synchronous spikes from different cells, because available spike sorting algorithms cannot correctly resolve the temporally overlapping waveforms. We show that high spike sorting performance of in vivo recordings, including overlapping spikes, can be achieved with a recently developed filter-based template matching procedure. Using tetrodes with a three-dimensional structure, we demonstrate with simulated data and ground truth in vitro data, obtained by dual intracellular recording of two neurons located next to a tetrode, that the spike sorting of synchronous spikes can be as successful as the spike sorting of nonoverlapping spikes and that the spatial information provided by multielectrodes greatly reduces the error rates. We apply the method to tetrode recordings from the prefrontal cortex of behaving primates, and we show that overlapping spikes can be identified and assigned to individual neurons to study synchronous activity in local groups of neurons.}, + language = {eng}, + number = {4}, + journal = {Journal of Neurophysiology}, + author = {Franke, Felix and Pr{\"o}pper, Robert and Alle, Henrik and Meier, Philipp and Geiger, J{\"o}rg R. P. and Obermayer, Klaus and Munk, Matthias H. J.}, + month = oct, + year = {2015}, + keywords = {Neurons,Animals,Electric Stimulation,Spike sorting,Signal Processing; Computer-Assisted,Models; Neurological,Macaca,Computer Simulation,Template matching,Memory; Short-Term,Neuropsychological Tests,Patch-Clamp Techniques,Prefrontal Cortex,Rats; Wistar,Tissue Culture Techniques,Visual Perception,overlapping spikes,simultaneous intracellular and extracellular recordings,synchronous spikes,Action potentials,hippocampus}, + pages = {2535-2549}, + pmid = {26289473}, + pmcid = {PMC4725215} +} + +@article{Franke2015, + title = {Spike Sorting of Synchronous Spikes from Local Neuron Ensembles}, + volume = {114}, + copyright = {Copyright \textcopyright{} 2015 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00993.2014}, + abstract = {Synchronous spike discharge of cortical neurons is thought to be a fingerprint of neuronal cooperativity. Because neighboring neurons are more densely connected to one another than neurons that are located further apart, near-synchronous spike discharge can be expected to be prevalent and it might provide an important basis for cortical computations. Using microelectrodes to record local groups of neurons does not allow for the reliable separation of synchronous spikes from different cells, because available spike sorting algorithms cannot correctly resolve the temporally overlapping waveforms. We show that high spike sorting performance of in vivo recordings, including overlapping spikes, can be achieved with a recently developed filter-based template matching procedure. Using tetrodes with a three-dimensional structure, we demonstrate with simulated data and ground truth in vitro data, obtained by dual intracellular recording of two neurons located next to a tetrode, that the spike sorting of synchronous spikes can be as successful as the spike sorting of nonoverlapping spikes and that the spatial information provided by multielectrodes greatly reduces the error rates. We apply the method to tetrode recordings from the prefrontal cortex of behaving primates, and we show that overlapping spikes can be identified and assigned to individual neurons to study synchronous activity in local groups of neurons.}, + language = {en}, + number = {4}, + journal = {Journal of Neurophysiology}, + author = {Franke, Felix and Pr{\"o}pper, Robert and Alle, Henrik and Meier, Philipp and Geiger, J{\"o}rg R. P. and Obermayer, Klaus and Munk, Matthias H. J.}, + month = oct, + year = {2015}, + pages = {2535-2549}, + file = {C:\\Users\\saram\\Zotero\\storage\\P2IF494S\\Franke et al. 2015 Spike sorting of synchronous spikes from local neuron ensembles.pdf}, + pmid = {26289473} +} + +@article{Lefebvre, + title = {Recent Progress in Multi-Electrode Spike Sorting Methods}, + issn = {0928-4257}, + doi = {10.1016/j.jphysparis.2017.02.005}, + abstract = {In recent years, arrays of extracellular electrodes have been developed and manufactured to record simultaneously from hundreds of electrodes packed with a high density. These recordings should allow neuroscientists to reconstruct the individual activity of the neurons spiking in the vicinity of these electrodes, with the help of signal processing algorithms. Algorithms need to solve a source separation problem, also known as spike sorting. However, these new devices challenge the classical way to do spike sorting. Here we review different methods that have been developed to sort spikes from these large-scale recordings. We describe the common properties of these algorithms, as well as their main differences. Finally, we outline the issues that remain to be solved by future spike sorting algorithms.}, + journal = {Journal of Physiology-Paris}, + author = {Lefebvre, Baptiste and Yger, Pierre and Marre, Olivier}, + keywords = {Multi-electrode array,Electrophysiology,Signal processing,Spike sorting,Template matching,Microelectrode array}, + file = {C:\\Users\\saram\\Zotero\\storage\\GTUEJNZG\\Lefebvre et al. Recent progress in multi-electrode spike sorting methods.pdf} +} + +@inproceedings{Kim2004, + title = {Action Potential Detection with Automatic Template Matching}, + volume = {1}, + doi = {10.1109/IEMBS.2004.1403085}, + abstract = {Detecting action potentials has an important role in analyzing extracellular neuronal recordings. Current algorithms require subjective tuning by a user in the form of user-specified parameters. This work describes a fully automatic template-matching spike detection algorithm that does not require any tuning. This algorithm is robust to noise and performs better than an optimum threshold detection algorithm.}, + booktitle = {The 26th {{Annual International Conference}} of the {{IEEE Engineering}} in {{Medicine}} and {{Biology Society}}}, + author = {Kim, S. and McNames, J. and Burchiel, K.}, + month = sep, + year = {2004}, + keywords = {medical signal processing,neurophysiology,Microelectrodes,Signal processing algorithms,Extracellular,Extracellular neuronal recordings,Action potential,Detection algorithms,bioelectric potentials,medical signal detection,action potential detection,automatic template-matching spike detection algorithm,optimum threshold detection algorithm,user-specified parameters,Background noise,Detectors,Frequency,Inspection,Libraries,Sampling methods,globus pallidus internus (GPi),microelectrode recording (MER),stereotactic deep brain stimulation (DBS) surgery,subthalamus nucleus (STN)}, + pages = {41-44}, + file = {C:\\Users\\saram\\Zotero\\storage\\MZQAI2DG\\Kim et al. 2004 Action potential detection with automatic template matching.pdf} +} + +@article{Kim2007, + title = {Automatic Spike Detection Based on Adaptive Template Matching for Extracellular Neural Recordings}, + volume = {165}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2007.05.033}, + abstract = {Recordings of extracellular neural activity are used in many clinical applications and scientific studies. In most cases, these signals are analyzed as a point process, and a spike detection algorithm is required to estimate the times at which action potentials occurred. Recordings from high-density microelectrode arrays (MEAs) and low-impedance microelectrodes often have a low signal-to-noise ratio (SNR \< 10) and contain action potentials from more than one neuron. We describe a new detection algorithm based on template matching that only requires the user to specify the minimum and maximum firing rates of the neurons. The algorithm iteratively estimates the morphology of the most prominent action potentials. It is able to achieve a sensitivity of \>90\% with a false positive rate of \<5 Hz in recordings with an estimated SNR = 3, and it performs better than an optimal threshold detector in recordings with an estimated SNR \> 2.5.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Kim, Sunghan and McNames, James}, + month = sep, + year = {2007}, + keywords = {spike train,spike discrimination,Spike detection,Extracellular neuronal recordings,Action potential,Matched filter,Eigenfilter,Threshold selection}, + pages = {165-174}, + file = {C:\\Users\\saram\\Zotero\\storage\\WADN3FMC\\Kim and McNames 2007 Automatic spike detection based on adaptive template matching for extracellular neural recordings.pdf} +} + +@article{Rutishauser2006, + title = {Online Detection and Sorting of Extracellularly Recorded Action Potentials in Human Medial Temporal Lobe Recordings, in Vivo}, + volume = {154}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2005.12.033}, + abstract = {Understanding the function of complex cortical circuits requires the simultaneous recording of action potentials from many neurons in awake and behaving animals. Practically, this can be achieved by extracellularly recording from multiple brain sites using single wire electrodes. However, in densely packed neural structures such as the human hippocampus, a single electrode can record the activity of multiple neurons. Thus, analytic techniques that differentiate action potentials of different neurons are required. Offline spike sorting approaches are currently used to detect and sort action potentials after finishing the experiment. Because the opportunities to record from the human brain are relatively rare, it is desirable to analyze large numbers of simultaneous recordings quickly using online sorting and detection algorithms. In this way, the experiment can be optimized for the particular response properties of the recorded neurons. Here we present and evaluate a method that is capable of detecting and sorting extracellular single-wire recordings in realtime. We demonstrate the utility of the method by applying it to an extensive data set we acquired from chronically implanted depth electrodes in the hippocampus of human epilepsy patients. This dataset is particularly challenging because it was recorded in a noisy clinical environment. This method will allow the development of ``closed-loop'' experiments, which immediately adapt the experimental stimuli and/or tasks to the neural response observed.}, + number = {1\textendash{}2}, + journal = {Journal of Neuroscience Methods}, + author = {Rutishauser, Ueli and Schuman, Erin M. and Mamelak, Adam N.}, + month = jun, + year = {2006}, + keywords = {Online sorting,Human hippocampus,Extracellular single-unit recordings}, + pages = {204-224}, + file = {C:\\Users\\saram\\Zotero\\storage\\JWBPZZTU\\Rutishauser, 2006, Online detection and sorting of extracellularly recorded action potentials in human medical temporal lobe recordings in vivo.pdf} +} + +@article{Sweeney-Reed2014, + title = {Corticothalamic Phase Synchrony and Cross-Frequency Coupling Predict Human Memory Formation}, + volume = {3}, + copyright = {\textcopyright{} 2014, Sweeney-Reed et al. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.}, + issn = {2050-084X}, + doi = {10.7554/eLife.05352}, + abstract = {Direct electrophysiological evidence demonstrates a role for the anterior thalamic nucleus in human memory formation.}, + language = {en}, + journal = {eLife}, + author = {Sweeney-Reed, Catherine M. and Zaehle, Tino and Voges, Juergen and Schmitt, Friedhelm C. and Buentjen, Lars and Kopitzki, Klaus and Esslinger, Christine and Hinrichs, Hermann and Heinze, Hans-Jochen and Knight, Robert T. and Richardson-Klavehn, Alan}, + month = dec, + year = {2014}, + keywords = {Cross-frequency coupling,Memory,thalamus,synchrony,Suhan,human}, + pages = {e05352}, + file = {C:\\Users\\saram\\Zotero\\storage\\E9HRRKH6\\elife-05352-fig3-figsupp2-v2.jpg;C:\\Users\\saram\\Zotero\\storage\\EV65NF28\\Sweeney-Reed 2014 Corticothalamic phase synchrony and cross-frequency coupling predict human.pdf}, + pmid = {25535839} +} + +@article{Srinivas2017, + title = {The {{Dendrites}} of {{CA2}} and {{CA1 Pyramidal Neurons Differentially Regulate Information Flow}} in the {{Cortico}}-{{Hippocampal Circuit}}}, + volume = {37}, + copyright = {Copyright \textcopyright{} 2017 the authors 0270-6474/17/373276-18\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.2219-16.2017}, + abstract = {The impact of a given neuronal pathway depends on the number of synapses it makes with its postsynaptic target, the strength of each individual synapse, and the integrative properties of the postsynaptic dendrites. Here we explore the cellular and synaptic mechanisms responsible for the differential excitatory drive from the entorhinal cortical pathway onto mouse CA2 compared with CA1 pyramidal neurons (PNs). Although both types of neurons receive direct input from entorhinal cortex onto their distal dendrites, these inputs produce a 5- to 6-fold larger EPSP at the soma of CA2 compared with CA1 PNs, which is sufficient to drive action potential output from CA2 but not CA1. Experimental and computational approaches reveal that dendritic propagation is more efficient in CA2 than CA1 as a result of differences in dendritic morphology and dendritic expression of the hyperpolarization-activated cation current (Ih). Furthermore, there are three times as many cortical inputs onto CA2 compared with CA1 PN distal dendrites. Using a computational model, we demonstrate that the differences in dendritic properties of CA2 compared with CA1 PNs are necessary to enable the CA2 PNs to generate their characteristically large EPSPs in response to their cortical inputs; in contrast, CA1 dendritic properties limit the size of the EPSPs they generate, even to a similar number of cortical inputs. Thus, the matching of dendritic integrative properties with the density of innervation is crucial for the differential processing of information from the direct cortical inputs by CA2 compared with CA1 PNs. +SIGNIFICANCE STATEMENT Recent discoveries have shown that the long-neglected hippocampal CA2 region has distinct synaptic properties and plays a prominent role in social memory and schizophrenia. This study addresses the puzzling finding that the direct entorhinal cortical inputs to hippocampus, which target the very distal pyramidal neuron dendrites, provide an unusually strong excitatory drive at the soma of CA2 pyramidal neurons, with EPSPs that are 5\textendash{}6 times larger than those in CA1 pyramidal neurons. We here elucidate synaptic and dendritic mechanisms that account quantitatively for the marked difference in EPSP size. Our findings further demonstrate the general importance of fine-tuning the integrative properties of neuronal dendrites to their density of synaptic innervation.}, + language = {en}, + number = {12}, + journal = {Journal of Neuroscience}, + author = {Srinivas, Kalyan V. and Buss, Eric W. and Sun, Qian and Santoro, Bina and Takahashi, Hiroto and Nicholson, Daniel A. and Siegelbaum, Steven A.}, + month = mar, + year = {2017}, + keywords = {CA2 pyramidal neuron,dendrites,glutamate uncaging,passive properties,two-photon imaging}, + pages = {3276-3293}, + file = {C:\\Users\\saram\\Zotero\\storage\\QHTGSJUF\\Srinivas et al. 2017 The Dendrites of CA2 and CA1 Pyramidal Neurons Differentially Regulate Information Flow in the Cortico-Hippocampal Circuit.pdf}, + pmid = {28213444} +} + +@inproceedings{Wachman2009, + title = {Kernels for {{Periodic Time Series Arising}} in {{Astronomy}}}, + doi = {10.1007/978-3-642-04174-7_32}, + abstract = {We present a method for applying machine learning algorithms to the automatic classification of astronomy star surveys using time series of star brightness. Currently such classification requires a large amount of domain expert time. We show that a combination of phase invariant similarity and explicit features extracted from the time series provide domain expert level classification. To facilitate this application, we investigate the cross-correlation as a general phase invariant similarity function for time series. We establish several theoretical properties of cross-correlation showing that it is intuitively appealing and algorithmically tractable, but not positive semidefinite, and therefore not generally applicable with kernel methods. As a solution we introduce a positive semidefinite similarity function with the same intuitive appeal as cross-correlation. An experimental evaluation in the astronomy domain as well as several other data sets demonstrates the performance of the kernel and related similarity functions.}, + language = {en}, + booktitle = {Machine {{Learning}} and {{Knowledge Discovery}} in {{Databases}}}, + publisher = {{Springer, Berlin, Heidelberg}}, + author = {Wachman, Gabriel and Khardon, Roni and Protopapas, Pavlos and Alcock, Charles R.}, + month = sep, + year = {2009}, + pages = {489-505}, + file = {C:\\Users\\saram\\Zotero\\storage\\WTCDPP49\\Wachman et al. 2009 Kernels for Periodic Time Series Arising in Astronomy.pdf} +} + +@article{Maris2011, + title = {Spatially Distributed Patterns of Oscillatory Coupling between High-Frequency Amplitudes and Low-Frequency Phases in Human {{iEEG}}}, + volume = {54}, + issn = {1053-8119}, + doi = {10.1016/j.neuroimage.2010.09.029}, + abstract = {Spatially distributed coherent oscillations provide temporal windows of excitability that allow for interactions between distinct neuronal groups. It has been hypothesized that this mechanism for neuronal communication is realized by bursts of high-frequency oscillations that are phase-coupled to a low-frequency spatially distributed coupling oscillation. This mechanism requires multiple physiologically different interacting sources, one generating the low-frequency coupling oscillation and the others generating phase-coupled high-frequency oscillations. Using human intracranial EEG (iEEG) data, we provide evidence for multiple oscillatory patterns, as characterized on the basis of their spatial maps (topographies) and their frequency spectra. In fact, we show that the spatial maps for the coupling oscillations are much more widespread than the ones for the associated phase-coupled bursts. Second, in the majority of the patterns of phase-amplitude coupling (PAC), phase-coupled bursts of high-frequency activity are synchronized across brain areas. Third and last, working memory operations affect the PAC strength in a heterogeneous way: in some PAC patterns, working memory operations increase their strength, whereas in others they decrease it.}, + number = {2}, + journal = {NeuroImage}, + author = {Maris, Eric and {van Vugt}, Marieke and Kahana, Michael}, + month = jan, + year = {2011}, + pages = {836-850}, + file = {C:\\Users\\saram\\Zotero\\storage\\QSDZSK36\\Maris et al. 2011 Spatially distributed patterns of oscillatory coupling between high-frequency amplitudes and low-frequency phases in human iEEG.pdf} +} + +@article{Albouy2017, + title = {Selective {{Entrainment}} of {{Theta Oscillations}} in the {{Dorsal Stream Causally Enhances Auditory Working Memory Performance}}}, + volume = {94}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2017.03.015}, + abstract = {Summary +The implication of the dorsal stream in manipulating auditory information in working memory has been recently established. However, the oscillatory dynamics within this network and its causal relationship with behavior remain undefined. Using simultaneous MEG/EEG, we show that theta oscillations in the dorsal stream predict participants' manipulation abilities during memory retention in a task requiring the comparison of two patterns differing in temporal order. We investigated the causal relationship between brain oscillations and behavior by applying theta-rhythmic TMS combined with EEG over the MEG-identified target (left intraparietal sulcus) during the silent interval between the two stimuli. Rhythmic TMS entrained theta oscillation and boosted participants' accuracy. TMS-induced oscillatory entrainment scaled with behavioral enhancement, and both gains varied with participants' baseline abilities. These effects were not seen for a melody-comparison control task and were not observed for arrhythmic TMS. These data establish theta activity in the dorsal stream as causally related to memory manipulation. +Video Abstract}, + number = {1}, + journal = {Neuron}, + author = {Albouy, Philippe and Weiss, Aur{\'e}lien and Baillet, Sylvain and Zatorre, Robert J.}, + month = apr, + year = {2017}, + keywords = {EEG,Memory,behavior,MEG,theta oscillation,brain networks,auditory processing,rhythmic transcranial magnetic stimulation}, + pages = {193-206.e5}, + file = {C:\\Users\\saram\\Zotero\\storage\\7DTTEMB7\\JCApril2017.pdf;C:\\Users\\saram\\Zotero\\storage\\BNAZHT4J\\mmc2.pdf;C:\\Users\\saram\\Zotero\\storage\\BXV3TCVD\\Albouy_et_al_2017.xlsx;C:\\Users\\saram\\Zotero\\storage\\FBT647H6\\mmc1.pdf;C:\\Users\\saram\\Zotero\\storage\\X7765HEK\\mmc3.mp4} +} + +@article{Graebenitz2017, + title = {Directional Spread of Activity in Synaptic Networks of the Human Lateral Amygdala}, + volume = {349}, + issn = {0306-4522}, + doi = {10.1016/j.neuroscience.2017.03.009}, + abstract = {Spontaneous epileptiform activity has previously been observed in lateral amygdala (LA) slices derived from patients with intractable-temporal lobe epilepsy. The present study aimed to characterize intranuclear LA synaptic connectivity and to test the hypothesis that differences in the spread of flow of neuronal activity may relate to spontaneous epileptiform activity occurrence. +Electrical activity was evoked through electrical microstimulation in acute human brain slices containing the LA, signals were recorded as local field potentials combined with fast optical imaging of voltage-sensitive dye fluorescence. Sites of stimulation and recording were systematically varied. Following recordings, slices were anatomically reconstructed using two-dimensional unitary slices as a reference for coronal and parasagittal planes. Local spatial patterns and spread of activity were assessed by incorporating the coordinates of electrical and optical recording sites into the respective unitary slice. +A preferential directional spread of evoked electrical signals was observed from ventral to dorsal, rostral to caudal and medial to lateral regions in the LA. No differences in spread of evoked activity were observed between spontaneously and non-spontaneously active LA slices, i.e. basic properties of evoked synaptic responses were similar in the two functional types of LA slices, including input\textendash{}output relationship, and paired-pulse depression. +These results indicate a directed propagation of synaptic signals within the human LA in spontaneously active epileptic slices. We suggest that the lack of differences in local and in systemic information processing has to be found in confined epileptiform circuits within the amygdala likely involving well-known ``epileptic neurons''.}, + journal = {Neuroscience}, + author = {Graebenitz, St{\'e}phanie and Cerina, Manuela and Lesting, J{\"o}rg and Kedo, Olga and Gorji, Ali and Pannek, Heinz and Hans, Volkmar and Zilles, Karl and Pape, Hans-Christian and Speckmann, Erwin-Josef}, + month = may, + year = {2017}, + keywords = {field potentials,lateral amygdala,living human brain slices,temporal lobe epilepsy,voltage-sensitive dyes}, + pages = {330-340}, + file = {C:\\Users\\saram\\Zotero\\storage\\5VG4GETI\\Graebenitz et al_2017_Directional spread of activity in synaptic networks of the human lateral.pdf} +} + +@article{Graebenitz2011, + title = {Interictal-like Network Activity and Receptor Expression in the Epileptic Human Lateral Amygdala}, + volume = {134}, + issn = {0006-8950}, + doi = {10.1093/brain/awr202}, + number = {10}, + journal = {Brain}, + author = {Graebenitz, St{\'e}phanie and Kedo, Olga and Speckmann, Erwin-Josef and Gorji, Ali and Panneck, Heinz and Hans, Volkmar and Palomero-Gallagher, Nicola and Schleicher, Axel and Zilles, Karl and Pape, Hans-Christian}, + month = oct, + year = {2011}, + pages = {2929-2947}, + file = {C:\\Users\\saram\\Zotero\\storage\\G2JDB6S8\\Graebenitz et al_2011_Interictal-like network activity and receptor expression in the epileptic human.pdf} +} + +@article{Chen2016, + title = {Membrane Potential Resonance Frequency Directly Influences Network Frequency through Electrical Coupling}, + volume = {116}, + copyright = {Copyright \textcopyright{} 2016 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00361.2016}, + abstract = {Oscillatory networks often include neurons with membrane potential resonance, exhibiting a peak in the voltage amplitude as a function of current input at a nonzero (resonance) frequency (fres). Although fres has been correlated to the network frequency (fnet) in a variety of systems, a causal relationship between the two has not been established. We examine the hypothesis that combinations of biophysical parameters that shift fres, without changing other attributes of the impedance profile, also shift fnet in the same direction. We test this hypothesis, computationally and experimentally, in an electrically coupled network consisting of intrinsic oscillator (O) and resonator (R) neurons. We use a two-cell model of such a network to show that increasing fres of R directly increases fnet and that this effect becomes more prominent if the amplitude of resonance is increased. Notably, the effect of fres on fnet is independent of the parameters that define the oscillator or the combination of parameters in R that produce the shift in fres, as long as this combination produces the same impedance vs. frequency relationship. We use the dynamic clamp technique to experimentally verify the model predictions by connecting a model resonator to the pacemaker pyloric dilator neurons of the crab Cancer borealis pyloric network using electrical synapses and show that the pyloric network frequency can be shifted by changing fres in the resonator. Our results provide compelling evidence that fres and resonance amplitude strongly influence fnet, and therefore, modulators may target these attributes to modify rhythmic activity.}, + language = {en}, + number = {4}, + journal = {Journal of Neurophysiology}, + author = {Chen, Yinbo and Li, Xinping and Rotstein, Horacio G. and Nadim, Farzan}, + month = oct, + year = {2016}, + pages = {1554-1563}, + file = {C:\\Users\\saram\\Zotero\\storage\\TNXZ2F26\\Chen et al. 2016 Membrane potential resonance frequency directly influences network frequency through electrical coupling.pdf}, + pmid = {27385799} +} + +@article{Ventura2009, + title = {Traditional Waveform Based Spike Sorting Yields Biased Rate Code Estimates}, + volume = {106}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0901771106}, + abstract = {Much of neuroscience has to do with relating neural activity and behavior or environment. One common measure of this relationship is the firing rates of neurons as functions of behavioral or environmental parameters, often called tuning functions and receptive fields. Firing rates are estimated from the spike trains of neurons recorded by electrodes implanted in the brain. Individual neurons' spike trains are not typically readily available, because the signal collected at an electrode is often a mixture of activities from different neurons and noise. Extracting individual neurons' spike trains from voltage signals, which is known as spike sorting, is one of the most important data analysis problems in neuroscience, because it has to be undertaken prior to any analysis of neurophysiological data in which more than one neuron is believed to be recorded on a single electrode. All current spike-sorting methods consist of clustering the characteristic spike waveforms of neurons. The sequence of first spike sorting based on waveforms, then estimating tuning functions, has long been the accepted way to proceed. Here, we argue that the covariates that modulate tuning functions also contain information about spike identities, and that if tuning information is ignored for spike sorting, the resulting tuning function estimates are biased and inconsistent, unless spikes can be classified with perfect accuracy. This means, for example, that the commonly used peristimulus time histogram is a biased estimate of the firing rate of a neuron that is not perfectly isolated. We further argue that the correct conceptual way to view the problem out is to note that spike sorting provides information about rate estimation and vice versa, so that the two relationships should be considered simultaneously rather than sequentially. Indeed we show that when spike sorting and tuning-curve estimation are performed in parallel, unbiased estimates of tuning curves can be recovered even from imperfectly sorted neurons.}, + language = {en}, + number = {17}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Ventura, Val{\'e}rie}, + month = apr, + year = {2009}, + keywords = {clustering,Encoding,inconsistent,tuning information,tuning properties}, + pages = {6921-6926}, + file = {C:\\Users\\saram\\Zotero\\storage\\SDEE4IMI\\PNAS-2009-Ventura-6921-6.pdf}, + pmid = {19372379} +} + +@article{Ventura2009a, + title = {Automatic {{Spike Sorting Using Tuning Information}}}, + volume = {21}, + issn = {0899-7667}, + doi = {10.1162/neco.2009.12-07-669}, + abstract = {Current spike sorting methods focus on clustering neurons' characteristic spike waveforms. The resulting spike-sorted data are typically used to estimate how covariates of interest modulate the firing rates of neurons. However, when these covariates do modulate the firing rates, they provide information about spikes' identities, which thus far have been ignored for the purpose of spike sorting. This letter describes a novel approach to spike sorting, which incorporates both waveform information and tuning information obtained from the modulation of firing rates. Because it efficiently uses all the available information, this spike sorter yields lower spike misclassification rates than traditional automatic spike sorters. This theoretical result is verified empirically on several examples. The proposed method does not require additional assumptions; only its implementation is different. It essentially consists of performing spike sorting and tuning estimation simultaneously rather than sequentially, as is currently done. We used an expectation-maximization maximum likelihood algorithm to implement the new spike sorter. We present the general form of this algorithm and provide a detailed implementable version under the assumptions that neurons are independent and spike according to Poisson processes. Finally, we uncover a systematic flaw of spike sorting based on waveform information only.}, + number = {9}, + journal = {Neural computation}, + author = {Ventura, Val{\'e}rie}, + month = sep, + year = {2009}, + pages = {2466-2501}, + file = {C:\\Users\\saram\\Zotero\\storage\\P5Z8B797\\Ventura_2009_Automatic Spike Sorting Using Tuning Information.pdf}, + pmid = {19548802}, + pmcid = {PMC4167425} +} + +@misc{zotero-720, + title = {Frontiers | {{Modeling}} Realistic Extracellular Recordings of Neuronal Populations for the Purpose of Evaluating Automatic Spike-Sorting Algorithms}, + abstract = {Simultaneous recordings of thousands of extracellular spikes are now possible, using silicon-based recording devices with large numbers of electrode contacts, such as high-density multi-electrode arrays (MEA) or multi-shank laminar electrodes. With the associated increase of data amounts and complexity in such recordings, manual spike sorting is not viable. Hence, there is a dire need for validated automated spike sorting methods, able to correctly resolve spikes of single neurons, as recently reviewed [1]. \\ + \\ +Automated spike sorting methods should ideally be validated against test data with known ground truth, where spiking activity of all neurons in the neuronal population is known. Such details of the underlying activity can only to some extent be acquired experimentally. One remedy is model-based simulation of extracellular recordings, as electrode position-dependent spike shapes (Figure 1a) can conveniently be modeled in a biophysically realistic way using a recently released simulation tool, LFPy (http://compneuro.umb.no/LFPy). LFPy implements a forward modeling scheme for extracellular potentials [2] in Python integrated with NEURON [3]. \\ + \\ +Test data for arbitrary electrode layouts, neuron models, noise content and spike time correlations can be produced at wish, and test data mimicking tetrode and polytrode recordings in cortex and hippocampus with realistic noise features will be presented. Additionally, finite element methods (FEM) are employed to generate test data for cases where significant effects from inhomogeneous extracellular media are present, as in recordings from cell cultures or retinal slice recordings using MEAs. \\ +In order to facilitate usage of benchmark test data for evaluating spike sorting algorithms (Figure 1b), an algorithm evaluation website has been set up on http://www.g-node.org/spike \\ + \\ +Acknowledgements: \\ +Supported by the Research Council of Norway (NevroNor, eScience, Notur), NIH (CRCNS) and INCF (G-Node, Norwegian Node). \\ + \\ +References: \\ +1. Einevoll GT, Franke F, Hagen E, Pouzat C, Harris KD: Towards reliable spike-train recordings from thousands of neurons with multielectrodes. Curr Opin Neurobiol 2011, 22:1\textendash{}7. DOI:10.1016/j.conb.2011.10.001 \\ +2. Holt GR, Koch C. Electrical interactions via the extracellular potential near cell bodies. J Comp Neurosci 1999, 6:169-184. DOI:10.1023/A:1008832702585 \\ +3. Hines ML, Davison AP, Muller E: Neuron and Python. Front Neuroinformatics 2009, 3:1-12. DOI:10.3389/neuro.11.001.2009}, + howpublished = {http://www.frontiersin.org/10.3389/conf.fninf.2014.08.00016/event\_abstract} +} + +@article{Vinci2016, + title = {Separating {{Spike Count Correlation}} from {{Firing Rate Correlation}}}, + volume = {28}, + doi = {10.1162/NECO_a_00831}, + number = {5}, + journal = {Neural Computation}, + author = {Vinci, Giuseppe and Ventura, Val{\'e}rie and Smith, Matthew A. and Kass, Robert E.}, + month = may, + year = {2016}, + pages = {849-881}, + file = {C:\\Users\\saram\\Zotero\\storage\\NBX3BVSC\\Vinci et al_2016_Separating Spike Count Correlation from Firing Rate Correlation.pdf} +} + +@article{Valerie2008, + title = {Spike {{Train Decoding Without Spike Sorting}}}, + volume = {20}, + issn = {0899-7667}, + doi = {10.1162/neco.2008.02-07-478}, + abstract = {We propose a novel paradigm for spike train decoding, which avoids entirely spike sorting based on waveform measurements. This paradigm directly uses the spike train collected at recording electrodes from thresholding the bandpassed voltage signal. Our approach is a paradigm, not an algorithm, since it can be used with any of the current decoding algorithms, such as population vector or likelihood-based algorithms. Based on analytical results and an extensive simulation study, we show that our paradigm is comparable to, and sometimes more efficient than, the traditional approach based on well-isolated neurons and that it remains efficient even when all electrodes are severely corrupted by noise, a situation that would render spike sorting particularly difficult. Our paradigm will also save time and computational effort, both of which are crucially important for successful operation of real-time brain-machine interfaces. Indeed, in place of the lengthy spike-sorting task of the traditional approach, it involves an exact expectation EM algorithm that is fast enough that it could also be left to run during decoding to capture potential slow changes in the states of the neurons.}, + number = {4}, + journal = {Neural computation}, + author = {Val{\'e}rie, Ventura}, + month = apr, + year = {2008}, + pages = {923-963}, + file = {C:\\Users\\saram\\Zotero\\storage\\59E2EB57\\SS.pdf;C:\\Users\\saram\\Zotero\\storage\\82C4QTJP\\neco.2008.02-07-478.pdf;C:\\Users\\saram\\Zotero\\storage\\JUMQ3676\\Valérie_2008_Spike Train Decoding Without Spike Sorting.pdf}, + pmid = {18085990}, + pmcid = {PMC3124143} +} + +@article{Martinez2009, + title = {Realistic Simulation of Extracellular Recordings}, + volume = {184}, + issn = {01650270}, + doi = {10.1016/j.jneumeth.2009.08.017}, + abstract = {Abstract In this paper we present an efficient method to generate realistic simulations of extracellular recordings. The method uses a hybrid and computationally simple approach, where the features of the background noise arise naturally from its biophysical process of generation. The generated data resemble the characteristics of real recordings, as quantified by the amplitude and frequency distributions. Moreover, we reproduce real features that are specially challenging for the analysis of extracellular data, such as the presence of sparse firing neurons and multi-unit activity. We compare our simulations with real recordings from the human medial temporal lobe and exemplify their use for testing spike detection and sorting algorithms. These results show that this technique provides an optimal scenario for generating realistic simulations of extracellular recordings.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Martinez, Juan and Pedreira, Carlos and Ison, Matias J. and Quian Quiroga, Rodrigo}, + year = {2009}, + keywords = {extracellular recordings,Spike sorting,Spike detection,Simulations}, + pages = {285-293}, + file = {C:\\Users\\saram\\Zotero\\storage\\8UQRFGPE\\6132448390865293191.doc;C:\\Users\\saram\\Zotero\\storage\\Z5QZ456B\\2009_-_Juan_Martinez_-_Realisticsimulationofextracellularrecordings[retrieved_2017-04-18].pdf} +} + +@article{Amarasingham2015, + title = {Ambiguity and Nonidentifiability in the Statistical Analysis of Neural Codes}, + volume = {112}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.1506400112}, + abstract = {Many experimental studies of neural coding rely on a statistical interpretation of the theoretical notion of the rate at which a neuron fires spikes. For example, neuroscientists often ask, ``Does a population of neurons exhibit more synchronous spiking than one would expect from the covariability of their instantaneous firing rates?'' For another example, ``How much of a neuron's observed spiking variability is caused by the variability of its instantaneous firing rate, and how much is caused by spike timing variability?'' However, a neuron's theoretical firing rate is not necessarily well-defined. Consequently, neuroscientific questions involving the theoretical firing rate do not have a meaning in isolation but can only be interpreted in light of additional statistical modeling choices. Ignoring this ambiguity can lead to inconsistent reasoning or wayward conclusions. We illustrate these issues with examples drawn from the neural-coding literature.}, + language = {en}, + number = {20}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Amarasingham, Asohan and Geman, Stuart and Harrison, Matthew T.}, + month = may, + year = {2015}, + keywords = {doubly stochastic,spike count variability,spike timing,temporal coding,trial-to-trial variability}, + pages = {6455-6460}, + file = {C:\\Users\\saram\\Zotero\\storage\\UV5W4ADT\\PNAS-2015-Amarasingham-6455-60.pdf}, + pmid = {25934918} +} + +@article{Kass2006, + title = {Spike {{Count Correlation Increases}} with {{Length}} of {{Time Interval}} in the {{Presence}} of {{Trial}}-to-{{Trial Variation}}}, + volume = {18}, + issn = {0899-7667}, + doi = {10.1162/neco.2006.18.11.2583}, + number = {11}, + journal = {Neural Computation}, + author = {Kass, Robert E. and Ventura, Val{\'e}rie}, + month = sep, + year = {2006}, + pages = {2583-2591}, + file = {C:\\Users\\saram\\Zotero\\storage\\RIJJTZRJ\\neco%2E2006%2E18%2E11%2E2583.pdf;C:\\Users\\saram\\Zotero\\storage\\TSRECPPQ\\Kass_Ventura_2006_Spike Count Correlation Increases with Length of Time Interval in the Presence.pdf} +} + +@article{Ventura2005, + title = {Trial-to-{{Trial Variability}} and {{Its Effect}} on {{Time}}-{{Varying Dependency Between Two Neurons}}}, + volume = {94}, + copyright = {Copyright \textcopyright{} 2005 by the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00644.2004}, + abstract = {The joint peristimulus time histogram (JPSTH) and cross-correlogram provide a visual representation of correlated activity for a pair of neurons, and the way this activity may increase or decrease over time. In a companion paper we showed how a Bootstrap evaluation of the peaks in the smoothed diagonals of the JPSTH may be used to establish the likely validity of apparent time-varying correlation. As noted in earlier studies by Brody and Ben-Shaul et al., trial-to-trial variation can confound correlation and synchrony effects. In this paper we elaborate on that observation, and present a method of estimating the time-dependent trial-to-trial variation in spike trains that may exceed the natural variation displayed by Poisson and non-Poisson point processes. The statistical problem is somewhat subtle because relatively few spikes per trial are available for estimating a firing-rate function that fluctuates over time. The method developed here decomposes the spike-train variability into a stimulus-related component and a trial-specific component, allowing many degrees of freedom to characterize the former while assuming a small number suffices to characterize the latter. The Bootstrap significance test of the companion paper is then modified to accommodate these general excitability effects. This methodology allows an investigator to assess whether excitability effects are constant or time-varying, and whether they are shared by two neurons. In data from two V1 neurons we find that highly statistically significant evidence of dependency disappears after adjustment for time-varying trial-to-trial variation.}, + language = {en}, + number = {4}, + journal = {Journal of Neurophysiology}, + author = {Ventura, Val{\'e}rie and Cai, Can and Kass, Robert E.}, + month = oct, + year = {2005}, + pages = {2928-2939}, + file = {C:\\Users\\saram\\Zotero\\storage\\G8MSFZEF\\Ventura et al_2005_Trial-to-Trial Variability and Its Effect on Time-Varying Dependency Between.pdf}, + pmid = {16160096} +} + +@article{Kass2005, + title = {Statistical {{Issues}} in the {{Analysis}} of {{Neuronal Data}}}, + volume = {94}, + copyright = {Copyright \textcopyright{} 2005 by the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00648.2004}, + abstract = {Analysis of data from neurophysiological investigations can be challenging. Particularly when experiments involve dynamics of neuronal response, scientific inference can become subtle and some statistical methods may make much more efficient use of the data than others. This article reviews well-established statistical principles, which provide useful guidance, and argues that good statistical practice can substantially enhance results. Recent work on estimation of firing rate, population coding, and time-varying correlation provides improvements in experimental sensitivity equivalent to large increases in the number of neurons examined. Modern nonparametric methods are applicable to data from repeated trials. Many within-trial analyses based on a Poisson assumption can be extended to non-Poisson data. New methods have made it possible to track changes in receptive fields, and to study trial-to-trial variation, with modest amounts of data.}, + language = {en}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Kass, Robert E. and Ventura, Val{\'e}rie and Brown, Emery N.}, + month = jul, + year = {2005}, + pages = {8-25}, + file = {C:\\Users\\saram\\Zotero\\storage\\DFZ4EZ83\\Kass et al_2005_Statistical Issues in the Analysis of Neuronal Data.pdf}, + pmid = {15985692} +} + +@article{Todorova2014, + title = {To Sort or Not to Sort: The Impact of Spike-Sorting on Neural Decoding Performance}, + volume = {11}, + issn = {1741-2560}, + shorttitle = {To Sort or Not to Sort}, + doi = {10.1088/1741-2560/11/5/056005}, + abstract = {Objective +Brain-computer interfaces (BCIs) are a promising technology for restoring motor ability to paralyzed patients: spiking-based BCIs have successfully been used in clinical trials to control multi-degree-of-freedom robotic devices. Current implementations of these devices require a lengthy spike-sorting step, which is an obstacle to moving this technology from the lab to the clinic. A viable alternative is to avoid spike-sorting, treating all threshold crossings of the voltage waveform on an electrode as coming from one putative neuron. It is not known, however, how much decoding information might be lost by ignoring spike identity. + +Approach +We present a full analysis of the effects of spike-sorting schemes on decoding performance. Specifically, we compare how well two common decoders, the optimal linear estimator and the Kalman filter, reconstruct the arm movements of non-human primates performing reaching tasks, when receiving input from various sorting schemes. The schemes we tested included: using threshold crossings without spike-sorting; expertsorting discarding the noise; expert-sorting, including the noise as if it were another neuron; and automatic spike-sorting using waveform features. We also decoded from a joint statistical model for the waveforms and tuning curves, which does not involve an explicit spike-sorting step. + +Main results +Discarding the threshold crossings that cannot be assigned to neurons degrades decoding: no spikes should be discarded. Decoding based on spike-sorted units outperforms decoding based on electrodes voltage crossings: spike-sorting is useful. The four waveform based spike-sorting methods tested here yield similar decoding efficiencies: a fast and simple method is competitive. Decoding using the joint waveform and tuning model shows promise but is not consistently superior. + +Significance +Our results indicate that simple automated spikesorting performs as well as computationally or manually more intensive methods, which is crucial for clinical implementation of BCIs.}, + number = {5}, + journal = {Journal of neural engineering}, + author = {Todorova, Sonia and Sadtler, Patrick and Batista, Aaron and Chase, Steven and Ventura, Val{\'e}rie}, + month = oct, + year = {2014}, + pages = {056005}, + file = {C:\\Users\\saram\\Zotero\\storage\\JJEZFIKV\\Todorova et al_2014_To sort or not to sort.pdf}, + pmid = {25082508}, + pmcid = {PMC4454741} +} + +@misc{zotero-735, + title = {Frontiers | {{Modeling}} Realistic Extracellular Recordings of Neuronal Populations for the Purpose of Evaluating Automatic Spike-Sorting Algorithms}, + abstract = {Simultaneous recordings of thousands of extracellular spikes are now possible, using silicon-based recording devices with large numbers of electrode contacts, such as high-density multi-electrode arrays (MEA) or multi-shank laminar electrodes. With the associated increase of data amounts and complexity in such recordings, manual spike sorting is not viable. Hence, there is a dire need for validated automated spike sorting methods, able to correctly resolve spikes of single neurons, as recently reviewed [1]. \\ + \\ +Automated spike sorting methods should ideally be validated against test data with known ground truth, where spiking activity of all neurons in the neuronal population is known. Such details of the underlying activity can only to some extent be acquired experimentally. One remedy is model-based simulation of extracellular recordings, as electrode position-dependent spike shapes (Figure 1a) can conveniently be modeled in a biophysically realistic way using a recently released simulation tool, LFPy (http://compneuro.umb.no/LFPy). LFPy implements a forward modeling scheme for extracellular potentials [2] in Python integrated with NEURON [3]. \\ + \\ +Test data for arbitrary electrode layouts, neuron models, noise content and spike time correlations can be produced at wish, and test data mimicking tetrode and polytrode recordings in cortex and hippocampus with realistic noise features will be presented. Additionally, finite element methods (FEM) are employed to generate test data for cases where significant effects from inhomogeneous extracellular media are present, as in recordings from cell cultures or retinal slice recordings using MEAs. \\ +In order to facilitate usage of benchmark test data for evaluating spike sorting algorithms (Figure 1b), an algorithm evaluation website has been set up on http://www.g-node.org/spike \\ + \\ +Acknowledgements: \\ +Supported by the Research Council of Norway (NevroNor, eScience, Notur), NIH (CRCNS) and INCF (G-Node, Norwegian Node). \\ + \\ +References: \\ +1. Einevoll GT, Franke F, Hagen E, Pouzat C, Harris KD: Towards reliable spike-train recordings from thousands of neurons with multielectrodes. Curr Opin Neurobiol 2011, 22:1\textendash{}7. DOI:10.1016/j.conb.2011.10.001 \\ +2. Holt GR, Koch C. Electrical interactions via the extracellular potential near cell bodies. J Comp Neurosci 1999, 6:169-184. DOI:10.1023/A:1008832702585 \\ +3. Hines ML, Davison AP, Muller E: Neuron and Python. Front Neuroinformatics 2009, 3:1-12. DOI:10.3389/neuro.11.001.2009}, + howpublished = {http://www.frontiersin.org/10.3389/conf.fninf.2014.08.00016/event\_abstract} +} + +@article{Davies1979, + title = {A Cluster Separation Measure}, + volume = {1}, + issn = {0162-8828}, + abstract = {A measure is presented which indicates the similarity of clusters which are assumed to have a data density which is a decreasing function of distance from a vector characteristic of the cluster. The measure can be used to infer the appropriateness of data partitions and can therefore be used to compare relative appropriateness of various divisions of the data. The measure does not depend on either the number of clusters analyzed nor the method of partitioning of the data and can be used to guide a cluster seeking algorithm.}, + language = {eng}, + number = {2}, + journal = {IEEE transactions on pattern analysis and machine intelligence}, + author = {Davies, D. L. and Bouldin, D. W.}, + month = feb, + year = {1979}, + pages = {224-227}, + pmid = {21868852} +} + +@article{Hagen2017, + title = {Focal Local Field Potential ({{LFP}}) Signature of the Single-Axon Monosynaptic Thalamocortical Connection}, + copyright = {Copyright \textcopyright{} 2017 Hagen et al.. This is an open-access article distributed under the terms of the Creative Commons Attribution 4.0 International license, which permits unrestricted use, distribution and reproduction in any medium provided that the original work is properly attributed.}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.2715-16.2017}, + abstract = {Recent years have seen a resurgence in use of the extracellularly recorded local field potential (LFP) to investigate neural network activity. To probe monosynaptic thalamic activation of cortical postsynaptic target cells, so called spike-trigger-averaged LFP (stLFP) signatures have been measured. In these experiments the cortical LFP is measured by means of multielectrodes covering several cortical lamina and averaged on spontaneous spikes of thalamocortical (TC) cells. Using a well-established forward-modeling scheme, we investigate the biophysical origin of this stLFP signature with simultaneous synaptic activation of cortical layer 4 neurons, mimicking the effect of a single afferent spike from a single TC neuron. Constrained by previously measured intracellular responses of the main postsynaptic target cell types and with biologically plausible assumptions regarding the spatial distribution of thalamic synaptic inputs into layer 4, the model predicted characteristic contributions to monosynaptic stLFP signatures both for the regular spiking (RS) excitatory neurons and the fast spiking (FS) inhibitory interneurons. In particular, the FS cells generated stLFP signatures of shorter temporal duration than the RS cells. Added together, a sum of the stLFP signatures of these two principal synaptic targets of thalamocortical cells were observed to resemble experimentally measured stLFP signatures. Outside the volume targeted by TC afferents the resulting postsynaptic LFP signals were found to be sharply attenuated. This implies that such stLFP signatures provide a very local measure of thalamocortical synaptic activation, and that newly developed inverse CSD-estimation methods are needed for precise assessment of the underlying spatiotemporal current-source density (CSD) profiles. +SIGNIFICANCE STATEMENT +Despite its long history and prevalent use, the proper interpretation of the extracellularly recorded local field potential (LFP) is still not fully established. Here we investigate by means of biophysical modeling the origin of the focal LFP signature of the single-axon monosynaptic thalamocortical connection as measured by spike-trigger-averaging of cortical LFPs on spontaneous spikes of thalamocortical neurons. We find that this LFP signature is well accounted for by a model assuming thalamic projections to two cortical layer-4 cell populations: one excitatory (putatively regular-spiking cells) and one inhibitory (putatively fast-spiking cells). The LFP signature is observed to decay sharply outside the cortical region receiving the thalamocortical projection, implying that it indeed provides a very local measure of thalamocortical synaptic activation.}, + language = {en}, + journal = {Journal of Neuroscience}, + author = {Hagen, Espen and Fossum, Janne C. and Pettersen, Klas H. and Alonso, Jose-Manuel and Swadlow, Harvey A. and Einevolla, Gaute T.}, + month = apr, + year = {2017}, + pages = {2715-16}, + file = {C:\\Users\\saram\\Zotero\\storage\\N2JE8RQD\\Hagen et al_2017_Focal local field potential (LFP) signature of the single-axon monosynaptic.pdf}, + pmid = {28432143} +} + +@article{Niediek2016, + title = {Reliable {{Analysis}} of {{Single}}-{{Unit Recordings}} from the {{Human Brain}} under {{Noisy Conditions}}: {{Tracking Neurons}} over {{Hours}}}, + volume = {11}, + shorttitle = {Reliable {{Analysis}} of {{Single}}-{{Unit Recordings}} from the {{Human Brain}} under {{Noisy Conditions}}}, + number = {12}, + journal = {PloS one}, + author = {Niediek, Johannes and Bostr{\"o}m, Jan and Elger, Christian E. and Mormann, Florian}, + year = {2016}, + pages = {e0166598}, + file = {C:\\Users\\saram\\Zotero\\storage\\2NU98GMQ\\journal.pone.0166598.s003.pdf;C:\\Users\\saram\\Zotero\\storage\\98W7F47B\\journal.pone.0166598.s004.pdf;C:\\Users\\saram\\Zotero\\storage\\GXGBQ729\\Niediek 2016-Reliable Analysis of Single-Unit Recordings from the Human Brain under Noisy Conditions - Tracking Neurons over Hours.pdf;C:\\Users\\saram\\Zotero\\storage\\ITSUMZ6Z\\journal.pone.0166598.s002.pdf;C:\\Users\\saram\\Zotero\\storage\\J7263GQ9\\journal.pone.0166598.s001.pdf} +} + +@article{Kreuz2013b, + title = {Monitoring Spike Train Synchrony}, + volume = {109}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00873.2012}, + language = {en}, + number = {5}, + journal = {Journal of Neurophysiology}, + author = {Kreuz, T. and Chicharro, D. and Houghton, C. and Andrzejak, R. G. and Mormann, F.}, + month = mar, + year = {2013}, + pages = {1457-1472}, + file = {C:\\Users\\saram\\Zotero\\storage\\ASICRF2N\\Kreuz 2013 - Monitoring spike train synchrony.pdf} +} + +@article{Pedreira2012, + title = {How Many Neurons Can We See with Current Spike Sorting Algorithms?}, + volume = {211}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2012.07.010}, + abstract = {Recent studies highlighted the disagreement between the typical number of neurons observed with extracellular recordings and the ones to be expected based on anatomical and physiological considerations. This disagreement has been mainly attributed to the presence of sparsely firing neurons. However, it is also possible that this is due to limitations of the spike sorting algorithms used to process the data. To address this issue, we used realistic simulations of extracellular recordings and found a relatively poor spike sorting performance for simulations containing a large number of neurons. In fact, the number of correctly identified neurons for single-channel recordings showed an asymptotic behavior saturating at about 8\textendash{}10 units, when up to 20 units were present in the data. This performance was significantly poorer for neurons with low firing rates, as these units were twice more likely to be missed than the ones with high firing rates in simulations containing many neurons. These results uncover one of the main reasons for the relatively low number of neurons found in extracellular recording and also stress the importance of further developments of spike sorting algorithms.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Pedreira, Carlos and Martinez, Juan and Ison, Matias J. and Quian Quiroga, Rodrigo}, + year = {2012}, + keywords = {extracellular recordings,Sparse neurons,Spike-sorting}, + pages = {58-65}, + file = {C:\\Users\\saram\\Zotero\\storage\\PFTDEXGT\\Pedreira et al_2012_How many neurons can we see with current spike sorting algorithms.pdf} +} + +@article{Knieling2015, + title = {An {{Unsupervised Online Spike}}-{{Sorting Framework}}}, + volume = {26}, + issn = {0129-0657}, + doi = {10.1142/S0129065715500422}, + abstract = {Extracellular neuronal microelectrode recordings can include action potentials from multiple neurons. To separate spikes from different neurons, they can be sorted according to their shape, a procedure referred to as spike-sorting. Several algorithms have been reported to solve this task. However, when clustering outcomes are unsatisfactory, most of them are difficult to adjust to achieve the desired results. We present an online spike-sorting framework that uses feature normalization and weighting to maximize the distinctiveness between different spike shapes. Furthermore, multiple criteria are applied to either facilitate or prevent cluster fusion, thereby enabling experimenters to fine-tune the sorting process. We compare our method to established unsupervised offline (Wave\_Clus (WC)) and online (OSort (OS)) algorithms by examining their performance in sorting various test datasets using two different scoring systems (AMI and the Adamos metric). Furthermore, we evaluate sorting capabilities on intra-operative recordings using established quality metrics. Compared to WC and OS, our algorithm achieved comparable or higher scores on average and produced more convincing sorting results for intra-operative datasets. Thus, the presented framework is suitable for both online and offline analysis and could substantially improve the quality of microelectrode-based data evaluation for research and clinical application.}, + number = {05}, + journal = {International Journal of Neural Systems}, + author = {Knieling, Simeon and Sridharan, Kousik S. and Belardinelli, Paolo and Naros, Georgios and Weiss, Daniel and Mormann, Florian and Gharabaghi, Alireza}, + year = {2015}, + pages = {1550042}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z7DSA93E\\Knieling et al_2015_An Unsupervised Online Spike-Sorting Framework.pdf} +} + +@article{Rey2015, + series = {Advances in electrophysiological data analysis}, + title = {Past, Present and Future of Spike Sorting Techniques}, + volume = {119, Part B}, + issn = {0361-9230}, + doi = {10.1016/j.brainresbull.2015.04.007}, + abstract = {Spike sorting is a crucial step to extract information from extracellular recordings. With new recording opportunities provided by the development of new electrodes that allow monitoring hundreds of neurons simultaneously, the scenario for the new generation of algorithms is both exciting and challenging. However, this will require a new approach to the problem and the development of a common reference framework to quickly assess the performance of new algorithms. In this work, we review the basic concepts of spike sorting, including the requirements for different applications, together with the problems faced by presently available algorithms. We conclude by proposing a roadmap stressing the crucial points to be addressed to support the neuroscientific research of the near future.}, + journal = {Brain Research Bulletin}, + author = {Rey, Hernan Gonzalo and Pedreira, Carlos and Quian Quiroga, Rodrigo}, + year = {2015}, + keywords = {extracellular recordings,Spike sorting,Modeling,Multielectrode recordings,On-chip applications}, + pages = {106-117}, + file = {C:\\Users\\saram\\Zotero\\storage\\8IXEBD52\\Rey et al_2015_Past, present and future of spike sorting techniques.pdf} +} + +@article{Friedman2015a, + title = {A Multistage Mathematical Approach to Automated Clustering of High-Dimensional Noisy Data}, + volume = {112}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.1503940112}, + abstract = {A critical problem faced in many scientific fields is the adequate separation of data derived from individual sources. Often, such datasets require analysis of multiple features in a highly multidimensional space, with overlap of features and sources. The datasets generated by simultaneous recording from hundreds of neurons emitting phasic action potentials have produced the challenge of separating the recorded signals into independent data subsets (clusters) corresponding to individual signal-generating neurons. Mathematical methods have been developed over the past three decades to achieve such spike clustering, but a complete solution with fully automated cluster identification has not been achieved. We propose here a fully automated mathematical approach that identifies clusters in multidimensional space through recursion, which combats the multidimensionality of the data. Recursion is paired with an approach to dimensional evaluation, in which each dimension of a dataset is examined for its informational importance for clustering. The dimensions offering greater informational importance are given added weight during recursive clustering. To combat strong background activity, our algorithm takes an iterative approach of data filtering according to a signal-to-noise ratio metric. The algorithm finds cluster cores, which are thereafter expanded to include complete clusters. This mathematical approach can be extended from its prototype context of spike sorting to other datasets that suffer from high dimensionality and background activity.}, + language = {en}, + number = {14}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Friedman, Alexander and Keselman, Michael D. and Gibb, Leif G. and Graybiel, Ann M.}, + month = jul, + year = {2015}, + keywords = {Spike sorting,curse of dimensionality,dimension reduction,dimensional evaluation,dimensional selection}, + pages = {4477-4482}, + file = {C:\\Users\\saram\\Zotero\\storage\\43QBZSF3\\Friedman et al_2015_A multistage mathematical approach to automated clustering of high-dimensional.pdf}, + pmid = {25831512} +} + +@article{Einevoll2012, + series = {Neurotechnology}, + title = {Towards Reliable Spike-Train Recordings from Thousands of Neurons with Multielectrodes}, + volume = {22}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2011.10.001}, + abstract = {The new generation of silicon-based multielectrodes comprising hundreds or more electrode contacts offers unprecedented possibilities for simultaneous recordings of spike trains from thousands of neurons. Such data will not only be invaluable for finding out how neural networks in the brain work, but will likely be important also for neural prosthesis applications. This opportunity can only be realized if efficient, accurate and validated methods for automatic spike sorting are provided. In this review we describe some of the challenges that must be met to achieve this goal, and in particular argue for the critical need of realistic model data to be used as ground truth in the validation of spike-sorting algorithms.}, + number = {1}, + journal = {Current Opinion in Neurobiology}, + author = {Einevoll, Gaute T and Franke, Felix and Hagen, Espen and Pouzat, Christophe and Harris, Kenneth D}, + month = feb, + year = {2012}, + pages = {11-17}, + file = {C:\\Users\\saram\\Zotero\\storage\\736BPGES\\Einevoll et al. 2012 Towards reliable spike-train recordings from thousands of neurons with multielectrodes.pdf} +} + +@article{Henze2000, + title = {Intracellular {{Features Predicted}} by {{Extracellular Recordings}} in the {{Hippocampus In Vivo}}}, + volume = {84}, + copyright = {Copyright \textcopyright{} 2000 The American Physiological Society}, + issn = {0022-3077, 1522-1598}, + abstract = {Multichannel tetrode array recording in awake behaving animals provides a powerful method to record the activity of large numbers of neurons. The power of this method could be extended if further information concerning the intracellular state of the neurons could be extracted from the extracellularly recorded signals. Toward this end, we have simultaneously recorded intracellular and extracellular signals from hippocampal CA1 pyramidal cells and interneurons in the anesthetized rat. We found that several intracellular parameters can be deduced from extracellular spike waveforms. The width of the intracellular action potential is defined precisely by distinct points on the extracellular spike. Amplitude changes of the intracellular action potential are reflected by changes in the amplitude of the initial negative phase of the extracellular spike, and these amplitude changes are dependent on the state of the network. In addition, intracellular recordings from dendrites with simultaneous extracellular recordings from the soma indicate that, on average, action potentials are initiated in the perisomatic region and propagate to the dendrites at 1.68 m/s. Finally we determined that a tetrode in hippocampal area CA1 theoretically should be able to record electrical signals from $\sim$1,000 neurons. Of these, 60\textendash{}100 neurons should generate spikes of sufficient amplitude to be detectable from the noise and to allow for their separation using current spatial clustering methods. This theoretical maximum is in contrast to the approximately six units that are usually detected per tetrode. From this, we conclude that a large percentage of hippocampal CA1 pyramidal cells are silent in any given behavioral condition.}, + language = {en}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Henze, Darrell A. and Borhegyi, Zsolt and Csicsvari, Jozsef and Mamiya, Akira and Harris, Kenneth D. and Buzs{\'a}ki, Gy{\"o}rgy}, + month = jul, + year = {2000}, + keywords = {MEA}, + pages = {390-400}, + file = {C:\\Users\\saram\\Zotero\\storage\\ATWSSPX8\\Henze, Buzsaki, 2000, Intracellular features predicted by extracellular recordings in the hippocampus InVivo.pdf}, + pmid = {10899213} +} + +@article{Friedman2015, + title = {A Multistage Mathematical Approach to Automated Clustering of High-Dimensional Noisy Data}, + volume = {112}, + number = {14}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Friedman, Alexander and Keselman, Michael D. and Gibb, Leif G. and Graybiel, Ann M.}, + year = {2015}, + pages = {4477--4482}, + file = {C:\\Users\\saram\\Zotero\\storage\\5222EGTF\\Friedman, 2015, A multistage mathematical approach to automated clustering of high dimensional noisy data- SM.pdf;C:\\Users\\saram\\Zotero\\storage\\VIA8E5EU\\Friedman, 2015, A multistage mathematical approach to automated clustering of high dimensional noisy data.pdf} +} + +@article{Harris2000, + title = {Accuracy of {{Tetrode Spike Separation}} as {{Determined}} by {{Simultaneous Intracellular}} and {{Extracellular Measurements}}}, + volume = {84}, + copyright = {Copyright \textcopyright{} 2000 The American Physiological Society}, + issn = {0022-3077, 1522-1598}, + abstract = {Simultaneous recording from large numbers of neurons is a prerequisite for understanding their cooperative behavior. Various recording techniques and spike separation methods are being used toward this goal. However, the error rates involved in spike separation have not yet been quantified. We studied the separation reliability of ``tetrode'' (4-wire electrode)-recorded spikes by monitoring simultaneously from the same cell intracellularly with a glass pipette and extracellularly with a tetrode. With manual spike sorting, we found a trade-off between Type I and Type II errors, with errors typically ranging from 0 to 30\% depending on the amplitude and firing pattern of the cell, the similarity of the waveshapes of neighboring neurons, and the experience of the operator. Performance using only a single wire was markedly lower, indicating the advantages of multiple-site monitoring techniques over single-wire recordings. For tetrode recordings, error rates were increased by burst activity and during periods of cellular synchrony. The lowest possible separation error rates were estimated by a search for the best ellipsoidal cluster shape. Human operator performance was significantly below the estimated optimum. Investigation of error distributions indicated that suboptimal performance was caused by inability of the operators to mark cluster boundaries accurately in a high-dimensional feature space. We therefore hypothesized that automatic spike-sorting algorithms have the potential to significantly lower error rates. Implementation of a semi-automatic classification system confirms this suggestion, reducing errors close to the estimated optimum, in the range 0\textendash{}8\%.}, + language = {en}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Harris, Kenneth D. and Henze, Darrell A. and Csicsvari, Jozsef and Hirase, Hajime and Buzs{\'a}ki, Gy{\"o}rgy}, + month = jul, + year = {2000}, + pages = {401-414}, + file = {C:\\Users\\saram\\Zotero\\storage\\G99J9GEK\\Harris et al. 2000 Accuracy of Tetrode Spike Separation as Determined by Simultaneous Intracellular and Extracellular Measurements.pdf}, + pmid = {10899214} +} + +@article{Lebedev2017a, + title = {Brain-{{Machine Interfaces}}: {{From Basic Science}} to {{Neuroprostheses}} and {{Neurorehabilitation}}}, + volume = {97}, + copyright = {Copyright \textcopyright{} 2017 the American Physiological Society}, + issn = {0031-9333, 1522-1210}, + shorttitle = {Brain-{{Machine Interfaces}}}, + doi = {10.1152/physrev.00027.2016}, + abstract = {Brain-machine interfaces (BMIs) combine methods, approaches, and concepts derived from neurophysiology, computer science, and engineering in an effort to establish real-time bidirectional links between living brains and artificial actuators. Although theoretical propositions and some proof of concept experiments on directly linking the brains with machines date back to the early 1960s, BMI research only took off in earnest at the end of the 1990s, when this approach became intimately linked to new neurophysiological methods for sampling large-scale brain activity. The classic goals of BMIs are 1) to unveil and utilize principles of operation and plastic properties of the distributed and dynamic circuits of the brain and 2) to create new therapies to restore mobility and sensations to severely disabled patients. Over the past decade, a wide range of BMI applications have emerged, which considerably expanded these original goals. BMI studies have shown neural control over the movements of robotic and virtual actuators that enact both upper and lower limb functions. Furthermore, BMIs have also incorporated ways to deliver sensory feedback, generated from external actuators, back to the brain. BMI research has been at the forefront of many neurophysiological discoveries, including the demonstration that, through continuous use, artificial tools can be assimilated by the primate brain's body schema. Work on BMIs has also led to the introduction of novel neurorehabilitation strategies. As a result of these efforts, long-term continuous BMI use has been recently implicated with the induction of partial neurological recovery in spinal cord injury patients.}, + language = {en}, + number = {2}, + journal = {Physiological Reviews}, + author = {Lebedev, Mikhail A. and Nicolelis, Miguel A. L.}, + month = apr, + year = {2017}, + pages = {767-837}, + pmid = {28275048} +} + +@article{Hartmann2016, + title = {Embedding a {{Panoramic Representation}} of {{Infrared Light}} in the {{Adult Rat Somatosensory Cortex}} through a {{Sensory Neuroprosthesis}}}, + volume = {36}, + copyright = {Copyright \textcopyright{} 2016 the authors 0270-6474/16/362407-19\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.3285-15.2016}, + abstract = {Can the adult brain assimilate a novel, topographically organized, sensory modality into its perceptual repertoire? To test this, we implemented a microstimulation-based neuroprosthesis that rats used to discriminate among infrared (IR) light sources. This system continuously relayed information from four IR sensors that were distributed to provide a panoramic view of IR sources, into primary somatosensory cortex (S1). Rats learned to discriminate the location of IR sources in $<$4 d. Animals in which IR information was delivered in spatial register with whisker topography learned the task more quickly. Further, in animals that had learned to use the prosthesis, altering the topographic mapping from IR sensor to stimulating electrode had immediate deleterious effects on discrimination performance. Multielectrode recordings revealed that S1 neurons had multimodal (tactile/IR) receptive fields, with clear preferences for those stimuli most likely to be delivered during the task. Neuronal populations predicted, with high accuracy, which stimulation pattern was present in small (75 ms) time windows. Surprisingly, when identical microstimulation patterns were delivered during an unrelated task, cortical activity in S1 was strongly suppressed. Overall, these results show that the adult mammalian neocortex can readily absorb completely new information sources into its representational repertoire, and use this information in the production of adaptive behaviors. +SIGNIFICANCE STATEMENT Understanding the potential for plasticity in the adult brain is a key goal for basic neuroscience and modern rehabilitative medicine. Our study examines one dimension of this challenge: how malleable is sensory processing in adult mammals? We implemented a panoramic infrared (IR) sensory prosthetic system in rats; it consisted of four IR sensors equally spaced around the circumference of the head of the rat. Each sensor was coupled to a microstimulating electrode placed in the somatosensory cortex of the rat. Within days, rats learned to use the prosthesis to track down items associated with IR light in their environment. This is quite promising clinically, as the largest demand for sensory prosthetic devices is in adults whose brains are already fully developed.}, + language = {en}, + number = {8}, + journal = {Journal of Neuroscience}, + author = {Hartmann, Konstantin and Thomson, Eric E. and Zea, Ivan and Yun, Richy and Mullen, Peter and Canarick, Jay and Huh, Albert and Nicolelis, Miguel A. L.}, + month = feb, + year = {2016}, + keywords = {Rat,barrel cortex,sensory prosthetic,whisker system}, + pages = {2406-2424}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z68ECG7V\\Hartmann et al_2016_Embedding a Panoramic Representation of Infrared Light in the Adult Rat.pdf}, + pmid = {26911689} +} + +@article{Lebedev2017, + title = {Brain-{{Machine Interfaces}}: {{From Basic Science}} to {{Neuroprostheses}} and {{Neurorehabilitation}}}, + volume = {97}, + copyright = {Copyright \textcopyright{} 2017 the American Physiological Society}, + issn = {0031-9333, 1522-1210}, + shorttitle = {Brain-{{Machine Interfaces}}}, + doi = {10.1152/physrev.00027.2016}, + abstract = {Brain-machine interfaces (BMIs) combine methods, approaches, and concepts derived from neurophysiology, computer science, and engineering in an effort to establish real-time bidirectional links between living brains and artificial actuators. Although theoretical propositions and some proof of concept experiments on directly linking the brains with machines date back to the early 1960s, BMI research only took off in earnest at the end of the 1990s, when this approach became intimately linked to new neurophysiological methods for sampling large-scale brain activity. The classic goals of BMIs are 1) to unveil and utilize principles of operation and plastic properties of the distributed and dynamic circuits of the brain and 2) to create new therapies to restore mobility and sensations to severely disabled patients. Over the past decade, a wide range of BMI applications have emerged, which considerably expanded these original goals. BMI studies have shown neural control over the movements of robotic and virtual actuators that enact both upper and lower limb functions. Furthermore, BMIs have also incorporated ways to deliver sensory feedback, generated from external actuators, back to the brain. BMI research has been at the forefront of many neurophysiological discoveries, including the demonstration that, through continuous use, artificial tools can be assimilated by the primate brain's body schema. Work on BMIs has also led to the introduction of novel neurorehabilitation strategies. As a result of these efforts, long-term continuous BMI use has been recently implicated with the induction of partial neurological recovery in spinal cord injury patients.}, + language = {en}, + number = {2}, + journal = {Physiological Reviews}, + author = {Lebedev, Mikhail A. and Nicolelis, Miguel A. L.}, + month = apr, + year = {2017}, + pages = {767-837}, + pmid = {28275048} +} + +@article{Pais-Vieira2016, + title = {A {{Closed Loop Brain}}-Machine {{Interface}} for {{Epilepsy Control Using Dorsal Column Electrical Stimulation}}}, + volume = {6}, + issn = {2045-2322}, + doi = {10.1038/srep32814}, + abstract = {Although electrical neurostimulation has been proposed as an alternative treatment for drug-resistant cases of epilepsy, current procedures such as deep brain stimulation, vagus, and trigeminal nerve stimulation are effective only in a fraction of the patients. Here we demonstrate a closed loop brain-machine interface that delivers electrical stimulation to the dorsal column (DCS) of the spinal cord to suppress epileptic seizures. Rats were implanted with cortical recording microelectrodes and spinal cord stimulating electrodes, and then injected with pentylenetetrazole to induce seizures. Seizures were detected in real time from cortical local field potentials, after which DCS was applied. This method decreased seizure episode frequency by 44\% and seizure duration by 38\%. We argue that the therapeutic effect of DCS is related to modulation of cortical theta waves, and propose that this closed-loop interface has the potential to become an effective and semi-invasive treatment for refractory epilepsy and other neurological disorders.}, + journal = {Scientific Reports}, + author = {Pais-Vieira, Miguel and Yadav, Amol P. and Moreira, Derek and Guggenmos, David and Santos, Am{\'\i}lcar and Lebedev, Mikhail and Nicolelis, Miguel A. L.}, + month = sep, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\6AX29ZF7\\Pais-Vieira et al_2016_A Closed Loop Brain-machine Interface for Epilepsy Control Using Dorsal Column.pdf}, + pmid = {27605389}, + pmcid = {PMC5015048} +} + +@incollection{Wiest2008, + address = {Boca Raton (FL)}, + edition = {2nd}, + series = {Frontiers in Neuroscience}, + title = {Multielectrode {{Recordings}} in the {{Somatosensory System}}}, + copyright = {Copyright \textcopyright{} 2008, Taylor \& Francis Group, LLC.}, + isbn = {978-0-8493-7046-5}, + lccn = {NBK3894}, + abstract = {A fundamental goal in systems neuroscience is to explain animal behavior in terms of the dynamics of neural ensembles. Multielectrode techniques greatly facilitate the approach toward this goal. Aside from the fact that each experiment provides a higher yield of data as compared to single-site recordings, some questions simply cannot be addressed using only one electrode at a time. For example, only multisite recordings can determine whether different neurons respond independently to stimuli, or covary from trial to trial. The purpose of this chapter is to review methods used in multielectrode studies of the rat somatosensory system, with an emphasis on the whisker system. We present a basic toolbox of methods we have used to probe the functions of populations of somatosensory neurons in a behavioral context. The basic toolbox includes techniques for applying controlled whisker stimuli, behavioral training in tactile discrimination tasks, multielectrode recordings, reversibly inactivating specific brain areas, and analysis of the ensemble neural data. These methods have already revealed fundamental properties of the somatosensory system that would have been difficult or impossible to uncover using single-electrode recordings. For example, cortical (Zhu and Connors, 1999; Ghazanfar and Nicolelis, 2001; Diamond et al., 1992; Ghazanfar et al., 2000; Schubert et al., 2001) and thalamic (Armstrong-James and Fox, 1987; Nicolelis and Chapin, 1994) neurons have large multiwhisker receptive fields that are dynamic over poststimulus time (Nicolelis and Chapin, 1994; Ghazanfar and Nicolelis, 1999; Ghazanfar et al., 2000). These data, together with observations of supralinear summation of multiwhisker inputs (Ghazanfar and Nicolelis, 1997; Shimegi, 2000), suggest that tactile receptive field dynamics function to integrate time-varying multiwhisker inputs (Ghazanfar and Nicolelis, 2001). For example, analysis of multineuron response data revealed additional stimulus-coding properties of somatosensory ensembles. S1 ensembles code stimulus location in single-neuron temporal patterns and the relative response latencies of their neurons, but not in single-trial covariations among the neurons (Nicolelis et al., 1998; Ghazanfar et al., 2000). In S2 of the primate, on the other hand, single-trial covariations among multiple neurons did contribute significantly to coding the location of a punctate stimulus (Nicolelis et al., 1998; Ghazanfar et al., 2000). Even in S1, the contribution of coordinated firing may increase with greater stimulus complexity, because multiple whisker stimuli lead to a higher prevalence of synchronous responses between neurons in the infragranular layers of S1 than in other layers (Zhang and Alloway, 2005). Combining methods for inactivating specific neural inputs with ensemble recordings led to the further conclusion that spatiotemporal RF properties of somatosensory neurons arise not only from intrinsic local properties of neurons and their neighbor connections, but rather from interactions among multiple levels of the somatosensory system. For example, recording thalamic tactile responses in the presence and absence of cortical feedback revealed that corticofugal projections contributed to both the short- and long-latency components of ventral posterior medial nucleus (VPM) responses (Krupa et al., 1999; Ghazanfar et al., 2001). These interlevel interactions were reflected in simultaneous recordings in trigeminal areas in brain stem, thalamus, and cortex, which revealed widespread oscillatory synchronization of neural firing (Nicolelis et al., 1995). The correlated activity remains even after transection of the facial nerve, which suggests that such synchronous activity is generated centrally. Although the high coherence among large populations of neurons associated with this oscillatory 7\textendash{}12 Hz brain state suggested absence seizures to a number of authors (Marescaux et al., 1992; Shaw et al., 2006; Shaw, 2007), a direct test showed that rats respond robustly to mild tactile stimulation during bouts of 7\textendash{}12 Hz oscillations in S1, contradicting the absence interpretation (Wiest and Nicolelis, 2003). Thus, widespread synchronized neural firing need not preclude perception; in fact, it can enhance aspects of sensory representation (Fontanini and Katz, 2006) as well as long-term plasticity (Erchova and Diamond, 2004). These demonstrations of fast interactions among neurons distributed across the somatosensory maps at multiple processing stages were paralleled by demonstrations of a tight coupling between the two hemispheres of S1 (Shuler et al., 2001; Wiest et al., 2005). This cross-talk challenges the classical conception of the S1 barrel cortex as an encoder for exclusively contralateral whisker activity and suggests the potential importance of bilateral interactions in S1 for whisker-guided discriminations (Krupa, 2001b; Shuler et al., 2002). Multielectrode recordings in different layers of S1 while rats performed a bilateral whisker-guided discrimination revealed that a feed-forward model of tactile signal processing cannot explain S1 response properties (Krupa et al., 2004). For example, firing rate modulations that began before tactile stimulation clearly could not be explained in terms of bottom-up propagation of a stimulus signal. Rather, other inputs to S1 must contribute to shaping the task-related responses. Similarly, tactile responses were found to vary significantly in different spontaneously occurring behavioral states (Nelson, 1996; Fanselow and Nicolelis, 1999; Moore et al., 1999; Nicolelis and Fanselow, 2002; Castro-Alamancos, 2004; Moore, 2004). These data collectively suggest that widely distributed neurons coordinate their activities on millisecond time scales, and that the functional connectivity among them can be quickly adjusted in different behavioral contexts. The preceding examples are meant to indicate the range of results that have already been achieved using multielectrode arrays (MEAs). In the following sections we present specific methods developed in the past 15 years. The examples have been selected to represent methods from each major phase of a typical study, from electrode design and surgical implantation, through ensemble recording involving somatosensory stimulation, behavioral monitoring, and reversible inactivation of specific brain areas, to analysis of the recorded many-neuron data.}, + language = {eng}, + booktitle = {Methods for {{Neural Ensemble Recordings}}}, + publisher = {{CRC Press/Taylor \& Francis}}, + author = {Wiest, Michael and Thomson, Eric and Meloy, Jim}, + editor = {Nicolelis, Miguel AL}, + year = {2008}, + pmid = {21204443} +} + +@article{Ravignani2017, + title = {Interdisciplinary Debate: {{Agree}} on Definitions of Synchrony}, + volume = {545}, + copyright = {\textcopyright{} 2017 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {0028-0836}, + shorttitle = {Interdisciplinary Debate}, + doi = {10.1038/545158c}, + language = {en}, + number = {7653}, + journal = {Nature}, + author = {Ravignani, Andrea}, + month = may, + year = {2017}, + keywords = {Research data,Communication}, + pages = {158-158}, + file = {C:\\Users\\saram\\Zotero\\storage\\QKWIMIEN\\Ravignani 2017 Interdisciplinary debate Agree on definitions of synchrony.pdf} +} + +@article{Csicsvari1999, + title = {Oscillatory {{Coupling}} of {{Hippocampal Pyramidal Cells}} and {{Interneurons}} in the {{Behaving Rat}}}, + volume = {19}, + copyright = {Copyright \textcopyright{} 1999 Society for Neuroscience}, + issn = {0270-6474, 1529-2401}, + abstract = {We examined whether excitation and inhibition are balanced in hippocampal cortical networks. Extracellular field and single-unit activity were recorded by multiple tetrodes and multisite silicon probes to reveal the timing of the activity of hippocampal CA1 pyramidal cells and classes of interneurons during theta waves and sharp wave burst (SPW)-associated field ripples. The somatic and dendritic inhibition of pyramidal cells was deduced from the activity of interneurons in the pyramidal layer [int(p)] and in the alveus and st. oriens [int(a/o)], respectively. Int(p) and int(a/o) discharged an average of 60 and 20$^\circ$ before the population discharge of pyramidal cells during the theta cycle, respectively. SPW ripples were associated with a 2.5-fold net increase of excitation. The discharge frequency of int(a/o) increased, decreased (``anti-SPW'' cells), or did not change (``SPW-independent'' cells) during SPW, suggesting that not all interneurons are innervated by pyramidal cells. Int(p) either fired together with (unimodal cells) or both before and after (bimodal cells) the pyramidal cell burst. During fast-ripple oscillation, the activity of interneurons in both the int(p) and int(a/o) groups lagged the maximum discharge probability of pyramidal neurons by 1\textendash{}2 msec. Network state changes, as reflected by field activity, covaried with changes in the spike train dynamics of single cells and their interactions. Summed activity of parallel-recorded interneurons, but not of pyramidal cells, reliably predicted theta cycles, whereas the reverse was true for the ripple cycles of SPWs. We suggest that network-driven excitability changes provide temporal windows of opportunity for single pyramidal cells to suppress, enable, or facilitate selective synaptic inputs.}, + language = {en}, + number = {1}, + journal = {Journal of Neuroscience}, + author = {Csicsvari, Jozsef and Hirase, Hajime and Czurk{\'o}, Andr{\'a}s and Mamiya, Akira and Buzs{\'a}ki, Gy{\"o}rgy}, + month = jan, + year = {1999}, + keywords = {oscillation,EEG,temporal coding,sharp waves,inhibition,theta}, + pages = {274-287}, + file = {C:\\Users\\saram\\Zotero\\storage\\Q23DEVRV\\Csicsvari et al. 1999 Oscillatory Coupling of Hippocampal Pyramidal Cells and Interneurons in the Behaving Rat.pdf}, + pmid = {9870957} +} + +@article{Harris2016, + title = {Improving Data Quality in Neuronal Population Recordings}, + volume = {19}, + copyright = {\textcopyright{} 2016 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1097-6256}, + doi = {10.1038/nn.4365}, + abstract = {Understanding how the brain operates requires understanding how large sets of neurons function together. Modern recording technology makes it possible to simultaneously record the activity of hundreds of neurons, and technological developments will soon allow recording of thousands or tens of thousands. As with all experimental techniques, these methods are subject to confounds that complicate the interpretation of such recordings, and could lead to erroneous scientific conclusions. Here we discuss methods for assessing and improving the quality of data from these techniques and outline likely future directions in this field.}, + language = {en}, + number = {9}, + journal = {Nature Neuroscience}, + author = {Harris, Kenneth D. and Quiroga, Rodrigo Quian and Freeman, Jeremy and Smith, Spencer L.}, + month = sep, + year = {2016}, + keywords = {Electrophysiology,Optical imaging}, + pages = {1165-1174}, + file = {C:\\Users\\saram\\Zotero\\storage\\CM7GXDZR\\Harris et al. 2016 Improving data quality in neuronal population recordings.pdf} +} + +@misc{zotero-827, + title = {Untuned {{But Not Irrelevant}}: {{A Role For Untuned Neurons In Sensory Information Coding}} - 134379.Full.Pdf}, + howpublished = {http://biorxiv.org/content/biorxiv/early/2017/05/04/134379.full.pdf}, + file = {C:\\Users\\saram\\Zotero\\storage\\K8GH3ABA\\134379.full.html} +} + +@article{Chapeton2017, + title = {Stable Functional Networks Exhibit Consistent Timing in the Human Brain}, + volume = {140}, + issn = {1460-2156}, + doi = {10.1093/brain/aww337}, + abstract = {Despite many advances in the study of large-scale human functional networks, the question of timing, stability, and direction of communication between cortical regions has not been fully addressed. At the cellular level, neuronal communication occurs through axons and dendrites, and the time required for such communication is well defined and preserved. At larger spatial scales, however, the relationship between timing, direction, and communication between brain regions is less clear. Here, we use a measure of effective connectivity to identify connections between brain regions that exhibit communication with consistent timing. We hypothesized that if two brain regions are communicating, then knowledge of the activity in one region should allow an external observer to better predict activity in the other region, and that such communication involves a consistent time delay. We examine this question using intracranial electroencephalography captured from nine human participants with medically refractory epilepsy. We use a coupling measure based on time-lagged mutual information to identify effective connections between brain regions that exhibit a statistically significant increase in average mutual information at a consistent time delay. These identified connections result in sparse, directed functional networks that are stable over minutes, hours, and days. Notably, the time delays associated with these connections are also highly preserved over multiple time scales. We characterize the anatomic locations of these connections, and find that the propagation of activity exhibits a preferred posterior to anterior temporal lobe direction, consistent across participants. Moreover, networks constructed from connections that reliably exhibit consistent timing between anatomic regions demonstrate features of a small-world architecture, with many reliable connections between anatomically neighbouring regions and few long range connections. Together, our results demonstrate that cortical regions exhibit functional relationships with well-defined and consistent timing, and the stability of these relationships over multiple time scales suggests that these stable pathways may be reliably and repeatedly used for large-scale cortical communication.}, + language = {eng}, + number = {3}, + journal = {Brain: A Journal of Neurology}, + author = {Chapeton, Julio I. and Inati, Sara K. and Zaghloul, Kareem A.}, + month = mar, + year = {2017}, + keywords = {Neural Pathways,Brain,EEG,Female,Male,Brain Mapping,Humans,Models; Neurological,Temporal Lobe,Adult,Evoked Potentials,Reaction Time,clinical neurophysiology,intracranial EEG,neuroanatomy,Electroencephalography,epilepsy}, + pages = {628-640}, + file = {C:\\Users\\saram\\Zotero\\storage\\BA6JNEG3\\Chapeton 2017-Stable functional networks exhibit consistent timing in the human brain.pdf}, + pmid = {28364547} +} + +@article{Stutzki2014, + title = {Inflammatory Stimulation Preserves Physiological Properties of Retinal Ganglion Cells after Optic Nerve Injury}, + volume = {8}, + issn = {1662-5102}, + doi = {10.3389/fncel.2014.00038}, + abstract = {Axonal injury in the optic nerve is associated with retinal ganglion cell (RGC) degeneration and irreversible loss of vision. However, inflammatory stimulation (IS) by intravitreal injection of Pam3Cys transforms RGCs into an active regenerative state enabling these neurons to survive injury and to regenerate axons into the injured optic nerve. Although morphological changes have been well studied, the functional correlates of RGCs transformed either into a de- or regenerating state at a sub-cellular level remain unclear. In the current study, we investigated the signal propagation in single intraretinal axons as well as characteristic activity features of RGCs in a naive, a degenerative or a regenerative state in ex vivo retinae one week after either optic nerve cut alone (ONC) or additional inflammatory stimulation (ONC+IS). Recordings of single RGCs using high-density microelectrode arrays demonstrate that the mean intraretinal axonal conduction velocity significantly decreased within the first week after ONC. In contrast, when ONC was accompanied by regenerative Pam3Cys treatment the mean intraretinal velocity was undistinguishable from control RGCs, indicating a protective effect on the proximal axon. Spontaneous RGC activity decreased for the two most numerous RGC types (ON- and OFF-sustained cells) within one post-operative week, but did not significantly increase in RGCs after inflammatory stimulation. The analysis of light-induced activity revealed that RGCs in ONC animals respond on average later and with fewer spikes than control RGCs. IS significantly improved the responsiveness of the two studied RGC types. These results show that the transformation into a regenerative state by IS preserves, at least transiently, the physiological functional properties of injured RGCs.}, + language = {English}, + journal = {Frontiers in Cellular Neuroscience}, + author = {Stutzki, Henrike and Leibig, Christian and Andreadaki, Anastasia and Fischer, Dietmar and Zeck, G{\"u}nther}, + year = {2014}, + keywords = {Microelectrode array,Retinal Ganglion Cells,Optic Nerve Injuries,Neuroregeneration,inflammatory stimulation,axonal imaging}, + file = {C:\\Users\\saram\\Zotero\\storage\\RRW3GUJD\\fncel-08-00038.pdf} +} + +@article{Magri2009a, + title = {A Toolbox for the Fast Information Analysis of Multiple-Site {{LFP}}, {{EEG}} and Spike Train Recordings}, + volume = {10}, + issn = {1471-2202}, + doi = {10.1186/1471-2202-10-81}, + abstract = {Information theory is an increasingly popular framework for studying how the brain encodes sensory information. Despite its widespread use for the analysis of spike trains of single neurons and of small neural populations, its application to the analysis of other types of neurophysiological signals (EEGs, LFPs, BOLD) has remained relatively limited so far. This is due to the limited-sampling bias which affects calculation of information, to the complexity of the techniques to eliminate the bias, and to the lack of publicly available fast routines for the information analysis of multi-dimensional responses.}, + journal = {BMC Neuroscience}, + author = {Magri, Cesare and Whittingstall, Kevin and Singh, Vanessa and Logothetis, Nikos K. and Panzeri, Stefano}, + year = {2009}, + pages = {81}, + file = {C:\\Users\\saram\\Zotero\\storage\\26SHAXJ9\\Magri et al. 2009 A toolbox for the fast information analysis of multiple-site LFP, EEG and spike train recordings.pdf} +} + +@article{Magri2009, + title = {A Toolbox for the Fast Information Analysis of Multiple-Site {{LFP}}, {{EEG}} and Spike Train Recordings}, + volume = {10}, + issn = {1471-2202}, + doi = {10.1186/1471-2202-10-81}, + abstract = {Information theory is an increasingly popular framework for studying how the brain encodes sensory information. Despite its widespread use for the analysis of spike trains of single neurons and of small neural populations, its application to the analysis of other types of neurophysiological signals (EEGs, LFPs, BOLD) has remained relatively limited so far. This is due to the limited-sampling bias which affects calculation of information, to the complexity of the techniques to eliminate the bias, and to the lack of publicly available fast routines for the information analysis of multi-dimensional responses.}, + journal = {BMC Neuroscience}, + author = {Magri, Cesare and Whittingstall, Kevin and Singh, Vanessa and Logothetis, Nikos K. and Panzeri, Stefano}, + year = {2009}, + pages = {81}, + file = {C:\\Users\\saram\\Zotero\\storage\\GEPV3H6G\\Magri et al. 2009 A toolbox for the fast information analysis of multiple-site LFP, EEG and spike train recordings.pdf} +} + +@article{Dell2002a, + title = {Sample Size Determination}, + volume = {43}, + issn = {1084-2020}, + abstract = {Scientists who use animals in research must justify the number of animals to be used, and committees that review proposals to use animals in research must review this justification to ensure the appropriateness of the number of animals to be used. This article discusses when the number of animals to be used can best be estimated from previous experience and when a simple power and sample size calculation should be performed. Even complicated experimental designs requiring sophisticated statistical models for analysis can usually be simplified to a single key or critical question so that simple formulae can be used to estimate the required sample size. Approaches to sample size estimation for various types of hypotheses are described, and equations are provided in the Appendix. Several web sites are cited for more information and for performing actual calculations}, + language = {eng}, + number = {4}, + journal = {ILAR journal}, + author = {Dell, Ralph B. and Holleran, Steve and Ramakrishnan, Rajasekhar}, + year = {2002}, + keywords = {Animals,Data Interpretation; Statistical,Models; Statistical,Pilot Projects,Research Design,Sample Size}, + pages = {207-213}, + pmid = {12391396}, + pmcid = {PMC3275906} +} + +@article{Dell2002, + title = {Sample {{Size Determination}}}, + volume = {43}, + issn = {1084-2020}, + abstract = {Scientists who use animals in research must justify the number of animals to be used, and committees that review proposals to use animals in research must review this justification to ensure the appropriateness of the number of animals to be used. This article discusses when the number of animals to be used can best be estimated from previous experience and when a simple power and sample size calculation should be performed. Even complicated experimental designs requiring sophisticated statistical models for analysis can usually be simplified to a single key or critical question so that simple formulae can be used to estimate the required sample size. Approaches to sample size estimation for various types of hypotheses are described, and equations are provided in the . Several web sites are cited for more information and for performing actual calculations.}, + number = {4}, + journal = {Ilar Journal}, + author = {Dell, Ralph B. and Holleran, Steve and Ramakrishnan, Rajasekhar}, + year = {2002}, + pages = {207-213}, + file = {C:\\Users\\saram\\Zotero\\storage\\IFCN7DP8\\Dell et al. 2002 Sample Size Determination.pdf}, + pmid = {12391396}, + pmcid = {PMC3275906} +} + +@article{Kabat2012, + title = {Focal Cortical Dysplasia \textendash{} Review}, + volume = {77}, + issn = {1733-134X}, + abstract = {Focal cortical dysplasia is a malformation of cortical development, which is the most common cause of medically refractory epilepsy in the pediatric population and the second/third most common etiology of medically intractable seizures in adults., Both genetic and acquired factors are involved in the pathogenesis of cortical dysplasia. Numerous classifications of the complex structural abnormalities of focal cortical dysplasia have been proposed \textendash{} from Taylor et al. in 1971 to the last modification of Palmini classification made by Blumcke in 2011. In general, three types of cortical dysplasia are recognized., Type I focal cortical dysplasia with mild symptomatic expression and late onset, is more often seen in adults, with changes present in the temporal lobe., Clinical symptoms are more severe in type II of cortical dysplasia usually seen in children. In this type, more extensive changes occur outside the temporal lobe with predilection for the frontal lobes., New type III is one of the above dysplasias with associated another principal lesion as hippocampal sclerosis, tumor, vascular malformation or acquired pathology during early life., Brain MRI imaging shows abnormalities in the majority of type II dysplasias and in only some of type I cortical dysplasias., The most common findings on MRI imaging include: focal cortical thickening or thinning, areas of focal brain atrophy, blurring of the gray-white junction, increased signal on T2- and FLAIR-weighted images in the gray and subcortical white matter often tapering toward the ventricle. On the basis of the MRI findings, it is possible to differentiate between type I and type II cortical dysplasia. A complete resection of the epileptogenic zone is required for seizure-free life. MRI imaging is very helpful to identify those patients who are likely to benefit from surgical treatment in a group of patients with drug-resistant epilepsy., However, in type I cortical dysplasia, MR imaging is often normal, and also in both types the lesion seen on MRI may be smaller than the seizure-generating region seen in the EEG. The abnormalities may also involve vital for life brain parts, where curative surgery will not be an option. Therefore, other diagnostic imaging techniques such as FDG PET, MEG, DTI and intra-cranial EEG are widely used to establish the diagnosis and to decide on management., With advances in both genetics and neuroimaging, we may develop a better understanding of patients with drug-resistant epilepsy, which will help us to provide more successful pharmacological and/or surgical treatment in the future.}, + number = {2}, + journal = {Polish Journal of Radiology}, + author = {Kabat, Joanna and Kr{\'o}l, Przemys{\l}aw}, + year = {2012}, + pages = {35-43}, + file = {C:\\Users\\saram\\Zotero\\storage\\MR494JE7\\Kabat and Król 2012 Focal cortical dysplasia – review.pdf}, + pmid = {22844307}, + pmcid = {PMC3403799} +} + +@article{Eriksson2001, + title = {Diffusion Tensor Imaging in Patients with Epilepsy and Malformations of Cortical Development}, + volume = {124}, + issn = {0006-8950}, + abstract = {Malformations of cortical development (MCD) are a common cause of epilepsy. Studies of structural MRIs and PET data in patients with MCD have found widespread changes outside the visually identified lesions. The aim of this study was to investigate diffusion changes interictally in patients with MCD and to test the hypothesis that MCD would be associated with widespread abnormalities of diffusion. We used diffusion tensor imaging (DTI) and statistical parametric mapping (SPM) to compare objectively tissue organization in 22 patients with partial seizures and MCD, with 30 control subjects. Whole-brain DTI was acquired using echo planar imaging. Rotationally invariant anisotropy and diffusivity maps were calculated and, after normalization to Talairach space, each patient was compared with the group of control subjects using SPM. Areas of reduced anisotropy were found in 17 patients and areas of increased diffusivity in 10. Two patients had areas of increased anisotropy. There were no patients with reduced diffusivity. Areas of increased diffusivity were in general more extensive than areas of reduced anisotropy. Changes in tissue beyond the MCD, that appeared normal on conventional MRI, were found in six patients for anisotropy and nine patients for diffusivity. Both measurements showed widespread changes in tissue beyond the MCD, i.e. adding information to conventional MRI. Increased or abnormally located grey matter or pathological white matter with abnormal myelination or ectopic neurones could cause reduced anisotropy. Increased diffusivity could be caused by a defect of neurogenesis or cell loss resulting in increased extracellular space. The widespread nature of abnormalities should be considered if surgical treatment is contemplated.}, + language = {eng}, + number = {Pt 3}, + journal = {Brain: A Journal of Neurology}, + author = {Eriksson, S. H. and Rugg-Gunn, F. J. and Symms, M. R. and Barker, G. J. and Duncan, J. S.}, + month = mar, + year = {2001}, + keywords = {Female,Male,Brain Mapping,Humans,Adult,Middle Aged,Anisotropy,Diffusion,Magnetic Resonance Imaging,Cerebral cortex,epilepsy}, + pages = {617-626}, + pmid = {11222460} +} + +@article{Yan2012, + title = {Chronic {{Temporal Lobe Epilepsy Is Associated}} with {{Enhanced Alzheimer}}-{{Like Neuropathology}} in 3\texttimes{}{{Tg}}-{{AD Mice}}}, + volume = {7}, + issn = {1932-6203}, + doi = {10.1371/journal.pone.0048782}, + abstract = {The comorbidity between epilepsy and Alzheimer's disease (AD) is a topic of growing interest. Senile plaques and tauopathy are found in epileptic human temporal lobe structures, and individuals with AD have an increased incidence of spontaneous seizures. However, why and how epilepsy is associated with enhanced AD-like pathology remains unknown. We have recently shown $\beta$-secretase-1 (BACE1) elevation associated with aberrant limbic axonal sprouting in epileptic CD1 mice. Here we sought to explore whether BACE1 upregulation affected the development of Alzheimer-type neuropathology in mice expressing mutant human APP, presenilin and tau proteins, the triple transgenic model of AD (3\texttimes{}Tg-AD). 3\texttimes{}Tg-AD mice were treated with pilocarpine or saline (i.p.) at 6\textendash{}8 months of age. Immunoreactivity (IR) for BACE1, $\beta$-amyloid (A$\beta$) and phosphorylated tau (p-tau) was subsequently examined at 9, 11 or 14 months of age. Recurrent convulsive seizures, as well as mossy fiber sprouting and neuronal death in the hippocampus and limbic cortex, were observed in all epileptic mice. Neuritic plaques composed of BACE1-labeled swollen/sprouting axons and extracellular A$\beta$IR were seen in the hippocampal formation, amygdala and piriform cortices of 9 month-old epileptic, but not control, 3\texttimes{}Tg-AD mice. Densities of plaque-associated BACE1 and A$\beta$IR were elevated in epileptic versus control mice at 11 and 14 months of age. p-Tau IR was increased in dentate granule cells and mossy fibers in epileptic mice relative to controls at all time points examined. Thus, pilocarpine-induced chronic epilepsy was associated with accelerated and enhanced neuritic plaque formation and altered intraneuronal p-tau expression in temporal lobe structures in 3\texttimes{}Tg-AD mice, with these pathologies occurring in regions showing neuronal death and axonal dystrophy.}, + number = {11}, + journal = {PLOS ONE}, + author = {Yan, Xiao-Xin and Cai, Yan and Shelton, Jarod and Deng, Si-Hao and Luo, Xue-Gang and Oddo, Salvatore and LaFerla, Frank M. and Cai, Huaibin and Rose, Gregory M. and Patrylo, Peter R.}, + month = nov, + year = {2012}, + keywords = {H,i,p,o,c,a,m,l,s,y,f,b,e,r,g,d,T,N,v,z,u}, + pages = {e48782}, + file = {C:\\Users\\saram\\Zotero\\storage\\KJ9GQH4C\\Yan et al. 2012 Chronic Temporal Lobe Epilepsy Is Associated with Enhanced Alzheimer-Like Neuropathology in 3×Tg-AD Mice.pdf} +} + +@article{Singh2015, + title = {{{MR Microscopy}} for {{3D Identification}} of {{Cortical Tubers}}, {{White Matter}} "{{Microtubers}}" and {{Radial Migration Lines}} in {{Ex Vivo Pediatric TSC}} with {{Epilepsy}}}, + volume = {29}, + issn = {0892-6638, 1530-6860}, + abstract = {We compared 7T MRI to optical microscopy for the detection of abnormalities in two pediatric TSC + AED-refractory resection specimens. 3D reconstruction of microscopy slides is challenging because there are non-uniform shrinkage artifacts and deformations. Nevertheless, 2D optical microscopy of stained blocks enables visualization of sub-cellular structures ($<$10 um). At 100 um resolution, 3D MRI enables visualization of cellular layers. Thus the 2D stained blocks provide a 'ground truth' for validating the features detected via 7T protocols designed to produce optimal T1w-, T2w-, and diffusion-weighted imaging contrast. After MR acquisition, the resection en bloc specimens were sectioned and stained with/for H\&E, LFB, NFP, Smi31, and GFAP. The 7T images were reconstructed into a 3D volume and manually matched to the 2D histology slides. We show that (1) both 7T MRI and optical microscopy are sufficient to visualize cortical tubers and aberrant features in the white matter, (2) a "microtuber" in 2D stained slices is coincident with radial migration lines (RMLs) in 7T imaging and (3) diffuse abnormalities persist beyond the tuber in TSC. + +This preliminary study demonstrates the feasibility of MR microscopy for 3D characterization of abnormalities in two pediatric TSC cases. Hence, MRI may help identify treatment response biomarkers in TSC with epilepsy. Additionally, via histology we discovered a "microtuber" in the white matter of the optic radiation, which is coincident with RMLs in MRI. Next, we will pursue 3D reconstruction of microscopy slides and higher spatial resolution MRI via limited field-of-view or super-resolution reconstruction.}, + language = {en}, + number = {1 Supplement}, + journal = {The FASEB Journal}, + author = {Singh, Jolene and Peters, Jurriaan and Madsen, Joseph and Afacan, Onur and Scherrer, Benoit and Sahin, Mustafa and Lidov, Hart and Warfield, Simon}, + month = jan, + year = {2015}, + pages = {149.5} +} + +@article{Miki2015, + title = {An Autopsy Case of Refractory Epilepsy Due to Unilateral Polymicrogyria in a 65-Year-Old Man: {{Histogenesis}} of Four-Layered Polymicrogyric Cortex}, + volume = {35}, + issn = {1440-1789}, + shorttitle = {An Autopsy Case of Refractory Epilepsy Due to Unilateral Polymicrogyria in a 65-Year-Old Man}, + doi = {10.1111/neup.12219}, + abstract = {Polymicrogyria (PMG) is a complex malformation accompanied with abnormal cortical laminations (two-, four- or six-layered cortex), and horizontally oriented myelinated fiber layer is evident in four-layered PMG in older individuals. Here we report a 65-year-old man with refractory epilepsy, in whom postmortem examination revealed four-layered PMG in the left hemisphere. We carried out a histological and immunohistochemical study to clarify the nature of the myelinated band in four-layered PMG cortex. The myelinated band contained no or only few neurons. GFAP- and aquaporin-1-immunoreactive astrocytes were found in the subcortical white matter as well as in the myelinated band. By contrast, GFAP- and aquaporin-1-immunoreactive astrocytes were not found in the band of Baillarger. These findings suggest that the myelinated band in PMG cortex is not the band of Baillarger and that the immunohistochemical characteristics of astrocytes in the myelinated band in PMG cortex are similar to those of the subcortical white matter. Previous studies suggest that PMG is not a cell migration disorder but a post-migration malformation. Taken together, it is likely that the myelinated band in PMG cortex represents abnormality of axonal growth or myelination after migration has terminated.}, + language = {eng}, + number = {6}, + journal = {Neuropathology: Official Journal of the Japanese Society of Neuropathology}, + author = {Miki, Yasuo and Tanji, Kunikazu and Mori, Fumiaki and Sakamoto, Namiko and Wakabayashi, Koichi}, + month = dec, + year = {2015}, + keywords = {Male,Humans,Aged,Autopsy,Drug Resistant Epilepsy,Functional Laterality,Immunohistochemistry,Myelin Sheath,Polymicrogyria,aquaporin-1,cortical lamina,four-layered cortex,myelinated layer}, + pages = {569-574}, + file = {C:\\Users\\saram\\Zotero\\storage\\5J6SAVB7\\2015_-_Yasuo_Miki_-_Anautopsycaseofrefractoryepilepsyduetounilateralpo[retrieved_2017-06-06].pdf}, + pmid = {26094545} +} + +@article{Marucci2013, + title = {Relationship between Focal Cortical Dysplasia and Epilepsy-Associated Low-Grade Tumors: An Immunohistochemical Study}, + volume = {121}, + issn = {1600-0463}, + shorttitle = {Relationship between Focal Cortical Dysplasia and Epilepsy-Associated Low-Grade Tumors}, + doi = {10.1111/j.1600-0463.2012.02938.x}, + abstract = {We retrospectively analyzed 29 seizure-associated temporal lobe low-grade tumors to evaluate the utility of CD34 and bcl-2 expression in clarifying the relationship of these tumors with different classes of focal cortical dysplasia (FCD). CD34 immunostained 75\% of gangliogliomas (GG) and 60\% of pleomorphic xanthoastrocytomas. FCD type IIIb [i.e. abnormal cortical layering associated with a glioneuronal tumor, according to the new International League Against Epilepsy (ILAE) classification] presented CD34-immunopositive cells in 2/9 (22.2\%) cases, whereas FCD type II in 6/7 (85.7\%) cases, a difference statistically significant (p = 0.0117). Bcl-2 immunostained 9/12 (75\%) gangliogliomas and 2/3 (66.6\%) gangliocytomas. The cases of FCD type IIIb resulted negative for Bcl-2, whereas 4/7 cases (57.1\%) of FCD type II showed immunopositive cells. These differences in Bcl-2 expression between FCD type IIIb and FCD type II resulted statistically significant (p = 0.0088). Abnormal cortical layering, overall, represents the kind of FCD more commonly associated with seizure-related low-grade tumors, whereas FCD type II is more frequently associated with GG. The profile of CD34 and Bcl-2 expression exhibited by GG is more similar to that observed in FCD type II. Such immunoprofile suggests the existence of a common pathogenesis linking glioneuronal tumors and FCD type II.}, + language = {eng}, + number = {1}, + journal = {APMIS: acta pathologica, microbiologica, et immunologica Scandinavica}, + author = {Marucci, Gianluca and Martinoni, Matteo and Giulioni, Marco}, + month = jan, + year = {2013}, + keywords = {Female,Male,Humans,Adolescent,Adult,Child,Middle Aged,Immunohistochemistry,Antigens; CD34,Brain Diseases,Brain Neoplasms,Chi-Square Distribution,Child; Preschool,Malformations of Cortical Development,Malformations of Cortical Development; Group I,Neoplasm Grading,Proto-Oncogene Proteins c-bcl-2,Retrospective Studies,Young Adult,epilepsy}, + pages = {22-29}, + file = {C:\\Users\\saram\\Zotero\\storage\\P56ISXQQ\\2013_-_Gianluca_Marucci_-_Relationshipbetweenfocalcorticaldysplasiaandepilep[retrieved_2017-06-06].pdf}, + pmid = {23030838} +} + +@article{Marucci, + title = {Relationship between Focal Cortical Dysplasia and Epilepsy-associated Low-grade Tumors: An Immunohistochemical Study}, + volume = {121}, + issn = {09034641}, + shorttitle = {Relationship between Focal Cortical Dysplasia and Epilepsy-associated Low-grade Tumors}, + number = {1}, + author = {Marucci, Gianluca}, + pages = {22-29} +} + +@article{Wong2009, + title = {Cortical Reorganization Following Anterior Temporal Lobectomy in Patients with Temporal Lobe Epilepsy}, + volume = {73}, + issn = {1526-632X}, + doi = {10.1212/WNL.0b013e3181b2a48e}, + abstract = {BACKGROUND: Functional MRI was used to study the impact of temporal lobe epilepsy (TLE) and anterior temporal lobectomy (ATL) on the cortical language network in patients with medically refractory TLE. +METHODS: Nineteen patients with medically refractory TLE and 11 healthy control subjects were enrolled in this study. Ten patients underwent left ATL (mean age 35.2 +/- 3.8 years), and 9 underwent right ATL (mean age 35.9 +/- 2.6 years). The subjects silently generated verbs in response to a series of visually presented nouns inside the scanner. Correlation analysis was performed between the subjects' performance on the clinical language tests and their neural response in the a priori cortical regions. +RESULTS: Preoperative data revealed that the patients with TLE showed increased neural activity in the right inferior frontal gyri (IFG) and middle frontal gyri (MFG). The right TLE patients demonstrated strong correlation between their language performance and the level of cortical activation within the typical language areas. However, such a correlation was absent in the left TLE patients. After the ATL surgery, the left TLE patients showed reduced activation in the left MFG and right IFG, whereas no difference was observed in the right TLE patients. In the right TLE patients, the correlation between language performance and neural response shifted from the typical language areas to the anterior cingulate cortex. +CONCLUSION: This study demonstrates that the cortical language network is affected differently by the left and right temporal lobe epilepsy and is reorganized after anterior temporal lobectomy.}, + language = {eng}, + number = {7}, + journal = {Neurology}, + author = {Wong, S. W. H. and Jong, L. and Bandur, D. and Bihari, F. and Yen, Y.-F. and Takahashi, A. M. and Lee, D. H. and Steven, D. A. and Parrent, A. G. and Pigott, S. E. and Mirsattari, S. M.}, + month = aug, + year = {2009}, + keywords = {Nerve Net,Neural Pathways,Frontal Lobe,Female,Male,Brain Mapping,Humans,Temporal Lobe,Adult,Magnetic Resonance Imaging,Functional Laterality,Epilepsy; Temporal Lobe,Gyrus Cinguli,Language Disorders,Language Tests,Neuronal Plasticity,Neurosurgical Procedures,Recovery of Function,Speech,Speech Perception,Treatment Outcome}, + pages = {518-525}, + file = {C:\\Users\\saram\\Zotero\\storage\\SSZ2K25X\\00006114-200908180-00007.pdf}, + pmid = {19687453}, + pmcid = {PMC2730795} +} + +@article{Das2012, + title = {Hippocampal Tissue of Patients with Refractory Temporal Lobe Epilepsy Is Associated with Astrocyte Activation, Inflammation, and Altered Expression of Channels and Receptors}, + volume = {220}, + issn = {0306-4522}, + doi = {10.1016/j.neuroscience.2012.06.002}, + abstract = {Temporal lobe epilepsy (TLE) is the most common form of focal epilepsy. Previous research has demonstrated several trends in human tissue that, undoubtedly, contribute to the development and progression of TLE. In this study we examined resected human hippocampus tissue for a variety of changes including gliosis that might contribute to the development and presentation of TLE. The study subjects consisted of six TLE patients and three sudden-death controls. Clinicopathological characteristics were evaluated by H\&E staining. Immunohistological staining and Western blotting methods were used to analyze the samples. Neuronal hypertrophy was observed in resected epileptic tissue. Immunohistological staining demonstrated that activation of astrocytes was significantly increased in epileptic tissue as compared to corresponding regions of the control group. The Western blot data also showed increased CX43 and AQP4 in the hippocampus and downregulation of Kir4.1, $\alpha$-syntrophin, and dystrophin, the key constituents of AQP4 multi-molecular complex. These tissues also demonstrated changes in inflammatory factors (COX-2, TGF-$\beta$, NF-$\kappa$B) suggesting that these molecules may play an important role in TLE pathogenesis. In addition we detected increases in metabotropic glutamate receptor (mGluR) 2/3, mGluR5 and kainic acid receptor subunits KA1 (Grik4) and KA2 (Grik5) in patients' hippocampi. We noted increased expression of the $\alpha$1c subunit comprising class C L-type Ca2+ channels and calpain expression in these tissues, suggesting that these subunits might have an integral role in TLE pathogenesis. These changes found in the resected tissue suggest that they may contribute to TLE and that the kainic acid receptor (KAR) and deregulation of GluR2 receptor may play an important role in TLE development and disease course. This study identifies alterations in number of commonly studied molecular targets associated with astrogliosis, cellular hypertrophy, water homeostasis, inflammation, and modulation of excitatory neurotransmission in hippocampal tissues from TLE patients.}, + journal = {Neuroscience}, + author = {Das, A. and Wallace IV, G. C. and Holmes, C. and McDowell, M. L. and Smith, J. A. and Marshall, J. D. and Bonilha, L. and Edwards, J. C. and Glazier, S. S. and Ray, S. K. and Banik, N. L.}, + month = sep, + year = {2012}, + keywords = {temporal lobe epilepsy,gliosis,inflammatory factors,aquaporin,expression of channels and receptors}, + pages = {237-246}, + file = {C:\\Users\\saram\\Zotero\\storage\\Q2NUP53U\\1-s2.0-S0303846713003624-main.pdf} +} + +@article{Dhiman2013, + title = {Outcome of Lesionectomy in Medically Refractory Epilepsy Due to Non-Mesial Temporal Sclerosis (Non-{{MTS}}) Lesions}, + volume = {115}, + issn = {0303-8467}, + doi = {10.1016/j.clineuro.2013.09.008}, + abstract = {Objectives +To analyze the seizure outcome of lesionectomy for refractory epilepsy secondary to non-mesial temporal sclerosis (non-MTS) lesions. +Methods +Sixty-eight patients with non-MTS lesions (M:F = 42:26; age at onset: 11.7 $\pm$ 9.6 years; age at surgery: 21.1 $\pm$ 9.4 years), who underwent lesionectomy for refractory epilepsy were analyzed. The age at onset, frequency/type of seizure, MRI findings, video-EEG, histopathology and Engel's grading at 1 year/last follow up were recorded. +Results +The duration of epilepsy at surgery was 9.9 $\pm$ 6.9 years. The location of lesions were: temporal: 41 (60.3\%); frontal: 21 (30.9\%); parietal: 6 (8.8\%). The type of lesionectomies performed were temporal 41 (60.3\%), extra-temporal: 25 (36.8\%), temporo-frontal and temporo-parietal: 1 (1.5\%) patient each. The histopathological diagnosis were neoplastic: 32 (47.1\%), cortical dysplasia: 19 (27.9\%), other focal lesions: 17 (25\%). At mean follow up of 2.9 $\pm$ 2.1 years (median: 2.6 years), outcome was \textendash{} Engel's class I: 43 (63.2\%), IIa: 14 (20.6\%), III: 7 (10.3\%), IV: 4 (5.9\%). Good seizure control (Engel's class I/IIa) was achieved in 57 (83.8\%) patients. The good prognostic markers included temporal seizures, extended lesionectomy and AEDs after surgery while poor prognostic marker was gliotic lesion on histopathology. +Conclusion +Following lesionectomy due to non-MTS lesions, seizure freedom (Engel I) was noted in about 63.2\% of patients, which is comparable to other series and reiterates the effectiveness of lesionectomy for seizure control.}, + number = {12}, + journal = {Clinical Neurology and Neurosurgery}, + author = {Dhiman, Vikas and Rao, Sudhanva and Sinha, Sanjib and Arimappamagan, Arivazhagan and Mahadevan, Anita and Bharath, Rose Dawn and Saini, Jitender and Jamuna, R. and Keshav Kumar, J. and Rao, Shobhini L. and Chandramouli, Bangalore A. and Satishchandra, Parthasarathy and Shankar, Susarla K.}, + month = dec, + year = {2013}, + keywords = {Surgery,Lesionectomy,Outcome,Refractory,epilepsy}, + pages = {2445-2453}, + file = {C:\\Users\\saram\\Zotero\\storage\\5RD66535\\Dhiman et al. 2013 Outcome of lesionectomy in medically refractory epilepsy due to non-mesial temporal sclerosis (non-MTS) lesions.pdf} +} + +@article{Pozzorini2015, + title = {Automated {{High}}-{{Throughput Characterization}} of {{Single Neurons}} by {{Means}} of {{Simplified Spiking Models}}}, + volume = {11}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1004275}, + abstract = {Author Summary Large-scale, high-throughput data acquisition is revolutionizing the field of neuroscience. Single-neuron electrophysiology is moving from the situation where a highly skilled experimentalist can patch a few cells per day, to a situation where robots will collect large amounts of data. To take advantage of this quantity of data, this technological advance requires a paradigm shift in the experimental design and analysis. Presently, most single-neuron experimental studies rely on old protocols\textemdash{}such as injections of steps and ramps of current\textemdash{}that rarely inform theoreticians and modelers interested in emergent properties of the brain. Here, we describe an efficient protocol for high-throughput in vitro electrophysiology as well as a set of mathematical tools that neuroscientists can use to directly translate experimental data into realistic spiking neuron models. The efficiency of the proposed method makes it suitable for high-throughput data analysis, allowing for the generation of a standardized database of realistic single-neuron models.}, + number = {6}, + journal = {PLOS Computational Biology}, + author = {Pozzorini, Christian and Mensi, Skander and Hagens, Olivier and Naud, Richard and Koch, Christof and Gerstner, Wulfram}, + month = jun, + year = {2015}, + keywords = {i,p,o,c,a,m,l,s,f,b,e,r,g,d,T,N,u}, + pages = {e1004275}, + file = {C:\\Users\\saram\\Zotero\\storage\\DKXVJQDZ\\Pozzorini et al_2015_Automated High-Throughput Characterization of Single Neurons by Means of.pdf} +} + +@article{Naud2015, + title = {Counting on Dis-Inhibition: A Circuit Motif for Interval Counting and Selectivity in the Anuran Auditory System}, + volume = {114}, + copyright = {Copyright \textcopyright{} 2015 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + shorttitle = {Counting on Dis-Inhibition}, + doi = {10.1152/jn.00138.2015}, + abstract = {Information can be encoded in the temporal patterning of spikes. How the brain reads these patterns is of general importance and represents one of the greatest challenges in neuroscience. We addressed this issue in relation to temporal pattern recognition in the anuran auditory system. Many species of anurans perform mating decisions based on the temporal structure of advertisement calls. One important temporal feature is the number of sound pulses that occur with a species-specific interpulse interval. Neurons representing this pulse count have been recorded in the anuran inferior colliculus, but the mechanisms underlying their temporal selectivity are incompletely understood. Here, we construct a parsimonious model that can explain the key dynamical features of these cells with biologically plausible elements. We demonstrate that interval counting arises naturally when combining interval-selective inhibition with pulse-per-pulse excitation having both fast- and slow-conductance synapses. Interval-dependent inhibition is modeled here by a simple architecture based on known physiology of afferent nuclei. Finally, we consider simple implementations of previously proposed mechanistic explanations for these counting neurons and show that they do not account for all experimental observations. Our results demonstrate that tens of millisecond-range temporal selectivities can arise from simple connectivity motifs of inhibitory neurons, without recourse to internal clocks, spike-frequency adaptation, or appreciable short-term plasticity.}, + language = {en}, + number = {5}, + journal = {Journal of Neurophysiology}, + author = {Naud, Richard and Houtman, Dave and Rose, Gary J. and Longtin, Andr{\'e}}, + month = nov, + year = {2015}, + pages = {2804-2815}, + file = {C:\\Users\\saram\\Zotero\\storage\\DXIS76AS\\Naud et al_2015_Counting on dis-inhibition.pdf}, + pmid = {26334004} +} + +@article{Gal2017, + title = {Rich Cell-Type-Specific Network Topology in Neocortical Microcircuitry}, + volume = {advance online publication}, + copyright = {\textcopyright{} 2017 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1097-6256}, + doi = {10.1038/nn.4576}, + abstract = {Uncovering structural regularities and architectural topologies of cortical circuitry is vital for understanding neural computations. Recently, an experimentally constrained algorithm generated a dense network reconstruction of a \textasciitilde{}0.3-mm3 volume from juvenile rat somatosensory neocortex, comprising \textasciitilde{}31,000 cells and \textasciitilde{}36 million synapses. Using this reconstruction, we found a small-world topology with an average of 2.5 synapses separating any two cells and multiple cell-type-specific wiring features. Amounts of excitatory and inhibitory innervations varied across cells, yet pyramidal neurons maintained relatively constant excitation/inhibition ratios. The circuit contained highly connected hub neurons belonging to a small subset of cell types and forming an interconnected cell-type-specific rich club. Certain three-neuron motifs were overrepresented, matching recent experimental results. Cell-type-specific network properties were even more striking when synaptic strength and sign were considered in generating a functional topology. Our systematic approach enables interpretation of microconnectomics 'big data' and provides several experimentally testable predictions.}, + language = {en}, + journal = {Nature Neuroscience}, + author = {Gal, Eyal and London, Michael and Globerson, Amir and Ramaswamy, Srikanth and Reimann, Michael W. and Muller, Eilif and Markram, Henry and Segev, Idan}, + month = jun, + year = {2017}, + keywords = {Network models,Research data,Neural circuits}, + file = {C:\\Users\\saram\\Zotero\\storage\\286DGNJ6\\Gal et al. 2017 Rich cell-type-specific network topology in neocortical microcircuitry.pdf;C:\\Users\\saram\\Zotero\\storage\\J8C9DZF6\\nn.4576-S2.pdf;C:\\Users\\saram\\Zotero\\storage\\XWJ3ZN89\\nn.4576-S1.pdf} +} + +@article{Pons2010a, + title = {Relating Structural and Functional Anomalous Connectivity in the Aging Brain via Neural Mass Modeling}, + volume = {52}, + issn = {1095-9572}, + doi = {10.1016/j.neuroimage.2009.12.105}, + abstract = {The structural changes that arise as the brain ages influence its functionality. In many cases, the anatomical degradation simply leads to normal aging. In others, the neurodegeneration is large enough to cause neurological disorders (e.g. Alzheimer's disease). Structure and function can be both currently measured using noninvasive techniques, such as magnetic resonance imaging (MRI) and electroencephalography (EEG) respectively. However, a full theoretical scheme linking structural and functional degradation is still lacking. Here we present a neural mass model that aims to bridge both levels of description and that reproduces experimentally observed multichannel EEG recordings of alpha rhythm in young subjects, healthy elderly subjects, and patients with mild cognitive impairment. We focus our attention in the dominant frequency of the signals at different electrodes and in the correlation between specific electrode pairs, measured via the phase-lag index. Our model allows us to study the influence of different structural connectivity pathways, independently of each other, on the normal and aberrantly aging brain. In particular, we study in detail the effect of the thalamic input on specific cortical regions, the long-range connectivity between cortical regions, and the short-range coupling within the same cortical area. Once the influence of each type of connectivity is determined, we characterize the regions of parameter space compatible with the EEG recordings of the populations under study. Our results show that the different types of connectivity must be fine-tuned to maintain the brain in a healthy functioning state independently of its age and brain condition.}, + language = {eng}, + number = {3}, + journal = {NeuroImage}, + author = {Pons, A. J. and Cantero, Jose L. and Atienza, Mercedes and Garcia-Ojalvo, Jordi}, + month = sep, + year = {2010}, + keywords = {Neural Pathways,Brain,Female,Male,Brain Mapping,Humans,Signal Processing; Computer-Assisted,Models; Neurological,Aged,Young Adult,Aging,Cognition Disorders,Electroencephalography}, + pages = {848-861}, + pmid = {20056154} +} + +@article{Pons2010, + series = {Computational Models of the Brain}, + title = {Relating Structural and Functional Anomalous Connectivity in the Aging Brain via Neural Mass Modeling}, + volume = {52}, + issn = {1053-8119}, + doi = {10.1016/j.neuroimage.2009.12.105}, + abstract = {The structural changes that arise as the brain ages influence its functionality. In many cases, the anatomical degradation simply leads to normal aging. In others, the neurodegeneration is large enough to cause neurological disorders (e.g. Alzheimer's disease). Structure and function can be both currently measured using noninvasive techniques, such as magnetic resonance imaging (MRI) and electroencephalography (EEG) respectively. However, a full theoretical scheme linking structural and functional degradation is still lacking. Here we present a neural mass model that aims to bridge both levels of description and that reproduces experimentally observed multichannel EEG recordings of alpha rhythm in young subjects, healthy elderly subjects, and patients with mild cognitive impairment. We focus our attention in the dominant frequency of the signals at different electrodes and in the correlation between specific electrode pairs, measured via the phase-lag index. Our model allows us to study the influence of different structural connectivity pathways, independently of each other, on the normal and aberrantly aging brain. In particular, we study in detail the effect of the thalamic input on specific cortical regions, the long-range connectivity between cortical regions, and the short-range coupling within the same cortical area. Once the influence of each type of connectivity is determined, we characterize the regions of parameter space compatible with the EEG recordings of the populations under study. Our results show that the different types of connectivity must be fine-tuned to maintain the brain in a healthy functioning state independently of its age and brain condition.}, + number = {3}, + journal = {NeuroImage}, + author = {Pons, A. J. and Cantero, Jose L. and Atienza, Mercedes and Garcia-Ojalvo, Jordi}, + month = sep, + year = {2010}, + keywords = {EEG modeling,Neural mass models,Brain connectivity,Alzheimer's disease,Mild cognitive impairment}, + pages = {848-861}, + file = {C:\\Users\\saram\\Zotero\\storage\\HIPI9DCK\\Pons et al. 2010 Relating structural and functional anomalous connectivity in the aging brain via neural mass modeling.pdf} +} + +@article{Gao2015, + series = {Large-Scale Recording Technology (32)}, + title = {On Simplicity and Complexity in the Brave New World of Large-Scale Neuroscience}, + volume = {32}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2015.04.003}, + abstract = {Technological advances have dramatically expanded our ability to probe multi-neuronal dynamics and connectivity in the brain. However, our ability to extract a simple conceptual understanding from complex data is increasingly hampered by the lack of theoretically principled data analytic procedures, as well as theoretical frameworks for how circuit connectivity and dynamics can conspire to generate emergent behavioral and cognitive functions. We review and outline potential avenues for progress, including new theories of high dimensional data analysis, the need to analyze complex artificial networks, and methods for analyzing entire spaces of circuit models, rather than one model at a time. Such interplay between experiments, data analysis and theory will be indispensable in catalyzing conceptual advances in the age of large-scale neuroscience.}, + journal = {Current Opinion in Neurobiology}, + author = {Gao, Peiran and Ganguli, Surya}, + month = jun, + year = {2015}, + pages = {148-155}, + file = {C:\\Users\\saram\\Zotero\\storage\\EK4NTVRT\\Gao and Ganguli 2015 On simplicity and complexity in the brave new world of large-scale neuroscience.pdf} +} + +@article{Roudi2015, + series = {Large-Scale Recording Technology (32)}, + title = {Multi-Neuronal Activity and Functional Connectivity in Cell Assemblies}, + volume = {32}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2014.10.011}, + abstract = {Our ability to collect large amounts of data from many cells has been paralleled by the development of powerful statistical models for extracting information from this data. Here we discuss how the activity of cell assemblies can be analyzed using these models, focusing on the generalized linear models and the maximum entropy models and describing a number of recent studies that employ these tools for analyzing multi-neuronal activity. We show results from simulations comparing inferred functional connectivity, pairwise correlations and the real synaptic connections in simulated networks demonstrating the power of statistical models in inferring functional connectivity. Further development of network reconstruction techniques based on statistical models should lead to more powerful methods of understanding functional anatomy of cell assemblies.}, + journal = {Current Opinion in Neurobiology}, + author = {Roudi, Yasser and Dunn, Benjamin and Hertz, John}, + month = jun, + year = {2015}, + pages = {38-44}, + file = {C:\\Users\\saram\\Zotero\\storage\\FSERRBX6\\Roudi et al. 2015 Multi-neuronal activity and functional connectivity in cell assemblies.pdf} +} + +@article{Lewis2015, + series = {Large-Scale Recording Technology (32)}, + title = {Recording of Brain Activity across Spatial Scales}, + volume = {32}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2014.12.007}, + abstract = {Brain activity reveals exquisite coordination across spatial scales, from local microcircuits to brain-wide networks. Understanding how the brain represents, transforms and communicates information requires simultaneous recordings from distributed nodes of whole brain networks with single-cell resolution. Realizing multi-site recordings from communicating populations is hampered by the need to isolate clusters of interacting cells, often on a day-to-day basis. Chronic implantation of multi-electrode arrays allows long-term tracking of activity. Lithography on thin films provides a means to produce arrays of variable resolution, a high degree of flexibility, and minimal tissue displacement. Sequential application of surface arrays to monitor activity across brain-wide networks and subsequent implantation of laminar arrays to target specific populations enables continual refinement of spatial scale while maintaining coverage.}, + journal = {Current Opinion in Neurobiology}, + author = {Lewis, CM and Bosman, CA and Fries, P}, + month = jun, + year = {2015}, + pages = {68-77}, + file = {C:\\Users\\saram\\Zotero\\storage\\4TB9ZN73\\Lewis et al. 2015 Recording of brain activity across spatial scales.pdf} +} + +@article{Mondragon-Gonzalez2017, + title = {Bio-Inspired Benchmark Generator for Extracellular Multi-Unit Recordings}, + volume = {7}, + copyright = {2017 Nature Publishing Group}, + issn = {2045-2322}, + doi = {10.1038/srep43253}, + abstract = {Article}, + language = {en}, + journal = {Scientific Reports}, + author = {Mondrag{\'o}n-Gonz{\'a}lez, Sirenia Lizbeth and Burgui{\`e}re, Eric}, + month = feb, + year = {2017}, + pages = {srep43253}, + file = {C:\\Users\\saram\\Zotero\\storage\\ARBZAI2S\\Mondragón-González and Burguière 2017 Bio-inspired benchmark generator for extracellular multi-unit recordings.pdf} +} + +@article{Lachaux1999, + title = {Measuring Phase Synchrony in Brain Signals}, + volume = {8}, + issn = {1097-0193}, + doi = {10.1002/(SICI)1097-0193(1999)8:4<194::AID-HBM4>3.0.CO;2-C}, + abstract = {This article presents, for the first time, a practical method for the direct quantification of frequency-specific synchronization (i.e., transient phase-locking) between two neuroelectric signals. The motivation for its development is to be able to examine the role of neural synchronies as a putative mechanism for long-range neural integration during cognitive tasks. The method, called phase-locking statistics (PLS), measures the significance of the phase covariance between two signals with a reasonable time-resolution ($<$100 ms). Unlike the more traditional method of spectral coherence, PLS separates the phase and amplitude components and can be directly interpreted in the framework of neural integration. To validate synchrony values against background fluctuations, PLS uses surrogate data and thus makes no a priori assumptions on the nature of the experimental data. We also apply PLS to investigate intracortical recordings from an epileptic patient performing a visual discrimination task. We find large-scale synchronies in the gamma band (45 Hz), e.g., between hippocampus and frontal gyrus, and local synchronies, within a limbic region, a few cm apart. We argue that whereas long-scale effects do reflect cognitive processing, short-scale synchronies are likely to be due to volume conduction. We discuss ways to separate such conduction effects from true signal synchrony. Hum Brain Mapping 8:194\textendash{}208, 1999. \textcopyright{} 1999 Wiley-Liss, Inc.}, + language = {en}, + number = {4}, + journal = {Human Brain Mapping}, + author = {Lachaux, Jean-Philippe and Rodriguez, Eugenio and Martinerie, Jacques and Varela, Francisco J.}, + month = jan, + year = {1999}, + keywords = {EEG,neural synchrony,phase-locking,coherence,EcoG,gamma-band,deblurring,epilepsy}, + pages = {194-208}, + file = {C:\\Users\\saram\\Zotero\\storage\\8QZ926XX\\Lachaux 1999 Measuring phase synchrony in brain signals.pdf} +} + +@article{Tallon-Baudry1996, + title = {Stimulus {{Specificity}} of {{Phase}}-{{Locked}} and {{Non}}-{{Phase}}-{{Locked}} 40\ {{Hz Visual Responses}} in {{Human}}}, + volume = {16}, + copyright = {Copyright \textcopyright{} 1996 Society for Neuroscience}, + issn = {0270-6474, 1529-2401}, + abstract = {Considerable interest has been raised by non-phase-locked episodes of synchronization in the gamma-band (30\textendash{}60 Hz). One of their putative roles in the visual modality is feature-binding. We tested the stimulus specificity of high-frequency oscillations in humans using three types of visual stimuli: two coherent stimuli (a Kanizsa and a real triangle) and a noncoherent stimulus (``no-triangle stimulus''). The task of the subject was to count the occurrences of a curved illusory triangle. A time\textendash{}frequency analysis of single-trial EEG data recorded from eight human subjects was performed to characterize phase-locked as well as non-phase-locked high-frequency activities. +We found an early phase-locked 40 Hz component, maximal at electrodes Cz\textendash{}C4, which does not vary with stimulation type. We describe a second 40 Hz component, appearing around 280 msec, that is not phase-locked to stimulus onset. This component is stronger in response to a coherent triangle, whether real or illusory: it could reflect, therefore, a mechanism of feature binding based on high-frequency synchronization. Because both the illusory and the real triangle are more target-like, it could also correspond to an oscillatory mechanism for testing the match between stimulus and target. At the same latencies, the low-frequency evoked response components phase-locked to stimulus onset behave differently, suggesting that low- and high-frequency activities have different functional roles.}, + language = {en}, + number = {13}, + journal = {Journal of Neuroscience}, + author = {Tallon-Baudry, Catherine and Bertrand, Olivier and Delpuech, Claude and Pernier, Jacques}, + month = jul, + year = {1996}, + keywords = {EEG,vision,oscillations,Evoked Potentials,gamma-band,40 Hz,feature binding,synchronization,human}, + pages = {4240-4249}, + file = {C:\\Users\\saram\\Zotero\\storage\\PDKPESIJ\\Tallon-Baudry et al. 1996 Stimulus Specificity of Phase-Locked and Non-Phase-Locked 40 \;Hz Visual Responses in Human.pdf}, + pmid = {8753885} +} + +@article{Carter1987, + title = {Coherence and Time Delay Estimation}, + volume = {75}, + issn = {0018-9219}, + doi = {10.1109/PROC.1987.13723}, + abstract = {This paper presents a tutorial review of work in coherence and time delay estimation. A review of coherence research and development is presented. A derivation of the ML estimator for time delay is presented together with an interpretation of that estimator as a special member of a class of generalized cross correlators. The performance of the estimator is given for both high and low signal-to-noise ratio cases. The proposed correlator is implemented and stimulated with synthetic data. The results are compared with performance predictions and found to be in good agreement.}, + number = {2}, + journal = {Proceedings of the IEEE}, + author = {Carter, G. C.}, + month = feb, + year = {1987}, + keywords = {Signal processing,Signal to noise ratio,Statistics,Matched filters,Nonlinear filters,Frequency,Correlators,Delay effects,Delay estimation,Random processes}, + pages = {236-255}, + file = {C:\\Users\\saram\\Zotero\\storage\\AIQCX52X\\Carter 1987 Coherence and time delay estimation.pdf} +} + +@article{WarrenLiao2005, + title = {Clustering of {{Time Series Data}}-a {{Survey}}}, + volume = {38}, + issn = {0031-3203}, + doi = {10.1016/j.patcog.2005.01.025}, + abstract = {Time series clustering has been shown effective in providing useful information in various domains. There seems to be an increased interest in time series clustering as part of the effort in temporal data mining research. To provide an overview, this paper surveys and summarizes previous works that investigated the clustering of time series data in various application domains. The basics of time series clustering are presented, including general-purpose clustering algorithms commonly used in time series clustering studies, the criteria for evaluating the performance of the clustering results, and the measures to determine the similarity/dissimilarity between two time series being compared, either in the forms of raw data, extracted features, or some model parameters. The past researchs are organized into three groups depending upon whether they work directly with the raw data either in the time or frequency domain, indirectly with features extracted from the raw data, or indirectly with models built from the raw data. The uniqueness and limitation of previous research are discussed and several possible topics for future research are identified. Moreover, the areas that time series clustering have been applied to are also summarized, including the sources of data used. It is hoped that this review will serve as the steppingstone for those interested in advancing this area of research.}, + number = {11}, + journal = {Pattern Recogn.}, + author = {Warren Liao, T.}, + month = nov, + year = {2005}, + keywords = {clustering,distance measure,Data mining,Time series data}, + pages = {1857--1874}, + file = {C:\\Users\\saram\\Zotero\\storage\\TZ27PGTC\\2005 PR Liao Time Series.pdf} +} + +@article{Ewell2015a, + title = {Brain {{State Is}} a {{Major Factor}} in {{Preseizure Hippocampal Network Activity}} and {{Influences Success}} of {{Seizure Intervention}}}, + volume = {35}, + copyright = {Copyright \textcopyright{} 2015 the authors 0270-6474/15/3515635-14\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.5112-14.2015}, + abstract = {Neural dynamics preceding seizures are of interest because they may shed light on mechanisms of seizure generation and could be predictive. In healthy animals, hippocampal network activity is shaped by behavioral brain state and, in epilepsy, seizures selectively emerge during specific brain states. To determine the degree to which changes in network dynamics before seizure are pathological or reflect ongoing fluctuations in brain state, dorsal hippocampal neurons were recorded during spontaneous seizures in a rat model of temporal lobe epilepsy. Seizures emerged from all brain states, but with a greater likelihood after REM sleep, potentially due to an observed increase in baseline excitability during periods of REM compared with other brains states also characterized by sustained theta oscillations. When comparing the firing patterns of the same neurons across brain states associated with and without seizures, activity dynamics before seizures followed patterns typical of the ongoing brain state, or brain state transitions, and did not differ until the onset of the electrographic seizure. Next, we tested whether disparate activity patterns during distinct brain states would influence the effectiveness of optogenetic curtailment of hippocampal seizures in a mouse model of temporal lobe epilepsy. Optogenetic curtailment was significantly more effective for seizures preceded by non-theta states compared with seizures that emerged from theta states. Our results indicate that consideration of behavioral brain state preceding a seizure is important for the appropriate interpretation of network dynamics leading up to a seizure and for designing effective seizure intervention. +SIGNIFICANCE STATEMENT Hippocampal single-unit activity is strongly shaped by behavioral brain state, yet this relationship has been largely ignored when studying activity dynamics before spontaneous seizures in medial temporal lobe epilepsy. In light of the increased attention on using single-unit activity for the prediction of seizure onset and closed-loop seizure intervention, we show a need for monitoring brain state to interpret correctly whether changes in neural activity before seizure onset is pathological or normal. Moreover, we also find that the brain state preceding a seizure determines the success of therapeutic interventions to curtail seizure duration. Together, these findings suggest that seizure prediction and intervention will be more successful if tailored for the specific brain states from which seizures emerge.}, + language = {en}, + number = {47}, + journal = {Journal of Neuroscience}, + author = {Ewell, Laura A. and Liang, Liang and Armstrong, Caren and Solt{\'e}sz, Ivan and Leutgeb, Stefan and Leutgeb, Jill K.}, + month = nov, + year = {2015}, + keywords = {temporal lobe epilepsy,brain state,interneuron,REM sleep,seizure prediction,hippocampus}, + pages = {15635-15648}, + file = {C:\\Users\\saram\\Zotero\\storage\\D67EQK7B\\Ewell et al. 2015 Brain State Is a Major Factor in Preseizure Hippocampal Network Activity and Influences Success of Seizure Intervention.pdf}, + pmid = {26609157} +} + +@article{Ewell2015, + title = {Brain {{State Is}} a {{Major Factor}} in {{Preseizure Hippocampal Network Activity}} and {{Influences Success}} of {{Seizure Intervention}}}, + volume = {35}, + copyright = {Copyright \textcopyright{} 2015 the authors 0270-6474/15/3515635-14\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.5112-14.2015}, + abstract = {Neural dynamics preceding seizures are of interest because they may shed light on mechanisms of seizure generation and could be predictive. In healthy animals, hippocampal network activity is shaped by behavioral brain state and, in epilepsy, seizures selectively emerge during specific brain states. To determine the degree to which changes in network dynamics before seizure are pathological or reflect ongoing fluctuations in brain state, dorsal hippocampal neurons were recorded during spontaneous seizures in a rat model of temporal lobe epilepsy. Seizures emerged from all brain states, but with a greater likelihood after REM sleep, potentially due to an observed increase in baseline excitability during periods of REM compared with other brains states also characterized by sustained theta oscillations. When comparing the firing patterns of the same neurons across brain states associated with and without seizures, activity dynamics before seizures followed patterns typical of the ongoing brain state, or brain state transitions, and did not differ until the onset of the electrographic seizure. Next, we tested whether disparate activity patterns during distinct brain states would influence the effectiveness of optogenetic curtailment of hippocampal seizures in a mouse model of temporal lobe epilepsy. Optogenetic curtailment was significantly more effective for seizures preceded by non-theta states compared with seizures that emerged from theta states. Our results indicate that consideration of behavioral brain state preceding a seizure is important for the appropriate interpretation of network dynamics leading up to a seizure and for designing effective seizure intervention. +SIGNIFICANCE STATEMENT Hippocampal single-unit activity is strongly shaped by behavioral brain state, yet this relationship has been largely ignored when studying activity dynamics before spontaneous seizures in medial temporal lobe epilepsy. In light of the increased attention on using single-unit activity for the prediction of seizure onset and closed-loop seizure intervention, we show a need for monitoring brain state to interpret correctly whether changes in neural activity before seizure onset is pathological or normal. Moreover, we also find that the brain state preceding a seizure determines the success of therapeutic interventions to curtail seizure duration. Together, these findings suggest that seizure prediction and intervention will be more successful if tailored for the specific brain states from which seizures emerge.}, + language = {en}, + number = {47}, + journal = {Journal of Neuroscience}, + author = {Ewell, Laura A. and Liang, Liang and Armstrong, Caren and Solt{\'e}sz, Ivan and Leutgeb, Stefan and Leutgeb, Jill K.}, + month = nov, + year = {2015}, + keywords = {temporal lobe epilepsy,brain state,interneuron,REM sleep,seizure prediction,Valiante,hippocampus}, + pages = {15635-15648}, + file = {C:\\Users\\saram\\Zotero\\storage\\PW2CM2KI\\Ewell 2015-Brain State Is a Major Factor in Preseizure Hippocampal network activity and influences success of seizure intervention.pdf}, + pmid = {26609157} +} + +@article{Canolty2010, + title = {The Functional Role of Cross-Frequency Coupling}, + volume = {14}, + issn = {1364-6613}, + doi = {10.1016/j.tics.2010.09.001}, + abstract = {Recent studies suggest that cross-frequency coupling (CFC) may serve a functional role in neuronal computation, communication, and learning. In particular, the strength of phase-amplitude CFC differs across brain areas in a task-relevant manner, changes quickly in response to sensory, motor, and cognitive events, and correlates with performance in learning tasks. Importantly, while high-frequency brain activity reflects local domains of cortical processing, low-frequency brain rhythms are dynamically entrained across distributed brain regions by both external sensory input and internal cognitive events. CFC may thus serve as a mechanism to transfer information from large-scale brain networks operating at behavioral timescales to the fast, local cortical processing required for effective computation and synaptic modification, thus integrating functional systems across multiple spatiotemporal scales.}, + number = {11}, + journal = {Trends in Cognitive Sciences}, + author = {Canolty, Ryan T. and Knight, Robert T.}, + month = nov, + year = {2010}, + pages = {506-515}, + file = {C:\\Users\\saram\\Zotero\\storage\\PM5WKZKR\\Canolty 2010-The functional role of cross-frequency coupling.pdf}, + pmid = {20932795}, + pmcid = {PMC3359652} +} + +@article{Kass2016, + title = {Ten {{Simple Rules}} for {{Effective Statistical Practice}}}, + volume = {12}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1004961}, + number = {6}, + journal = {PLOS Computational Biology}, + author = {Kass, Robert E. and Caffo, Brian S. and Davidian, Marie and Meng, Xiao-Li and Yu, Bin and Reid, Nancy}, + month = jun, + year = {2016}, + keywords = {Neurons,Statistical data,Statistical models,Reproducibility,Probability distribution,Experimental design,Statistical methods,Statistical signal processing}, + pages = {e1004961}, + file = {C:\\Users\\saram\\Zotero\\storage\\NBHMUPFK\\Kass et al. 2016 Ten Simple Rules for Effective Statistical Practice.pdf} +} + +@article{Shadlen1998, + title = {The {{Variable Discharge}} of {{Cortical Neurons}}: {{Implications}} for {{Connectivity}}, {{Computation}}, and {{Information Coding}}}, + volume = {18}, + copyright = {Copyright \textcopyright{} 1998 Society for Neuroscience}, + issn = {0270-6474, 1529-2401}, + shorttitle = {The {{Variable Discharge}} of {{Cortical Neurons}}}, + abstract = {Cortical neurons exhibit tremendous variability in the number and temporal distribution of spikes in their discharge patterns. Furthermore, this variability appears to be conserved over large regions of the cerebral cortex, suggesting that it is neither reduced nor expanded from stage to stage within a processing pathway. To investigate the principles underlying such statistical homogeneity, we have analyzed a model of synaptic integration incorporating a highly simplified integrate and fire mechanism with decay. We analyzed a ``high-input regime'' in which neurons receive hundreds of excitatory synaptic inputs during each interspike interval. To produce a graded response in this regime, the neuron must balance excitation with inhibition. We find that a simple integrate and fire mechanism with balanced excitation and inhibition produces a highly variable interspike interval, consistent with experimental data. Detailed information about the temporal pattern of synaptic inputs cannot be recovered from the pattern of output spikes, and we infer that cortical neurons are unlikely to transmit information in the temporal pattern of spike discharge. Rather, we suggest that quantities are represented as rate codes in ensembles of 50\textendash{}100 neurons. These column-like ensembles tolerate large fractions of common synaptic input and yet covary only weakly in their spike discharge. We find that an ensemble of 100 neurons provides a reliable estimate of rate in just one interspike interval (10\textendash{}50 msec). Finally, we derived an expression for the variance of the neural spike count that leads to a stable propagation of signal and noise in networks of neurons\textemdash{}that is, conditions that do not impose an accumulation or diminution of noise. The solution implies that single neurons perform simple algebra resembling averaging, and that more sophisticated computations arise by virtue of the anatomical convergence of novel combinations of inputs to the cortical column from external sources.}, + language = {en}, + number = {10}, + journal = {Journal of Neuroscience}, + author = {Shadlen, Michael N. and Newsome, William T.}, + month = may, + year = {1998}, + keywords = {temporal coding,noise,rate code,correlation,interspike interval,spike count variance,response variability,visual cortex,synaptic integration,neural model}, + pages = {3870-3896}, + file = {C:\\Users\\saram\\Zotero\\storage\\NTH7GVHH\\Shadlen and Newsome 1998 The Variable Discharge of Cortical Neurons Implications for Connectivity, Computation, and Information Coding.pdf}, + pmid = {9570816} +} + +@article{Stein2005, + title = {Neuronal Variability: Noise or Part of the Signal?}, + volume = {6}, + copyright = {\textcopyright{} 2005 Nature Publishing Group}, + issn = {1471-003X}, + shorttitle = {Neuronal Variability}, + doi = {10.1038/nrn1668}, + abstract = {Sensory, motor and cortical neurons fire impulses or spikes at a regular, but slowly declining, rate in response to a constant current stimulus. Yet, the intervals between spikes often vary randomly during behaviour. Is this variation an unavoidable effect of generating spikes by sensory or synaptic processes ('neural noise') or is it an important part of the 'signal' that is transmitted to other neurons? Here, we mainly discuss this question in relation to sensory and motor processes, as the signals are best identified in such systems, although we also touch on central processes.}, + language = {en}, + number = {5}, + journal = {Nature Reviews Neuroscience}, + author = {Stein, Richard B. and Gossen, E. Roderich and Jones, Kelvin E.}, + month = may, + year = {2005}, + pages = {389-397}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZX8ZQJJZ\\Stein et al. 2005 Neuronal variability noise or part of the signal.pdf} +} + +@article{Jacobs2009, + title = {Ruling out and Ruling in Neural Codes}, + volume = {106}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0900573106}, + abstract = {The subject of neural coding has generated much debate. A key issue is whether the nervous system uses coarse or fine coding. Each has different strengths and weaknesses and, therefore, different implications for how the brain computes. For example, the strength of coarse coding is that it is robust to fluctuations in spike arrival times; downstream neurons do not have to keep track of the details of the spike train. The weakness, though, is that individual cells cannot carry much information, so downstream neurons have to pool signals across cells and/or time to obtain enough information to represent the sensory world and guide behavior. In contrast, with fine coding, individual cells can carry much more information, but downstream neurons have to resolve spike train structure to obtain it. Here, we set up a strategy to determine which codes are viable, and we apply it to the retina as a model system. We recorded from all the retinal output cells an animal uses to solve a task, evaluated the cells' spike trains for as long as the animal evaluates them, and used optimal, i.e., Bayesian, decoding. This approach makes it possible to obtain an upper bound on the performance of codes and thus eliminate those that are insufficient, that is, those that cannot account for behavioral performance. Our results show that standard coarse coding (spike count coding) is insufficient; finer, more information-rich codes are necessary.}, + language = {en}, + number = {14}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Jacobs, Adam L. and Fridman, Gene and Douglas, Robert M. and Alam, Nazia M. and Latham, Peter E. and Prusky, Glen T. and Nirenberg, Sheila}, + month = jul, + year = {2009}, + keywords = {Bayesian,ganglion cells,ideal observer,neural coding,population coding}, + pages = {5936-5941}, + file = {C:\\Users\\saram\\Zotero\\storage\\GEXXXQFE\\Jacobs et al. 2009 Ruling out and ruling in neural codes.pdf;C:\\Users\\saram\\Zotero\\storage\\SZQKPS5G\\PNAS-2009-Jacobs-5936-41.pdf}, + pmid = {19297621} +} + +@article{Borst1999, + title = {Information Theory and Neural Coding}, + volume = {2}, + copyright = {\textcopyright{} 1999 Nature Publishing Group}, + issn = {1097-6256}, + doi = {10.1038/14731}, + abstract = {Information theory quantifies how much information a neural response carries about the stimulus. This can be compared to the information transferred in particular models of the stimulus-response function and to maximum possible information transfer. Such comparisons are crucial because they validate assumptions present in any neurophysiological analysis. Here we review information-theory basics before demonstrating its use in neural coding. We show how to use information theory to validate simple stimulus-response models of neural coding of dynamic stimuli. Because these models require specification of spike timing precision, they can reveal which time scales contain information in neural coding. This approach shows that dynamic stimuli can be encoded efficiently by single neurons and that each spike contributes to information transmission. We argue, however, that the data obtained so far do not suggest a temporal code, in which the placement of spikes relative to each other yields additional information.}, + language = {en}, + number = {11}, + journal = {Nature Neuroscience}, + author = {Borst, Alexander and Theunissen, Fr{\'e}d{\'e}ric E.}, + month = nov, + year = {1999}, + pages = {947-957}, + file = {C:\\Users\\saram\\Zotero\\storage\\CFMAJZX3\\Borst and Theunissen 1999 Information theory and neural coding.pdf} +} + +@article{Hsu2004, + title = {Quantifying Variability in Neural Responses and Its Application for the Validation of Model Predictions}, + volume = {15}, + issn = {0954-898X}, + abstract = {A rate code assumes that a neuron's response is completely characterized by its time-varying mean firing rate. This assumption has successfully described neural responses in many systems. The noise in rate coding neurons can be quantified by the coherence function or the correlation coefficient between the neuron's deterministic time-varying mean rate and noise corrupted single spike trains. Because of the finite data size, the mean rate cannot be known exactly and must be approximated. We introduce novel unbiased estimators for the measures of coherence and correlation which are based on the extrapolation of the signal to noise ratio in the neural response to infinite data size. We then describe the application of these estimates to the validation of the class of stimulus-response models that assume that the mean firing rate captures all the information embedded in the neural response. We explain how these quantifiers can be used to separate response prediction errors that are due to inaccurate model assumptions from errors due to noise inherent in neuronal spike trains.}, + language = {eng}, + number = {2}, + journal = {Network (Bristol, England)}, + author = {Hsu, Anne and Borst, Alexander and Theunissen, Fr{\'e}d{\'e}ric E.}, + month = may, + year = {2004}, + keywords = {Neurons,Time Factors,Models; Neurological,Computer Simulation,Neural Networks (Computer),noise,Linear Models,Predictive Value of Tests,Action potentials}, + pages = {91-109}, + file = {C:\\Users\\saram\\Zotero\\storage\\D9EXXH5V\\Hsu_and_Borst_et_al_2004.pdf}, + pmid = {15214701} +} + +@inproceedings{Sahani2002, + address = {Cambridge, MA, USA}, + series = {NIPS'02}, + title = {How {{Linear Are Auditory Cortical Responses}}?}, + abstract = {By comparison to some other sensory cortices, the functional properties of cells in the primary auditory cortex are not yet well understood. Recent attempts to obtain a generalized description of auditory cortical responses have often relied upon characterization of the spectrotemporal receptive field (STRF), which amounts to a model of the stimulus-response function (SRF) that is linear in the spectrogram of the stimulus. How well can such a model account for neural responses at the very first stages of auditory cortical processing? To answer this question, we develop a novel methodology for evaluating the fraction of stimulus-related response power in a population that can be captured by a given type of SRF model. We use this technique to show that, in the thalamo-recipient layers of primary auditory cortex, STRF models account for no more than 40\% of the stimulus-related power in neural responses.}, + booktitle = {Proceedings of the 15th {{International Conference}} on {{Neural Information Processing Systems}}}, + publisher = {{MIT Press}}, + author = {Sahani, Maneesh and Linden, Jennifer F.}, + year = {2002}, + pages = {125--132}, + file = {C:\\Users\\saram\\Zotero\\storage\\T8TIX35M\\Sahani_and_Linden_2002.pdf} +} + +@article{Martens2014, + title = {Separating Burst from Background Spikes in Multichannel Neuronal Recordings Using Return Map Analysis}, + volume = {24}, + issn = {0129-0657}, + doi = {10.1142/S0129065714500129}, + abstract = {We propose a preprocessing method to separate coherent neuronal network activity, referred to as ``bursts'', from background spikes. High background activity in neuronal recordings reduces the effectiveness of currently available burst detection methods. For long-term, stationary recordings, burst and background spikes have a bimodal ISI distribution which makes it easy to select the threshold to separate burst and background spikes. Finite, nonstationary recordings lead to noisy ISIs for which the bimodality is not that clear. We introduce a preprocessing method to separate burst from background spikes to improve burst detection reliability because it efficiently uses both single and multichannel activity. The method is tested using a stochastic model constrained by data available in the literature and recordings from primary cortical neurons cultured on multielectrode arrays. The separation between burst and background spikes is obtained using the interspike interval return map. The cutoff threshold is the key parameter to separate the burst and background spikes. We compare two methods for selecting the threshold. The 2-step method, in which threshold selection is based on fixed heuristics. The iterative method, in which the optimal cutoff threshold is directly estimated from the data. The proposed preprocessing method significantly increases the reliability of several established burst detection algorithms, both for simulated and real recordings. The preprocessing method makes it possible to study the effects of diseases or pharmacological manipulations, because it can deal efficiently with nonstationarity in the data.}, + language = {eng}, + number = {4}, + journal = {International Journal of Neural Systems}, + author = {Martens, M. B. and Chiappalone, M. and Schubert, D. and Tiesinga, P. H. E.}, + month = jun, + year = {2014}, + keywords = {Neurons,Animals,Time Factors,Nerve Net,Humans,Models; Neurological,Action potentials,ROC Curve,Signal Detection; Psychological,Stochastic Processes}, + pages = {1450012}, + file = {C:\\Users\\saram\\Zotero\\storage\\KENGRHWY\\Martens 2014-SEPARATING BURST FROM BACKGROUND SPIKES IN MULTICHANNEL NEURONAL RECORDINGS USING RETURN MAP ANALYSIS.pdf}, + pmid = {24812717} +} + +@article{Kreuz2013a, + title = {Monitoring Spike Train Synchrony}, + volume = {109}, + copyright = {Copyright \textcopyright{} 2013 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00873.2012}, + abstract = {Recently, the SPIKE-distance has been proposed as a parameter-free and timescale-independent measure of spike train synchrony. This measure is time resolved since it relies on instantaneous estimates of spike train dissimilarity. However, its original definition led to spuriously high instantaneous values for eventlike firing patterns. Here we present a substantial improvement of this measure that eliminates this shortcoming. The reliability gained allows us to track changes in instantaneous clustering, i.e., time-localized patterns of (dis)similarity among multiple spike trains. Additional new features include selective and triggered temporal averaging as well as the instantaneous comparison of spike train groups. In a second step, a causal SPIKE-distance is defined such that the instantaneous values of dissimilarity rely on past information only so that time-resolved spike train synchrony can be estimated in real time. We demonstrate that these methods are capable of extracting valuable information from field data by monitoring the synchrony between neuronal spike trains during an epileptic seizure. Finally, the applicability of both the regular and the real-time SPIKE-distance to continuous data is illustrated on model electroencephalographic (EEG) recordings.}, + language = {en}, + number = {5}, + journal = {Journal of Neurophysiology}, + author = {Kreuz, Thomas and Chicharro, Daniel and Houghton, Conor and Andrzejak, Ralph G. and Mormann, Florian}, + month = mar, + year = {2013}, + pages = {1457-1472}, + file = {C:\\Users\\saram\\Zotero\\storage\\SWVRBM7P\\Kreuz 2013 - Monitoring spike train synchrony.pdf}, + pmid = {23221419} +} + +@article{Fisher2013, + title = {A Modeling Framework for Deriving the Structural and Functional Architecture of a Short-Term Memory Microcircuit}, + volume = {79}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2013.06.041}, + abstract = {Although many studies have identified neural correlates of memory, relatively little is known about the circuit properties connecting single-neuron physiology to behavior. Here we developed a modeling framework to bridge this gap and identify circuit interactions capable of maintaining short-term memory. Unlike typical studies that construct a phenomenological model and test whether it reproduces select aspects of neuronal data, we directly fit the synaptic connectivity of an oculomotor memory circuit to a broad range of anatomical, electrophysiological, and behavioral data. Simultaneous fits to all data, combined with sensitivity analyses, revealed complementary roles of synaptic and neuronal-recruitment thresholds in providing the nonlinear interactions required to generate the observed circuit behavior. This work introduces a new methodology for identifying the cellular and synaptic mechanisms underlying short-term memory, and demonstrates how the anatomical structure of a circuit may belie its functional organization.}, + number = {5}, + journal = {Neuron}, + author = {Fisher, Dimitry and Olasagasti, Itsaso and Tank, David W. and Aksay, Emre R.F. and Goldman, Mark S.}, + month = sep, + year = {2013}, + pages = {987-1000}, + file = {C:\\Users\\saram\\Zotero\\storage\\QAKYNHKY\\Fisher et al. - 2013 - A modeling framework for deriving the structural a.pdf}, + pmid = {24012010}, + pmcid = {PMC3768012} +} + +@article{Torre2016, + title = {Synchronous {{Spike Patterns}} in {{Macaque Motor Cortex}} during an {{Instructed}}-{{Delay Reach}}-to-{{Grasp Task}}}, + volume = {36}, + copyright = {Copyright \textcopyright{} 2016 Torre, et al.. This article is freely available online through the J Neurosci Author Open Choice option.}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.4375-15.2016}, + abstract = {The computational role of spike time synchronization at millisecond precision among neurons in the cerebral cortex is hotly debated. Studies performed on data of limited size provided experimental evidence that low-order correlations occur in relation to behavior. Advances in electrophysiological technology to record from hundreds of neurons simultaneously provide the opportunity to observe coordinated spiking activity of larger populations of cells. We recently published a method that combines data mining and statistical evaluation to search for significant patterns of synchronous spikes in massively parallel spike trains (Torre et al., 2013). The method solves the computational and multiple testing problems raised by the high dimensionality of the data. In the current study, we used our method on simultaneous recordings from two macaque monkeys engaged in an instructed-delay reach-to-grasp task to determine the emergence of spike synchronization in relation to behavior. We found a multitude of synchronous spike patterns aligned in both monkeys along a preferential mediolateral orientation in brain space. The occurrence of the patterns is highly specific to behavior, indicating that different behaviors are associated with the synchronization of different groups of neurons (``cell assemblies''). However, pooled patterns that overlap in neuronal composition exhibit no specificity, suggesting that exclusive cell assemblies become active during different behaviors, but can recruit partly identical neurons. These findings are consistent across multiple recording sessions analyzed across the two monkeys. +SIGNIFICANCE STATEMENT Neurons in the brain communicate via electrical impulses called spikes. How spikes are coordinated to process information is still largely unknown. Synchronous spikes are effective in triggering a spike emission in receiving neurons and have been shown to occur in relation to behavior in a number of studies on simultaneous recordings of few neurons. We recently published a method to extend this type of investigation to larger data. Here, we apply it to simultaneous recordings of hundreds of neurons from the motor cortex of macaque monkeys performing a motor task. Our analysis reveals groups of neurons selectively synchronizing their activity in relation to behavior, which sheds new light on the role of synchrony in information processing in the cerebral cortex.}, + language = {en}, + number = {32}, + journal = {Journal of Neuroscience}, + author = {Torre, Emiliano and Quaglio, Pietro and Denker, Michael and Brochier, Thomas and Riehle, Alexa and Gr{\"u}n, Sonja}, + month = aug, + year = {2016}, + keywords = {Motor Cortex,temporal coding,cell assemblies,massively parallel spike trains,spike synchrony}, + pages = {8329-8340}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z3CJJEFD\\Torre et al_2016_Synchronous Spike Patterns in Macaque Motor Cortex during an Instructed-Delay.pdf}, + pmid = {27511007} +} + +@article{Martens2013, + title = {Separating Burst from Background Spikes in Multichannel Neuronal Recordings Using Return Map Analysis}, + volume = {24}, + issn = {0129-0657}, + doi = {10.1142/S0129065714500129}, + abstract = {We propose a preprocessing method to separate coherent neuronal network activity, referred to as "bursts", from background spikes. High background activity in neuronal recordings reduces the effectiveness of currently available burst detection methods. For long-term, stationary recordings, burst and background spikes have a bimodal ISI distribution which makes it easy to select the threshold to separate burst and background spikes. Finite, nonstationary recordings lead to noisy ISIs for which the bimodality is not that clear. We introduce a preprocessing method to separate burst from background spikes to improve burst detection reliability because it efficiently uses both single and multichannel activity. The method is tested using a stochastic model constrained by data available in the literature and recordings from primary cortical neurons cultured on multielectrode arrays. The separation between burst and background spikes is obtained using the interspike interval return map. The cutoff threshold is the key parameter to separate the burst and background spikes. We compare two methods for selecting the threshold. (1) The 2-step method, in which threshold selection is based on fixed heuristics. (2) The iterative method, in which the optimal cutoff threshold is directly estimated from the data. The proposed preprocessing method significantly increases the reliability of several established burst detection algorithms, both for simulated and real recordings. The preprocessing method makes it possible to study the effects of diseases or pharmacological manipulations, because it can deal efficiently with nonstationarity in the data.}, + number = {04}, + journal = {International Journal of Neural Systems}, + author = {Martens, M. B. and Chiappalone, M. and Schubert, D. and Tiesinga, P. H. E.}, + month = dec, + year = {2013}, + pages = {1450012} +} + +@article{Rajalingham2015, + title = {Comparison of {{Object Recognition Behavior}} in {{Human}} and {{Monkey}}}, + volume = {35}, + copyright = {Copyright \textcopyright{} 2015 the authors 0270-6474/15/3512127-10\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0573-15.2015}, + abstract = {Although the rhesus monkey is used widely as an animal model of human visual processing, it is not known whether invariant visual object recognition behavior is quantitatively comparable across monkeys and humans. To address this question, we systematically compared the core object recognition behavior of two monkeys with that of human subjects. To test true object recognition behavior (rather than image matching), we generated several thousand naturalistic synthetic images of 24 basic-level objects with high variation in viewing parameters and image background. Monkeys were trained to perform binary object recognition tasks on a match-to-sample paradigm. Data from 605 human subjects performing the same tasks on Mechanical Turk were aggregated to characterize ``pooled human'' object recognition behavior, as well as 33 separate Mechanical Turk subjects to characterize individual human subject behavior. Our results show that monkeys learn each new object in a few days, after which they not only match mean human performance but show a pattern of object confusion that is highly correlated with pooled human confusion patterns and is statistically indistinguishable from individual human subjects. Importantly, this shared human and monkey pattern of 3D object confusion is not shared with low-level visual representations (pixels, V1+; models of the retina and primary visual cortex) but is shared with a state-of-the-art computer vision feature representation. Together, these results are consistent with the hypothesis that rhesus monkeys and humans share a common neural shape representation that directly supports object perception. +SIGNIFICANCE STATEMENT To date, several mammalian species have shown promise as animal models for studying the neural mechanisms underlying high-level visual processing in humans. In light of this diversity, making tight comparisons between nonhuman and human primates is particularly critical in determining the best use of nonhuman primates to further the goal of the field of translating knowledge gained from animal models to humans. To the best of our knowledge, this study is the first systematic attempt at comparing a high-level visual behavior of humans and macaque monkeys.}, + language = {en}, + number = {35}, + journal = {Journal of Neuroscience}, + author = {Rajalingham, Rishi and Schmidt, Kailyn and DiCarlo, James J.}, + month = sep, + year = {2015}, + keywords = {vision,human,monkey,object recognition}, + pages = {12127-12136}, + file = {C:\\Users\\saram\\Zotero\\storage\\IFKRAKXV\\Rajalingham et al. - 2015 - Comparison of Object Recognition Behavior in Human.pdf}, + pmid = {26338324} +} + +@article{Kreuz2013, + title = {Monitoring Spike Train Synchrony}, + volume = {109}, + copyright = {Copyright \textcopyright{} 2013 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00873.2012}, + abstract = {Recently, the SPIKE-distance has been proposed as a parameter-free and timescale-independent measure of spike train synchrony. This measure is time resolved since it relies on instantaneous estimates of spike train dissimilarity. However, its original definition led to spuriously high instantaneous values for eventlike firing patterns. Here we present a substantial improvement of this measure that eliminates this shortcoming. The reliability gained allows us to track changes in instantaneous clustering, i.e., time-localized patterns of (dis)similarity among multiple spike trains. Additional new features include selective and triggered temporal averaging as well as the instantaneous comparison of spike train groups. In a second step, a causal SPIKE-distance is defined such that the instantaneous values of dissimilarity rely on past information only so that time-resolved spike train synchrony can be estimated in real time. We demonstrate that these methods are capable of extracting valuable information from field data by monitoring the synchrony between neuronal spike trains during an epileptic seizure. Finally, the applicability of both the regular and the real-time SPIKE-distance to continuous data is illustrated on model electroencephalographic (EEG) recordings.}, + language = {en}, + number = {5}, + journal = {Journal of Neurophysiology}, + author = {Kreuz, Thomas and Chicharro, Daniel and Houghton, Conor and Andrzejak, Ralph G. and Mormann, Florian}, + month = mar, + year = {2013}, + pages = {1457-1472}, + file = {C:\\Users\\saram\\Zotero\\storage\\LETNR24Y\\Kreuz et al. - 2013 - Monitoring spike train synchrony.pdf}, + pmid = {23221419} +} + +@incollection{Lee2008, + title = {Sparse Deep Belief Net Model for Visual Area {{V2}}}, + booktitle = {Advances in {{Neural Information Processing Systems}} 20}, + publisher = {{Curran Associates, Inc.}}, + author = {Lee, Honglak and Ekanadham, Chaitanya and Ng, Andrew Y.}, + editor = {Platt, J. C. and Koller, D. and Singer, Y. and Roweis, S. T.}, + year = {2008}, + pages = {873--880}, + file = {C:\\Users\\saram\\Zotero\\storage\\E4NRBFGA\\Lee et al. - 2008 - Sparse deep belief net model for visual area V2.pdf} +} + +@article{Schmitz2015, + title = {Application of {{Parallel Factor Analysis}} ({{PARAFAC}}) to Electrophysiological Data}, + volume = {8}, + issn = {1662-5196}, + doi = {10.3389/fninf.2014.00084}, + abstract = {The identification of important features in multi-electrode recordings requires the decomposition of data in order to disclose relevant features and to offer a clear graphical representation. This can be a demanding task. Parallel Factor Analysis (PARAFAC; Hitchcock, 1927; Carrol and Chang, 1970; Harshman, 1970) is a method to decompose multi-dimensional arrays in order to focus on the features of interest, and provides a distinct illustration of the results. We applied PARAFAC to analyse spatio-temporal patterns in the functional connectivity between neurons, as revealed in their spike trains recorded in cat primary visual cortex (area 18). During these recordings we reversibly deactivated feedback connections from higher visual areas in the pMS (posterior middle suprasylvian) cortex in order to study the impact of these top-down signals. Cross correlation was computed for every possible pair of the 16 electrodes in the electrode array. PARAFAC was then used to reveal the effects of time, stimulus, and deactivation condition on the correlation patterns. Our results show that PARAFAC is able to reliably extract changes in correlation strength for different experimental conditions and display the relevant features. Thus, PARAFAC proves to be well-suited for the use in the context of electrophysiological (action potential) recordings.}, + journal = {Frontiers in Neuroinformatics}, + author = {Schmitz, S. Katharina and Hasselbach, Philipp P. and Ebisch, Boris and Klein, Anja and Pipa, Gordon and Galuske, Ralf A. W.}, + month = jan, + year = {2015}, + keywords = {Valiante}, + file = {C:\\Users\\saram\\Zotero\\storage\\C44T4H9X\\Schmitz et al. - 2015 - Application of Parallel Factor Analysis (PARAFAC) .pdf}, + pmid = {25688205}, + pmcid = {PMC4311613} +} + +@article{Runyan2017, + title = {Distinct Timescales of Population Coding across Cortex}, + volume = {advance online publication}, + copyright = {\textcopyright{} 2017 Macmillan Publishers Limited, part of Springer Nature. All rights reserved.}, + issn = {0028-0836}, + doi = {10.1038/nature23020}, + abstract = {The cortex represents information across widely varying timescales. For instance, sensory cortex encodes stimuli that fluctuate over few tens of milliseconds, whereas in association cortex behavioural choices can require the maintenance of information over seconds. However, it remains poorly understood whether diverse timescales result mostly from features intrinsic to individual neurons or from neuronal population activity. This question remains unanswered, because the timescales of coding in populations of neurons have not been studied extensively, and population codes have not been compared systematically across cortical regions. Here we show that population codes can be essential to achieve long coding timescales. Furthermore, we find that the properties of population codes differ between sensory and association cortices. We compared coding for sensory stimuli and behavioural choices in auditory cortex and posterior parietal cortex as mice performed a sound localization task. Auditory stimulus information was stronger in auditory cortex than in posterior parietal cortex, and both regions contained choice information. Although auditory cortex and posterior parietal cortex coded information by tiling in time neurons that were transiently informative for approximately 200 milliseconds, the areas had major differences in functional coupling between neurons, measured as activity correlations that could not be explained by task events. Coupling among posterior parietal cortex neurons was strong and extended over long time lags, whereas coupling among auditory cortex neurons was weak and short-lived. Stronger coupling in posterior parietal cortex led to a population code with long timescales and a representation of choice that remained consistent for approximately 1 second. In contrast, auditory cortex had a code with rapid fluctuations in stimulus and choice information over hundreds of milliseconds. Our results reveal that population codes differ across cortex and that coupling is a variable property of cortical populations that affects the timescale of information coding and the accuracy of behaviour.}, + language = {en}, + journal = {Nature}, + author = {Runyan, Caroline A. and Piasini, Eugenio and Panzeri, Stefano and Harvey, Christopher D.}, + month = jul, + year = {2017} +} + +@misc{al, + title = {Application of {{Parallel Factor Analysis}} ({{PARAFAC}}) to Electrophysiological Data. - {{PubMed}} - {{NCBI}}}, + abstract = {Front Neuroinform. 2015 Jan 30;8:84. doi: 10.3389/fninf.2014.00084. eCollection 2014.}, + howpublished = {https://www.ncbi.nlm.nih.gov/pubmed/25688205}, + author = {{al}, et, Schmitz SK} +} + +@inproceedings{Sahani2003, + title = {Evidence Optimization Techniques for Estimating Stimulus-Response Functions}, + booktitle = {Advances in Neural Information Processing Systems}, + author = {Sahani, Maneesh and Linden, Jennifer F.}, + year = {2003}, + pages = {317--324}, + file = {C:\\Users\\saram\\Zotero\\storage\\FD3BZ22N\\nips02-evidence.pdf} +} + +@article{Katz2016b, + title = {Dissociated Functional Significance of Decision-Related Activity in the Primate Dorsal Stream}, + volume = {535}, + copyright = {Copyright Nature Publishing Group Jul 14, 2016}, + issn = {00280836}, + doi = {http://dx.doi.org.myaccess.library.utoronto.ca/10.1038/nature18617}, + abstract = {During decision making, neurons in multiple brain regions exhibit responses that are correlated with decisions. However, it remains uncertain whether or not various forms of decision-related activity are causally related to decision making. Here we address this question by recording and reversibly inactivating the lateral intraparietal (LIP) and middle temporal (MT) areas of rhesus macaques performing a motion direction discrimination task. Neurons in area LIP exhibited firing rate patterns that directly resembled the evidence accumulation process posited to govern decision making, with strong correlations between their response fluctuations and the animal's choices. Neurons in area MT, in contrast, exhibited weak correlations between their response fluctuations and choices, and had firing rate patterns consistent with their sensory role in motion encoding. The behavioural impact of pharmacological inactivation of each area was inversely related to their degree of decision-related activity: while inactivation of neurons in MT profoundly impaired psychophysical performance, inactivation in LIP had no measurable impact on decision-making performance, despite having silenced the very clusters that exhibited strong decision-related activity. Although LIP inactivation did not impair psychophysical behaviour, it did influence spatial selection and oculomotor metrics in a free-choice control task. The absence of an effect on perceptual decision making was stable over trials and sessions and was robust to changes in stimulus type and task geometry, arguing against several forms of compensation. Thus, decision-related signals in LIP do not appear to be critical for computing perceptual decisions, and may instead reflect secondary processes. Our findings highlight a dissociation between decision correlation and causation, showing that strong neuron-decision correlations do not necessarily offer direct access to the neural computations underlying decisions.}, + language = {English}, + number = {7611}, + journal = {Nature; London}, + author = {Katz, Leor N. and Yates, Jacob L. and Pillow, Jonathan W. and Huk, Alexander C.}, + month = jul, + year = {2016}, + keywords = {Neurons,Sciences: Comprehensive Works,Brain,Cognition \& reasoning,Decision making,Environmental Studies,Primates,Studies}, + pages = {285-288K}, + file = {C:\\Users\\saram\\Zotero\\storage\\KXETQTVW\\Katz et al. - 2016 - Dissociated functional significance of decision-re.pdf} +} + +@article{Levakova2017, + title = {Accuracy of Rate Coding: {{When}} Shorter Time Window and Higher Spontaneous Activity Help}, + volume = {95}, + shorttitle = {Accuracy of Rate Coding}, + doi = {10.1103/PhysRevE.95.022310}, + abstract = {It is widely accepted that neuronal firing rates contain a significant amount of information about the stimulus intensity. Nevertheless, theoretical studies on the coding accuracy inferred from the exact spike counting distributions are rare. We present an analysis based on the number of observed spikes assuming the stochastic perfect integrate-and-fire model with a change point, representing the stimulus onset, for which we calculate the corresponding Fisher information to investigate the accuracy of rate coding. We analyze the effect of changing the duration of the time window and the influence of several parameters of the model, in particular the level of the presynaptic spontaneous activity and the level of random fluctuation of the membrane potential, which can be interpreted as noise of the system. The results show that the Fisher information is nonmonotonic with respect to the length of the observation period. This counterintuitive result is caused by the discrete nature of the count of spikes. We observe also that the signal can be enhanced by noise, since the Fisher information is nonmonotonic with respect to the level of spontaneous activity and, in some cases, also with respect to the level of fluctuation of the membrane potential.}, + number = {2}, + journal = {Physical Review E}, + author = {Levakova, Marie and Tamborrino, Massimiliano and Kostal, Lubomir and Lansky, Petr}, + month = feb, + year = {2017}, + pages = {022310} +} + +@article{Lonardoni2017, + title = {Recurrently Connected and Localized Neuronal Communities Initiate Coordinated Spontaneous Activity in Neuronal Networks}, + volume = {13}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1005672}, + abstract = {Author summary Coordinated spontaneous spiking activity is fundamental for the normal formation of brain circuits during development. However, how ensembles of neurons generate these events remains unclear. To address this question, in the present study, we investigated the network properties that might be required to a neuronal system for the generation of these spontaneous waves of spikes. We performed our study on spontaneously active neuronal cell cultures using high-resolution electrical recordings and a computational network model developed to reproduce our experimental data both quantitatively and qualitatively. Through the analysis of both experimental and simulated data, we found that network bursts are initiated in regions of the network, or ``functional communities'', characterized by particular local connectivity properties. We also found that these regions can amplify the background asynchronous spiking activity preceding a network burst and, in this way, can give rise to coordinated spiking events. As a whole, our results suggest the presence of functional communities of neurons in a developing neuronal system that might naturally emerge by following simple constraints on distance-based connectivity. These regions are most likely required for the generation of the spontaneous coordinated activity that can drive activity-dependent circuit formation.}, + number = {7}, + journal = {PLOS Computational Biology}, + author = {Lonardoni, Davide and Amin, Hayder and Marco, Stefano Di and Maccione, Alessandro and Berdondini, Luca and Nieus, Thierry}, + month = jul, + year = {2017}, + keywords = {Neurons,Neural networks,Gamma-aminobutyric acid,Network analysis,Simulation and modeling,Action potentials,Graphs,Network motifs}, + pages = {e1005672}, + file = {C:\\Users\\saram\\Zotero\\storage\\8B59XS27\\Lonardoni et al. - 2017 - Recurrently connected and localized neuronal commu.pdf} +} + +@article{Kass2011, + title = {{{ASSESSMENT OF SYNCHRONY IN MULTIPLE NEURAL SPIKE TRAINS USING LOGLINEAR POINT PROCESS MODELS}}}, + volume = {5}, + issn = {1932-6157}, + abstract = {Neural spike trains, which are sequences of very brief jumps in voltage across the cell membrane, were one of the motivating applications for the development of point process methodology. Early work required the assumption of stationarity, but contemporary experiments often use time-varying stimuli and produce time-varying neural responses. More recently, many statistical methods have been developed for nonstationary neural point process data. There has also been much interest in identifying synchrony, meaning events across two or more neurons that are nearly simultaneous at the time scale of the recordings. A natural statistical approach is to discretize time, using short time bins, and to introduce loglinear models for dependency among neurons, but previous use of loglinear modeling technology has assumed stationarity. We introduce a succinct yet powerful class of time-varying loglinear models by (a) allowing individual-neuron effects (main effects) to involve time-varying intensities; (b) also allowing the individual-neuron effects to involve autocovariation effects (history effects) due to past spiking, (c) assuming excess synchrony effects (interaction effects) do not depend on history, and (d) assuming all effects vary smoothly across time. Using data from the primary visual cortex of an anesthetized monkey, we give two examples in which the rate of synchronous spiking cannot be explained by stimulusrelated changes in individual-neuron effects. In one example, the excess synchrony disappears when slow-wave "up" states are taken into account as history effects, while in the second example it does not. Standard point process theory explicitly rules out synchronous events. To justify our use of continuous-time methodology, we introduce a framework that incorporates synchronous events and provides continuous-time loglinear point process approximations to discrete-time loglinear models.}, + number = {2B}, + journal = {The Annals of Applied Statistics}, + author = {Kass, Robert E. and Kelly, Ryan C. and Loh, Wei-Liem}, + year = {2011}, + pages = {1262-1292}, + file = {C:\\Users\\saram\\Zotero\\storage\\YUYAEBNP\\23024851.pdf} +} + +@misc{zotero-1058, + title = {{{AraiPLoSCompBio}}.Pdf}, + howpublished = {http://www.stat.cmu.edu/\textasciitilde{}kass/papers/AraiPLoSCompBio.pdf}, + file = {C:\\Users\\saram\\Zotero\\storage\\W4V7MWC8\\InferOsc2015rev4.pdf;C:\\Users\\saram\\Zotero\\storage\\8PM5XGWQ\\AraiPLoSCompBio.html} +} + +@article{Bullmann2017, + title = {Network {{Analysis Of High}}-{{Density Microelectrode Recordings}}}, + copyright = {\textcopyright{} 2017, Posted by Cold Spring Harbor Laboratory. The copyright holder for this pre-print is the author. All rights reserved. The material may not be redistributed, re-used or adapted without the author's permission.}, + doi = {10.1101/139436}, + abstract = {A high-density microelectrode arrays (HDMEA) with 3,150 electrodes per square millimetre was used to capture neuronal activity across various scales, including axons, dendrites, and networks. We present a new method for high-throughput segmentation of axons based on the spatial smoothness of signal delays. Comparison with both ground truth and receiver operator characteristics shows that the new segmentation method outperforms previous methods based on the signal-amplitude-to-noise ratio. Structural and functional neuronal network connectivity were reconstructed using a common extension of ``Peter's rule'' and a inter-spike histogram method, respectively. Approximately one third of these connections are putative chemical synapses. We evaluated the spike patterns but did not find evidence for ``polychronisation'' (non-synchronous but precisely timed spike sequences). The developed framework can be used to investigate the relationship between the topology of neuronal connections and emerging temporal spike patterns observed in dissociated neuronal cultures.}, + language = {en}, + journal = {bioRxiv}, + author = {Bullmann, Torsten and Radivojevic, Milos and Huber, Stefan T. and Deligkaris, Kosmas and Hierlemann, Andreas and Frey, Urs}, + month = may, + year = {2017}, + pages = {139436}, + file = {C:\\Users\\saram\\Zotero\\storage\\GF85I2NZ\\Bullmann et al. 2017 Network Analysis Of High-Density Microelectrode Recordings.pdf} +} + +@article{Schwartz2006, + title = {Spike-Triggered Neural Characterization}, + volume = {6}, + issn = {1534-7362}, + doi = {10.1167/6.4.13}, + number = {4}, + journal = {Journal of Vision}, + author = {Schwartz, Odelia and Pillow, Jonathan W. and Rust, Nicole C. and Simoncelli, Eero P.}, + month = feb, + year = {2006}, + pages = {13-13}, + file = {C:\\Users\\saram\\Zotero\\storage\\23BIXZHX\\Schwartz et al. - 2006 - Spike-triggered neural characterization.pdf} +} + +@article{Pillow2006, + title = {Dimensionality Reduction in Neural Models: {{An}} Information-Theoretic Generalization of Spike-Triggered Average and Covariance Analysis}, + volume = {6}, + issn = {1534-7362}, + shorttitle = {Dimensionality Reduction in Neural Models}, + doi = {10.1167/6.4.9}, + number = {4}, + journal = {Journal of Vision}, + author = {Pillow, Jonathan W. and Simoncelli, Eero P.}, + month = feb, + year = {2006}, + pages = {9-9}, + file = {C:\\Users\\saram\\Zotero\\storage\\LFM2XYK8\\Pillow and Simoncelli - 2006 - Dimensionality reduction in neural models An info.pdf} +} + +@article{Rust2005, + title = {Spatiotemporal {{Elements}} of {{Macaque V1 Receptive Fields}}}, + volume = {46}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2005.05.021}, + abstract = {Neurons in primary visual cortex (V1) are commonly classified as simple or complex based upon their sensitivity to the sign of stimulus contrast. The responses of both cell types can be described by a general model in which the outputs of a set of linear filters are nonlinearly combined. We estimated the model for a population of V1 neurons by analyzing the mean and covariance of the spatiotemporal distribution of random bar stimuli that were associated with spikes. This analysis reveals an unsuspected richness of neuronal computation within V1. Specifically, simple and complex cell responses are best described using more linear filters than the one or two found in standard models. Many filters revealed by the model contribute suppressive signals that appear to have a predominantly divisive influence on neuronal firing. Suppressive signals are especially potent in direction-selective cells, where they reduce responses to stimuli moving in the nonpreferred direction.}, + number = {6}, + journal = {Neuron}, + author = {Rust, Nicole C. and Schwartz, Odelia and Movshon, J. Anthony and Simoncelli, Eero P.}, + month = jun, + year = {2005}, + pages = {945-956}, + file = {C:\\Users\\saram\\Zotero\\storage\\DYLREG49\\Rust et al. - 2005 - Spatiotemporal Elements of Macaque V1 Receptive Fi.pdf} +} + +@article{Sharpee2002, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {physics/0212110}, + title = {Analyzing Neural Responses to Natural Signals: {{Maximally}} Informative Dimensions}, + shorttitle = {Analyzing Neural Responses to Natural Signals}, + abstract = {We propose a method that allows for a rigorous statistical analysis of neural responses to natural stimuli which are non-Gaussian and exhibit strong correlations. We have in mind a model in which neurons are selective for a small number of stimulus dimensions out of a high dimensional stimulus space, but within this subspace the responses can be arbitrarily nonlinear. Existing analysis methods are based on correlation functions between stimuli and responses, but these methods are guaranteed to work only in the case of Gaussian stimulus ensembles. As an alternative to correlation functions, we maximize the mutual information between the neural responses and projections of the stimulus onto low dimensional subspaces. The procedure can be done iteratively by increasing the dimensionality of this subspace. Those dimensions that allow the recovery of all of the information between spikes and the full unprojected stimuli describe the relevant subspace. If the dimensionality of the relevant subspace indeed is small, it becomes feasible to map the neuron's input-output function even under fully natural stimulus conditions. These ideas are illustrated in simulations on model visual and auditory neurons responding to natural scenes and sounds, respectively.}, + journal = {arXiv:physics/0212110}, + author = {Sharpee, Tatyana and Rust, Nicole C. and Bialek, William}, + month = dec, + year = {2002}, + keywords = {Physics - Biological Physics,Physics - Data Analysis; Statistics and Probability,Quantitative Biology - Neurons and Cognition}, + file = {C:\\Users\\saram\\Zotero\\storage\\6Q63LTSB\\sharpee+al_03a.pdf;C:\\Users\\saram\\Zotero\\storage\\DI22FCIG\\Sharpee et al. - 2002 - Analyzing neural responses to natural signals Max.pdf;C:\\Users\\saram\\Zotero\\storage\\RB4EGFYR\\sharpee+al_04.pdf} +} + +@article{Truccolo2005, + title = {A {{Point Process Framework}} for {{Relating Neural Spiking Activity}} to {{Spiking History}}, {{Neural Ensemble}}, and {{Extrinsic Covariate Effects}}}, + volume = {93}, + copyright = {Copyright \textcopyright{} 2005 by the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00697.2004}, + abstract = {Multiple factors simultaneously affect the spiking activity of individual neurons. Determining the effects and relative importance of these factors is a challenging problem in neurophysiology. We propose a statistical framework based on the point process likelihood function to relate a neuron's spiking probability to three typical covariates: the neuron's own spiking history, concurrent ensemble activity, and extrinsic covariates such as stimuli or behavior. The framework uses parametric models of the conditional intensity function to define a neuron's spiking probability in terms of the covariates. The discrete time likelihood function for point processes is used to carry out model fitting and model analysis. We show that, by modeling the logarithm of the conditional intensity function as a linear combination of functions of the covariates, the discrete time point process likelihood function is readily analyzed in the generalized linear model (GLM) framework. We illustrate our approach for both GLM and non-GLM likelihood functions using simulated data and multivariate single-unit activity data simultaneously recorded from the motor cortex of a monkey performing a visuomotor pursuit-tracking task. The point process framework provides a flexible, computationally efficient approach for maximum likelihood estimation, goodness-of-fit assessment, residual analysis, model selection, and neural decoding. The framework thus allows for the formulation and analysis of point process models of neural spiking activity that readily capture the simultaneous effects of multiple covariates and enables the assessment of their relative importance.}, + language = {en}, + number = {2}, + journal = {Journal of Neurophysiology}, + author = {Truccolo, Wilson and Eden, Uri T. and Fellows, Matthew R. and Donoghue, John P. and Brown, Emery N.}, + month = feb, + year = {2005}, + pages = {1074-1089}, + file = {C:\\Users\\saram\\Zotero\\storage\\C9JCIH58\\Truccolo et al. - 2005 - A Point Process Framework for Relating Neural Spik.pdf}, + pmid = {15356183} +} + +@article{Williamson2015, + title = {The {{Equivalence}} of {{Information}}-{{Theoretic}} and {{Likelihood}}-{{Based Methods}} for {{Neural Dimensionality Reduction}}}, + volume = {11}, + issn = {1553-734X}, + doi = {10.1371/journal.pcbi.1004141}, + abstract = {Stimulus dimensionality-reduction methods in neuroscience seek to identify a low-dimensional space of stimulus features that affect a neuron's probability of spiking. One popular method, known as maximally informative dimensions (MID), uses an information-theoretic quantity known as ``single-spike information'' to identify this space. Here we examine MID from a model-based perspective. We show that MID is a maximum-likelihood estimator for the parameters of a linear-nonlinear-Poisson (LNP) model, and that the empirical single-spike information corresponds to the normalized log-likelihood under a Poisson model. This equivalence implies that MID does not necessarily find maximally informative stimulus dimensions when spiking is not well described as Poisson. We provide several examples to illustrate this shortcoming, and derive a lower bound on the information lost when spiking is Bernoulli in discrete time bins. To overcome this limitation, we introduce model-based dimensionality reduction methods for neurons with non-Poisson firing statistics, and show that they can be framed equivalently in likelihood-based or information-theoretic terms. Finally, we show how to overcome practical limitations on the number of stimulus dimensions that MID can estimate by constraining the form of the non-parametric nonlinearity in an LNP model. We illustrate these methods with simulations and data from primate visual cortex., A popular approach to the neural coding problem is to identify a low-dimensional linear projection of the stimulus space that preserves the aspects of the stimulus that affect a neuron's probability of spiking. Previous work has focused on both information-theoretic and likelihood-based estimators for finding such projections. Here, we show that these two approaches are in fact equivalent. We show that maximally informative dimensions (MID), a popular information-theoretic method for dimensionality reduction, is identical to the maximum-likelihood estimator for a particular linear-nonlinear encoding model with Poisson spiking. One implication of this equivalence is that MID may not find the information-theoretically optimal stimulus projection when spiking is non-Poisson, which we illustrate with a few simple examples. Using these insights, we propose novel dimensionality-reduction methods that incorporate non-Poisson spiking, and suggest new parametrizations that allow for tractable estimation of high-dimensional subspaces.}, + number = {4}, + journal = {PLoS Computational Biology}, + author = {Williamson, Ross S. and Sahani, Maneesh and Pillow, Jonathan W.}, + month = apr, + year = {2015}, + file = {C:\\Users\\saram\\Zotero\\storage\\B9K8P27Q\\Williamson et al. 2015 The Equivalence of Information-Theoretic and Likelihood-Based Methods for Neural Dimensionality Reduction.pdf}, + pmid = {25831448}, + pmcid = {PMC4382343} +} + +@article{Brenner2000, + title = {Synergy in a Neural Code}, + volume = {12}, + issn = {0899-7667}, + abstract = {We show that the information carried by compound events in neural spike trains-patterns of spikes across time or across a population of cells-can be measured, independent of assumptions about what these patterns might represent. By comparing the information carried by a compound pattern with the information carried independently by its parts, we directly measure the synergy among these parts. We illustrate the use of these methods by applying them to experiments on the motion-sensitive neuron H1 of the fly's visual system, where we confirm that two spikes close together in time carry far more than twice the information carried by a single spike. We analyze the sources of this synergy and provide evidence that pairs of spikes close together in time may be especially important patterns in the code of H1.}, + language = {eng}, + number = {7}, + journal = {Neural Computation}, + author = {Brenner, N. and Strong, S. P. and Koberle, R. and Bialek, W. and {de Ruyter van Steveninck}, R. R.}, + month = jul, + year = {2000}, + keywords = {Animals,Models; Neurological,Action potentials,Diptera,Neurons; Afferent,Pattern Recognition; Visual,Visual Pathways}, + pages = {1531-1552}, + file = {C:\\Users\\saram\\Zotero\\storage\\F5SVC682\\brenner+al_00b.pdf}, + pmid = {10935917} +} + +@misc{zotero-1085, + title = {Entropy and {{Information}} in {{Neural Spike Trains}} -- {{PhysRevLett}}.80.197.Pdf}, + howpublished = {http://www.cnd.mcgill.ca/\textasciitilde{}ivan/neuro\%20information\%20theory/Entropy\%20and\%20Information\%20in\%20Neural\%20Spike\%20Trains\%20--\%20PhysRevLett.80.197.pdf}, + file = {C:\\Users\\saram\\Zotero\\storage\\X2WA6MUQ\\Entropy and Information in Neural Spike Trains -- PhysRevLett.80.197.html} +} + +@article{Strong1996, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {cond-mat/9603127}, + title = {Entropy and {{Information}} in {{Neural Spike Trains}}}, + abstract = {The nervous system represents time-dependent signals in sequences of discrete action potentials or spikes, all spikes are identical so that information is carried only in the spike arrival times. We show how to quantify this information, in bits, free from any assumptions about which features of the spike train or input waveform are most important. We apply this approach to the analysis of experiments on a motion-sensitive neuron in the fly visual system.}, + journal = {arXiv:cond-mat/9603127}, + author = {Strong, S. P. and Koberle, Roland and {van Steveninck}, Rob R. de Ruyter and Bialek, William}, + month = mar, + year = {1996}, + keywords = {Quantitative Biology - Neurons and Cognition,Condensed Matter}, + file = {C:\\Users\\saram\\Zotero\\storage\\W79WDIGX\\Strong et al. 1996 Entropy and Information in Neural Spike Trains.pdf} +} + +@misc{zotero-1091, + title = {{{PSB}} - {{Abstract}}}, + howpublished = {http://psb.stanford.edu/psb-online/proceedings/psb98/abstracts/p621.html}, + file = {C:\\Users\\saram\\Zotero\\storage\\TUUQW3V2\\p621.html} +} + +@article{Strong1998, + title = {On the Application of Information Theory to Neural Spike Trains}, + issn = {2335-6936}, + abstract = {The nervous system represents time-dependent signals in sequences of discrete action potentials or spikes are identical so that information is carried only in the spike arrival times. We show how to quantify this information, in bits, free from any assumptions about which features of the spike train or input waveform are most important. We apply this approach to the analysis of experiments on a variety of systems, including some where we confront severe sampling problems, and discuss some to the results obtained and hopes for future extensions.}, + language = {eng}, + journal = {Pacific Symposium on Biocomputing. Pacific Symposium on Biocomputing}, + author = {Strong, S. P. and {de Ruyter van Steveninck}, R. R. and Bialek, W. and Koberle, R.}, + year = {1998}, + keywords = {Neurons,Animals,Brain,Humans,Models; Neurological,information theory,Visual Perception,Entropy,Diptera,Optic Nerve,Probability,Visual Fields}, + pages = {621-632}, + file = {C:\\Users\\saram\\Zotero\\storage\\H7FXJAPH\\strong+al_98c.pdf}, + pmid = {9697217} +} + +@article{Karimipanah2017, + title = {Criticality Predicts Maximum Irregularity in Recurrent Networks of Excitatory Nodes}, + volume = {12}, + issn = {1932-6203}, + doi = {10.1371/journal.pone.0182501}, + abstract = {A rigorous understanding of brain dynamics and function requires a conceptual bridge between multiple levels of organization, including neural spiking and network-level population activity. Mounting evidence suggests that neural networks of cerebral cortex operate at a critical regime, which is defined as a transition point between two phases of short lasting and chaotic activity. However, despite the fact that criticality brings about certain functional advantages for information processing, its supporting evidence is still far from conclusive, as it has been mostly based on power law scaling of size and durations of cascades of activity. Moreover, to what degree such hypothesis could explain some fundamental features of neural activity is still largely unknown. One of the most prevalent features of cortical activity in vivo is known to be spike irregularity of spike trains, which is measured in terms of the coefficient of variation (CV) larger than one. Here, using a minimal computational model of excitatory nodes, we show that irregular spiking (CV $>$ 1) naturally emerges in a recurrent network operating at criticality. More importantly, we show that even at the presence of other sources of spike irregularity, being at criticality maximizes the mean coefficient of variation of neurons, thereby maximizing their spike irregularity. Furthermore, we also show that such a maximized irregularity results in maximum correlation between neuronal firing rates and their corresponding spike irregularity (measured in terms of CV). On the one hand, using a model in the universality class of directed percolation, we propose new hallmarks of criticality at single-unit level, which could be applicable to any network of excitable nodes. On the other hand, given the controversy of the neural criticality hypothesis, we discuss the limitation of this approach to neural systems and to what degree they support the criticality hypothesis in real neural networks. Finally, we discuss the limitations of applying our results to real networks and to what degree they support the criticality hypothesis.}, + number = {8}, + journal = {PLOS ONE}, + author = {Karimipanah, Yahya and Ma, Zhengyu and Wessel, Ralf}, + month = aug, + year = {2017}, + keywords = {Neurons,Neural networks,Network analysis,Single neuron function,Action potentials,Cerebral cortex,Eigenvalues,Neuronal tuning,Valiante suggested}, + pages = {e0182501}, + file = {C:\\Users\\saram\\Zotero\\storage\\WAMANXVR\\Karimipanah et al. - 2017 - Criticality predicts maximum irregularity in recur.pdf} +} + +@article{Islam2014a, + title = {Artifact Characterization and Removal for in Vivo Neural Recording}, + volume = {226}, + issn = {1872-678X}, + doi = {10.1016/j.jneumeth.2014.01.027}, + abstract = {BACKGROUND: In vivo neural recordings are often corrupted by different artifacts, especially in a less-constrained recording environment. Due to limited understanding of the artifacts appeared in the in vivo neural data, it is more challenging to identify artifacts from neural signal components compared with other applications. The objective of this work is to analyze artifact characteristics and to develop an algorithm for automatic artifact detection and removal without distorting the signals of interest. +NEW METHOD: The proposed algorithm for artifact detection and removal is based on the stationary wavelet transform with selected frequency bands of neural signals. The selection of frequency bands is based on the spectrum characteristics of in vivo neural data. Further, to make the proposed algorithm robust under different recording conditions, a modified universal-threshold value is proposed. +RESULTS: Extensive simulations have been performed to evaluate the performance of the proposed algorithm in terms of both amount of artifact removal and amount of distortion to neural signals. The quantitative results reveal that the algorithm is quite robust for different artifact types and artifact-to-signal ratio. +COMPARISON WITH EXISTING METHODS: Both real and synthesized data have been used for testing the proposed algorithm in comparison with other artifact removal algorithms (e.g., ICA, wICA, wCCA, EMD-ICA, and EMD-CCA) found in the literature. Comparative testing results suggest that the proposed algorithm performs better than the available algorithms. +CONCLUSION: Our work is expected to be useful for future research on in vivo neural signal processing and eventually to develop a real-time neural interface for advanced neuroscience and behavioral experiments.}, + language = {eng}, + journal = {Journal of Neuroscience Methods}, + author = {Islam, Md Kafiul and Rastegarnia, Amir and Nguyen, Anh Tuan and Yang, Zhi}, + month = apr, + year = {2014}, + keywords = {Neurons,Animals,Time Factors,Electrophysiology,Rats,Artifacts,Algorithms,Signal Processing; Computer-Assisted,Models; Neurological,Computer Simulation,Action potentials,ROC Curve,Wavelet Analysis,Artifact characterization,In vivo neural recording,Neural signal spectra,Wavelet transform,hippocampus}, + pages = {110-123}, + pmid = {24512692} +} + +@article{Islam2014, + title = {Artifact Characterization and Removal for in Vivo Neural Recording}, + volume = {226}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2014.01.027}, + abstract = {In vivo neural recordings are often corrupted by different artifacts, especially in a less-constrained recording environment. Due to limited understanding of the artifacts appeared in the in vivo neural data, it is more challenging to identify artifacts from neural signal components compared with other applications. The objective of this work is to analyze artifact characteristics and to develop an algorithm for automatic artifact detection and removal without distorting the signals of interest. The proposed algorithm for artifact detection and removal is based on the stationary wavelet transform with selected frequency bands of neural signals. The selection of frequency bands is based on the spectrum characteristics of in vivo neural data. Further, to make the proposed algorithm robust under different recording conditions, a modified universal-threshold value is proposed. Extensive simulations have been performed to evaluate the performance of the proposed algorithm in terms of both amount of artifact removal and amount of distortion to neural signals. The quantitative results reveal that the algorithm is quite robust for different artifact types and artifact-to-signal ratio. Both real and synthesized data have been used for testing the proposed algorithm in comparison with other artifact removal algorithms (e.g. ICA, wICA, wCCA, EMD-ICA, and EMD-CCA) found in the literature. Comparative testing results suggest that the proposed algorithm performs better than the available algorithms. Our work is expected to be useful for future research on in vivo neural signal processing and eventually to develop a real-time neural interface for advanced neuroscience and behavioral experiments.}, + journal = {Journal of Neuroscience Methods}, + author = {Islam, Md Kafiul and Rastegarnia, Amir and Nguyen, Anh Tuan and Yang, Zhi}, + month = apr, + year = {2014}, + keywords = {Artifact characterization,Neural signal spectra,Wavelet transform,neural recording}, + pages = {110-123}, + file = {C:\\Users\\saram\\Zotero\\storage\\9VB6DJN8\\Islam et al. 2014 Artifact characterization and removal for in vivo neural recording.pdf} +} + +@article{Newman2013, + title = {Cholinergic {{Blockade Reduces Theta}}-{{Gamma Phase Amplitude Coupling}} and {{Speed Modulation}} of {{Theta Frequency Consistent}} with {{Behavioral Effects}} on {{Encoding}}}, + volume = {33}, + issn = {0270-6474}, + doi = {10.1523/JNEUROSCI.2586-13.2013}, + abstract = {Large-scale neural activation dynamics in the hippocampal-entorhinal circuit local field potential, observable as theta and gamma rhythms and coupling between these rhythms, is predictive of encoding success. Behavioral studies show that systemic administration of muscarinic acetylcholine receptor antagonists selectively impairs encoding, suggesting that they may also disrupt the coupling between the theta and gamma bands. Here, we tested the hypothesis that muscarinic antagonists selectively disrupt coupling between theta and gamma. Specifically, we characterized the effects of systemically administered scopolamine on movement-induced theta and gamma rhythms recorded in the superficial layers of the medial entorhinal cortex (MEC) of freely moving rats. We report the novel result that gamma power at the peak of theta was most reduced following muscarinic blockade, significantly shifting the phase of maximal gamma power to occur at later phases of theta. We also characterize the existence of multiple distinct gamma bands in the superficial layers of the MEC. Further, we observed that theta frequency was significantly less modulated by movement speed following muscarinic blockade. Finally, the slope relating speed to theta frequency, a correlate of familiarity with a testing enclosure, increased significantly less between the preinjection and recovery trials when scopolamine was administered during the intervening injection session than when saline was administered, suggesting that scopolamine reduced encoding of the testing enclosure. These data are consistent with computational models suggesting that encoding and retrieval occur during the peak and trough of theta, respectively, and support the theory that acetylcholine regulates the balance between encoding versus retrieval.}, + number = {50}, + journal = {The Journal of Neuroscience}, + author = {Newman, Ehren L. and Gillet, Shea N. and Climer, Jason R. and Hasselmo, Michael E.}, + month = dec, + year = {2013}, + keywords = {Suhan sent}, + pages = {19635-19646}, + file = {C:\\Users\\saram\\Zotero\\storage\\SSI3W9KS\\ScopolamineThetaGamma.pdf}, + pmid = {24336727}, + pmcid = {PMC3858632} +} + +@article{Zhang2016, + title = {Impaired Theta-Gamma Coupling in {{APP}}-Deficient Mice}, + volume = {6}, + issn = {2045-2322}, + doi = {10.1038/srep21948}, + abstract = {Amyloid precursor protein (APP) is critically involved in the pathophysiology of Alzheimer's disease, but its physiological functions remain elusive. Importantly, APP knockout (APP-KO) mice exhibit cognitive deficits, suggesting that APP plays a role at the neuronal network level. To investigate this possibility, we recorded local field potentials (LFPs) from the posterior parietal cortex, dorsal hippocampus and lateral prefrontal cortex of freely moving APP-KO mice. Spectral analyses showed that network oscillations within the theta- and gamma-frequency bands were not different between APP-KO and wild-type mice. Surprisingly, however, while gamma amplitude coupled to theta phase in all recorded regions of wild-type animals, in APP-KO mice theta-gamma coupling was strongly diminished in recordings from the parietal cortex and hippocampus, but not in LFPs recorded from the prefrontal cortex. Thus, lack of APP reduces oscillatory coupling in LFP recordings from specific brain regions, despite not affecting the amplitude of the oscillations. Together, our findings reveal reduced cross-frequency coupling as a functional marker of APP deficiency at the network level.}, + language = {eng}, + journal = {Scientific Reports}, + author = {Zhang, Xiaomin and Zhong, Wewei and Branka{\v c}k, Jurij and Weyer, Sascha W. and M{\"u}ller, Ulrike C. and Tort, Adriano B. L. and Draguhn, Andreas}, + month = feb, + year = {2016}, + keywords = {Animals,Nerve Net,Prefrontal Cortex,Amyloid beta-Protein Precursor,Cognitive Dysfunction,Gamma Rhythm,Mice,Mice; Inbred C57BL,Mice; Knockout,Parietal Lobe,Stereotaxic Techniques,Theta Rhythm,hippocampus}, + pages = {21948}, + file = {C:\\Users\\saram\\Zotero\\storage\\8HU9WK2T\\srep21948-s1.pdf;C:\\Users\\saram\\Zotero\\storage\\Z9UWTMW9\\ThetaGamma_ScReports_2016.pdf}, + pmid = {26905287}, + pmcid = {PMC4764939} +} + +@article{Shirvalkar2010a, + title = {Bidirectional Changes to Hippocampal Theta-Gamma Comodulation Predict Memory for Recent Spatial Episodes}, + volume = {107}, + issn = {1091-6490}, + doi = {10.1073/pnas.0911184107}, + abstract = {Episodic memory requires the hippocampus, which is thought to bind cortical inputs into conjunctive codes. Local field potentials (LFPs) reflect dendritic and synaptic oscillations whose temporal structure may coordinate cellular mechanisms of plasticity and memory. We now report that single-trial spatial memory performance in rats was predicted by the power comodulation of theta (4-10 Hz) and low gamma (30-50 Hz) rhythms in the hippocampus. Theta-gamma comodulation (TGC) was prominent during successful memory retrieval but was weak when memory failed or was unavailable during spatial exploration in sample trials. Muscimol infusion into medial septum reduced the probability of TGC and successful memory retrieval. In contrast, patterned electrical stimulation of the fimbria-fornix increased TGC in amnestic animals and partially rescued memory performance in the water maze. The results suggest that TGC accompanies memory retrieval in the hippocampus and that patterned brain stimulation may inform therapeutic strategies for cognitive disorders.}, + language = {eng}, + number = {15}, + journal = {Proceedings of the National Academy of Sciences of the United States of America}, + author = {Shirvalkar, Prasad R. and Rapp, Peter R. and Shapiro, Matthew L.}, + month = apr, + year = {2010}, + keywords = {Animals,Electrodes,Electrophysiology,Rats,Brain,Male,Memory,Cognition Disorders,Behavior; Animal,Fornix; Brain,Maze Learning,Muscimol,Rats; Long-Evans,Septum of Brain,Suhan sent,hippocampus}, + pages = {7054-7059}, + file = {C:\\Users\\saram\\Zotero\\storage\\UIURQ346\\OK-2010_Shirvalkar Supp Infor.pdf;C:\\Users\\saram\\Zotero\\storage\\WEEQ2BDC\\OK-2010_Shirvalkar.pdf}, + pmid = {20351262}, + pmcid = {PMC2872428} +} + +@article{Mokri2017, + title = {Sorting {{Overlapping Spike Waveforms}} from {{Electrode}} and {{Tetrode Recordings}}}, + volume = {11}, + issn = {1662-5196}, + doi = {10.3389/fninf.2017.00053}, + abstract = {One of the outstanding problems in the sorting of neuronal spike trains is the resolution of overlapping spikes. Resolving these spikes can significantly improve a range of analyses, such as response variability, correlation, and latency. In this paper, we describe a partially automated method that is capable of resolving overlapping spikes. After constructing template waveforms for well-isolated and distinct single units, we generated pair-wise combinations of those templates at all possible time shifts from each other. Subsequently, overlapping waveforms were identified by cluster analysis, and then assigned to their respective single-unit combinations. We examined the performance of this method using simulated data from an earlier study, and found that we were able to resolve an average of 83\% of the overlapping waveforms across various signal-to-noise ratios, an improvement of approximately 32\% over the results reported in the earlier study. When applied to additional simulated data sets generated from single-electrode and tetrode recordings, we were able to resolve 91\% of the overlapping waveforms with a false positive rate of 0.19\% for single-electrode data, and 95\% of the overlapping waveforms with a false positive rate of 0.27\% for tetrode data. We also applied our method to electrode and tetrode data recorded from the primary visual cortex, and the results obtained for these datasets suggest that our method provides an efficient means of sorting overlapping waveforms. This method can easily be added as an extra step to commonly used spike sorting methods, such as KlustaKwik and MClust software packages, and can be applied to datasets that have already been sorted using these methods.}, + language = {English}, + journal = {Frontiers in Neuroinformatics}, + author = {Mokri, Yasamin and Salazar, Rodrigo F. and Goodell, Baldwin and Baker, Jonathan and Gray, Charles M. and Yen, Shih-Cheng}, + year = {2017}, + keywords = {Electrophysiology,Spike sorting,tetrode,visual cortex,Overlapping Waveforms}, + file = {C:\\Users\\saram\\Zotero\\storage\\FDPVNR8N\\fninf-11-00053.pdf} +} + +@article{Henze2009, + title = {Simultaneous Intracellular and Extracellular Recordings from Hippocampus Region {{CA1}} of Anesthetized Rats}, + doi = {http://dx.doi.org/10.6080/K02Z13FP}, + author = {Henze, Darrell A. and Harris, Kenneth D and Borhegyi, Zsolt and Csicsvari, Jozsef and Mamiya, Akira and Hirase, Hajime and Sirota, A. and Buzsaki, G.}, + year = {2009}, + file = {C:\\Users\\saram\\Zotero\\storage\\JQWS8ZA3\\hc-1.html} +} + +@article{Ardid2015, + title = {Mapping of {{Functionally Characterized Cell Classes}} onto {{Canonical Circuit Operations}} in {{Primate Prefrontal Cortex}}}, + volume = {35}, + copyright = {Copyright \textcopyright{} 2015 the authors 0270-6474/15/352975-17\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.2700-14.2015}, + abstract = {Microcircuits are composed of multiple cell classes that likely serve unique circuit operations. But how cell classes map onto circuit functions is largely unknown, particularly for primate prefrontal cortex during actual goal-directed behavior. One difficulty in this quest is to reliably distinguish cell classes in extracellular recordings of action potentials. Here we surmount this issue and report that spike shape and neural firing variability provide reliable markers to segregate seven functional classes of prefrontal cells in macaques engaged in an attention task. We delineate an unbiased clustering protocol that identifies four broad spiking (BS) putative pyramidal cell classes and three narrow spiking (NS) putative inhibitory cell classes dissociated by how sparse, bursty, or regular they fire. We speculate that these functional classes map onto canonical circuit functions. First, two BS classes show sparse, bursty firing, and phase synchronize their spiking to 3\textendash{}7 Hz (theta) and 12\textendash{}20 Hz (beta) frequency bands of the local field potential (LFP). These properties make cells flexibly responsive to network activation at varying frequencies. Second, one NS and two BS cell classes show regular firing and higher rate with only marginal synchronization preference. These properties are akin to setting tonically the excitation and inhibition balance. Finally, two NS classes fired irregularly and synchronized to either theta or beta LFP fluctuations, tuning them potentially to frequency-specific subnetworks. These results suggest that a limited set of functional cell classes emerges in macaque prefrontal cortex (PFC) during attentional engagement to not only represent information, but to subserve basic circuit operations.}, + language = {en}, + number = {7}, + journal = {Journal of Neuroscience}, + author = {Ardid, Salva and Vinck, Martin and Kaping, Daniel and Marquez, Susanna and Everling, Stefan and Womelsdorf, Thilo}, + month = feb, + year = {2015}, + keywords = {clustering,synchronization,anterior cingulate cortex,cell types,nonhuman primates,variability}, + pages = {2975-2991}, + file = {C:\\Users\\saram\\Zotero\\storage\\3WJ8P8UC\\Ardid et al. 2015 Mapping of Functionally Characterized Cell Classes onto Canonical Circuit Operations in Primate Prefrontal Cortex.pdf}, + pmid = {25698735} +} + +@article{Quiroga2004, + title = {Unsupervised {{Spike Detection}} and {{Sorting}} with {{Wavelets}} and {{Superparamagnetic Clustering}}}, + volume = {16}, + issn = {0899-7667}, + doi = {10.1162/089976604774201631}, + number = {8}, + journal = {Neural Computation}, + author = {Quiroga, R. Quian and Nadasdy, Z. and Ben-Shaul, Y.}, + month = aug, + year = {2004}, + pages = {1661-1687}, + file = {C:\\Users\\saram\\Zotero\\storage\\6MMQB5CE\\Quiroga, 2004, unsupervised Spike_sorting.pdf;C:\\Users\\saram\\Zotero\\storage\\C7AX56N6\\Spike_Sorting_Tutorial.ppt;C:\\Users\\saram\\Zotero\\storage\\GBZ2JAIA\\wave_clus_intro.pdf;C:\\Users\\saram\\Zotero\\storage\\N63IEX2K\\Spike Sorting Talk.ppt} +} + +@article{Hill2011, + title = {Quality Metrics to Accompany Spike Sorting of Extracellular Signals}, + volume = {31}, + issn = {0270-6474}, + doi = {10.1523/JNEUROSCI.0971-11.2011}, + number = {24}, + journal = {The Journal of neuroscience : the official journal of the Society for Neuroscience}, + author = {Hill, Daniel N. and Mehta, Samar B. and Kleinfeld, David}, + month = jun, + year = {2011}, + pages = {8699-8705}, + file = {C:\\Users\\saram\\Zotero\\storage\\32MQSI22\\Hill 2011-Quality Metrics to Accompany Spike Sorting of Extracellular Signals.pdf;C:\\Users\\saram\\Zotero\\storage\\AP9RV9UJ\\Hill et al. 2011 Quality metrics to accompany spike sorting of extracellular signals.pdf}, + pmid = {21677152}, + pmcid = {PMC3123734} +} + +@article{Suzuki2017, + title = {Dendritic Calcium Spikes Are Clearly Detectable at the Cortical Surface}, + volume = {8}, + copyright = {2017 The Author(s)}, + issn = {2041-1723}, + doi = {10.1038/s41467-017-00282-4}, + abstract = {Cortical surface recording techniques such as EEG and ECoG are widely used for measuring brain activity. The prevailing assumption is that surface potentials primarily reflect synaptic activity, although non-synaptic events may also contribute. Here we show that dendritic calcium spikes occurring in pyramidal neurons (that we showed previously are cognitively relevant) are clearly detectable in cortical surface potentials. To show this we developed an optogenetic, non-synaptic approach to evoke dendritic calcium spikes in vivo. We found that optogenetically evoked calcium spikes were easily detectable and had an unexpected waveform near the cortical surface. Sensory-evoked dendritic calcium spikes were also clearly detectable with amplitudes that matched the contribution of synaptic input. These results reveal how dendritic calcium spikes appear at the cortical surface and their significant impact on surface potentials, suggesting that long-standing surface recording data may contain information about dendritic activity that is relevant to behavior and cognitive function. Surface EEG recordings are thought to primarily detect synaptic activity. Here the authors devise an optogenetic method to evoke dendritic calcium spikes in layer 5 pyramidal cells of the rat somatosensory cortex, and report that optogenetically evoked, as well as sensory-evoked dendritic calcium spikes make a significant contribution to surface EEG recordings.}, + language = {En}, + number = {1}, + journal = {Nature Communications}, + author = {Suzuki, Mototaka and Larkum, Matthew E.}, + month = aug, + year = {2017}, + pages = {276}, + file = {C:\\Users\\saram\\Zotero\\storage\\YCD6AM79\\Suzuki and Larkum - 2017 - Dendritic calcium spikes are clearly detectable at.pdf} +} + +@article{Pillow2017, + title = {Is Population Activity More than the Sum of Its Parts?}, + volume = {20}, + copyright = {\textcopyright{} 2017 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1097-6256}, + doi = {10.1038/nn.4627}, + abstract = {A study introduces innovative ways to test whether neural population activity exhibits structure above and beyond that of its basic components.}, + language = {en}, + number = {9}, + journal = {Nature Neuroscience}, + author = {Pillow, Jonathan W. and Aoi, Mikio C.}, + month = sep, + year = {2017}, + keywords = {Network models,Dynamical systems}, + pages = {1196-1198}, + file = {C:\\Users\\saram\\Zotero\\storage\\VM93CLKY\\Pillow and Aoi - 2017 - Is population activity more than the sum of its pa.pdf} +} + +@article{Brown2004, + title = {Multiple Neural Spike Train Data Analysis: State-of-the-Art and Future Challenges}, + volume = {7}, + copyright = {\textcopyright{} 2004 Nature Publishing Group}, + issn = {1097-6256}, + shorttitle = {Multiple Neural Spike Train Data Analysis}, + doi = {10.1038/nn1228}, + abstract = {Multiple electrodes are now a standard tool in neuroscience research that make it possible to study the simultaneous activity of several neurons in a given brain region or across different regions. The data from multi-electrode studies present important analysis challenges that must be resolved for optimal use of these neurophysiological measurements to answer questions about how the brain works. Here we review statistical methods for the analysis of multiple neural spike-train data and discuss future challenges for methodology research.}, + language = {en}, + number = {5}, + journal = {Nature Neuroscience}, + author = {Brown, Emery N. and Kass, Robert E. and Mitra, Partha P.}, + month = may, + year = {2004}, + pages = {456-461}, + file = {C:\\Users\\saram\\Zotero\\storage\\M8YCBQY5\\Brown et al. - 2004 - Multiple neural spike train data analysis state-o.pdf} +} + +@article{Jackel2017, + title = {Combination of {{High}}-Density {{Microelectrode Array}} and {{Patch Clamp Recordings}} to {{Enable Studies}} of {{Multisynaptic Integration}}}, + volume = {7}, + copyright = {2017 The Author(s)}, + issn = {2045-2322}, + doi = {10.1038/s41598-017-00981-4}, + abstract = {We present a novel, all-electric approach to record and to precisely control the activity of tens of individual presynaptic neurons. The method allows for parallel mapping of the efficacy of multiple synapses and of the resulting dynamics of postsynaptic neurons in a cortical culture. For the measurements, we combine an extracellular high-density microelectrode array, featuring 11'000 electrodes for extracellular recording and stimulation, with intracellular patch-clamp recording. We are able to identify the contributions of individual presynaptic neurons - including inhibitory and excitatory synaptic inputs - to postsynaptic potentials, which enables us to study dendritic integration. Since the electrical stimuli can be controlled at microsecond resolution, our method enables to evoke action potentials at tens of presynaptic cells in precisely orchestrated sequences of high reliability and minimum jitter. We demonstrate the potential of this method by evoking short- and long-term synaptic plasticity through manipulation of multiple synaptic inputs to a specific neuron.}, + language = {En}, + number = {1}, + journal = {Scientific Reports}, + author = {J{\"a}ckel, David and Bakkum, Douglas J. and Russell, Thomas L. and M{\"u}ller, Jan and Radivojevic, Milos and Frey, Urs and Franke, Felix and Hierlemann, Andreas}, + month = apr, + year = {2017}, + pages = {978}, + file = {C:\\Users\\saram\\Zotero\\storage\\EBB3C6B6\\Jäckel et al. - 2017 - Combination of High-density Microelectrode Array a.pdf} +} + +@article{Shein-Idelson2017, + title = {Large-Scale Mapping of Cortical Synaptic Projections with Extracellular Electrode Arrays}, + volume = {14}, + copyright = {\textcopyright{} 2017 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1548-7091}, + doi = {10.1038/nmeth.4393}, + abstract = {Understanding circuit computation in the nervous system requires sampling activity over large neural populations and maximizing the number of features that can be extracted. By combining planar arrays of extracellular electrodes with the three-layered cortex of turtles, we show that synaptic signals induced along individual axons as well as action potentials can be easily captured. Two types of information can be extracted from these signals, the neuronal subtype (inhibitory or excitatory)\textemdash{}whose identification is more reliable than with traditional measures such as action potential width\textemdash{}and a (partial) spatial map of functional axonal projections from individual neurons. Because our approach is algorithmic, it can be carried out in parallel on hundreds of simultaneously recorded neurons. Combining our approach with soma triangulation, we reveal an axonal projection bias among a population of pyramidal neurons in turtle cortex and confirm this bias through anatomical reconstructions.}, + language = {en}, + number = {9}, + journal = {Nature Methods}, + author = {Shein-Idelson, Mark and Pammer, Lorenz and Hemberger, Mike and Laurent, Gilles}, + month = sep, + year = {2017}, + keywords = {Extracellular recording,Cellular neuroscience}, + pages = {882-890}, + file = {C:\\Users\\saram\\Zotero\\storage\\H2CXPQFC\\Shein-Idelson et al. - 2017 - Large-scale mapping of cortical synaptic projectio.pdf} +} + +@article{Buzsaki2004, + title = {Large-Scale Recording of Neuronal Ensembles}, + volume = {7}, + copyright = {\textcopyright{} 2004 Nature Publishing Group}, + issn = {1097-6256}, + doi = {10.1038/nn1233}, + abstract = {How does the brain orchestrate perceptions, thoughts and actions from the spiking activity of its neurons? Early single-neuron recording research treated spike pattern variability as noise that needed to be averaged out to reveal the brain's representation of invariant input. Another view is that variability of spikes is centrally coordinated and that this brain-generated ensemble pattern in cortical structures is itself a potential source of cognition. Large-scale recordings from neuronal ensembles now offer the opportunity to test these competing theoretical frameworks. Currently, wire and micro-machined silicon electrode arrays can record from large numbers of neurons and monitor local neural circuits at work. Achieving the full potential of massively parallel neuronal recordings, however, will require further development of the neuron\textendash{}electrode interface, automated and efficient spike-sorting algorithms for effective isolation and identification of single neurons, and new mathematical insights for the analysis of network properties.}, + language = {en}, + number = {5}, + journal = {Nature Neuroscience}, + author = {Buzs{\'a}ki, Gy{\"o}rgy}, + month = may, + year = {2004}, + pages = {446-451}, + file = {C:\\Users\\saram\\Zotero\\storage\\I46DS77E\\Buzsaki, 2004, large-scale recording of neuronal ensembles.pdf;C:\\Users\\saram\\Zotero\\storage\\ZGQRKUR8\\Buzsáki 2004 Large-scale recording of neuronal ensembles.pdf} +} + +@article{Buzsaki2012, + title = {The Origin of Extracellular Fields and Currents \textemdash{} {{EEG}}, {{ECoG}}, {{LFP}} and Spikes}, + volume = {13}, + copyright = {\textcopyright{} 2012 Nature Publishing Group}, + issn = {1471-003X}, + doi = {10.1038/nrn3241}, + abstract = {Neuronal activity in the brain gives rise to transmembrane currents that can be measured in the extracellular medium. Although the major contributor of the extracellular signal is the synaptic transmembrane current, other sources \textemdash{} including Na+ and Ca2+ spikes, ionic fluxes through voltage- and ligand-gated channels, and intrinsic membrane oscillations \textemdash{} can substantially shape the extracellular field. High-density recordings of field activity in animals and subdural grid recordings in humans, combined with recently developed data processing tools and computational modelling, can provide insight into the cooperative behaviour of neurons, their average synaptic input and their spiking output, and can increase our understanding of how these processes contribute to the extracellular signal.}, + language = {en}, + number = {6}, + journal = {Nature Reviews Neuroscience}, + author = {Buzs{\'a}ki, Gy{\"o}rgy and Anastassiou, Costas A. and Koch, Christof}, + month = jun, + year = {2012}, + pages = {407-420}, + file = {C:\\Users\\saram\\Zotero\\storage\\7D6R2VUT\\Buzsáki et al. 2012 The origin of extracellular fields and currents — EEG, ECoG, LFP and spikes.pdf;C:\\Users\\saram\\Zotero\\storage\\KMPKDNHT\\Buzsaki, 2012, the origin of extracellular fields and currents.pdf} +} + +@article{Dimitriadis2016, + title = {T-{{SNE}} Visualization of Large-Scale Neural Recordings.}, + copyright = {\textcopyright{} 2016, Posted by Cold Spring Harbor Laboratory Press. This pre-print is available under a Creative Commons License (Attribution 4.0 International), CC BY 4.0, as described at http://creativecommons.org/licenses/by/4.0/}, + doi = {10.1101/087395}, + abstract = {Electrophysiology is entering the era of 'Big Data'. Multiple probes, each with hundreds to thousands of individual electrodes, are now capable of simultaneously recording from many brain regions. The major challenge confronting these new technologies is transforming the raw data into physiologically meaningful signals, i.e. single unit spikes. Sorting the spike events of individual neurons from a spatiotemporally dense sampling of the extracellular electric field is a problem that has attracted much attention (Rey 2015, Rossant 2016), but is still far from solved. Current methods still rely on human input and thus become unfeasible as the size of the data sets grow exponentially. Here we introduce the t-student stochastic neighbor embedding (t-sne) dimensionality reduction method (Van der Maaten 2008) as a visualization tool in the spike sorting process. T-sne embeds the n-dimensional extracellular spikes (n = number of features by which each spike is decomposed) into a low (usually two) dimensional space. We show that such embeddings, even starting from different feature spaces, form obvious clusters of spikes that can be easily visualized and manually delineated with a high degree of precision. We propose that these clusters represent single units and test this assertion by applying our algorithm on labeled data sets both from hybrid (Rossant 2016) and paired juxtacellular/extracellular recordings (Neto 2016). We have released a graphical user interface (gui) written in python as a tool for the manual clustering of the t-sne embedded spikes and as a tool for an informed overview and fast manual curation of results from other clustering algorithms. Furthermore, the generated visualizations offer evidence in favor of the use of probes with higher density and smaller electrodes. They also graphically demonstrate the diverse nature of the sorting problem when spikes are recorded with different methods and arise from regions with different background spiking statistics.}, + language = {en}, + journal = {bioRxiv}, + author = {Dimitriadis, George and Neto, Joana and Kampff, Adam}, + month = nov, + year = {2016}, + pages = {087395}, + file = {C:\\Users\\saram\\Zotero\\storage\\8V33CTCE\\087395-3.mpg;C:\\Users\\saram\\Zotero\\storage\\GRTB583H\\087395-2.mpg;C:\\Users\\saram\\Zotero\\storage\\PSJCXB2R\\Dimitriadis et al. 2016 T-SNE visualization of large-scale neural recordings..pdf;C:\\Users\\saram\\Zotero\\storage\\Z8RJCWG2\\087395-1.pdf} +} + +@article{Vargas-Irwin2015a, + title = {Spike {{Train SIMilarity Space}} ({{SSIMS}}): A Frame-Work for Single Neuron and Ensemble Data Analysis}, + volume = {27}, + issn = {0899-7667}, + shorttitle = {Spike {{Train SIMilarity Space}} ({{SSIMS}})}, + doi = {10.1162/NECO_a_00684}, + abstract = {Increased emphasis on circuit level activity in the brain makes it necessary to have methods to visualize and evaluate large scale ensemble activity, beyond that revealed by raster-histograms or pairwise correlations. We present a method to evaluate the relative similarity of neural spiking patterns by combining spike train distance metrics with dimensionality reduction. Spike train distance metrics provide an estimate of similarity between activity patterns at multiple temporal resolutions. Vectors of pair-wise distances are used to represent the intrinsic relationships between multiple activity patterns at the level of single units or neuronal ensembles. Dimensionality reduction is then used to project the data into concise representations suitable for clustering analysis as well as exploratory visualization. Algorithm performance and robustness are evaluated using multielectrode ensemble activity data recorded in behaving primates. We demonstrate how Spike train SIMilarity Space (SSIMS) analysis captures the relationship between goal directions for an 8-directional reaching task and successfully segregates grasp types in a 3D grasping task in the absence of kinematic information. The algorithm enables exploration of virtually any type of neural spiking (time series) data, providing similarity-based clustering of neural activity states with minimal assumptions about potential information encoding models.}, + number = {1}, + journal = {Neural computation}, + author = {Vargas-Irwin, Carlos E. and Brandman, David M. and Zimmermann, Jonas B. and Donoghue, John P. and Black, Michael J.}, + month = jan, + year = {2015}, + pages = {1-31}, + file = {C:\\Users\\saram\\Zotero\\storage\\IJ653QT2\\Vargas-Irwin et al. 2015 Spike Train SIMilarity Space (SSIMS) a frame-work for single neuron and ensemble data analysis.pdf}, + pmid = {25380335}, + pmcid = {PMC4276520} +} + +@article{Maaten2014, + title = {Accelerating T-{{SNE}} Using {{Tree}}-{{Based Algorithms}}}, + volume = {15}, + journal = {Journal of Machine Learning Research}, + author = {van der Maaten, Laurens}, + year = {2014}, + pages = {3221-3245}, + file = {C:\\Users\\saram\\Zotero\\storage\\2XCPU7JM\\Maaten 2014 Accelerating t-SNE using Tree-Based Algorithms.pdf} +} + +@article{Tort2008, + title = {Dynamic Cross-Frequency Couplings of Local Field Potential Oscillations in Rat Striatum and Hippocampus during Performance of a {{T}}-Maze Task}, + volume = {105}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0810524105}, + abstract = {Oscillatory rhythms in different frequency ranges mark different behavioral states and are thought to provide distinct temporal windows that coherently bind cooperating neuronal assemblies. However, the rhythms in different bands can also interact with each other, suggesting the possibility of higher-order representations of brain states by such rhythmic activity. To explore this possibility, we analyzed local field potential oscillations recorded simultaneously from the striatum and the hippocampus. As rats performed a task requiring active navigation and decision making, the amplitudes of multiple high-frequency oscillations were dynamically modulated in task-dependent patterns by the phase of cooccurring theta-band oscillations both within and across these structures, particularly during decision-making behavioral epochs. Moreover, the modulation patterns uncovered distinctions among both high- and low-frequency subbands. Cross-frequency coupling of multiple neuronal rhythms could be a general mechanism used by the brain to perform network-level dynamical computations underlying voluntary behavior.}, + language = {en}, + number = {51}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Tort, Adriano B. L. and Kramer, Mark A. and Thorn, Catherine and Gibson, Daniel J. and Kubota, Yasuo and Graybiel, Ann M. and Kopell, Nancy J.}, + month = dec, + year = {2008}, + keywords = {amplitude modulation,gamma,theta}, + pages = {20517-20522}, + file = {C:\\Users\\saram\\Zotero\\storage\\FPSV54FD\\0810524105SI.pdf;C:\\Users\\saram\\Zotero\\storage\\KUESLKDP\\Tort et al. - 2008 - Dynamic cross-frequency couplings of local field p.pdf}, + pmid = {19074268} +} + +@article{Hill2012, + title = {Statistical Connectivity Provides a Sufficient Foundation for Specific Functional Connectivity in Neocortical Neural Microcircuits}, + volume = {109}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.1202128109}, + abstract = {It is well-established that synapse formation involves highly selective chemospecific mechanisms, but how neuron arbors are positioned before synapse formation remains unclear. Using 3D reconstructions of 298 neocortical cells of different types (including nest basket, small basket, large basket, bitufted, pyramidal, and Martinotti cells), we constructed a structural model of a cortical microcircuit, in which cells of different types were independently and randomly placed. We compared the positions of physical appositions resulting from the incidental overlap of axonal and dendritic arbors in the model (statistical structural connectivity) with the positions of putative functional synapses (functional synaptic connectivity) in 90 synaptic connections reconstructed from cortical slice preparations. Overall, we found that statistical connectivity predicted an average of 74 $\pm$ 2.7\% (mean $\pm$ SEM) synapse location distributions for nine types of cortical connections. This finding suggests that chemospecific attractive and repulsive mechanisms generally do not result in pairwise-specific connectivity. In some cases, however, the predicted distributions do not match precisely, indicating that chemospecific steering and aligning of the arbors may occur for some types of connections. This finding suggests that random alignment of axonal and dendritic arbors provides a sufficient foundation for specific functional connectivity to emerge in local neural microcircuits.}, + language = {en}, + number = {42}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Hill, Sean L. and Wang, Yun and Riachi, Imad and Sch{\"u}rmann, Felix and Markram, Henry}, + month = oct, + year = {2012}, + keywords = {Neocortex,connectome,microcircuitry,neuronal connectivity}, + pages = {E2885-E2894}, + file = {C:\\Users\\saram\\Zotero\\storage\\B64HB35U\\PNAS-2012-Hill-E2885-94.pdf;C:\\Users\\saram\\Zotero\\storage\\QW8MSURW\\Hill et al. 2012 Statistical connectivity provides a sufficient foundation for specific functional connectivity in neocortical neural microcircuits.pdf}, + pmid = {22991468} +} + +@article{Reimann2013, + title = {A {{Biophysically Detailed Model}} of {{Neocortical Local Field Potentials Predicts}} the {{Critical Role}} of {{Active Membrane Currents}}}, + volume = {79}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2013.05.023}, + abstract = {Summary +Brain activity generates extracellular voltage fluctuations recorded as local field potentials (LFPs). It is known that the relevant microvariables, the ionic currents across membranes, jointly generate the macrovariables, the extracellular voltage, but neither the detailed biophysical knowledge nor the required computational power have been available to model these processes. We simulated the LFP in a model of the rodent neocortical column composed of $>$12,000 reconstructed, multicompartmental, and spiking cortical layer 4 and 5 pyramidal neurons and basket cells, including five million dendritic and somatic compartments with voltage- and ion-dependent currents, realistic connectivity, and probabilistic AMPA, NMDA, and GABA synapses. We found that, depending on a number of factors, the LFP reflects local and cross-layer processing. Active currents dominate the generation of LFPs, not synaptic ones. Spike-related currents impact the LFP not only at higher frequencies but below 50~Hz. This work calls for re-evaluating the genesis of LFPs.}, + number = {2}, + journal = {Neuron}, + author = {Reimann, Michael W. and Anastassiou, Costas A. and Perin, Rodrigo and Hill, Sean L. and Markram, Henry and Koch, Christof}, + month = jul, + year = {2013}, + pages = {375-390}, + file = {C:\\Users\\saram\\Zotero\\storage\\3E86UA85\\Reimann et al. 2013 A Biophysically Detailed Model of Neocortical Local Field Potentials Predicts the Critical Role of Active Membrane Currents.pdf} +} + +@article{Koralek2012, + title = {Corticostriatal Plasticity Is Necessary for Learning Intentional Neuroprosthetic Skills}, + volume = {483}, + copyright = {\textcopyright{} 2012 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {0028-0836}, + doi = {10.1038/nature10845}, + abstract = {The ability to learn new skills and perfect them with practice applies not only to physical skills but also to abstract skills, like motor planning or neuroprosthetic actions. Although plasticity in corticostriatal circuits has been implicated in learning physical skills, it remains unclear if similar circuits or processes are required for abstract skill learning. Here we use a novel behavioural task in rodents to investigate the role of corticostriatal plasticity in abstract skill learning. Rodents learned to control the pitch of an auditory cursor to reach one of two targets by modulating activity in primary motor cortex irrespective of physical movement. Degradation of the relation between action and outcome, as well as sensory-specific devaluation and omission tests, demonstrate that these learned neuroprosthetic actions are intentional and goal-directed, rather than habitual. Striatal neurons change their activity with learning, with more neurons modulating their activity in relation to target-reaching as learning progresses. Concomitantly, strong relations between the activity of neurons in motor cortex and the striatum emerge. Specific deletion of striatal NMDA receptors impairs the development of this corticostriatal plasticity, and disrupts the ability to learn neuroprosthetic skills. These results suggest that corticostriatal plasticity is necessary for abstract skill learning, and that neuroprosthetic movements capitalize on the neural circuitry involved in natural motor learning.}, + language = {en}, + number = {7389}, + journal = {Nature}, + author = {Koralek, Aaron C. and Jin, Xin and Long Ii, John D. and Costa, Rui M. and Carmena, Jose M.}, + month = mar, + year = {2012}, + keywords = {Physiology,Neuroscience,Animal behaviour}, + pages = {331-335}, + file = {C:\\Users\\saram\\Zotero\\storage\\KPERU7RJ\\Koralek et al. - 2012 - Corticostriatal plasticity is necessary for learni.pdf} +} + +@article{Koralek2013, + title = {Temporally {{Precise Cell}}-{{Specific Coherence Develops}} in {{Corticostriatal Networks}} during {{Learning}}}, + volume = {79}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2013.06.047}, + abstract = {Summary +It has been postulated that selective temporal coordination between neurons and development of functional neuronal assemblies are fundamental for brain function and behavior. Still, there is little evidence that functionally relevant coordination emerges preferentially in neuronal assemblies directly controlling behavioral output. We investigated coherence between primary motor cortex and the dorsal striatum as rats learn an abstract operant task. Striking coherence developed between these regions during learning. Interestingly, coherence was selectively increased in cells controlling behavioral output relative to adjacent cells. Furthermore, the temporal offset of these interactions aligned closely with corticostriatal conduction delays, demonstrating highly precise timing. Spikes from either region were followed by a consistent phase in the other, suggesting that network feedback reinforces coherence. Together, these results demonstrate that temporally precise coherence develops during learning specifically in output-relevant neuronal populations and further suggest that correlations in oscillatory activity serve to synchronize widespread brain networks to produce behavior.}, + number = {5}, + journal = {Neuron}, + author = {Koralek, Aaron C. and Costa, Rui M. and Carmena, Jose M.}, + month = sep, + year = {2013}, + pages = {865-872}, + file = {C:\\Users\\saram\\Zotero\\storage\\FXEZD4JL\\Koralek et al. - 2013 - Temporally Precise Cell-Specific Coherence Develop.pdf} +} + +@article{Canolty2012, + title = {Task-{{Dependent Changes}} in {{Cross}}-{{Level Coupling}} between {{Single Neurons}} and {{Oscillatory Activity}} in {{Multiscale Networks}}}, + volume = {8}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1002809}, + abstract = {Author Summary How is the functional role of a particular neuron established within an ensemble? The concept of a neural tuning curve \textendash{} the mapping from input variables such as movement direction to output firing rate \textendash{} has proven useful in investigating neural function. However, prior work shows that tuning curves are not fixed but may be remapped as a function of task demands \textendash{} presumably via high-level mechanisms of cognitive control. How is this accomplished? Brain rhythms may play a causal role in this process, but the coupling of single cells to network activity remains poorly understood. We investigated the coupling between rhythmic beta activity and spiking as macaques performed two different tasks. This coupling can be described in terms of a function that maps oscillatory amplitude and phase to instantaneous spike rate. Similarly to direction tuning, this ``internal'' tuning curve also exhibits task-dependent changes. We characterize these changes across a large ensemble of simultaneously-recorded cells, and consider some of the neuro-computational implications presented by cross-level coupling between single cells and large-scale networks. In particular, relative to the slow time-scale of behavior, the observed beta-to-rate mappings may prove useful for modulating winner-take-all dynamics on intermediate time-scales and relative spike timing on fast time-scales.}, + number = {12}, + journal = {PLOS Computational Biology}, + author = {Canolty, Ryan T. and Ganguly, Karunesh and Carmena, Jose M.}, + month = dec, + year = {2012}, + keywords = {Neurons,Neural networks,Single neuron function,Signal filtering,Action potentials,Neuronal tuning,Monkeys,Motor neurons}, + pages = {e1002809}, + file = {C:\\Users\\saram\\Zotero\\storage\\I95VUNDL\\Canolty et al. - 2012 - Task-Dependent Changes in Cross-Level Coupling bet.pdf} +} + +@article{Canolty2012a, + title = {Detecting Event-Related Changes of Multivariate Phase Coupling in Dynamic Brain Networks}, + volume = {107}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00610.2011}, + abstract = {Oscillatory phase coupling within large-scale brain networks is a topic of increasing interest within systems, cognitive, and theoretical neuroscience. Evidence shows that brain rhythms play a role in controlling neuronal excitability and response modulation (Haider B, McCormick D. Neuron 62: 171\textendash{}189, 2009) and regulate the efficacy of communication between cortical regions (Fries P. Trends Cogn Sci 9: 474\textendash{}480, 2005) and distinct spatiotemporal scales (Canolty RT, Knight RT. Trends Cogn Sci 14: 506\textendash{}515, 2010). In this view, anatomically connected brain areas form the scaffolding upon which neuronal oscillations rapidly create and dissolve transient functional networks (Lakatos P, Karmos G, Mehta A, Ulbert I, Schroeder C. Science 320: 110\textendash{}113, 2008). Importantly, testing these hypotheses requires methods designed to accurately reflect dynamic changes in multivariate phase coupling within brain networks. Unfortunately, phase coupling between neurophysiological signals is commonly investigated using suboptimal techniques. Here we describe how a recently developed probabilistic model, phase coupling estimation (PCE; Cadieu C, Koepsell K Neural Comput 44: 3107\textendash{}3126, 2010), can be used to investigate changes in multivariate phase coupling, and we detail the advantages of this model over the commonly employed phase-locking value (PLV; Lachaux JP, Rodriguez E, Martinerie J, Varela F. Human Brain Map 8: 194\textendash{}208, 1999). We show that the N-dimensional PCE is a natural generalization of the inherently bivariate PLV. Using simulations, we show that PCE accurately captures both direct and indirect (network mediated) coupling between network elements in situations where PLV produces erroneous results. We present empirical results on recordings from humans and nonhuman primates and show that the PCE-estimated coupling values are different from those using the bivariate PLV. Critically on these empirical recordings, PCE output tends to be sparser than the PLVs, indicating fewer significant interactions and perhaps a more parsimonious description of the data. Finally, the physical interpretation of PCE parameters is straightforward: the PCE parameters correspond to interaction terms in a network of coupled oscillators. Forward modeling of a network of coupled oscillators with parameters estimated by PCE generates synthetic data with statistical characteristics identical to empirical signals. Given these advantages over the PLV, PCE is a useful tool for investigating multivariate phase coupling in distributed brain networks.}, + language = {en}, + number = {7}, + journal = {Journal of Neurophysiology}, + author = {Canolty, Ryan T. and Cadieu, Charles F. and Koepsell, Kilian and Ganguly, Karunesh and Knight, Robert T. and Carmena, Jose M.}, + month = apr, + year = {2012}, + pages = {2020-2031}, + file = {C:\\Users\\saram\\Zotero\\storage\\RZ8DU8VS\\Canolty et al. - 2012 - Detecting event-related changes of multivariate ph.pdf}, + pmid = {22236706} +} + +@article{Miyakoshi2013, + title = {Automated Detection of Cross-Frequency Coupling in the Electrocorticogram for Clinical Inspection}, + volume = {2013}, + issn = {1557-170X}, + doi = {10.1109/EMBC.2013.6610242}, + abstract = {We developed a toolbox for detecting high-frequency oscillations and evaluating cross-frequency phase-amplitude coupling in electrocorticographic (ECoG) data with optimal parameters. Here we demonstrate use of the toolbox using simulated and realistic ECoG data. The results confirmed its potential usefulness for clinical research or practice. The tools have been released as a Phase-Amplitude Coupling Toolbox (PACT) plug-in for EEGLAB, an open software environment for electrophysiological data analysis (sccn.ucsd.edu/eeglab).}, + journal = {Conference proceedings : ... Annual International Conference of the IEEE Engineering in Medicine and Biology Society. IEEE Engineering in Medicine and Biology Society. Conference}, + author = {Miyakoshi, Makoto and Delorme, Arnaud and Mullen, Tim and Kojima, Katsuaki and Makeig, Scott and Asano, Eishi}, + year = {2013}, + pages = {3282-3285}, + file = {C:\\Users\\saram\\Zotero\\storage\\92ARHHTZ\\Miyakoshi et al. 2013 Automated detection of cross-frequency coupling in the electrocorticogram for clinical inspection.pdf}, + pmid = {24110429}, + pmcid = {PMC4104944} +} + +@article{Zhou2009, + title = {{{MATLAB}} Toolbox for Functional Connectivity}, + volume = {47}, + issn = {1053-8119}, + doi = {10.1016/j.neuroimage.2009.05.089}, + abstract = {The term ``functional connectivity'' is used to denote correlations in activation among spatially-distinct brain regions, either in a resting state or when processing external stimuli. Functional connectivity has been extensively evaluated with several functional neuroimaging methods, particularly PET and fMRI. Yet these relationships have been quantified using very different measures and the extent to which they index the same constructs is unclear. We have implemented a variety of these functional connectivity measures in a new freely available MATLAB toolbox. These measures are categorized into two groups: whole time-series and trial-based approaches. We evaluate these measures via simulations with different patterns of functional connectivity and provide recommendations for their use. We also apply these measures to a previously published fMRI data set (Siegle, G.J., Thompson, W., Carter, C.S., Steinhauer, S.R., Thase, M.E., 2007. Increased amygdala and decreased dorsolateral prefrontal BOLD responses in unipolar depression: related and independent features. Biol. Psychiatry 610 (2), 198\textendash{}209) in which activity in dorsal anterior cingulate cortex (dACC) and dorsolateral prefrontal cortex (DLPFC) was evaluated in 32 control subjects during a digit sorting task. Though all implemented measures demonstrate functional connectivity between dACC and DLPFC activity during event-related tasks, different participants appeared to display qualitatively different relationships.}, + number = {4}, + journal = {NeuroImage}, + author = {Zhou, Dongli and Thompson, Wesley K. and Siegle, Greg}, + month = oct, + year = {2009}, + pages = {1590-1607}, + file = {C:\\Users\\saram\\Zotero\\storage\\XS8I76XP\\Zhou et al. 2009 MATLAB toolbox for functional connectivity.pdf} +} + +@article{Meng2017, + title = {Sublaminar Subdivision of Mouse Auditory Cortex Layer 2/3 Based on Functional Translaminar Connections}, + copyright = {Copyright \textcopyright{} 2017 the authors}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.1361-17.2017}, + abstract = {The cerebral cortex is subdivided into 6 layers based on morphological features. The supragranular layers 2/3 (L2/3) contain morphologically and genetically diverse populations of neurons, suggesting the existence of discrete classes of cells. In primates and carnivores L2/3 can be subdivided morphologically, but cytoarchitectonic divisions are less clear in rodents. Nevertheless, discrete classes of cells could exist based on their computational requirement, which might be linked to their associated functional microcircuits. Through in vitro slice recordings coupled with laser scanning photostimulation we investigated if L2/3 of male mouse auditory cortex contains discrete subpopulations of cells with specific functional microcircuits. We use hierarchical clustering on the laminar connection patterns to reveal the existence of multiple distinct classes of L2/3 neurons. The classes of L2/3 neurons are distinguished by the pattern of their laminar and columnar inputs from within A1 and their location within L2/3. Cells in superficial L2 show more extensive columnar integration than deeper L3 cells. Moreover, L3 cells receive more translaminar input from L4. In vivo imaging in awake mice revealed that L2 cells had higher bandwidth than L3 cells \textemdash{} consistent with the laminar differences in columnar integration. These results suggest that similar to higher mammals, rodent L2/3 is not a homogenous layer but contains several parallel microcircuits. +SIGNIFICANCE STATEMENT +Layer 2/3 of auditory cortex is functionally diverse. We investigated whether L2/3 cells form classes based on their functional connectivity. We used in vitro whole cell patch-clamp recordings with laser-scanning photostimulation (LSPS) and performed unsupervised clustering on the resulting excitatory and inhibitory connection patterns. Cells within each class were located in different sublaminae. Superficial cells showed wider integration along the tonotopic axis and the amount of L4 input varied with sublaminar location. To identify if sensory responses varied with sublaminar location, we performed in vivo Ca2+-imaging and found that L2 cells were less frequency selective than L3 cells. Our results show that the diversity of receptive fields in L2/3 is likely due to diversity in the underlying functional circuits.}, + language = {en}, + journal = {Journal of Neuroscience}, + author = {Meng, Xiangying and Winkowski, Daniel E. and Kao, Joseph P. Y. and Kanold, Patrick O.}, + month = sep, + year = {2017}, + pages = {1361-17}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZZMLAIXP\\Meng et al. 2017 Sublaminar subdivision of mouse auditory cortex layer 23 based on functional translaminar connections.pdf}, + pmid = {28931571} +} + +@misc{zotero-1212, + title = {Visual {{Exploration}} of {{Performance Monitoring Time Series}} with {{MDS}} and T-{{SNE}}}, + howpublished = {http://mabrek.github.io/blog/multivariate-mds-tsne/}, + file = {C:\\Users\\saram\\Zotero\\storage\\G5IWI59A\\multivariate-mds-tsne.html} +} + +@article{Vargas-Irwin2015, + title = {Spike {{Train SIMilarity Space}} ({{SSIMS}}): A Frame-Work for Single Neuron and Ensemble Data Analysis}, + volume = {27}, + issn = {0899-7667}, + shorttitle = {Spike {{Train SIMilarity Space}} ({{SSIMS}})}, + doi = {10.1162/NECO_a_00684}, + abstract = {Increased emphasis on circuit level activity in the brain makes it necessary to have methods to visualize and evaluate large scale ensemble activity, beyond that revealed by raster-histograms or pairwise correlations. We present a method to evaluate the relative similarity of neural spiking patterns by combining spike train distance metrics with dimensionality reduction. Spike train distance metrics provide an estimate of similarity between activity patterns at multiple temporal resolutions. Vectors of pair-wise distances are used to represent the intrinsic relationships between multiple activity patterns at the level of single units or neuronal ensembles. Dimensionality reduction is then used to project the data into concise representations suitable for clustering analysis as well as exploratory visualization. Algorithm performance and robustness are evaluated using multielectrode ensemble activity data recorded in behaving primates. We demonstrate how Spike train SIMilarity Space (SSIMS) analysis captures the relationship between goal directions for an 8-directional reaching task and successfully segregates grasp types in a 3D grasping task in the absence of kinematic information. The algorithm enables exploration of virtually any type of neural spiking (time series) data, providing similarity-based clustering of neural activity states with minimal assumptions about potential information encoding models.}, + number = {1}, + journal = {Neural computation}, + author = {Vargas-Irwin, Carlos E. and Brandman, David M. and Zimmermann, Jonas B. and Donoghue, John P. and Black, Michael J.}, + month = jan, + year = {2015}, + pages = {1-31}, + file = {C:\\Users\\saram\\Zotero\\storage\\74DAD6T4\\Vargas-Irwin et al. 2015 Spike Train SIMilarity Space (SSIMS) a frame-work for single neuron and ensemble data analysis.pdf}, + pmid = {25380335}, + pmcid = {PMC4276520} +} + +@article{Jensen2007, + title = {Cross-Frequency Coupling between Neuronal Oscillations}, + volume = {11}, + issn = {1364-6613}, + doi = {10.1016/j.tics.2007.05.003}, + abstract = {Electrophysiological recordings in animals, including humans, are modulated by oscillatory activities in several frequency bands. Little is known about how oscillations in various frequency bands interact. Recent findings from the human neocortex show that the power of fast gamma oscillations (30\textendash{}150 Hz) is modulated by the phase of slower theta oscillations (5\textendash{}8 Hz). Given that this coupling reflects a specific interplay between large ensembles of neurons, it is likely to have profound implications for neuronal processing.}, + number = {7}, + journal = {Trends in Cognitive Sciences}, + author = {Jensen, Ole and Colgin, Laura L.}, + month = jul, + year = {2007}, + pages = {267-269}, + file = {C:\\Users\\saram\\Zotero\\storage\\85UGC249\\Jensen and Colgin 2007 Cross-frequency coupling between neuronal oscillations.pdf} +} + +@article{Canolty2006, + title = {High {{Gamma Power Is Phase}}-{{Locked}} to {{Theta Oscillations}} in {{Human Neocortex}}}, + volume = {313}, + issn = {0036-8075}, + doi = {10.1126/science.1128115}, + abstract = {We observed robust coupling between the high- and low-frequency bands of ongoing electrical activity in the human brain. In particular, the phase of the low-frequency theta (4 to 8 hertz) rhythm modulates power in the high gamma (80 to 150 hertz) band of the electrocorticogram, with stronger modulation occurring at higher theta amplitudes. Furthermore, different behavioral tasks evoke distinct patterns of theta/high gamma coupling across the cortex. The results indicate that transient coupling between low- and high-frequency brain rhythms coordinates activity in distributed cortical areas, providing a mechanism for effective communication during cognitive processing in humans.}, + number = {5793}, + journal = {Science (New York, N.Y.)}, + author = {Canolty, R. T. and Edwards, E. and Dalal, S. S. and Soltani, M. and Nagarajan, S. S. and Kirsch, H. E. and Berger, M. S. and Barbaro, N. M. and Knight, R. T.}, + month = sep, + year = {2006}, + pages = {1626-1628}, + file = {C:\\Users\\saram\\Zotero\\storage\\AK46A9SZ\\NIHMS14964-supplement-Supplementary_.pdf;C:\\Users\\saram\\Zotero\\storage\\URATP29S\\Canolty et al. 2006 High Gamma Power Is Phase-Locked to Theta Oscillations in Human Neocortex.pdf}, + pmid = {16973878}, + pmcid = {PMC2628289} +} + +@article{Penny2008, + title = {Testing for Nested Oscillation}, + volume = {174}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2008.06.035}, + abstract = {Nested oscillation occurs when the amplitude of a faster rhythm is coupled to the phase of a slower rhythm. It has been proposed to underlie the discrete nature of perception and the capacity of working memory and is a phenomenon observable in human brain imaging data. This paper compares three published methods for detecting nested oscillation and a fourth method proposed in this paper. These are: (i) the modulation index, (ii) the phase-locking value (PLV), (iii) the envelope-to-signal correlation (ESC) and (iv) a general linear model (GLM) measure derived from ESC. We applied the methods to electrocorticographic (ECoG) data recorded during a working-memory task and to data from a simulated hippocampal interneuron network. Further simulations were then made to address the dependence of each measure on signal to noise level, coupling phase, epoch length, sample rate, signal nonstationarity, and multi-phasic coupling. Our overall conclusion is that the GLM measure is the best all-round approach for detecting nested oscillation.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Penny, W.D. and Duzel, E. and Miller, K.J. and Ojemann, J.G.}, + month = sep, + year = {2008}, + pages = {50-61}, + pmid = {18674562}, + pmcid = {PMC2675174} +} + +@misc{zotero-1240, + title = {Phase-Clustering Bias in Phase\textendash{}amplitude Cross-Frequency Coupling and Its Removal - {{ScienceDirect}}}, + howpublished = {http://www.sciencedirect.com/science/article/pii/S016502701500268X?via\%3Dihub}, + file = {C:\\Users\\saram\\Zotero\\storage\\5X2AETKI\\1-s2.0-S016502701500268X-main.pdf;C:\\Users\\saram\\Zotero\\storage\\TSJDJMVV\\S016502701500268X.html} +} + +@misc{zotero-1243, + title = {The Functional Role of Cross-Frequency Coupling}, + howpublished = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3359652/}, + file = {C:\\Users\\saram\\Zotero\\storage\\5KSPJMU4\\nihms235872.pdf;C:\\Users\\saram\\Zotero\\storage\\GB4BUG75\\PMC3359652.html} +} + +@article{Jirsa2014, + title = {On the Nature of Seizure Dynamics}, + volume = {137}, + issn = {1460-2156}, + doi = {10.1093/brain/awu133}, + abstract = {Seizures can occur spontaneously and in a recurrent manner, which defines epilepsy; or they can be induced in a normal brain under a variety of conditions in most neuronal networks and species from flies to humans. Such universality raises the possibility that invariant properties exist that characterize seizures under different physiological and pathological conditions. Here, we analysed seizure dynamics mathematically and established a taxonomy of seizures based on first principles. For the predominant seizure class we developed a generic model called Epileptor. As an experimental model system, we used ictal-like discharges induced in vitro in mouse hippocampi. We show that only five state variables linked by integral-differential equations are sufficient to describe the onset, time course and offset of ictal-like discharges as well as their recurrence. Two state variables are responsible for generating rapid discharges (fast time scale), two for spike and wave events (intermediate time scale) and one for the control of time course, including the alternation between 'normal' and ictal periods (slow time scale). We propose that normal and ictal activities coexist: a separatrix acts as a barrier (or seizure threshold) between these states. Seizure onset is reached upon the collision of normal brain trajectories with the separatrix. We show theoretically and experimentally how a system can be pushed toward seizure under a wide variety of conditions. Within our experimental model, the onset and offset of ictal-like discharges are well-defined mathematical events: a saddle-node and homoclinic bifurcation, respectively. These bifurcations necessitate a baseline shift at onset and a logarithmic scaling of interspike intervals at offset. These predictions were not only confirmed in our in vitro experiments, but also for focal seizures recorded in different syndromes, brain regions and species (humans and zebrafish). Finally, we identified several possible biophysical parameters contributing to the five state variables in our model system. We show that these parameters apply to specific experimental conditions and propose that there exists a wide array of possible biophysical mechanisms for seizure genesis, while preserving central invariant properties. Epileptor and the seizure taxonomy will guide future modeling and translational research by identifying universal rules governing the initiation and termination of seizures and predicting the conditions necessary for those transitions.}, + language = {eng}, + number = {Pt 8}, + journal = {Brain: A Journal of Neurology}, + author = {Jirsa, Viktor K. and Stacey, William C. and Quilichini, Pascale P. and Ivanov, Anton I. and Bernard, Christophe}, + month = aug, + year = {2014}, + keywords = {Animals,Microelectrodes,EEG,Humans,Models; Neurological,Reproducibility of Results,Mice,Electroencephalography,Electrophysiological Phenomena,Nonlinear Dynamics,Seizures,Zebrafish,bifurcation,epilepsy,modelling,non-linear dynamics,hippocampus}, + pages = {2210-2230}, + pmid = {24919973}, + pmcid = {PMC4107736} +} + +@article{Mercer2017, + title = {Cornu {{Ammonis Regions}}\textendash{}{{Antecedents}} of {{Cortical Layers}}?}, + volume = {11}, + issn = {1662-5129}, + doi = {10.3389/fnana.2017.00083}, + abstract = {Studying neocortex and hippocampus in parallel, we are struck by the similarities. All three to four layered allocortices and the six layered mammalian neocortex arise in the pallium. All receive and integrate multiple cortical and subcortical inputs, provide multiple outputs and include an array of neuronal classes. During development, each cell positions itself to sample appropriate local and distant inputs and to innervate appropriate targets. Simpler cortices had already solved the need to transform multiple coincident inputs into serviceable outputs before neocortex appeared in mammals. Why then do phylogenetically more recent cortices need multiple pyramidal cell layers? A simple answer is that more neurones can compute more complex functions. The dentate gyrus and hippocampal CA regions - which might be seen as hippocampal antecedents of neocortical layers - lie side by side, albeit around a tight bend. Were the millions of cells of rat neocortex arranged in like fashion, the surface area of the CA pyramidal cell layers would be some forty times larger. Even if evolution had managed to fold this immense sheet into the space available, the distances between neurones that needed to be synaptically connected would be huge and to maintain the speed of information transfer, massive, myelinated fibre tracts would be needed. How much more practical to stack the `cells that fire and wire together' into narrow columns, while retaining the mechanisms underlying the extraordinary precision with which circuits form. This demonstrably efficient arrangement presents us with challenges, however, not the least being to categorise the baffling array of neuronal subtypes in each of five `pyramidal layers'. If we imagine the puzzle posed by this bewildering jumble of apical dendrites, basal dendrites and axons, from many different pyramidal and interneuronal classes, that is encountered by a late-arriving interneurone insinuating itself into a functional circuit, we can perhaps begin to understand why definitive classification is such a challenge. Here, we summarize and compare the development of these two cortices, the properties of their neurones, the circuits they form and the ordered, unidirectional flow of information from one hippocampal region, or one neocortical layer, to another.}, + language = {English}, + journal = {Frontiers in Neuroanatomy}, + author = {Mercer, Audrey and Thomson, Alex M.}, + year = {2017}, + keywords = {Neocortex,Interneurones,Neocortical Columns,Pyramidal Cells,development,neuronal circuitry,hippocampus}, + file = {C:\\Users\\saram\\Zotero\\storage\\8CRDVUSD\\fnana-11-00083.pdf} +} + +@article{Hill2016, + title = {How Do We Know What We Know? {{Discovering}} Neuroscience Data Sets through Minimal Metadata}, + volume = {17}, + copyright = {\textcopyright{} 2016 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1471-003X}, + shorttitle = {How Do We Know What We Know?}, + doi = {10.1038/nrn.2016.134}, + abstract = {With the emergence of brain research initiatives around the world, the need for standards to facilitate neuroscience data sharing is growing. A crucial first step will be to establish a minimal metadata standard that allows the discovery of and access to similar or related data sets. This will be a key element of an open neuroscience-data ecosystem in which data is valued, preserved and reused.}, + language = {en}, + number = {12}, + journal = {Nature Reviews Neuroscience}, + author = {Hill, Sean L.}, + month = dec, + year = {2016}, + keywords = {Neuroscience,Research data,Bioinformatics,Imaging}, + pages = {735-736}, + file = {C:\\Users\\saram\\Zotero\\storage\\DY4PA9NQ\\Hill - 2016 - How do we know what we know Discovering neuroscie.pdf} +} + +@article{Bandrowski2016, + title = {The {{Resource Identification Initiative}}: {{A}} Cultural Shift in Publishing}, + volume = {524}, + issn = {1096-9861}, + shorttitle = {The {{Resource Identification Initiative}}}, + doi = {10.1002/cne.23913}, + abstract = {A central tenet in support of research reproducibility is the ability to uniquely identify research resources, i.e., reagents, tools, and materials that are used to perform experiments. However, current reporting practices for research resources are insufficient to identify the exact resources that are reported or to answer basic questions such as ``How did other studies use resource X?'' To address this issue, the Resource Identification Initiative was launched as a pilot project to improve the reporting standards for research resources in the Methods sections of articles and thereby improve identifiability and scientific reproducibility. The pilot engaged over 25 biomedical journal editors from most major publishers, as well as scientists and funding officials. Authors were asked to include Research Resource Identifiers (RRIDs) in their articles prior to publication for three resource types: antibodies, model organisms, and tools (i.e., software and databases). RRIDs are assigned by an authoritative database, for example, a model organism database for each type of resource. To make it easier for authors to obtain RRIDs, resources were aggregated from the appropriate databases and their RRIDs made available in a central Web portal (http://scicrunch.org/resources). RRIDs meet three key criteria: they are machine-readable, free to generate and access, and are consistent across publishers and journals. The pilot was launched in February of 2014 and over 300 articles have appeared that report RRIDs. The number of journals participating has expanded from the original 25 to more than 40, with RRIDs appearing in 62 different journals to date. Here we present an overview of the pilot project and its outcomes to date. We show that authors are able to identify resources and are supportive of the goals of the project. Identifiability of the resources post-pilot showed a dramatic improvement for all three resource types, suggesting that the project has had a significant impact on identifiability of research resources. J. Comp. Neurol. 524:8\textendash{}22, 2016. \textcopyright{} 2015 The Authors The Journal of Comparative Neurology Published by Wiley Periodicals, Inc.}, + language = {en}, + number = {1}, + journal = {Journal of Comparative Neurology}, + author = {Bandrowski, Anita and Brush, Matthew and Grethe, Jeffery S. and Haendel, Melissa A and Kennedy, David N. and Hill, Sean and Hof, Patrick R. and Martone, Maryann E. and Pols, Maaike and Tan, Serena C. and Washington, Nicole and Zudilova-Seinstra, Elena and Vasilevsky, Nicole}, + month = jan, + year = {2016}, + keywords = {Resource Identification Initiative,identifiability,research resources}, + pages = {8-22}, + file = {C:\\Users\\saram\\Zotero\\storage\\JA4DX9YU\\Bandrowski et al. - 2016 - The Resource Identification Initiative A cultural.pdf} +} + +@article{DeFelipe2016, + title = {Comments and {{General Discussion}} on ``{{The Anatomical Problem Posed}} by {{Brain Complexity}} and {{Size}}: {{A Potential Solution}}''}, + volume = {10}, + issn = {1662-5129}, + shorttitle = {Comments and {{General Discussion}} on ``{{The Anatomical Problem Posed}} by {{Brain Complexity}} and {{Size}}}, + doi = {10.3389/fnana.2016.00060}, + journal = {Frontiers in Neuroanatomy}, + author = {DeFelipe, Javier and Douglas, Rodney J. and Hill, Sean L. and Lein, Ed S. and Martin, Kevan A. C. and Rockland, Kathleen S. and Segev, Idan and Shepherd, Gordon M. and Tam{\'a}s, G{\'a}bor}, + month = jun, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\753YXQK4\\DeFelipe et al. - 2016 - Comments and General Discussion on “The Anatomical.pdf}, + pmid = {27375436}, + pmcid = {PMC4901047} +} + +@misc{zotero-1259, + title = {Information Processing with Population Codes : {{Article}} : {{Nature Reviews Neuroscience}}}, + howpublished = {http://www.nature.com.myaccess.library.utoronto.ca/nrn/journal/v1/n2/full/nrn1100\_125a.html?foxtrotcallback=true}, + file = {C:\\Users\\saram\\Zotero\\storage\\6DKE29MV\\nrn1100_125a.pdf;C:\\Users\\saram\\Zotero\\storage\\SGPXFINR\\nrn1100_125a.html} +} + +@article{English2017, + title = {Pyramidal {{Cell}}-{{Interneuron Circuit Architecture}} and {{Dynamics}} in {{Hippocampal Networks}}}, + volume = {96}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2017.09.033}, + language = {English}, + number = {2}, + journal = {Neuron}, + author = {English, Daniel Fine and McKenzie, Sam and Evans, Talfan and Kim, Kanghwan and Yoon, Euisik and Buzs{\'a}ki, Gy{\"o}rgy}, + month = oct, + year = {2017}, + keywords = {synchrony,interneuron,cell assemblies,circuits,cooperativity,hippocampus,lognormal,pyramidal cell,short-term plasticity,spike transmission}, + pages = {505-520.e7}, + file = {C:\\Users\\saram\\Zotero\\storage\\P48HAU39\\English et al. 2017 Pyramidal Cell-Interneuron Circuit Architecture and Dynamics in Hippocampal Networks.pdf}, + pmid = {29024669} +} + +@article{Dickey2009, + title = {Single-{{Unit Stability Using Chronically Implanted Multielectrode Arrays}}}, + volume = {102}, + copyright = {Copyright \textcopyright{} 2009 the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.90920.2008}, + abstract = {The use of chronic intracortical multielectrode arrays has become increasingly prevalent in neurophysiological experiments. However, it is not obvious whether neuronal signals obtained over multiple recording sessions come from the same or different neurons. Here, we develop a criterion to assess single-unit stability by measuring the similarity of 1) average spike waveforms and 2) interspike interval histograms (ISIHs). Neuronal activity was recorded from four Utah arrays implanted in primary motor and premotor cortices in three rhesus macaque monkeys during 10 recording sessions over a 15- to 17-day period. A unit was defined as stable through a given day if the stability criterion was satisfied on all recordings leading up to that day. We found that 57\% of the original units were stable through 7 days, 43\% were stable through 10 days, and 39\% were stable through 15 days. Moreover, stable units were more likely to remain stable in subsequent recording sessions (i.e., 89\% of the neurons that were stable through four sessions remained stable on the fifth). Using both waveform and ISIH data instead of just waveforms improved performance by reducing the number of false positives. We also demonstrate that this method can be used to track neurons across days, even during adaptation to a visuomotor rotation. Identifying a stable subset of neurons should allow the study of long-term learning effects across days and has practical implications for pooling of behavioral data across days and for increasing the effectiveness of brain\textendash{}machine interfaces.}, + language = {en}, + number = {2}, + journal = {Journal of Neurophysiology}, + author = {Dickey, Adam S. and Suminski, Aaron and Amit, Yali and Hatsopoulos, Nicholas G.}, + month = aug, + year = {2009}, + pages = {1331-1339}, + file = {C:\\Users\\saram\\Zotero\\storage\\P7ZITHJR\\Dickey et al. 2009 Single-Unit Stability Using Chronically Implanted Multielectrode Arrays.pdf}, + pmid = {19535480} +} + +@article{Dehghani2012, + title = {Avalanche {{Analysis}} from {{Multielectrode Ensemble Recordings}} in {{Cat}}, {{Monkey}}, and {{Human Cerebral Cortex}} during {{Wakefulness}} and {{Sleep}}}, + volume = {3}, + issn = {1664-042X}, + doi = {10.3389/fphys.2012.00302}, + abstract = {Self-organized critical states are found in many natural systems, from earthquakes to forest fires, they have also been observed in neural systems, particularly, in neuronal cultures. However, the presence of critical states in the awake brain remains controversial. Here, we compared avalanche analyses performed on different in vivo preparations during wakefulness, slow-wave sleep, and REM sleep, using high density electrode arrays in cat motor cortex (96 electrodes), monkey motor cortex and premotor cortex and human temporal cortex (96 electrodes) in epileptic patients. In neuronal avalanches defined from units (up to 160 single units), the size of avalanches never clearly scaled as power-law, but rather scaled exponentially or displayed intermediate scaling. We also analyzed the dynamics of local field potentials (LFPs) and in particular LFP negative peaks (nLFPs) among the different electrodes (up to 96 sites in temporal cortex or up to 128 sites in adjacent motor and premotor cortices). In this case, the avalanches defined from nLFPs displayed power-law scaling in double logarithmic representations, as reported previously in monkey. However, avalanche defined as positive LFP (pLFP) peaks, which are less directly related to neuronal firing, also displayed apparent power-law scaling. Closer examination of this scaling using the more reliable cumulative distribution function (CDF) and other rigorous statistical measures, did not confirm power-law scaling. The same pattern was seen for cats, monkey, and human, as well as for different brain states of wakefulness and sleep. We also tested other alternative distributions. Multiple exponential fitting yielded optimal fits of the avalanche dynamics with bi-exponential distributions. Collectively, these results show no clear evidence for power-law scaling or self-organized critical states in the awake and sleeping brain of mammals, from cat to man.}, + journal = {Frontiers in Physiology}, + author = {Dehghani, Nima and Hatsopoulos, Nicholas G. and Haga, Zach D. and Parker, Rebecca A. and Greger, Bradley and Halgren, Eric and Cash, Sydney S. and Destexhe, Alain}, + month = aug, + year = {2012}, + file = {C:\\Users\\saram\\Zotero\\storage\\JE4SV9IM\\Dehghani et al. 2012 Avalanche Analysis from Multielectrode Ensemble Recordings in Cat, Monkey, and Human Cerebral Cortex during Wakefulness and Sleep.pdf}, + pmid = {22934053}, + pmcid = {PMC3429073} +} + +@article{Truccolo2011, + title = {Single-Neuron Dynamics in Human Focal Epilepsy}, + volume = {14}, + copyright = {\textcopyright{} 2011 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1097-6256}, + doi = {10.1038/nn.2782}, + abstract = {Epileptic seizures are traditionally characterized as the ultimate expression of monolithic, hypersynchronous neuronal activity arising from unbalanced runaway excitation. Here we report the first examination of spike train patterns in large ensembles of single neurons during seizures in persons with epilepsy. Contrary to the traditional view, neuronal spiking activity during seizure initiation and spread was highly heterogeneous, not hypersynchronous, suggesting complex interactions among different neuronal groups even at the spatial scale of small cortical patches. In contrast to earlier stages, seizure termination is a nearly homogenous phenomenon followed by an almost complete cessation of spiking across recorded neuronal ensembles. Notably, even neurons outside the region of seizure onset showed significant changes in activity minutes before the seizure. These findings suggest a revision of current thinking about seizure mechanisms and point to the possibility of seizure prevention based on spiking activity in neocortical neurons.}, + language = {en}, + number = {5}, + journal = {Nature Neuroscience}, + author = {Truccolo, Wilson and Donoghue, Jacob A. and Hochberg, Leigh R. and Eskandar, Emad N. and Madsen, Joseph R. and Anderson, William S. and Brown, Emery N. and Halgren, Eric and Cash, Sydney S.}, + month = may, + year = {2011}, + keywords = {epilepsy,Neurological models,Synaptic plasticity}, + pages = {635-641}, + file = {C:\\Users\\saram\\Zotero\\storage\\9P3WNBWK\\Truccolo et al. 2011 Single-neuron dynamics in human focal epilepsy.pdf} +} + +@article{Hattori2015, + title = {Robust Hippocampal Responsivity during Retrieval of Consolidated Associative Memory}, + volume = {25}, + issn = {1098-1063}, + doi = {10.1002/hipo.22401}, + abstract = {A contentious point in memory research is whether or not the hippocampus plays a time-limited role in the consolidation of declarative memories. A widely held view is that declarative memories are initially encoded in the hippocampus, then transferred to the neocortex for long-term storage. Alternate views argue instead that the hippocampus continues to play a role in remote memory recall. These competing theories are largely based on human amnesic and animal lesion/inactivation studies. However, in vivo electrophysiological evidence supporting these views is scarce. Given that other studies examining the role of the hippocampus in remote memory retrieval using lesion and imaging techniques in human and animal models have provided mixed results, it would be particularly useful to gain insight at the in vivo electrophysiological level. Here we report hippocampal single-neuron and theta activity recorded longitudinally during acquisition and remote retrieval of trace eyeblink conditioning. Results from conditioned rabbits were compared to those obtained from yoked pseudo-conditioned control rabbits. Results reveal continued learning-specific hippocampal activity one month after initial acquisition of the task. Our findings yield insight into the normal physiological responses of the hippocampus during memory processes and provide compelling in vivo electrophysiological evidence that the hippocampus is involved in both acquisition and retrieval of consolidated memories. \textcopyright{} 2014 The Authors Hippocampus Published by Wiley Periodicals, Inc.}, + language = {en}, + number = {5}, + journal = {Hippocampus}, + author = {Hattori, Shoai and Chen, Lillian and Weiss, Craig and Disterhoft, John F.}, + month = may, + year = {2015}, + keywords = {In vivo electrophysiology,hippocampus,rabbits,trace eyeblink conditioning,consolidation}, + pages = {655-669}, + file = {C:\\Users\\saram\\Zotero\\storage\\2IC8PMG4\\Hattori et al. 2015 Robust hippocampal responsivity during retrieval of consolidated associative memory.pdf} +} + +@article{Iaccarino2016, + title = {Gamma Frequency Entrainment Attenuates Amyloid Load and Modifies Microglia}, + volume = {540}, + copyright = {\textcopyright{} 2016 Macmillan Publishers Limited, part of Springer Nature. All rights reserved.}, + issn = {0028-0836}, + doi = {10.1038/nature20587}, + abstract = {Changes in gamma oscillations (20\textendash{}50 Hz) have been observed in several neurological disorders. However, the relationship between gamma oscillations and cellular pathologies is unclear. Here we show reduced, behaviourally driven gamma oscillations before the onset of plaque formation or cognitive decline in a mouse model of Alzheimer's disease. Optogenetically driving fast-spiking parvalbumin-positive (FS-PV)-interneurons at gamma (40 Hz), but not other frequencies, reduces levels of amyloid-$\beta$ (A$\beta$)1\textendash{}40 and A$\beta$ 1\textendash{}42 isoforms. Gene expression profiling revealed induction of genes associated with morphological transformation of microglia, and histological analysis confirmed increased microglia co-localization with A$\beta$. Subsequently, we designed a non-invasive 40 Hz light-flickering regime that reduced A$\beta$1\textendash{}40 and A$\beta$1\textendash{}42 levels in the visual cortex of pre-depositing mice and mitigated plaque load in aged, depositing mice. Our findings uncover a previously unappreciated function of gamma rhythms in recruiting both neuronal and glial responses to attenuate Alzheimer's-disease-associated pathology.}, + language = {en}, + number = {7632}, + journal = {Nature}, + author = {Iaccarino, Hannah F. and Singer, Annabelle C. and Martorell, Anthony J. and Rudenko, Andrii and Gao, Fan and Gillingham, Tyler Z. and Mathys, Hansruedi and Seo, Jinsoo and Kritskiy, Oleg and Abdurrob, Fatema and Adaikkan, Chinnakkaruppan and Canter, Rebecca G. and Rueda, Richard and Brown, Emery N. and Boyden, Edward S. and Tsai, Li-Huei}, + month = dec, + year = {2016}, + keywords = {Cellular neuroscience,Alzheimer's disease,Molecular neuroscience}, + pages = {230-235}, + file = {C:\\Users\\saram\\Zotero\\storage\\PBSWXDUM\\Iaccarino et al. 2016 Gamma frequency entrainment attenuates amyloid load and modifies microglia.pdf} +} + +@article{Hubert1985, + title = {Comparing Partitions}, + volume = {2}, + issn = {0176-4268, 1432-1343}, + doi = {10.1007/BF01908075}, + abstract = {The problem of comparing two different partitions of a finite set of objects reappears continually in the clustering literature. We begin by reviewing a well-known measure of partition correspondence often attributed to Rand (1971), discuss the issue of correcting this index for chance, and note that a recent normalization strategy developed by Morey and Agresti (1984) and adopted by others (e.g., Miligan and Cooper 1985) is based on an incorrect assumption. Then, the general problem of comparing partitions is approached indirectly by assessing the congruence of two proximity matrices using a simple cross-product measure. They are generated from corresponding partitions using various scoring rules. Special cases derivable include traditionally familiar statistics and/or ones tailored to weight certain object pairs differentially. Finally, we propose a measure based on the comparison of object triples having the advantage of a probabilistic interpretation in addition to being corrected for chance (i.e., assuming a constant value under a reasonable null hypothesis) and bounded between $\pm$1.}, + language = {en}, + number = {1}, + journal = {Journal of Classification}, + author = {Hubert, Lawrence and Arabie, Phipps}, + month = dec, + year = {1985}, + pages = {193-218}, + file = {C:\\Users\\saram\\Zotero\\storage\\PPWCJPPH\\Hubert and Arabie 1985 Comparing partitions.pdf} +} + +@incollection{Mahallati2018, + series = {Studies in Computational Intelligence}, + title = {Interpreting {{Cluster Structure}} in {{Waveform Data}} with {{Visual Assessment}} and {{Dunn}}'s {{Index}}}, + copyright = {All rights reserved}, + isbn = {978-3-319-67788-0 978-3-319-67789-7}, + abstract = {Dunn's index was introduced in 1974 as a way to define and identify a ``best'' crisp partition on n objects represented by either unlabeled feature vectors or dissimilarity matrix data. This article examines the intimate relationship that exists between Dunn's index, single linkage clustering, and a visual method called iVAT for estimating the number of clusters in the input data. The relationship of Dunn's index to iVAT and single linkage in the labeled data case affords a means to better understand the utility of these three companion methods when data are crisply clustered in the unlabeled case (the real case). Numerical examples using simulated waveform data drawn from the field of neuroscience illustrate the natural compatibility of Dunn's index with iVAT and single linkage. A second aim of this note is to study customizing the three methods by changing the distance measure from Euclidean distance to one that may be more appropriate for assessing the validity of crisp clusters of finite sets of waveform data. We present numerical examples that support our assertion that when used collectively, the three methods afford a useful approach to evaluation of crisp clusters in unlabeled waveform data.}, + language = {en}, + booktitle = {Frontiers in {{Computational Intelligence}}}, + publisher = {{Springer, Cham}}, + author = {Mahallati, Sara and Bezdek, James C. and Kumar, Dheeraj and Popovic, Milos R. and Valiante, Taufik A.}, + year = {2018}, + pages = {73-101}, + file = {C:\\Users\\saram\\Zotero\\storage\\TKHIH5UX\\Mahallati et al. 2018 Interpreting Cluster Structure in Waveform Data with Visual Assessment and Dunn’s Index.pdf}, + doi = {10.1007/978-3-319-67789-7_6} +} + +@article{Middleton2016, + title = {Silencing {{CA3}} Disrupts Temporal Coding in the {{CA1}} Ensemble}, + volume = {19}, + copyright = {2016 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn.4311}, + abstract = {The circuit mechanisms underlying temporal coding in hippocampal area CA1 are poorly understood. The authors demonstrate that genetically removing CA3 input to CA1 disrupts temporally compressed ensemble-wide theta sequences in CA1 while sparing single-cell place coding, suggesting a crucial role for CA3 input in organizing the ensemble code for space.$<$/p$>$}, + language = {en}, + number = {7}, + journal = {Nature Neuroscience}, + author = {Middleton, Steven J. and McHugh, Thomas J.}, + month = may, + year = {2016}, + pages = {nn.4311}, + file = {C:\\Users\\saram\\Zotero\\storage\\KJVZ37MB\\Middleton and McHugh 2016 Silencing CA3 disrupts temporal coding in the CA1 ensemble.pdf} +} + +@article{Schneidman2006, + title = {Weak Pairwise Correlations Imply Strongly Correlated Network States in a Neural Population}, + volume = {440}, + copyright = {\textcopyright{} 2006 Nature Publishing Group}, + issn = {0028-0836}, + doi = {10.1038/nature04701}, + abstract = {Biological networks have so many possible states that exhaustive sampling is impossible. Successful analysis thus depends on simplifying hypotheses, but experiments on many systems hint that complicated, higher-order interactions among large groups of elements have an important role. Here we show, in the vertebrate retina, that weak correlations between pairs of neurons coexist with strongly collective behaviour in the responses of ten or more neurons. We find that this collective behaviour is described quantitatively by models that capture the observed pairwise correlations but assume no higher-order interactions. These maximum entropy models are equivalent to Ising models, and predict that larger networks are completely dominated by correlation effects. This suggests that the neural code has associative or error-correcting properties, and we provide preliminary evidence for such behaviour. As a first test for the generality of these ideas, we show that similar results are obtained from networks of cultured cortical neurons.}, + language = {en}, + number = {7087}, + journal = {Nature}, + author = {Schneidman, Elad and Berry, Michael J. and Segev, Ronen and Bialek, William}, + month = apr, + year = {2006}, + pages = {1007-1012}, + file = {C:\\Users\\saram\\Zotero\\storage\\4EKCFAQU\\Schneidman 2006-Weak pairwise correlations imply strongly correlated network states in a neural population.pdf} +} + +@article{Padmanabhan2010, + title = {Intrinsic Biophysical Diversity Decorrelates Neuronal Firing While Increasing Information Content}, + volume = {13}, + copyright = {\textcopyright{} 2010 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.}, + issn = {1097-6256}, + doi = {10.1038/nn.2630}, + abstract = {Although examples of variation and diversity exist throughout the nervous system, their importance remains a source of debate. Even neurons of the same molecular type have notable intrinsic differences. Largely unknown, however, is the degree to which these differences impair or assist neural coding. We examined the outputs from a single type of neuron, the mitral cells of the mouse olfactory bulb, to identical stimuli and found that each cell's spiking response was dictated by its unique biophysical fingerprint. Using this intrinsic heterogeneity, diverse populations were able to code for twofold more information than their homogeneous counterparts. In addition, biophysical variability alone reduced pair-wise output spike correlations to low levels. Our results indicate that intrinsic neuronal diversity is important for neural coding and is not simply the result of biological imprecision.}, + language = {en}, + number = {10}, + journal = {Nature Neuroscience}, + author = {Padmanabhan, Krishnan and Urban, Nathaniel N.}, + month = oct, + year = {2010}, + keywords = {neurophysiology,Sensory systems,Neural encoding}, + pages = {1276-1282}, + file = {C:\\Users\\saram\\Zotero\\storage\\B86BQI9B\\Padmanabhan and Urban 2010 Intrinsic biophysical diversity decorrelates neuronal firing while increasing information content.pdf;C:\\Users\\saram\\Zotero\\storage\\RCIXMSJP\\nn.2630-S1.pdf} +} + +@article{Spiegler2016, + title = {Selective {{Activation}} of {{Resting}}-{{State Networks}} Following {{Focal Stimulation}} in a {{Connectome}}-{{Based Network Model}} of the {{Human Brain}}}, + volume = {3}, + issn = {2373-2822}, + doi = {10.1523/ENEURO.0068-16.2016}, + abstract = {When the brain is stimulated, for example, by sensory inputs or goal-oriented tasks, the brain initially responds with activities in specific areas. The subsequent pattern formation of functional networks is constrained by the structural connectivity (SC) of the brain. The extent to which information is processed over short- or long-range SC is unclear. Whole-brain models based on long-range axonal connections, for example, can partly describe measured functional connectivity dynamics at rest. Here, we study the effect of SC on the network response to stimulation. We use a human whole-brain network model comprising long- and short-range connections. We systematically activate each cortical or thalamic area, and investigate the network response as a function of its short- and long-range SC. We show that when the brain is operating at the edge of criticality, stimulation causes a cascade of network recruitments, collapsing onto a smaller space that is partly constrained by SC. We found both short- and long-range SC essential to reproduce experimental results. In particular, the stimulation of specific areas results in the activation of one or more resting-state networks. We suggest that the stimulus-induced brain activity, which may indicate information and cognitive processing, follows specific routes imposed by structural networks explaining the emergence of functional networks. We provide a lookup table linking stimulation targets and functional network activations, which potentially can be useful in diagnostics and treatments with brain stimulation.}, + number = {5}, + journal = {eNeuro}, + author = {Spiegler, Andreas and Hansen, Enrique C. A. and Bernard, Christophe and McIntosh, Anthony R. and Jirsa, Viktor K.}, + month = oct, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\XEJ9VS9M\\Spiegler et al. - 2016 - Selective Activation of Resting-State Networks fol.pdf}, + pmid = {27752540}, + pmcid = {PMC5052665} +} + +@article{Rivera-Borroto2012, + title = {Dunn's Index for Cluster Tendency Assessment of Pharmacological Data Sets}, + volume = {90}, + issn = {0008-4212}, + doi = {10.1139/y2012-002}, + abstract = {Cluster tendency assessment is an important stage in cluster analysis. In this sense, a group of promising techniques named visual assessment of tendency (VAT) has emerged in the literature. The presence of clusters can be detected easily through the direct observation of a dark blocks structure along the main diagonal of the intensity image. Alternatively, if the Dunn's index for a single linkage partition is greater than 1, then it is a good indication of the blocklike structure. In this report, the Dunn's index is applied as a novel measure of tendency on 8 pharmacological data sets, represented by machine-learning-selected molecular descriptors. In all cases, observed values are less than 1, thus indicating a weak tendency for data to form compact clusters. Other results suggest that there is an increasing relationship between the Dunn's index as a measure of cluster separability and the classification accuracy of various cluster algorithms tested on the same data sets.}, + number = {4}, + journal = {Canadian Journal of Physiology and Pharmacology}, + author = {Rivera-Borroto, Oscar Miguel and Rabassa-Guti{\'e}rrez, M{\'o}nica and Grau-{\'A}balo, Ricardo del Coraz{\'o}n and Marrero-Ponce, Yovani and {Garc{\'\i}a-de la Vega}, Jos{\'e} Manuel}, + month = mar, + year = {2012}, + keywords = {cluster tendency,Cluster analysis,VAT techniques,Dunn’s index,pharmacological data sets,clusters overlap,classification accuracy}, + pages = {425-433}, + file = {C:\\Users\\saram\\Zotero\\storage\\B9MIDV2W\\Rivera-Borroto et al. 2012 Dunn’s index for cluster tendency assessment of pharmacological data sets.pdf;C:\\Users\\saram\\Zotero\\storage\\FRPX8FIH\\y2012-002.pdf} +} + +@inproceedings{Schaffer2017, + title = {{{FPGA}}-Based Real-Time Multichannel Neural Dataset Generation}, + doi = {10.1109/ECCTD.2017.8093235}, + abstract = {Miniaturized voltage sensors (electrodes) implanted into the brain tissue are capable of recording the brief electrical impulses (spikes) of neurons located close to the electrode sites. To investigate the activity of individual neurons and discriminate spikes generated by different neurons a technique called spike sorting can be applied on the recorded data. However, the performance of current spike sorting methods is challenged by multichannel neural data recorded with high-density, highchannel count silicon probes developed recently. Our group started to develop an FPGA-based solution to accelerate the clustering of spikes detected in high-channel count neural recordings. It is a crucial step of the development to validate the performance of the clustering algorithm. This can be achieved by using ground truth datasets where the exact time of spikes fired by different single units are known. In this paper we present an FPGA-based architecture for real-time generation of multichannel hybrid ground truth datasets, which will be used for the validation of our FPGA-based clustering algorithm.}, + booktitle = {2017 {{European Conference}} on {{Circuit Theory}} and {{Design}} ({{ECCTD}})}, + author = {Sch{\"a}ffer, L. and Nagy, Z. and Kincses, Z. and Fi{\'a}th, R.}, + month = sep, + year = {2017}, + keywords = {Neurons,Electrodes,Sorting,Clocks,Field programmable gate arrays,Generators,Real-time systems}, + pages = {1-4}, + file = {C:\\Users\\saram\\Zotero\\storage\\G8SICTB8\\Schäffer et al. 2017 FPGA-based real-time multichannel neural dataset generation.pdf} +} + +@article{Morishima2011, + title = {Highly {{Differentiated Projection}}-{{Specific Cortical Subnetworks}}}, + volume = {31}, + copyright = {Copyright \textcopyright{} 2011 the authors 0270-6474/11/3110380-12\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0772-11.2011}, + abstract = {Pyramidal cells in the neocortex are differentiated into several subgroups based on their extracortical projection targets. However, little is known regarding the relative intracortical connectivity of pyramidal neurons specialized for these specific output channels. We used paired recordings and quantitative morphological analysis to reveal distinct synaptic transmission properties, connection patterns, and morphological differentiation correlated with heterogeneous thalamic input to two different groups of pyramidal cells residing in layer 5 (L5) of rat frontal cortex. Retrograde tracers were used to label two projection subtypes in L5: crossed-corticostriatal (CCS) cells projecting to both sides of the striatum, and corticopontine (CPn) cells projecting to the ipsilateral pons. Although CPn/CPn and CCS/CCS pairs had similar connection probabilities, CPn/CPn pairs exhibited greater reciprocal connectivity, stronger unitary synaptic transmission, and more facilitation of paired-pulse responses. These synaptic characteristics were strongly correlated to the projection subtype of the presynaptic neuron. CPn and CCS cells were further differentiated according to their somatic position (L5a and L5b, the latter denser thalamic afferent fibers) and their dendritic/axonal arborizations. Together, our data demonstrate that the pyramidal projection system is segregated into different output channels according to subcortical target and thalamic input, and that information flow within and between these channels is selectively organized.}, + language = {en}, + number = {28}, + journal = {Journal of Neuroscience}, + author = {Morishima, Mieko and Morita, Kenji and Kubota, Yoshiyuki and Kawaguchi, Yasuo}, + month = jul, + year = {2011}, + pages = {10380-10391}, + file = {C:\\Users\\saram\\Zotero\\storage\\GJ2462TW\\Morishima et al. - 2011 - Highly Differentiated Projection-Specific Cortical.pdf}, + pmid = {21753015} +} + +@article{Otsuka2008, + title = {Firing-{{Pattern}}-{{Dependent Specificity}} of {{Cortical Excitatory Feed}}-{{Forward Subnetworks}}}, + volume = {28}, + copyright = {Copyright \textcopyright{} 2008 Society for Neuroscience 0270-6474/08/2811186-10\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.1921-08.2008}, + abstract = {The cortical circuit includes networks of highly interconnected pyramidal neurons. Here, we investigated whether pyramidal cells form subnetworks depending on pyramidal subtypes. We classified layer V (L5) pyramidal cells in rat frontal cortex into three physiological subtypes based on the presence (SA-d type) or absence (SA type) of an initial burst in neurons displaying slowly adapting spike trains, or fast spike frequency adaptation (FA type) against current pulse injections. Pyramidal cells projecting to the particular subcortical areas were correlated with the physiological subtypes. Focal glutamate stimulation of a L2/3 pyramidal cell induced EPSCs in SA and SA-d cells more frequently than in FA cells. FA cells in upper L5 received more inputs from the upper L2/3, and those in lower L5 received inputs from cells in lower L2/3, suggesting topographic interlaminar projections to FA cells. Dual recordings from L5 pyramidal cells revealed that common input probability that two L5 cells share inputs from a L2/3 cell was high in cell pairs of the same subtypes, compared with those in different subtype pairs. Furthermore, the common input probability was highly selective when cell pairs of the same subtypes, but not different subtypes, had connections between them. Our results suggest that L2/3 pyramidal cells selectively innervate L5 cells, depending on their firing subtypes.}, + language = {en}, + number = {44}, + journal = {Journal of Neuroscience}, + author = {Otsuka, Takeshi and Kawaguchi, Yasuo}, + month = oct, + year = {2008}, + keywords = {pyramidal cell,connection specificity,cortex,extracortical projection,firing pattern,interlaminar connection}, + pages = {11186-11195}, + pmid = {18971461} +} + +@article{Morishima2017, + title = {Segregated {{Excitatory}}\textendash{}{{Inhibitory Recurrent Subnetworks}} in {{Layer}} 5 of the {{Rat Frontal Cortex}}}, + volume = {27}, + issn = {1047-3211}, + doi = {10.1093/cercor/bhx276}, + abstract = {A prominent feature of neocortical pyramidal cells (PCs) is their numerous projections to diverse brain areas. In layer 5 (L5) of the rat frontal cortex, there are 2 major subtypes of PCs that differ in their long-range axonal projections, corticopontine (CPn) cells and crossed corticostriatal (CCS) cells. The outputs of these L5 PCs can be regulated by feedback inhibition from neighboring cortical GABAergic cells. Two major subtypes of GABAergic cells are parvalbumin (PV)-positive and somatostatin (SOM)-positive cells. PV cells have a fast-spiking (FS) firing pattern, while SOM cells have a low threshold spike (LTS) and regular spiking. In this study, we found that the 2 PC subtypes in L5 selectively make recurrent connections with LTS cells. The connection patterns correlated with the morphological and physiological diversity of LTS cells. LTS cells with high input resistance (Ri) exhibited more compact dendrites and more rebound spikes than LTS cells with low Ri, which had vertically elongated dendrites. LTS subgroups differently inhibited the PC subtypes, although FS cells made nonselective connections with both projection subtypes. These results demonstrate a novel recurrent network of inhibitory and projection-specific excitatory neurons within the neocortex.}, + number = {12}, + journal = {Cerebral Cortex}, + author = {Morishima, Mieko and Kobayashi, Kenta and Kato, Shigeki and Kobayashi, Kazuto and Kawaguchi, Yasuo}, + month = dec, + year = {2017}, + pages = {5846-5857}, + file = {C:\\Users\\saram\\Zotero\\storage\\KDDQ4KCX\\bhx276.pdf} +} + +@article{Morishima2006, + title = {Recurrent {{Connection Patterns}} of {{Corticostriatal Pyramidal Cells}} in {{Frontal Cortex}}}, + volume = {26}, + copyright = {Copyright \textcopyright{} 2006 Society for Neuroscience 0270-6474/06/264394-12\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0252-06.2006}, + abstract = {Corticostriatal pyramidal cells are heterogeneous in the frontal cortex. Here, we show that subpopulations of corticostriatal neurons in the rat frontal cortex are selectively connected with each other based on their subcortical targets. Using paired recordings of retrogradely labeled cells, we investigated the synaptic connectivity between two projection cell types: those projecting to the pons [corticopontine (CPn) cell], often with collaterals to the striatum, and those projecting to both sides of the striatum but not to the pons [crossed corticostriatal (CCS) cell]. The two types were morphologically differentiated in regard to their apical tufts. The dendritic morphologies of CCS cells were correlated with their somatic depth within the cortex. CCS cells had reciprocal synaptic connections with each other and also provided synaptic input to CPn cells. However, connections from CPn to CCS cells were rarely found, even in pairs showing CCS to CPn connectivity. Additionally, CCS cells preferentially innervated the basal dendrites of other CCS cells but made contacts onto both the basal and apical dendrites of CPn cells. The amplitude of synaptic responses was to some extent correlated with the contact site number. Ratios of the EPSC amplitude to the contact number tended to be larger in the CCS to CCS connection. Therefore, our data demonstrate that these two types of corticostriatal cells distinct in their dendritic morphologies show directional and domain-dependent preferences in their synaptic connectivity.}, + language = {en}, + number = {16}, + journal = {Journal of Neuroscience}, + author = {Morishima, Mieko and Kawaguchi, Yasuo}, + month = apr, + year = {2006}, + keywords = {pyramidal cell,apical dendrite,frontal cortex,pons,postsynaptic current,striatum}, + pages = {4394-4405}, + file = {C:\\Users\\saram\\Zotero\\storage\\CYPJ2TT7\\Morishima and Kawaguchi - 2006 - Recurrent Connection Patterns of Corticostriatal P.pdf}, + pmid = {16624959} +} + +@article{Kim2016, + title = {Synaptic {{Organization}} of the {{Neuronal Circuits}} of the {{Claustrum}}}, + volume = {36}, + copyright = {Copyright \textcopyright{} 2016 the authors 0270-6474/16/360773-12\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.3643-15.2016}, + abstract = {The claustrum, a poorly understood subcortical structure located between the cortex and the striatum, forms widespread connections with almost all cortical areas, but the cellular organization of claustral circuits remains largely unknown. Based primarily on anatomical data, it has been proposed that the claustrum integrates activity across sensory modalities. However, the extent to which the synaptic organization of claustral circuits supports this integration is unclear. Here, we used paired whole-cell recordings and optogenetic approaches in mouse brain slices to determine the cellular organization of the claustrum. We found that unitary synaptic connections among claustrocortical (ClaC) neurons were rare. In contrast, parvalbumin-positive (PV) inhibitory interneurons were highly interconnected with both chemical and electrical synapses. In addition, ClaC neurons and PV interneurons formed frequent synaptic connections. As suggested by anatomical data, we found that corticoclaustral afferents formed monosynaptic connections onto both ClaC neurons and PV interneurons. However, the responses to cortical input were comparatively stronger in PV interneurons. Consistent with this overall circuit organization, activation of corticoclaustral afferents generated monosynaptic excitatory responses as well as disynaptic inhibitory responses in ClaC neurons. These data indicate that recurrent excitatory circuits within the claustrum alone are unlikely to integrate across multiple sensory modalities. Rather, this cellular organization is typical of circuits sensitive to correlated inputs. Although single ClaC neurons may integrate corticoclaustral input from different cortical regions, these results are consistent with more recent proposals implicating the claustrum in detecting sensory novelty or in amplifying correlated cortical inputs to coordinate the activity of functionally related cortical regions. +SIGNIFICANCE STATEMENT The function of the claustrum, a brain nucleus found in mammals, remains poorly understood. It has been proposed, based primarily on anatomical data, that claustral circuits play an integrative role and contribute to multimodal sensory integration. Here we show that the principal neurons of the claustrum, claustrocortical (ClaC) projection neurons, rarely form synaptic connections with one another and are unlikely to contribute to broad integration within the claustrum. We show that, although single ClaC neurons may integrate corticoclaustral inputs carrying information for different sensory modalities, the synaptic organization of ClaC neurons, local parvalbumin-positive interneurons within the claustrum, and cortical afferents is also consistent with recent proposals that the claustrum plays a role in detecting salient stimuli or amplifying correlated cortical inputs.}, + language = {en}, + number = {3}, + journal = {Journal of Neuroscience}, + author = {Kim, Juhyun and Matney, Chanel J. and Roth, Richard H. and Brown, Solange P.}, + month = jan, + year = {2016}, + keywords = {cortex,channelrhodopsin-2,claustrocortical,claustrum,parvalbumin}, + pages = {773-784}, + file = {C:\\Users\\saram\\Zotero\\storage\\8DBH3LIK\\Kim et al. - 2016 - Synaptic Organization of the Neuronal Circuits of .pdf}, + pmid = {26791208} +} + +@article{Brown2009a, + title = {Cell-Type Identity: A Key to Unlocking the Function of Neocortical Circuits}, + volume = {19}, + issn = {0959-4388}, + shorttitle = {Cell-Type Identity}, + doi = {10.1016/j.conb.2009.07.011}, + abstract = {A central tenet of neuroscience is that the precise patterns of connectivity among neurons in a given brain area underlie its function. However, assigning any aspect of perception or behavior to the wiring of local circuits has been challenging. Here, we review recent work in sensory neocortex that demonstrates the power of identifying specific cell types when investigating the functional organization of brain circuits. These studies indicate that knowing the identity of both the pre- and postsynaptic cell type is key when analyzing neocortical circuits. Furthermore, identifying the circuit organization of particular cell types in the neocortex allows the recording and manipulation of each cell type's activity and the direct testing of its functional role in perception and behavior.}, + number = {4}, + journal = {Current opinion in neurobiology}, + author = {Brown, Solange P. and Hestrin, Shaul}, + month = aug, + year = {2009}, + pages = {415-421}, + file = {C:\\Users\\saram\\Zotero\\storage\\KM4TW4Y7\\Brown and Hestrin - 2009 - Cell-type identity a key to unlocking the functio.pdf}, + pmid = {19674891}, + pmcid = {PMC2739254} +} + +@article{Brown2009, + title = {Intracortical Circuits of Pyramidal Neurons Reflect Their Long-Range Axonal Targets}, + volume = {457}, + copyright = {2009 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature07658}, + abstract = {Using quadruple whole-cell recordings, this study tested for synaptic connections among heterogeneous populations of cortical excitatory cells (pyramidal neurons), and found highly connected local circuits of neurons, each reflecting the neurons' long-range projections to a different brain region. The findings illustrate a diversity of dense cortical microcircuitry associated with the variety of information streams that produce our repertoire of behaviours and internal states.$<$/p$>$}, + language = {En}, + number = {7233}, + journal = {Nature}, + author = {Brown, Solange P. and Hestrin, Shaul}, + month = feb, + year = {2009}, + pages = {1133}, + file = {C:\\Users\\saram\\Zotero\\storage\\6MASQF3K\\Brown and Hestrin - 2009 - Intracortical circuits of pyramidal neurons reflec.pdf} +} + +@article{Lein2011, + title = {Acute {{Hippocampal Slice Preparation}} and {{Hippocampal Slice Cultures}}}, + volume = {758}, + issn = {1064-3745}, + doi = {10.1007/978-1-61779-170-3_8}, + abstract = {A major advantage of hippocampal slice preparations is that the cytoarchitecture and synaptic circuits of the hippocampus are largely retained. In neurotoxicology research, organotypic hippocampal slices have mostly been used as acute ex vivo preparations for investigating the effects of neurotoxic chemicals on synaptic function. More recently, hippocampal slice cultures, which can be maintained for several weeks to several months in vitro, have been employed to study how neurotoxic chemicals influence the structural and functional plasticity in hippocampal neurons. This chapter provides protocols for preparing hippocampal slices to be used acutely for electrophysiological measurements using glass microelectrodes or microelectrode arrays or to be cultured for morphometric assessments of individual neurons labeled using biolistics.}, + journal = {Methods in molecular biology (Clifton, N.J.)}, + author = {Lein, Pamela J. and Barnhart, Christopher D. and Pessah, Isaac N.}, + year = {2011}, + pages = {115-134}, + file = {C:\\Users\\saram\\Zotero\\storage\\F4MJR2PT\\Lein et al. - 2011 - Acute Hippocampal Slice Preparation and Hippocampa.pdf}, + pmid = {21815062}, + pmcid = {PMC3499947} +} + +@article{Buskila2014, + title = {Extending the Viability of Acute Brain Slices}, + volume = {4}, + copyright = {2014 Nature Publishing Group}, + issn = {2045-2322}, + doi = {10.1038/srep05309}, + abstract = {Extending the viability of acute brain slices}, + language = {En}, + journal = {Scientific Reports}, + author = {Buskila, Yossi and Breen, Paul P. and Tapson, Jonathan and van Schaik, Andr{\'e} and Barton, Matthew and Morley, John W.}, + month = jun, + year = {2014}, + pages = {5309}, + file = {C:\\Users\\saram\\Zotero\\storage\\MT2WB7VC\\Buskila et al. - 2014 - Extending the viability of acute brain slices.pdf} +} + +@article{Tang2016, + title = {In {{Vitro Assessment Reveals Parameters}}-{{Dependent Modulation}} on {{Excitability}} and {{Functional Connectivity}} of {{Cerebellar Slice}} by {{Repetitive Transcranial Magnetic Stimulation}}}, + volume = {6}, + issn = {2045-2322}, + doi = {10.1038/srep23420}, + abstract = {Repetitive transcranial magnetic stimulation (rTMS) is an increasingly common technique used to selectively modify neural excitability and plasticity. There is still controversy concerning the cortical response to rTMS of different frequencies. In this study, a novel in vitro paradigm utilizing the Multi-Electrodes Array (MEA) system and acute cerebellar slicing is described. In a controllable environment that comprises perfusion, incubation, recording and stimulation modules, the spontaneous single-unit spiking activity in response to rTMS of different frequencies and powers was directly measured and analyzed. Investigation using this in vitro paradigm revealed frequency-dependent modulation upon the excitability and functional connectivity of cerebellar slices. The 1-Hz rTMS sessions induced short-term inhibition or lagged inhibition, whereas 20-Hz sessions induced excitation. The level of modulation is influenced by the value of power. However the long-term response fluctuated without persistent direction. The choice of evaluation method may also interfere with the interpretation of modulation direction. Furthermore, both short-term and long-term functional connectivity was strengthened by 1-Hz rTMS and weakened by 20-Hz rTMS.}, + journal = {Scientific Reports}, + author = {Tang, Rongyu and Zhang, Guanghao and Weng, Xiechuan and Han, Yao and Lang, Yiran and Zhao, Yuwei and Zhao, Xiaobo and Wang, Kun and Lin, Qiuxia and Wang, Changyong}, + month = mar, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\6EZTYLGV\\Tang et al. - 2016 - In Vitro Assessment Reveals Parameters-Dependent M.pdf}, + pmid = {27000527}, + pmcid = {PMC4802318} +} + +@article{Killian2016, + title = {A {{Device}} for {{Long}}-{{Term Perfusion}}, {{Imaging}}, and {{Electrical Interfacing}} of {{Brain Tissue In}} Vitro}, + volume = {10}, + issn = {1662-4548}, + doi = {10.3389/fnins.2016.00135}, + abstract = {Distributed microelectrode array (MEA) recordings from consistent, viable, $\geq$500 $\mu$m thick tissue preparations over time periods from days to weeks may aid in studying a wide range of problems in neurobiology that require in vivo-like organotypic morphology. Existing tools for electrically interfacing with organotypic slices do not address necrosis that inevitably occurs within thick slices with limited diffusion of nutrients and gas, and limited removal of waste. We developed an integrated device that enables long-term maintenance of thick, functionally active, brain tissue models using interstitial perfusion and distributed recordings from thick sections of explanted tissue on a perforated multi-electrode array. This novel device allows for automated culturing, in situ imaging, and extracellular multi-electrode interfacing with brain slices, 3-D cell cultures, and potentially other tissue culture models. The device is economical, easy to assemble, and integrable with standard electrophysiology tools. We found that convective perfusion through the culture thickness provided a functional benefit to the preparations as firing rates were generally higher in perfused cultures compared to their respective unperfused controls. This work is a step toward the development of integrated tools for days-long experiments with more consistent, healthier, thicker, and functionally more active tissue cultures with built-in distributed electrophysiological recording and stimulation functionality. The results may be useful for the study of normal processes, pathological conditions, and drug screening strategies currently hindered by the limitations of acute (a few hours long) brain slice preparations.}, + journal = {Frontiers in Neuroscience}, + author = {Killian, Nathaniel J. and Vernekar, Varadraj N. and Potter, Steve M. and Vukasinovic, Jelena}, + month = mar, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\8EV6F796\\Killian et al. - 2016 - A Device for Long-Term Perfusion, Imaging, and Ele.pdf}, + pmid = {27065793}, + pmcid = {PMC4815559} +} + +@article{Huang2013, + title = {Physiological Temperature during Brain Slicing Enhances the Quality of Acute Slice Preparations}, + volume = {7}, + issn = {1662-5102}, + doi = {10.3389/fncel.2013.00048}, + abstract = {We demonstrate that brain dissection and slicing using solutions warmed to near-physiological temperature (\textasciitilde{} +34$^\circ$C), greatly enhance slice quality without affecting intrinsic electrophysiological properties of the neurons. Improved slice quality is seen not only when using young ($<$1 month), but also mature ($>$2.5 month) mice. This allows easy in vitro patch-clamp experimentation using adult deep cerebellar nuclear slices, which until now have been considered very difficult. As proof of the concept, we compare intrinsic properties of cerebellar nuclear neurons in juvenile ($<$1 month) and adult (up to 7 months) mice, and confirm that no significant developmental changes occur after the fourth postnatal week. The enhanced quality of brain slices from old animals facilitates experimentation on age-related disorders as well as optogenetic studies requiring long transfection periods.}, + journal = {Frontiers in Cellular Neuroscience}, + author = {Huang, Shiwei and Uusisaari, Marylka Y.}, + month = apr, + year = {2013}, + file = {C:\\Users\\saram\\Zotero\\storage\\N2VZUJT5\\Huang and Uusisaari - 2013 - Physiological temperature during brain slicing enh.pdf}, + pmid = {23630465}, + pmcid = {PMC3632751} +} + +@article{Kim2014, + title = {Layer 6 {{Corticothalamic Neurons Activate}} a {{Cortical Output Layer}}, {{Layer}} 5a}, + volume = {34}, + issn = {0270-6474}, + doi = {10.1523/JNEUROSCI.1325-14.2014}, + abstract = {Layer 6 corticothalamic neurons are thought to modulate incoming sensory information via their intracortical axons targeting the major thalamorecipient layer of the neocortex, layer 4, and via their long-range feedback projections to primary sensory thalamic nuclei. However, anatomical reconstructions of individual layer 6 corticothalamic (L6 CT) neurons include examples with axonal processes ramifying within layer 5, and the relative input of the overall population of L6 CT neurons to layers 4 and 5 is not well understood. We compared the synaptic impact of L6 CT cells on neurons in layers 4 and 5. We found that the axons of L6 CT neurons densely ramified within layer 5a in both visual and somatosensory cortices of the mouse. Optogenetic activation of corticothalamic neurons generated large EPSPs in pyramidal neurons in layer 5a. In contrast, excitatory neurons in layer 4 exhibited weak excitation or disynaptic inhibition. Fast-spiking parvalbumin-positive cells in both layer 5a and layer 4 were also strongly activated by L6 CT neurons. The overall effect of L6 CT activation was to suppress layer 4 while eliciting action potentials in layer 5a pyramidal neurons. Together, our data indicate that L6 CT neurons strongly activate an output layer of the cortex.}, + number = {29}, + journal = {The Journal of Neuroscience}, + author = {Kim, Juhyun and Matney, Chanel J. and Blankenship, Aaron and Hestrin, Shaul and Brown, Solange P.}, + month = jul, + year = {2014}, + pages = {9656-9664}, + file = {C:\\Users\\saram\\Zotero\\storage\\CPE5DDZH\\Kim et al. - 2014 - Layer 6 Corticothalamic Neurons Activate a Cortica.pdf}, + pmid = {25031405}, + pmcid = {PMC4099543} +} + +@article{Vendramin2010, + title = {Relative Clustering Validity Criteria: {{A}} Comparative Overview}, + volume = {3}, + issn = {1932-1872}, + shorttitle = {Relative Clustering Validity Criteria}, + doi = {10.1002/sam.10080}, + abstract = {Many different relative clustering validity criteria exist that are very useful in practice as quantitative measures for evaluating the quality of data partitions, and new criteria have still been proposed from time to time. These criteria are endowed with particular features that may make each of them able to outperform others in specific classes of problems. In addition, they may have completely different computational requirements. Then, it is a hard task for the user to choose a specific criterion when he or she faces such a variety of possibilities. For this reason, a relevant issue within the field of clustering analysis consists of comparing the performances of existing validity criteria and, eventually, that of a new criterion to be proposed. In spite of this, the comparison paradigm traditionally adopted in the literature is subject to some conceptual limitations. The present paper describes an alternative, possibly complementary methodology for comparing clustering validity criteria and uses it to make an extensive comparison of the performances of 40 criteria over a collection of 962,928 partitions derived from five well-known clustering algorithms and 1080 different data sets of a given class of interest. A detailed review of the relative criteria under investigation is also provided that includes an original comparative asymptotic analysis of their computational complexities. This work is intended to be a complement of the classic study reported in 1985 by Milligan and Cooper as well as a thorough extension of a preliminary paper by the authors themselves. Copyright \textcopyright{} 2010 Wiley Periodicals, Inc. Statistical Analysis and Data Mining 3: 209-235, 2010}, + language = {en}, + number = {4}, + journal = {Statistical Analysis and Data Mining}, + author = {Vendramin, Lucas and Campello, Ricardo J. G. B. and Hruschka, Eduardo R.}, + month = aug, + year = {2010}, + keywords = {clustering,relative criteria,validation}, + pages = {209-235}, + file = {C:\\Users\\saram\\Zotero\\storage\\4QITU2LF\\d3b55fb94827c4df45e9fc67c55a7d90d00b.pdf} +} + +@article{Csicsvari2003, + title = {Massively {{Parallel Recording}} of {{Unit}} and {{Local Field Potentials With Silicon}}-{{Based Electrodes}}}, + volume = {90}, + copyright = {Copyright \textcopyright{} 2003 by the American Physiological Society}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00116.2003}, + abstract = {Parallel recording of neuronal activity in the behaving animal is a prerequisite for our understanding of neuronal representation and storage of information. Here we describe the development of micro-machined silicon microelectrode arrays for unit and local field recordings. The two-dimensional probes with 96 or 64 recording sites provided high-density recording of unit and field activity with minimal tissue displacement or damage. The on-chip active circuit eliminated movement and other artifacts and greatly reduced the weight of the headgear. The precise geometry of the recording tips allowed for the estimation of the spatial location of the recorded neurons and for high-resolution estimation of extracellular current source density. Action potentials could be simultaneously recorded from the soma and dendrites of the same neurons. Silicon technology is a promising approach for high-density, high-resolution sampling of neuronal activity in both basic research and prosthetic devices.}, + language = {en}, + number = {2}, + journal = {Journal of Neurophysiology}, + author = {Csicsvari, Jozsef and Henze, Darrell A. and Jamieson, Brian and Harris, Kenneth D. and Sirota, Anton and Barth{\'o}, P{\'e}ter and Wise, Kensall D. and Buzs{\'a}ki, Gy{\"o}rgy}, + month = aug, + year = {2003}, + pages = {1314-1323}, + file = {C:\\Users\\saram\\Zotero\\storage\\LKB5HRYR\\1314.full.pdf}, + pmid = {12904510} +} + +@article{Csicsvari1998, + title = {Reliability and {{State Dependence}} of {{Pyramidal Cell}}\textendash{}{{Interneuron Synapses}} in the {{Hippocampus}}: An {{Ensemble Approach}} in the {{Behaving Rat}}}, + volume = {21}, + issn = {0896-6273}, + shorttitle = {Reliability and {{State Dependence}} of {{Pyramidal Cell}}\textendash{}{{Interneuron Synapses}} in the {{Hippocampus}}}, + doi = {10.1016/S0896-6273(00)80525-5}, + abstract = {Spike transmission probability between pyramidal cells and interneurons in the CA1 pyramidal layer was investigated in the behaving rat by the simultaneous recording of neuronal ensembles. Population synchrony was strongest during sharp wave (SPW) bursts. However, the increase was three times larger for pyramidal cells than for interneurons. The contribution of single pyramidal cells to the discharge of interneurons was often large (up to 0.6 probability), as assessed by the presence of significant ($<$3 ms) peaks in the cross-correlogram. Complex-spike bursts were more effective than single spikes. Single cell contribution was higher between SPW bursts than during SPWs or theta activity. Hence, single pyramidal cells can reliably discharge interneurons, and the probability of spike transmission is behavior dependent.}, + number = {1}, + journal = {Neuron}, + author = {Csicsvari, Jozsef and Hirase, Hajime and Czurko, Andras and Buzs{\'a}ki, Gy{\"o}rgy}, + month = jul, + year = {1998}, + pages = {179-189}, + file = {C:\\Users\\saram\\Zotero\\storage\\EGK8KR7Y\\Csicsvari et al. 1998 Reliability and State Dependence of Pyramidal Cell–Interneuron Synapses in the Hippocampus an Ensemble Approach in the Behaving Rat.pdf} +} + +@article{Meyer2017, + title = {The Effect of Single Pyramidal Neuron Firing across and within Layers in Mouse {{V1}}}, + copyright = {\textcopyright{} 2017, Posted by Cold Spring Harbor Laboratory. The copyright holder for this pre-print is the author. All rights reserved. The material may not be redistributed, re-used or adapted without the author's permission.}, + doi = {10.1101/232603}, + abstract = {The influence of cortical cell spiking activity on nearby cells has been studied extensively in vitro. Less is known, however, about the impact of single cell firing on local cortical networks in vivo. In a pioneering study, Kwan et al. (Kwan et al., 2012) reported that in mouse layer 2/3 (L2/3), under anesthesia, stimulating a single pyramidal cell recruits \textasciitilde{}1.7\% of neighboring pyramidal units. Here we employ two-photon calcium imaging, in conjunction with single-cell patch clamp stimulation, to probe, in both the awake and lightly anesthetized states, how i) activating single L2/3 pyramidal neurons recruits neighboring units within L2/3 and from layer 4 (L4) to L2/3, and whether ii) activating single pyramidal neurons changes population activity in local circuit. To do this, it was essential to develop an algorithm capable of quantifying how sensitive the calcium signal is at detecting effectively recruited units (followers). This algorithm allowed us to estimate the chance of detecting a follower as a function of the probability that an epoch of stimulation elicits one extra action potential (AP) in the follower cell. Using this approach, we found only a small fraction ($<$0.75\%) of L2/3 cells to be significantly activated within a radius of \textasciitilde{}200 microns from a stimulated neighboring L2/3 pyramidal cell. This fraction did not change significantly in the awake versus the lightly anesthetized state, nor when stimulating L2/3 versus underlying L4 pyramidal neurons. These numbers are in general agreement with, though lower than, the percentage of neighboring cells (2.1\%) reported by Kwan et al. to be activated upon stimulating single L2/3 pyramidal neurons under anesthesia (Kwan et al., 2012). Interestingly, despite the small number of individual units found to be reliably driven, we did observe a modest but significant elevation in aggregate population responses compared to sham stimulation. This underscores the distributed impact that single cell stimulation has on neighboring microcircuit responses, revealing only a small minority of relatively strongly connected partners.}, + language = {en}, + journal = {bioRxiv}, + author = {Meyer, Jochen F. and Golshani, Peyman and Smirnakis, Stelios}, + month = dec, + year = {2017}, + pages = {232603}, + file = {C:\\Users\\saram\\Zotero\\storage\\FPWH2CXG\\Meyer et al. 2017 The effect of single pyramidal neuron firing across and within layers in mouse V1.pdf} +} + +@article{Sirota2008, + title = {Entrainment of Neocortical Neurons and Gamma Oscillations by the Hippocampal Theta Rhythm}, + volume = {60}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2008.09.014}, + abstract = {Although it has been tacitly assumed that the hippocampus exerts an influence on neocortical networks, the mechanisms of this process are not well understood. We examined whether and how hippocampal theta oscillations affect neocortical assembly patterns by recording populations of single cells and transient gamma oscillations in multiple cortical regions, including the somatosensory area and prefrontal cortex in behaving rats and mice. Laminar analysis of neocortical gamma bursts revealed multiple gamma oscillators of varying frequency and location, which were spatially confined and synchronized local groups of neurons. A significant fraction of putative pyramidal cells and interneurons as well as localized gamma oscillations in all recorded neocortical areas were phase-biased by the hippocampal theta rhythm. We hypothesize that temporal coordination of neocortical gamma oscillators by hippocampal theta is a mechanism by which information contained in spatially widespread neocortical assemblies can be synchronously transferred to the associative networks of the hippocampus.}, + number = {4}, + journal = {Neuron}, + author = {Sirota, Anton and Montgomery, Sean and Fujisawa, Shigeyoshi and Isomura, Yoshikazu and Zugaro, Michael and Buzs{\'a}ki, Gy{\"o}rgy}, + month = nov, + year = {2008}, + pages = {683-697}, + file = {C:\\Users\\saram\\Zotero\\storage\\AFG9NN2V\\Sirota et al. 2008 Entrainment of neocortical neurons and gamma oscillations by the hippocampal theta rhythm.pdf;C:\\Users\\saram\\Zotero\\storage\\QUZ2ZRZ3\\NIHMS83122-supplement-01.pdf}, + pmid = {19038224}, + pmcid = {PMC2640228} +} + +@article{Stark2009, + title = {Unbiased Estimation of Precise Temporal Correlations between Spike Trains}, + volume = {179}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2008.12.029}, + abstract = {A key issue in systems neuroscience is the contribution of precise temporal inter-neuronal interactions to information processing in the brain, and the main analytical tool used for studying pair-wise interactions is the cross-correlation histogram (CCH). Although simple to generate, a CCH is influenced by multiple factors in addition to precise temporal correlations between two spike trains, thus complicating its interpretation. A Monte-Carlo-based technique, the jittering method, has been suggested to isolate the contribution of precise temporal interactions to neural information processing. Here, we show that jittering spike trains is equivalent to convolving the CCH derived from the original trains with a finite window and using a Poisson distribution to estimate probabilities. Both procedures over-fit the original spike trains and therefore the resulting statistical tests are biased and have low power. We devise an alternative method, based on convolving the CCH with a partially hollowed window, and illustrate its utility using artificial and real spike trains. The modified convolution method is unbiased, has high power, and is computationally fast. We recommend caution in the use of the jittering method and in the interpretation of results based on it, and suggest using the modified convolution method for detecting precise temporal correlations between spike trains.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Stark, Eran and Abeles, Moshe}, + month = apr, + year = {2009}, + keywords = {Correlation analysis,Extra-cellular recordings,Jittering,Neuronal interactions,Poisson distribution,Resampling methods,Spike trains,Temporal precision}, + pages = {90-100}, + file = {C:\\Users\\saram\\Zotero\\storage\\ADYAP6WJ\\Stark and Abeles 2009 Unbiased estimation of precise temporal correlations between spike trains.pdf} +} + +@article{Constantinidis2002, + title = {Correlated {{Discharges Among Putative Pyramidal Neurons}} and {{Interneurons}} in the {{Primate Prefrontal Cortex}}}, + volume = {88}, + issn = {0022-3077}, + doi = {10.1152/jn.00188.2002}, + abstract = {Neurophysiological recordings have revealed that the discharges of nearby cortical cells are positively correlated in time scales that range from millisecond synchronization of action potentials to much slower firing rate co-variations, evident in rates averaged over hundreds of milliseconds. The presence of correlated firing can offer insights into the patterns of connectivity between neurons; however, few models of population coding have taken account of the neuronal diversity present in cerebral cortex, notably a distinction between inhibitory and excitatory cells. We addressed this question in the monkey dorsolateral prefrontal cortex by recording neuronal activity from multiple micro-electrodes, typically spaced 0.2\textendash{}0.3 mm apart. Putative excitatory and inhibitory neurons were distinguished based on their action potential waveform and baseline discharge rate. We tested each pair of simultaneously recorded neurons for presence of significant cross-correlation peaks and measured the correlation of their averaged firing rates in successive trials. When observed, cross-correlation peaks were centered attime 0, indicating synchronous firing consistent with two neurons receiving common input. Discharges in pairs of putative inhibitory interneurons were found to be significantly more strongly correlated than in pairs of putative excitatory cells. The degree of correlated firing was also higher for neurons with similar spatial receptive fields and neurons active in the same epochs of the behavioral task. These factors were important in predicting the strength of both short time scale ($<$5 ms) correlations and of trial-to-trial discharge rate covariations. Correlated firing was only marginally accounted for by motor and behavioral variations between trials. Our findings suggest that nearby inhibitory neurons are more tightly synchronized than excitatory ones and account for much of the correlated discharges commonly observed in undifferentiated cortical networks. In contrast, the discharge of pyramidal neurons, the sole projection cells of the cerebral cortex, appears largely independent, suggesting that correlated firing may be a property confined within local circuits and only to a lesser degree propagated to distant cortical areas and modules.}, + number = {6}, + journal = {Journal of Neurophysiology}, + author = {Constantinidis, Christos and Goldman-Rakic, Patricia S.}, + month = dec, + year = {2002}, + pages = {3487-3497}, + file = {C:\\Users\\saram\\Zotero\\storage\\KVPIYQ5M\\Constantinidis and Goldman-Rakic 2002 Correlated Discharges Among Putative Pyramidal Neurons and Interneurons in the Primate Prefrontal Cortex.pdf} +} + +@article{Constantinidis2001, + title = {Coding {{Specificity}} in {{Cortical Microcircuits}}: {{A Multiple}}-{{Electrode Analysis}} of {{Primate Prefrontal Cortex}}}, + volume = {21}, + copyright = {Copyright \textcopyright{} 2001 Society for Neuroscience}, + issn = {0270-6474, 1529-2401}, + shorttitle = {Coding {{Specificity}} in {{Cortical Microcircuits}}}, + abstract = {Neurons with directional specificities are active in the prefrontal cortex (PFC) during tasks that require spatial working memory. Although the coordination of neuronal activity in PFC is thought to be maintained by a network of recurrent connections, direct physiological evidence regarding such networks is sparse. To gain insight into the functional organization of the working memory system in vivo, we recorded simultaneously from multiple neurons spaced 0.2\textendash{}1 mm apart in monkeys performing an oculomotor delayed response task. We used cross-correlation analysis and characterized the effective connectivity between neurons in relation to their spatial and temporal response properties. The majority of narrow ($<$5 msec) cross-correlation peaks indicated common input and were most often observed between pairs of neurons within 0.3 mm of each other. Neurons recorded at these distances represented the full range of spatial locations, suggesting that the entire visual hemifield is represented in modules of corresponding dimensions. Nearby neurons could be activated in any epoch of the behavioral task (stimulus presentation, delay, response). The incidence and strength of cross-correlation, however, was highest among cells sharing similar spatial tuning and similar temporal profiles of activation across task epochs. The dependence of correlated discharge on the functional properties of neurons was observed both when we analyzed firing from the task period as well as from baseline fixation. Our results suggest that the coding specificity of individual neurons extends to the local circuits of which they are part.}, + language = {en}, + number = {10}, + journal = {Journal of Neuroscience}, + author = {Constantinidis, Christos and Franowicz, Matthew N. and Goldman-Rakic, Patricia S.}, + month = may, + year = {2001}, + keywords = {cross-correlation,learning and memory,prefrontal cortex,primate,saccade,working memory}, + pages = {3646-3655}, + file = {C:\\Users\\saram\\Zotero\\storage\\6HCJYEUP\\Constantinidis et al. 2001 Coding Specificity in Cortical Microcircuits A Multiple-Electrode Analysis of Primate Prefrontal Cortex.pdf}, + pmid = {11331394} +} + +@article{Armananzas2015, + title = {Towards {{Automatic Classification}} of {{Neurons}}}, + volume = {38}, + issn = {0166-2236}, + doi = {10.1016/j.tins.2015.02.004}, + abstract = {The classification of neurons into types has been much debated since the inception of modern neuroscience. Recent experimental advances are accelerating the pace of data collection. The resulting information growth of morphological, physiological, and molecular properties encourages efforts to automate neuronal classification by powerful machine learning techniques. We review state-of-the-art analysis approaches and availability of suitable data and resources, highlighting prominent challenges and opportunities. The effective solution of the neuronal classification problem will require continuous development of computational methods, high-throughput data production, and systematic metadata organization to enable cross-lab integration.}, + number = {5}, + journal = {Trends in neurosciences}, + author = {Arma{\~n}anzas, Rub{\'e}n and Ascoli, Giorgio A.}, + month = may, + year = {2015}, + pages = {307-318}, + file = {C:\\Users\\saram\\Zotero\\storage\\2XISU7YY\\Armañanzas and Ascoli 2015 Towards Automatic Classification of Neurons.pdf;C:\\Users\\saram\\Zotero\\storage\\67CSJ8WF\\Ascoli, 2015, Towards the automatic classification of neurons.pdf}, + pmid = {25765323}, + pmcid = {PMC4417416} +} + +@incollection{Minxha2018, + address = {New York, NY}, + title = {Surgical and {{Electrophysiological Techniques}} for {{Single}}-{{Neuron Recordings}} in {{Human Epilepsy Patients}}}, + volume = {134}, + isbn = {978-1-4939-7548-8 978-1-4939-7549-5}, + booktitle = {Extracellular {{Recording Approaches}}}, + publisher = {{Springer New York}}, + author = {Minxha, Juri and Mamelak, Adam N. and Rutishauser, Ueli}, + editor = {Sillitoe, Roy V.}, + year = {2018}, + pages = {267-293}, + file = {C:\\Users\\saram\\Zotero\\storage\\V4VEPF45\\10.1007978-1-4939-7549-5_14.pdf}, + doi = {10.1007/978-1-4939-7549-5_14} +} + +@article{Fournier2016, + title = {Consensus-{{Based Sorting}} of {{Neuronal Spike Waveforms}}}, + volume = {11}, + issn = {1932-6203}, + doi = {10.1371/journal.pone.0160494}, + abstract = {Optimizing spike-sorting algorithms is difficult because sorted clusters can rarely be checked against independently obtained ``ground truth'' data. In most spike-sorting algorithms in use today, the optimality of a clustering solution is assessed relative to some assumption on the distribution of the spike shapes associated with a particular single unit (e.g., Gaussianity) and by visual inspection of the clustering solution followed by manual validation. When the spatiotemporal waveforms of spikes from different cells overlap, the decision as to whether two spikes should be assigned to the same source can be quite subjective, if it is not based on reliable quantitative measures. We propose a new approach, whereby spike clusters are identified from the most consensual partition across an ensemble of clustering solutions. Using the variability of the clustering solutions across successive iterations of the same clustering algorithm (template matching based on K-means clusters), we estimate the probability of spikes being clustered together and identify groups of spikes that are not statistically distinguishable from one another. Thus, we identify spikes that are most likely to be clustered together and therefore correspond to consistent spike clusters. This method has the potential advantage that it does not rely on any model of the spike shapes. It also provides estimates of the proportion of misclassified spikes for each of the identified clusters. We tested our algorithm on several datasets for which there exists a ground truth (simultaneous intracellular data), and show that it performs close to the optimum reached by a support vector machine trained on the ground truth. We also show that the estimated rate of misclassification matches the proportion of misclassified spikes measured from the ground truth data.}, + number = {8}, + journal = {PLOS ONE}, + author = {Fournier, Julien and Mueller, Christian M. and Shein-Idelson, Mark and Hemberger, Mike and Laurent, Gilles}, + month = aug, + year = {2016}, + keywords = {Neurons,Algorithms,Action potentials,Support vector machines,Distance measurement,Electrode recording,Tetrodes,Turtles}, + pages = {e0160494}, + file = {C:\\Users\\saram\\Zotero\\storage\\PQEKPHGK\\Fournier et al. 2016 Consensus-Based Sorting of Neuronal Spike Waveforms.pdf} +} + +@article{Vega-Pons2011, + title = {A {{SURVEY OF CLUSTERING ENSEMBLE ALGORITHMS}}}, + volume = {25}, + issn = {0218-0014, 1793-6381}, + doi = {10.1142/S0218001411008683}, + language = {en}, + number = {03}, + journal = {International Journal of Pattern Recognition and Artificial Intelligence}, + author = {Vega-Pons, Sandro and Ruiz-Shulcloper, Jos{\'e}}, + month = may, + year = {2011}, + pages = {337-372}, + file = {C:\\Users\\saram\\Zotero\\storage\\32YL33TR\\7d01fb2634b6160a96bbdd73f918ed3859cb.pdf} +} + +@article{Tang2008, + title = {A {{Maximum Entropy Model Applied}} to {{Spatial}} and {{Temporal Correlations}} from {{Cortical Networks In Vitro}}}, + volume = {28}, + copyright = {Copyright \textcopyright{} 2008 Society for Neuroscience 0270-6474/08/280505-14\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.3359-07.2008}, + abstract = {Multineuron firing patterns are often observed, yet are predicted to be rare by models that assume independent firing. To explain these correlated network states, two groups recently applied a second-order maximum entropy model that used only observed firing rates and pairwise interactions as parameters (Schneidman et al., 2006; Shlens et al., 2006). Interestingly, with these minimal assumptions they predicted 90\textendash{}99\% of network correlations. If generally applicable, this approach could vastly simplify analyses of complex networks. However, this initial work was done largely on retinal tissue, and its applicability to cortical circuits is mostly unknown. This work also did not address the temporal evolution of correlated states. To investigate these issues, we applied the model to multielectrode data containing spontaneous spikes or local field potentials from cortical slices and cultures. The model worked slightly less well in cortex than in retina, accounting for 88 $\pm$ 7\% (mean $\pm$ SD) of network correlations. In addition, in 8 of 13 preparations, the observed sequences of correlated states were significantly longer than predicted by concatenating states from the model. This suggested that temporal dependencies are a common feature of cortical network activity, and should be considered in future models. We found a significant relationship between strong pairwise temporal correlations and observed sequence length, suggesting that pairwise temporal correlations may allow the model to be extended into the temporal domain. We conclude that although a second-order maximum entropy model successfully predicts correlated states in cortical networks, it should be extended to account for temporal correlations observed between states.}, + language = {en}, + number = {2}, + journal = {Journal of Neuroscience}, + author = {Tang, Aonan and Jackson, David and Hobbs, Jon and Chen, Wei and Smith, Jodi L. and Patel, Hema and Prieto, Anita and Petrusca, Dumitru and Grivich, Matthew I. and Sher, Alexander and Hottowy, Pawel and Dabrowski, Wladyslaw and Litke, Alan M. and Beggs, John M.}, + month = jan, + year = {2008}, + keywords = {local field potential,culture,human tissue,microelectrode array,neuronal avalanche,slice}, + pages = {505-518}, + file = {C:\\Users\\saram\\Zotero\\storage\\PPRCSIG9\\Tang et al. - 2008 - A Maximum Entropy Model Applied to Spatial and Tem.pdf;C:\\Users\\saram\\Zotero\\storage\\Q8X2DXIE\\Tang 2008 - A Maximum Entropy Model Applied to Spatial and Temporal Correlations from Cortical Networks In Vitro.pdf;C:\\Users\\saram\\Zotero\\storage\\V5RJPJZR\\Tang et al. - 2008 - A Maximum Entropy Model Applied to Spatial and Tem.pdf}, + pmid = {18184793} +} + +@article{Ohiorhenuan2010, + title = {Sparse Coding and High-Order Correlations in Fine-Scale Cortical Networks}, + volume = {466}, + issn = {0028-0836, 1476-4687}, + doi = {10.1038/nature09178}, + language = {en}, + number = {7306}, + journal = {Nature}, + author = {Ohiorhenuan, Ifije E. and Mechler, Ferenc and Purpura, Keith P. and Schmid, Anita M. and Hu, Qin and Victor, Jonathan D.}, + month = jul, + year = {2010}, + pages = {617-621}, + file = {C:\\Users\\saram\\Zotero\\storage\\EZDL5BKA\\Ohiorhenuen 2010-Sparse coding and high-order correlations in fine-scale cortical networks.pdf} +} + +@article{Tass1998, + title = {Detection of n:M {{Phase Locking}} from {{Noisy Data}}: {{Application}} to {{Magnetoencephalography}}}, + volume = {81}, + shorttitle = {Detection of \$$\backslash$mathit\{n\}}, + doi = {10.1103/PhysRevLett.81.3291}, + abstract = {We use the concept of phase synchronization for the analysis of noisy nonstationary bivariate data. Phase synchronization is understood in a statistical sense as an existence of preferred values of the phase difference, and two techniques are proposed for a reliable detection of synchronous epochs. These methods are applied to magnetoencephalograms and records of muscle activity of a Parkinsonian patient. We reveal that the temporal evolution of the peripheral tremor rhythms directly reflects the time course of the synchronization of abnormal activity between cortical motor areas.}, + number = {15}, + journal = {Physical Review Letters}, + author = {Tass, P. and Rosenblum, M. G. and Weule, J. and Kurths, J. and Pikovsky, A. and Volkmann, J. and Schnitzler, A. and Freund, H.-J.}, + month = oct, + year = {1998}, + pages = {3291-3294}, + file = {C:\\Users\\saram\\Zotero\\storage\\TXZ49KEZ\\prl_81_3291.pdf} +} + +@article{Dupret2013, + title = {Dynamic {{Reconfiguration}} of {{Hippocampal Interneuron Circuits}} during {{Spatial Learning}}}, + volume = {78}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2013.01.033}, + abstract = {Summary +In the hippocampus, cell assemblies forming mnemonic representations of space are thought to arise as a result of changes in functional connections of pyramidal cells. We have found that CA1 interneuron circuits are also reconfigured during goal-oriented spatial learning through modification of inputs from pyramidal cells. As learning progressed, new pyramidal assemblies expressed in theta cycles alternated with previously established ones, and eventually overtook them. The firing patterns of interneurons developed a relationship to new, learning-related assemblies: some interneurons associated their activity with new pyramidal assemblies while some others dissociated from them. These firing associations were explained by changes in the weight of monosynaptic inputs received by interneurons from new pyramidal assemblies, as these predicted the associational changes. Spatial learning thus engages circuit modifications in the hippocampus that incorporate a redistribution of inhibitory activity that might assist in the segregation of competing pyramidal cell assembly patterns in space and time.}, + number = {1}, + journal = {Neuron}, + author = {Dupret, David and O'Neill, Joseph and Csicsvari, Jozsef}, + month = apr, + year = {2013}, + pages = {166-180}, + file = {C:\\Users\\saram\\Zotero\\storage\\W9KVXBRE\\Dupret et al. - 2013 - Dynamic Reconfiguration of Hippocampal Interneuron.pdf} +} + +@article{Trouche2016, + title = {Recoding a Cocaine-Place Memory Engram to a Neutral Engram in the Hippocampus}, + volume = {19}, + copyright = {2016 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn.4250}, + abstract = {Subsets of hippocampal neurons store map-like representations of experienced environments. The authors optogenetically silenced a neuronal population active in an environment and saw an alternative map emerge. In a cocaine-paired environment, this approach neutralized drug-place preference, implicating recoding of spatial memory engrams as strategy for alleviating maladaptive behaviors.$<$/p$>$}, + language = {En}, + number = {4}, + journal = {Nature Neuroscience}, + author = {Trouche, St{\'e}phanie and Perestenko, Pavel V. and van de Ven, Gido M. and Bratley, Claire T. and McNamara, Colin G. and Campo-Urriza, Natalia and Black, S. Lucas and Reijmers, Leon G. and Dupret, David}, + month = apr, + year = {2016}, + pages = {564}, + file = {C:\\Users\\saram\\Zotero\\storage\\DWYNR5I3\\Trouche et al. - 2016 - Recoding a cocaine-place memory engram to a neutra.pdf} +} + +@article{Pinault1996, + title = {A Novel Single-Cell Staining Procedure Performed in Vivo under Electrophysiological Control: Morpho-Functional Features of Juxtacellularly Labeled Thalamic Cells and Other Central Neurons with Biocytin or {{Neurobiotin}}}, + volume = {65}, + issn = {0165-0270}, + shorttitle = {A Novel Single-Cell Staining Procedure Performed in Vivo under Electrophysiological Control}, + doi = {10.1016/0165-0270(95)00144-1}, + abstract = {We describe a novel and very effective single-cell labeling method with unique advantages for revealing the axonal and dendritic fields of any extracellularly recorded neuron. This procedure involves the use of fine glass micro-pipettes (tip diameter: $\approx$ 1 $\mu$m), which contain biocytin or Neurobiotin dissolved in a salt solution, for the simultaneous juxtacellular recording and tracer iontophoresis. Once a neuron is well-isolated and identified, low intensity ($<$ 10 nA) positive-current pulses are injected by way of the micro-electrode such as to modulate its firing. Juxtacellular tracer iontophoresis may last as long as the cell electrophysiologically remains in good health, while determining some of its physiological properties. Control experiments, including the selective killing of previously injected cells, provide convincing evidence that it is the stained unit that was recorded and `tickled' by the juxtamembranous iontophoretic pulses. Electrophysiological and histochemical data further show that neuronal filling could occur during an electrically induced, transient, physical micro-damage of a somatic or dendritic membrane patch. This simple, single-cell staining method has been used to label several types of rat brain neurons, including projection neurons and interneurons. Its success rate ($>$ 86\%) far exceeds that obtained by direct intracellular injections of tracers as shown by the labeling of a large sample of 100 individual cells (from 115 attempts) in the thalamic reticular (Rt) nucleus of 33 rats. We thereby demonstrate that Rt cells project to restricted regions of a single thalamic nucleus, including anterior thalamic nuclei, and that the thalamus and Rt complex have reciprocal connections. The juxtacellular procedure thus represents an ideal directed single-cell labeling tool for determination of functional properties, for subsequent identification, for delineation of overall neuronal architecture and for tracing neuronal pathways, provided care is taken to avoid the possible drawbacks and pitfalls that are illustrated and discussed in the present paper.}, + number = {2}, + journal = {Journal of Neuroscience Methods}, + author = {Pinault, Didier}, + month = apr, + year = {1996}, + keywords = {Cerebellar cortical neuron,Iontophoresis,Limbic thalamus,Neuronal architecture and physiology,Pretecto-olivary neuron,Single-cell tracing and mapping study,Thalamic network,Thalamic reticular nucleus neuron}, + pages = {113-136}, + file = {C:\\Users\\saram\\Zotero\\storage\\G7GKXFJW\\Pinault - 1996 - A novel single-cell staining procedure performed i.pdf} +} + +@article{Muthmann2015, + title = {Spike {{Detection}} for {{Large Neural Populations Using High Density Multielectrode Arrays}}}, + volume = {9}, + issn = {1662-5196}, + doi = {10.3389/fninf.2015.00028}, + abstract = {An emerging generation of high-density microelectrode arrays (MEAs) is now capable of recording spiking activity simultaneously from thousands of neurons with closely spaced electrodes. Reliable spike detection and analysis in such recordings is challenging due to the large amount of raw data, and the dense sampling of spikes with closely spaced electrodes. Here, we present a highly efficient, online capable spike detection algorithm, and an offline method with improved detection rates, which enables estimation of spatial event locations at a resolution higher than that provided by the array by combining information from multiple electrodes. Data acquired with a 4,096 channel MEA from neuronal cultures and the neonatal retina, as well as synthetic data was used to test and validate these methods. We demonstrate that these algorithms outperform conventional methods due to a better noise estimate and an improved signal-to-noise ratio through combining information from multiple electrodes. Finally, we present a new approach for analyzing population activity based on the characterization of the spatio-temporal event profile, which does not require the isolation of single units. Overall, we show how the improved spatial resolution provided by high density, large scale microelectrode arrays can be reliably exploited to characterize activity from large neural populations and brain circuits.}, + language = {English}, + journal = {Frontiers in Neuroinformatics}, + author = {Muthmann, Jens-Oliver and Amin, Hayder and Sernagor, Evelyne and Maccione, Alessandro and Panas, Dagmara and Berdondini, Luca and Bhalla, Upinder S. and Hennig, Matthias H.}, + year = {2015}, + keywords = {microelectrode array,correlations,cultured neurons,Retina,Spike Detection}, + file = {C:\\Users\\saram\\Zotero\\storage\\5F5TPX5C\\Muthmann et al. 2015 Spike Detection for Large Neural Populations Using High Density Multielectrode Arrays.pdf} +} + +@article{Gansel2012, + title = {Detecting {{Multineuronal Temporal Patterns}} in {{Parallel Spike Trains}}}, + volume = {6}, + issn = {1662-5196}, + doi = {10.3389/fninf.2012.00018}, + abstract = {We present a non-parametric and computationally efficient method that detects spatiotemporal firing patterns and pattern sequences in parallel spike trains and tests whether the observed numbers of repeating patterns and sequences on a given timescale are significantly different from those expected by chance. The method is generally applicable and uncovers coordinated activity with arbitrary precision by comparing it to appropriate surrogate data. The analysis of coherent patterns of spatially and temporally distributed spiking activity on various timescales enables the immediate tracking of diverse qualities of coordinated firing related to neuronal state changes and information processing. We apply the method to simulated data and multineuronal recordings from rat visual cortex and show that it reliably discriminates between data sets with random pattern occurrences and with additional exactly repeating spatiotemporal patterns and pattern sequences. Multineuronal cortical spiking activity appears to be precisely coordinated and exhibits a sequential organization beyond the cell assembly concept.}, + language = {English}, + journal = {Frontiers in Neuroinformatics}, + author = {Gansel, Kai S. and Singer, Wolf}, + year = {2012}, + keywords = {cell assembly,phase sequence,rat visual cortex,spike pattern,synfire braid,synfire chain}, + file = {C:\\Users\\saram\\Zotero\\storage\\XBAXAKKR\\Gansel and Singer 2012 Detecting Multineuronal Temporal Patterns in Parallel Spike Trains.pdf} +} + +@article{Hilgen2017, + title = {Unsupervised {{Spike Sorting}} for {{Large}}-{{Scale}}, {{High}}-{{Density Multielectrode Arrays}}}, + volume = {18}, + issn = {2211-1247}, + doi = {10.1016/j.celrep.2017.02.038}, + abstract = {\subsection{Summary$<$/h2$>$ + +We present a method for automated spike sorting for recordings with high-density, large-scale multielectrode arrays. Exploiting the dense sampling of single neurons by multiple electrodes, an efficient, low-dimensional representation of detected spikes consisting of estimated spatial spike locations and dominant spike shape features is exploited for fast and reliable clustering into single units. Millions of events can be sorted in minutes, and the method is parallelized and scales better than quadratically with the number of detected spikes. Performance is demonstrated using recordings with a 4,096-channel array and validated using anatomical imaging, optogenetic stimulation, and model-based quality control. A comparison with semi-automated, shape-based spike sorting exposes significant limitations of conventional methods. Our approach demonstrates that it is feasible to reliably isolate the activity of up to thousands of neurons and that dense, multi-channel probes substantially aid reliable spike sorting.$<$/p$>$ + +}}, + language = {English}, + number = {10}, + journal = {Cell Reports}, + author = {Hilgen, Gerrit and Sorbaro, Martino and Pirmoradian, Sahar and Muthmann, Jens-Oliver and Kepiro, Ibolya Edit and Ullo, Simona and Ramirez, Cesar Juarez and Encinas, Albert Puente and Maccione, Alessandro and Berdondini, Luca and Murino, Vittorio and Sona, Diego and Zanacchi, Francesca Cella and Sernagor, Evelyne and Hennig, Matthias Helge}, + month = mar, + year = {2017}, + pages = {2521-2532}, + file = {C:\\Users\\saram\\Zotero\\storage\\QZTKZS34\\Hilgen et al. - 2017 - Unsupervised Spike Sorting for Large-Scale, High-D.pdf}, + pmid = {28273464, 28273464} +} + +@article{Ohki2005, + title = {Functional Imaging with Cellular Resolution Reveals Precise Micro-Architecture in Visual Cortex}, + volume = {433}, + copyright = {2005 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature03274}, + abstract = {The human brain contains about a billion cells. How are these cells organized on macroscopic and microscopic scales? It has long been known that the different parts of the brain process distinct types of sensory information. With past low-resolution imaging techniques, groups of cells, such as those responding only to visual stimuli of a specific orientation, were shown to be loosely clustered into separate regions. New imaging technology \emph{in vivo} two-photon calcium imaging now reveals that these regions form exquisitely ordered three-dimensional maps that are precise on the scale of individual brain cells. This implies that the brain is much more organized than previously thought, with pure functional compartments on a microscopic scale.$<$/p$>$}, + language = {En}, + number = {7026}, + journal = {Nature}, + author = {Ohki, Kenichi and Chung, Sooyoung and Ch'ng, Yeang H. and Kara, Prakash and Reid, R. Clay}, + month = feb, + year = {2005}, + pages = {597}, + file = {C:\\Users\\saram\\Zotero\\storage\\V34QLWJA\\Ohki et al. - 2005 - Functional imaging with cellular resolution reveal.pdf} +} + +@article{Marre2012, + title = {Mapping a {{Complete Neural Population}} in the {{Retina}}}, + volume = {32}, + copyright = {Copyright \textcopyright{} 2012 the authors 0270-6474/12/3214859-15\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0723-12.2012}, + abstract = {Recording simultaneously from essentially all of the relevant neurons in a local circuit is crucial to understand how they collectively represent information. Here we show that the combination of a large, dense multielectrode array and a novel, mostly automated spike-sorting algorithm allowed us to record simultaneously from a highly overlapping population of $>$200 ganglion cells in the salamander retina. By combining these methods with labeling and imaging, we showed that up to 95\% of the ganglion cells over the area of the array were recorded. By measuring the coverage of visual space by the receptive fields of the recorded cells, we concluded that our technique captured a neural population that forms an essentially complete representation of a region of visual space. This completeness allowed us to determine the spatial layout of different cell types as well as identify a novel group of ganglion cells that responded reliably to a set of naturalistic and artificial stimuli but had no measurable receptive field. Thus, our method allows unprecedented access to the complete neural representation of visual information, a crucial step for the understanding of population coding in sensory systems.}, + language = {en}, + number = {43}, + journal = {Journal of Neuroscience}, + author = {Marre, Olivier and Amodei, Dario and Deshmukh, Nikhil and Sadeghi, Kolia and Soo, Frederick and Holy, Timothy E. and Berry, Michael J.}, + month = oct, + year = {2012}, + pages = {14859-14873}, + file = {C:\\Users\\saram\\Zotero\\storage\\2QB4GMAK\\Marre et al. - 2012 - Mapping a Complete Neural Population in the Retina.pdf}, + pmid = {23100409} +} + +@article{Yger2016, + title = {Fast and Accurate Spike Sorting in Vitro and in Vivo for up to Thousands of Electrodes}, + copyright = {\textcopyright{} 2016, Published by Cold Spring Harbor Laboratory Press. The copyright holder for this pre-print is the author. All rights reserved. The material may not be redistributed, re-used or adapted without the author's permission.}, + doi = {10.1101/067843}, + abstract = {Understanding how assemblies of neurons encode information requires recording large populations of cells in the brain. In recent years, multi-electrode arrays and large silicon probes have been developed to record simultaneously from hundreds or thousands of electrodes packed with a high density. However, these new devices challenge the classical way to do spike sorting. Here we developed a new method to solve these issues, based on a highly automated algorithm to extract spikes from extracellular data, and show that this algorithm reached near optimal performance both in vitro and in vivo. The algorithm is composed of two main steps: 1) a "template-finding" phase to extract the cell templates, i.e. the pattern of activity evoked over many electrodes when one neuron fires an action potential; 2) a "template-matching" phase where the templates were matched to the raw data to find the location of the spikes. The manual intervention by the user was reduced to the minimal, and the time spent on manual curation did not scale with the number of electrodes. We tested our algorithm with large-scale data from in vitro and in vivo recordings, from 32 to 4225 electrodes. We performed simultaneous extracellular and patch recordings to obtain "ground truth" data, i.e. cases where the solution to the sorting problem is at least partially known. The performance of our algorithm was always close to the best expected performance. We thus provide a general solution to sort spikes from large-scale extracellular recordings.}, + language = {en}, + journal = {bioRxiv}, + author = {Yger, Pierre and Spampinato, Giulia L. B. and Esposito, Elric and Lefebvre, Baptiste and Deny, Stephane and Gardella, Christophe and Stimberg, Marcel and Jetter, Florian and Zeck, Guenther and Picaud, Serge and Duebel, Jens and Marre, Olivier}, + month = aug, + year = {2016}, + pages = {067843}, + file = {C:\\Users\\saram\\Zotero\\storage\\UG4RDILV\\Yger et al. 2016 Fast and accurate spike sorting in vitro and in vivo for up to thousands of electrodes.pdf} +} + +@article{Chicco2017, + title = {Ten Quick Tips for Machine Learning in Computational Biology}, + volume = {10}, + issn = {1756-0381}, + doi = {10.1186/s13040-017-0155-3}, + abstract = {Machine learning has become a pivotal tool for many projects in computational biology, bioinformatics, and health informatics. Nevertheless, beginners and biomedical researchers often do not have enough experience to run a data mining project effectively, and therefore can follow incorrect practices, that may lead to common mistakes or over-optimistic results. With this review, we present ten quick tips to take advantage of machine learning in any computational biology context, by avoiding some common errors that we observed hundreds of times in multiple bioinformatics projects. We believe our ten suggestions can strongly help any machine learning practitioner to carry on a successful project in computational biology and related sciences.}, + journal = {BioData Mining}, + author = {Chicco, Davide}, + month = dec, + year = {2017}, + file = {C:\\Users\\saram\\Zotero\\storage\\UBGCB3BP\\Chicco 2017 Ten quick tips for machine learning in computational biology.pdf}, + pmid = {29234465}, + pmcid = {PMC5721660} +} + +@article{Sohl-Dickstein2009, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {0906.4779}, + primaryClass = {physics, stat}, + title = {Minimum {{Probability Flow Learning}}}, + abstract = {Fitting probabilistic models to data is often difficult, due to the general intractability of the partition function and its derivatives. Here we propose a new parameter estimation technique that does not require computing an intractable normalization factor or sampling from the equilibrium distribution of the model. This is achieved by establishing dynamics that would transform the observed data distribution into the model distribution, and then setting as the objective the minimization of the KL divergence between the data distribution and the distribution produced by running the dynamics for an infinitesimal time. Score matching, minimum velocity learning, and certain forms of contrastive divergence are shown to be special cases of this learning technique. We demonstrate parameter estimation in Ising models, deep belief networks and an independent component analysis model of natural scenes. In the Ising model case, current state of the art techniques are outperformed by at least an order of magnitude in learning time, with lower error in recovered coupling parameters.}, + journal = {arXiv:0906.4779 [physics, stat]}, + author = {Sohl-Dickstein, Jascha and Battaglino, Peter and DeWeese, Michael R.}, + month = jun, + year = {2009}, + keywords = {Computer Science - Learning,Physics - Data Analysis; Statistics and Probability,Statistics - Machine Learning}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z9RZGPC8\\Sohl-Dickstein et al. - 2009 - Minimum Probability Flow Learning.pdf} +} + +@article{Klivans2017, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {1706.06274}, + primaryClass = {cs, math, stat}, + title = {Learning {{Graphical Models Using Multiplicative Weights}}}, + abstract = {We give a simple, multiplicative-weight update algorithm for learning undirected graphical models or Markov random fields (MRFs). The approach is new, and for the well-studied case of Ising models or Boltzmann machines, we obtain an algorithm that uses a nearly optimal number of samples and has quadratic running time (up to logarithmic factors), subsuming and improving on all prior work. Additionally, we give the first efficient algorithm for learning Ising models over general alphabets. Our main application is an algorithm for learning the structure of t-wise MRFs with nearly-optimal sample complexity (up to polynomial losses in necessary terms that depend on the weights) and running time that is \$n\^\{O(t)\}\$. In addition, given \$n\^\{O(t)\}\$ samples, we can also learn the parameters of the model and generate a hypothesis that is close in statistical distance to the true MRF. All prior work runs in time \$n\^\{$\backslash$Omega(d)\}\$ for graphs of bounded degree d and does not generate a hypothesis close in statistical distance even for t=3. We observe that our runtime has the correct dependence on n and t assuming the hardness of learning sparse parities with noise. Our algorithm--the Sparsitron-- is easy to implement (has only one parameter) and holds in the on-line setting. Its analysis applies a regret bound from Freund and Schapire's classic Hedge algorithm. It also gives the first solution to the problem of learning sparse Generalized Linear Models (GLMs).}, + journal = {arXiv:1706.06274 [cs, math, stat]}, + author = {Klivans, Adam and Meka, Raghu}, + month = jun, + year = {2017}, + keywords = {Computer Science - Learning,Computer Science - Data Structures and Algorithms,Mathematics - Statistics Theory}, + file = {C:\\Users\\saram\\Zotero\\storage\\QLZAXYCL\\Klivans and Meka 2017 Learning Graphical Models Using Multiplicative Weights.pdf} +} + +@article{Crawford2016, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {1612.05695}, + primaryClass = {quant-ph}, + title = {Reinforcement {{Learning Using Quantum Boltzmann Machines}}}, + abstract = {We investigate whether quantum annealers with select chip layouts can outperform classical computers in reinforcement learning tasks. We associate a transverse field Ising spin Hamiltonian with a layout of qubits similar to that of a deep Boltzmann machine (DBM) and use simulated quantum annealing (SQA) to numerically simulate quantum sampling from this system. We design a reinforcement learning algorithm in which the set of visible nodes representing the states and actions of an optimal policy are the first and last layers of the deep network. In absence of a transverse field, our simulations show that DBMs train more effectively than restricted Boltzmann machines (RBM) with the same number of weights. Since sampling from Boltzmann distributions of a DBM is not classically feasible, this is evidence of advantage of a non-Turing sampling oracle. We then develop a framework for training the network as a quantum Boltzmann machine (QBM) in the presence of a significant transverse field for reinforcement learning. This further improves the reinforcement learning method using DBMs.}, + journal = {arXiv:1612.05695 [quant-ph]}, + author = {Crawford, Daniel and Levit, Anna and Ghadermarzy, Navid and Oberoi, Jaspreet S. and Ronagh, Pooya}, + month = dec, + year = {2016}, + keywords = {Computer Science - Learning,Computer Science - Artificial Intelligence,Computer Science - Neural and Evolutionary Computing,Mathematics - Optimization and Control,Quantum Physics}, + file = {C:\\Users\\saram\\Zotero\\storage\\R9GHYVU2\\Crawford et al. 2016 Reinforcement Learning Using Quantum Boltzmann Machines.pdf} +} + +@article{Sallans2004, + title = {Reinforcement Learning with Factored States and Actions}, + volume = {5}, + number = {Aug}, + journal = {Journal of Machine Learning Research}, + author = {Sallans, Brian and Hinton, Geoffrey E.}, + year = {2004}, + pages = {1063--1088}, + file = {C:\\Users\\saram\\Zotero\\storage\\BKQJNP7D\\sallans04a.pdf} +} + +@article{Levit2017, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {1706.00074}, + primaryClass = {quant-ph}, + title = {Free Energy-Based Reinforcement Learning Using a Quantum Processor}, + abstract = {Recent theoretical and experimental results suggest the possibility of using current and near-future quantum hardware in challenging sampling tasks. In this paper, we introduce free energy-based reinforcement learning (FERL) as an application of quantum hardware. We propose a method for processing a quantum annealer's measured qubit spin configurations in approximating the free energy of a quantum Boltzmann machine (QBM). We then apply this method to perform reinforcement learning on the grid-world problem using the D-Wave 2000Q quantum annealer. The experimental results show that our technique is a promising method for harnessing the power of quantum sampling in reinforcement learning tasks.}, + journal = {arXiv:1706.00074 [quant-ph]}, + author = {Levit, Anna and Crawford, Daniel and Ghadermarzy, Navid and Oberoi, Jaspreet S. and Zahedinejad, Ehsan and Ronagh, Pooya}, + month = may, + year = {2017}, + keywords = {Computer Science - Learning,Computer Science - Artificial Intelligence,Computer Science - Neural and Evolutionary Computing,Mathematics - Optimization and Control,Quantum Physics}, + file = {C:\\Users\\saram\\Zotero\\storage\\9ZVTLADK\\Levit et al. 2017 Free energy-based reinforcement learning using a quantum processor.pdf} +} + +@article{Hamilton2013, + title = {Optogenetic {{Activation}} of an {{Inhibitory Network Enhances Feed}}-{{Forward Functional Connectivity}} in {{Auditory Cortex}}}, + volume = {80}, + issn = {0896-6273}, + doi = {10.1016/j.neuron.2013.08.017}, + abstract = {The mammalian neocortex is a highly interconnected network of different types of neurons organized into both layers and columns. Overlaid on this structural organization is a pattern of functional connectivity that can be rapidly and flexibly altered during behavior. Parvalbumin-positive (PV) inhibitory neurons, which are implicated in cortical oscillations and can change neuronal selectivity, may play a pivotal role in these dynamic changes. We found that optogenetic activation of PV neurons in the auditory cortex enhanced feed-forward functional connectivity in the putative thalamorecipient circuit and in cortical columnar circuits. In contrast, PV stimulation induced no change in connectivity between sites in the same layers. The activity of PV neurons may thus serve as a gating mechanism to enhance feed-forward, but not lateral or feedback, information flow in cortical circuits. Functionally, it may preferentially enhance the contribution of bottom-up sensory inputs to perception.}, + number = {4}, + journal = {Neuron}, + author = {Hamilton, Liberty S. and Sohl-Dickstein, Jascha and Huth, Alexander G. and Carels, Vanessa M. and Deisseroth, Karl and Bao, Shaowen}, + month = nov, + year = {2013}, + file = {C:\\Users\\saram\\Zotero\\storage\\TB3AH3VK\\Hamilton et al. - 2013 - Optogenetic Activation of an Inhibitory Network En.pdf;C:\\Users\\saram\\Zotero\\storage\\WUF8VMDK\\mmc1.pdf}, + pmid = {24267655}, + pmcid = {PMC3841078} +} + +@article{Marre2009, + title = {Prediction of {{Spatiotemporal Patterns}} of {{Neural Activity}} from {{Pairwise Correlations}}}, + volume = {102}, + doi = {10.1103/PhysRevLett.102.138101}, + abstract = {We designed a model-based analysis to predict the occurrence of population patterns in distributed spiking activity. Using a maximum entropy principle with a Markovian assumption, we obtain a model that accounts for both spatial and temporal pairwise correlations among neurons. This model is tested on data generated with a Glauber spin-glass system and is shown to correctly predict the occurrence probabilities of spatiotemporal patterns significantly better than Ising models only based on spatial correlations. This increase of predictability was also observed on experimental data recorded in parietal cortex during slow-wave sleep. This approach can also be used to generate surrogates that reproduce the spatial and temporal correlations of a given data set.}, + number = {13}, + journal = {Physical Review Letters}, + author = {Marre, O. and El Boustani, S. and Fr{\'e}gnac, Y. and Destexhe, A.}, + month = apr, + year = {2009}, + pages = {138101} +} + +@article{Runfeldt2014, + title = {Acetylcholine Functionally Reorganizes Neocortical Microcircuits}, + volume = {112}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00071.2014}, + language = {en}, + number = {5}, + journal = {Journal of Neurophysiology}, + author = {Runfeldt, Melissa J. and Sadovsky, Alexander J. and MacLean, Jason N.}, + month = sep, + year = {2014}, + pages = {1205-1216}, + file = {C:\\Users\\saram\\Zotero\\storage\\KANMXKSY\\Runfeldt 2014 - Acetylcholine functionally reorganizes neocortical microcircuits.pdf} +} + +@article{Tasic2016, + title = {Adult Mouse Cortical Cell Taxonomy Revealed by Single Cell Transcriptomics}, + volume = {19}, + copyright = {2016 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn.4216}, + abstract = {Nervous systems are composed of various cell types, but the extent of cell type diversity is poorly understood. We constructed a cellular taxonomy of one cortical region, primary visual cortex, in adult mice on the basis of single-cell RNA sequencing. We identified 49 transcriptomic cell types, including 23 GABAergic, 19 glutamatergic and 7 non-neuronal types. We also analyzed cell type\textendash{}specific mRNA processing and characterized genetic access to these transcriptomic types by many transgenic Cre lines. Finally, we found that some of our transcriptomic cell types displayed specific and differential electrophysiological and axon projection properties, thereby confirming that the single-cell transcriptomic signatures can be associated with specific cellular properties.}, + language = {en}, + number = {2}, + journal = {Nature Neuroscience}, + author = {Tasic, Bosiljka and Menon, Vilas and Nguyen, Thuc Nghi and Kim, Tae Kyung and Jarsky, Tim and Yao, Zizhen and Levi, Boaz and Gray, Lucas T. and Sorensen, Staci A. and Dolbeare, Tim and Bertagnolli, Darren and Goldy, Jeff and Shapovalova, Nadiya and Parry, Sheana and Lee, Changkyu and Smith, Kimberly and Bernard, Amy and Madisen, Linda and Sunkin, Susan M. and Hawrylycz, Michael and Koch, Christof and Zeng, Hongkui}, + month = feb, + year = {2016}, + pages = {335-346} +} + +@article{Euler2014, + title = {Retinal Bipolar Cells: Elementary Building Blocks of Vision}, + volume = {15}, + copyright = {2014 Nature Publishing Group}, + issn = {1471-0048}, + shorttitle = {Retinal Bipolar Cells}, + doi = {10.1038/nrn3783}, + abstract = {Retinal bipolar cells are the first 'projection neurons' of the vertebrate visual system \textemdash{} all of the information needed for vision is relayed by this intraretinal connection. Each of the at least 13 distinct types of bipolar cells systematically transforms the photoreceptor input in a different way, thereby generating specific channels that encode stimulus properties, such as polarity, contrast, temporal profile and chromatic composition. As a result, bipolar cell output signals represent elementary 'building blocks' from which the microcircuits of the inner retina derive a feature-oriented description of the visual world.}, + language = {en}, + number = {8}, + journal = {Nature Reviews Neuroscience}, + author = {Euler, Thomas and Haverkamp, Silke and Schubert, Timm and Baden, Tom}, + month = aug, + year = {2014}, + pages = {507-519}, + file = {C:\\Users\\saram\\Zotero\\storage\\XHKYWJC5\\Euler et al. - 2014 - Retinal bipolar cells elementary building blocks .pdf} +} + +@article{Shekhar2016, + title = {Comprehensive {{Classification}} of {{Retinal Bipolar Neurons}} by {{Single}}-{{Cell Transcriptomics}}}, + volume = {166}, + issn = {0092-8674, 1097-4172}, + doi = {10.1016/j.cell.2016.07.054}, + abstract = {\subsection{Summary$<$/h2$>$ + +Patterns of gene expression can be used to characterize and classify neuronal types. It is challenging, however, to generate taxonomies that fulfill the essential criteria of being comprehensive, harmonizing with conventional classification schemes, and lacking superfluous subdivisions of genuine types. To address these challenges, we used massively parallel single-cell RNA profiling and optimized computational methods on a heterogeneous class of neurons, mouse retinal bipolar cells (BCs). From a population of $\sim$25,000 BCs, we derived a molecular classification that identified 15 types, including all types observed previously and two novel types, one of which has a non-canonical morphology and position. We validated the classification scheme and identified dozens of novel markers using methods that match molecular expression to cell morphology. This work provides a systematic methodology for achieving comprehensive molecular classification of neurons, identifies novel neuronal types, and uncovers transcriptional differences that distinguish types within a class.$<$/p$>$ + +}}, + language = {English}, + number = {5}, + journal = {Cell}, + author = {Shekhar, Karthik and Lapan, Sylvain W. and Whitney, Irene E. and Tran, Nicholas M. and Macosko, Evan Z. and Kowalczyk, Monika and Adiconis, Xian and Levin, Joshua Z. and Nemesh, James and Goldman, Melissa and McCarroll, Steven A. and Cepko, Constance L. and Regev, Aviv and Sanes, Joshua R.}, + month = aug, + year = {2016}, + pages = {1308-1323.e30}, + file = {C:\\Users\\saram\\Zotero\\storage\\9GNW8EHT\\Shekhar et al. - 2016 - Comprehensive Classification of Retinal Bipolar Ne.pdf}, + pmid = {27565351, 27565351} +} + +@article{Lankarany2017, + title = {Estimating {{Excitatory}} and {{Inhibitory Synaptic Conductances}} from {{Spike Trains}} Using a {{Recursive Bayesian Approach}}}, + copyright = {\textcopyright{} 2017, Posted by Cold Spring Harbor Laboratory. The copyright holder for this pre-print is the author. All rights reserved. The material may not be redistributed, re-used or adapted without the author's permission.}, + doi = {10.1101/170878}, + abstract = {Inference of excitatory and inhibitory synaptic conductances (SCs) from the spike trains is poorly addressed in the literature due to the complexity of the problem. As recent technological advancements make recording spikes from multiple (neighbor) neurons of a behaving animal (in some rare cases from humans) possible, this paper tackles the problem of estimating SCs solely from the recorded spike trains. Given an ensemble of spikes corresponding to population of neighbor neurons, we aim to infer the average excitatory and inhibitory SCs underlying the shared neural activity. In this paper, we extended our previously established Kalman filtering (KF) based algorithm to incorporate the voltage-to-spike nonlinearity (mapping from membrane potential to spike rate). Having estimated the instantaneous spike rate using optimal linear filtering (Gaussian kernel), our proposed algorithm uses KF followed by expectation maximization (EM) algorithm in a recursive fashion to infer the average SCs. As the dynamics of SCs and membrane potential is included in our model, the proposed algorithm, unlike other related works, considers different sources of stochasticity, i.e., the variabilities of SCs, membrane potential, and spikes. Moreover, it is worth mentioning that our algorithm is blind to the external stimulus, and it performs only based on observed spikes. We validate the accuracy and practicality of our technique through simulation studies where leaky integrate and fire (LIF) model is used to generate spikes. We show that the estimated SCs can precisely track the original ones. Moreover, we show that the performance of our algorithm can be further improved given enough number of trials (spikes). As a rule of thumb, 50 trials of neurons with the average firing rate of 5 Hz can guarantee the accuracy of our proposed algorithm.}, + language = {en}, + journal = {bioRxiv}, + author = {Lankarany, Milad}, + month = jul, + year = {2017}, + pages = {170878}, + file = {C:\\Users\\saram\\Zotero\\storage\\G5C6XTW7\\Lankarany - 2017 - Estimating Excitatory and Inhibitory Synaptic Cond.pdf} +} + +@article{Lankarany2013, + title = {Inferring Trial-to-Trial Excitatory and Inhibitory Synaptic Inputs from Membrane Potential Using {{Gaussian}} Mixture {{Kalman}} Filtering}, + volume = {7}, + issn = {1662-5188}, + doi = {10.3389/fncom.2013.00109}, + abstract = {Time-varying excitatory and inhibitory synaptic inputs govern activity of neurons and process information in the brain. The importance of trial-to-trial fluctuations of synaptic inputs has recently been investigated in neuroscience. Such fluctuations are ignored in the most conventional techniques because they are removed when trials are averaged during linear regression techniques. Here, we propose a novel recursive algorithm based on Gaussian mixture Kalman filtering for estimating time-varying excitatory and inhibitory synaptic inputs from single trials of noisy membrane potential in current clamp recordings. The Kalman filtering is followed by an expectation maximization algorithm to infer the statistical parameters (time-varying mean and variance) of the synaptic inputs in a non-parametric manner. As our proposed algorithm is repeated recursively, the inferred parameters of the mixtures are used to initiate the next iteration. Unlike other recent algorithms, our algorithm does not assume an a priori distribution from which the synaptic inputs are generated. Instead, the algorithm recursively estimates such a distribution by fitting a Gaussian mixture model. The performance of the proposed algorithms is compared to a previously proposed PF-based algorithm (Paninski et al., 2012) with several illustrative examples, assuming that the distribution of synaptic input is unknown. If noise is small, the performance of our algorithms is similar to that of the previous one. However, if noise is large, they can significantly outperform the previous proposal. These promising results suggest that our algorithm is a robust and efficient technique for estimating time varying excitatory and inhibitory synaptic conductances from single trials of membrane potential recordings.}, + language = {English}, + journal = {Frontiers in Computational Neuroscience}, + author = {Lankarany, Milad and Zhu, Wei Ping and Swamy, Srikanta M. N. and Toyoizumi, Taro}, + year = {2013}, + keywords = {Excitatory and inhibitory synaptic inputs,expectation maximization,Gaussian mixture Kalman filtering,Kalman filter,Recursive Algorithm,synaptic conductance} +} + +@article{Huys2009, + title = {Smoothing of, and {{Parameter Estimation}} from, {{Noisy Biophysical Recordings}}}, + volume = {5}, + issn = {1553-7358}, + doi = {10.1371/journal.pcbi.1000379}, + abstract = {Author Summary Cellular imaging techniques are maturing at a great pace, but are still plagued by high levels of noise. Here, we present two methods for smoothing individual, noisy traces. The first method fits a full, biophysically accurate description of the cell under study to the noisy data. This allows both smoothing of the data and inference of biophysically relevant parameters such as the density of (active) channels, input resistance, intercompartmental conductances, and noise levels; it does, however, depend on knowledge of active channel kinetics. The second method achieves smoothing of noisy traces by fitting arbitrary kinetics in a non-parametric manner. Both techniques can additionally be used to infer unobserved variables, for instance voltage from calcium concentration. This paper gives a detailed account of the methods and should allow for straightforward modification and inclusion of additional measurements.}, + language = {en}, + number = {5}, + journal = {PLOS Computational Biology}, + author = {Huys, Quentin J. M. and Paninski, Liam}, + month = may, + year = {2009}, + keywords = {Algorithms,Biophysics,Membrane potential,Gaussian noise,Action potentials,Dynamical systems,Imaging techniques,Monte Carlo method}, + pages = {e1000379}, + file = {C:\\Users\\saram\\Zotero\\storage\\4BH5VEJZ\\Huys and Paninski - 2009 - Smoothing of, and Parameter Estimation from, Noisy.pdf} +} + +@article{Trenholm2014, + title = {Nonlinear Dendritic Integration of Electrical and Chemical Synaptic Inputs Drives Fine-Scale Correlations}, + volume = {17}, + copyright = {2014 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn.3851}, + abstract = {Throughout the CNS, gap junction\textendash{}mediated electrical signals synchronize neural activity on millisecond timescales via cooperative interactions with chemical synapses. However, gap junction\textendash{}mediated synchrony has rarely been studied in the context of varying spatiotemporal patterns of electrical and chemical synaptic activity. Thus, the mechanism underlying fine-scale synchrony and its relationship to neural coding remain unclear. We examined spike synchrony in pairs of genetically identified, electrically coupled ganglion cells in mouse retina. We found that coincident electrical and chemical synaptic inputs, but not electrical inputs alone, elicited synchronized dendritic spikes in subregions of coupled dendritic trees. The resulting nonlinear integration produced fine-scale synchrony in the cells' spike output, specifically for light stimuli driving input to the regions of dendritic overlap. In addition, the strength of synchrony varied inversely with spike rate. Together, these features may allow synchronized activity to encode information about the spatial distribution of light that is ambiguous on the basis of spike rate alone.}, + language = {en}, + number = {12}, + journal = {Nature Neuroscience}, + author = {Trenholm, Stuart and McLaughlin, Amanda J. and Schwab, David J. and Turner, Maxwell H. and Smith, Robert G. and Rieke, Fred and Awatramani, Gautam B.}, + month = dec, + year = {2014}, + pages = {1759-1766} +} + +@article{Ito2011, + title = {Extending {{Transfer Entropy Improves Identification}} of {{Effective Connectivity}} in a {{Spiking Cortical Network Model}}}, + volume = {6}, + issn = {1932-6203}, + doi = {10.1371/journal.pone.0027431}, + abstract = {Transfer entropy (TE) is an information-theoretic measure which has received recent attention in neuroscience for its potential to identify effective connectivity between neurons. Calculating TE for large ensembles of spiking neurons is computationally intensive, and has caused most investigators to probe neural interactions at only a single time delay and at a message length of only a single time bin. This is problematic, as synaptic delays between cortical neurons, for example, range from one to tens of milliseconds. In addition, neurons produce bursts of spikes spanning multiple time bins. To address these issues, here we introduce a free software package that allows TE to be measured at multiple delays and message lengths. To assess performance, we applied these extensions of TE to a spiking cortical network model (Izhikevich, 2006) with known connectivity and a range of synaptic delays. For comparison, we also investigated single-delay TE, at a message length of one bin (D1TE), and cross-correlation (CC) methods. We found that D1TE could identify 36\% of true connections when evaluated at a false positive rate of 1\%. For extended versions of TE, this dramatically improved to 73\% of true connections. In addition, the connections correctly identified by extended versions of TE accounted for 85\% of the total synaptic weight in the network. Cross correlation methods generally performed more poorly than extended TE, but were useful when data length was short. A computational performance analysis demonstrated that the algorithm for extended TE, when used on currently available desktop computers, could extract effective connectivity from 1 hr recordings containing 200 neurons in $\sim$5 min. We conclude that extending TE to multiple delays and message lengths improves its ability to assess effective connectivity between spiking neurons. These extensions to TE soon could become practical tools for experimentalists who record hundreds of spiking neurons.}, + language = {en}, + number = {11}, + journal = {PLOS ONE}, + author = {Ito, Shinya and Hansen, Michael E. and Heiland, Randy and Lumsdaine, Andrew and Litke, Alan M. and Beggs, John M.}, + month = nov, + year = {2011}, + keywords = {Synapses,Neurons,Neural networks,Algorithms,Network analysis,Action potentials,Entropy,Peak values}, + pages = {e27431}, + file = {C:\\Users\\saram\\Zotero\\storage\\5IAZ54UU\\Izhik_100_0.mat;C:\\Users\\saram\\Zotero\\storage\\JWGJP87Q\\Ito et al. 2011 Extending Transfer Entropy Improves Identification of Effective Connectivity in a Spiking Cortical Network Model.pdf;C:\\Users\\saram\\Zotero\\storage\\KLVFUCNU\\Code_S1.M;C:\\Users\\saram\\Zotero\\storage\\XBIPXVP7\\te_matlab_0.5.zip;C:\\Users\\saram\\Zotero\\storage\\XE2ZNX6B\\Document_S1.PDF} +} + +@article{Izhikevich2006, + title = {Polychronization: {{Computation}} with {{Spikes}}}, + volume = {18}, + issn = {0899-7667}, + shorttitle = {Polychronization}, + doi = {10.1162/089976606775093882}, + abstract = {We present a minimal spiking network that can polychronize, that is, exhibit reproducible time-locked but not synchronous firing patterns with millisecond precision, as in synfire braids. The network consists of cortical spiking neurons with axonal conduction delays and spike-timing-dependent plasticity (STDP); a ready-to-use MATLAB code is included. It exhibits sleeplike oscillations, gamma (40 Hz) rhythms, conversion of firing rates to spike timings, and other interesting regimes. Due to the interplay between the delays and STDP, the spiking neurons spontaneously self-organize into groups and generate patterns of stereotypical polychronous activity. To our surprise, the number of coexisting polychronous groups far exceeds the number of neurons in the network, resulting in an unprecedented memory capacity of the system. We speculate on the significance of polychrony to the theory of neuronal group selection (TNGS, neural Darwinism), cognitive neural computations, binding and gamma rhythm, mechanisms of attention, and consciousness as ``attention to memories.''}, + number = {2}, + journal = {Neural Computation}, + author = {Izhikevich, Eugene M.}, + month = feb, + year = {2006}, + pages = {245-282}, + file = {C:\\Users\\saram\\Zotero\\storage\\7ZVKQT8Q\\izhik1011.mov;C:\\Users\\saram\\Zotero\\storage\\SBHYE8V3\\Izhikevich 2006 Polychronization Computation with Spikes.pdf} +} + +@article{Ito2014, + title = {Large-{{Scale}}, {{High}}-{{Resolution Multielectrode}}-{{Array Recording Depicts Functional Network Differences}} of {{Cortical}} and {{Hippocampal Cultures}}}, + volume = {9}, + issn = {1932-6203}, + doi = {10.1371/journal.pone.0105324}, + abstract = {Understanding the detailed circuitry of functioning neuronal networks is one of the major goals of neuroscience. Recent improvements in neuronal recording techniques have made it possible to record the spiking activity from hundreds of neurons simultaneously with sub-millisecond temporal resolution. Here we used a 512-channel multielectrode array system to record the activity from hundreds of neurons in organotypic cultures of cortico-hippocampal brain slices from mice. To probe the network structure, we employed a wavelet transform of the cross-correlogram to categorize the functional connectivity in different frequency ranges. With this method we directly compare, for the first time, in any preparation, the neuronal network structures of cortex and hippocampus, on the scale of hundreds of neurons, with sub-millisecond time resolution. Among the three frequency ranges that we investigated, the lower two frequency ranges (gamma (30\textendash{}80 Hz) and beta (12\textendash{}30 Hz) range) showed similar network structure between cortex and hippocampus, but there were many significant differences between these structures in the high frequency range (100\textendash{}1000 Hz). The high frequency networks in cortex showed short tailed degree-distributions, shorter decay length of connectivity density, smaller clustering coefficients, and positive assortativity. Our results suggest that our method can characterize frequency dependent differences of network architecture from different brain regions. Crucially, because these differences between brain regions require millisecond temporal scales to be observed and characterized, these results underscore the importance of high temporal resolution recordings for the understanding of functional networks in neuronal systems.}, + language = {en}, + number = {8}, + journal = {PLOS ONE}, + author = {Ito, Shinya and Yeh, Fang-Chin and Hiolski, Emma and Rydygier, Przemyslaw and Gunning, Deborah E. and Hottowy, Pawel and Timme, Nicholas and Litke, Alan M. and Beggs, John M.}, + month = aug, + year = {2014}, + pages = {e105324}, + file = {C:\\Users\\saram\\Zotero\\storage\\TWARWQZI\\Ito et al. 2014 Large-Scale, High-Resolution Multielectrode-Array Recording Depicts Functional Network Differences of Cortical and Hippocampal Cultures.pdf} +} + +@phdthesis{Ito2013, + address = {United States -- Indiana}, + type = {Ph.{{D}}.}, + title = {Functional Connectivity in Networks of Hundreds of Cortical Neurons}, + copyright = {Database copyright ProQuest LLC; ProQuest does not claim copyright in the individual underlying works.}, + language = {English}, + school = {Indiana University}, + author = {Ito, Shinya}, + year = {2013}, + file = {C:\\Users\\saram\\Zotero\\storage\\CRVD6JJW\\Ito 2013 Functional connectivity in networks of hundreds of cortical neurons.pdf} +} + +@article{Pillow2008, + title = {Spatio-Temporal Correlations and Visual Signalling in a Complete Neuronal Population}, + volume = {454}, + copyright = {2008 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature07140}, + abstract = {Statistical dependencies in the responses of sensory neurons govern both the amount of stimulus information conveyed and the means by which downstream neurons can extract it. Although a variety of measurements indicate the existence of such dependencies1,2,3, their origin and importance for neural coding are poorly understood. Here we analyse the functional significance of correlated firing in a complete population of macaque parasol retinal ganglion cells using a model of multi-neuron spike responses4,5. The model, with parameters fit directly to physiological data, simultaneously captures both the stimulus dependence and detailed spatio-temporal correlations in population responses, and provides two insights into the structure of the neural code. First, neural encoding at the population level is less noisy than one would expect from the variability of individual neurons: spike times are more precise, and can be predicted more accurately when the spiking of neighbouring neurons is taken into account. Second, correlations provide additional sensory information: optimal, model-based decoding that exploits the response correlation structure extracts 20\% more information about the visual scene than decoding under the assumption of independence, and preserves 40\% more visual information than optimal linear decoding6. This model-based approach reveals the role of correlated activity in the retinal coding of visual stimuli, and provides a general framework for understanding the importance of correlated activity in populations of neurons.}, + language = {en}, + number = {7207}, + journal = {Nature}, + author = {Pillow, Jonathan W. and Shlens, Jonathon and Paninski, Liam and Sher, Alexander and Litke, Alan M. and Chichilnisky, E. J. and Simoncelli, Eero P.}, + month = aug, + year = {2008}, + pages = {995-999}, + file = {C:\\Users\\saram\\Zotero\\storage\\72DCWEW2\\Pillow et al. - 2008 - Spatio-temporal correlations and visual signalling.pdf;C:\\Users\\saram\\Zotero\\storage\\YDWLXZ5J\\Pillow et al. - 2008 - Spatio-temporal correlations and visual signalling.pdf} +} + +@article{Latimer2018, + title = {Inferring Synaptic Inputs from Spikes with a Conductance-Based Neural Encoding Model}, + copyright = {\textcopyright{} 2018, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NonCommercial 4.0 International), CC BY-NC 4.0, as described at http://creativecommons.org/licenses/by-nc/4.0/}, + doi = {10.1101/281089}, + abstract = {A popular approach to the study of information processing in the nervous system is to characterize neural responses in terms of a cascade of linear and nonlinear stages: a linear filter to describe the neuron's stimulus integration properties, followed by a rectifying nonlinearity to convert filter output to spike rate. However, real neurons integrate stimuli via the modulation of nonlinear excitatory and inhibitory synaptic conductances. Here we introduce a biophysically inspired point process model with conductance-based inputs. The model provides a novel interpretation of the popular Poisson generalized linear model (GLM) as a special kind of conductance-based model, where excitatory and inhibitory conductances are modulated in a "push-pull" manner so that total conductance remains constant. We relax this constraint to obtain a more general and flexible "conductance-based encoding model" (CBEM), which can exhibit stimulus-dependent fluctuations in gain and dynamics. We fit the model to spike trains of macaque retinal ganglion cells and show that, remarkably, we can accurately infer underlying inhibitory and excitatory conductances, using comparisons to intracellularly measured conductances. Using extracellular data, we corroborate the intracellular finding that synaptic excitation temporally precedes inhibition in retina. We show that the CBEM outperforms the classic GLM at predicting retinal ganglion cell responses to full-field stimuli, generalizes better across contrast levels, and captures inhibition-dependent response properties to spatially structured stimuli. The CBEM provides a powerful tool for gaining insights into the intracellular variables governing spiking, and forges an important link between extracellular characterization methods and biophysically detailed response models.}, + language = {en}, + journal = {bioRxiv}, + author = {Latimer, Kenneth and Rieke, Fred and Pillow, Jonathan W.}, + month = mar, + year = {2018}, + pages = {281089}, + file = {C:\\Users\\saram\\Zotero\\storage\\Q8VHLEQ5\\Latimer et al. - 2018 - Inferring synaptic inputs from spikes with a condu.pdf} +} + +@article{Rathore, + title = {Approximate {{Cluster Heat Maps}} of {{Large High}}-{{Dimensional Data}}}, + abstract = {The problem of determining whether clusters are present in numerical data (tendency assessment) is an important first step of cluster analysis. One tool for cluster tendency assessment is the visual assessment of tendency (VAT) algorithm. VAT and improved VAT (iVAT) produce an image that provides visual evidence about the number of clusters to seek in the original dataset. These methods have been successful in determining potential cluster structure in various datasets, but they can be computationally expensive for datasets with a very large number of samples. A scalable version of iVAT called siVAT approximates iVAT images, but siVAT can be computationally expensive for big datasets. In this article, we introduce a modification of siVAT called siVAT+ which approximates cluster heat maps for large volumes of high dimensional data much more rapidly than siVAT. We compare siVAT+ with siVAT on six large, high dimensional datasets. Experimental results confirm that siVAT+ obtains images similar to siVAT images in a few seconds, and is 8 - 55 times faster than siVAT.}, + author = {Rathore, Punit and Bezdek, James C and Kumar, Dheeraj and Rajasegarar, Sutharshan and Palaniswami, Marimuthu}, + pages = {6}, + file = {C:\\Users\\saram\\Zotero\\storage\\H7PA4ISY\\Rathore et al. Approximate Cluster Heat Maps of Large High-Dimensional Data.pdf} +} + +@article{Richardet2015, + title = {Large-Scale Extraction of Brain Connectivity from the Neuroscientific Literature}, + volume = {31}, + issn = {1367-4803}, + doi = {10.1093/bioinformatics/btv025}, + abstract = {Motivation: In neuroscience, as in many other scientific domains, the primary form of knowledge dissemination is through published articles. One challenge for modern neuroinformatics is finding methods to make the knowledge from the tremendous backlog of publications accessible for search, analysis and the integration of such data into computational models. A key example of this is metascale brain connectivity, where results are not reported in a normalized repository. Instead, these experimental results are published in natural language, scattered among individual scientific publications. This lack of normalization and centralization hinders the large-scale integration of brain connectivity results. In this article, we present text-mining models to extract and aggregate brain connectivity results from 13.2 million PubMed abstracts and 630\,216 full-text publications related to neuroscience. The brain regions are identified with three different named entity recognizers (NERs) and then normalized against two atlases: the Allen Brain Atlas (ABA) and the atlas from the Brain Architecture Management System (BAMS). We then use three different extractors to assess inter-region connectivity.Results: NERs and connectivity extractors are evaluated against a manually annotated corpus. The complete in litero extraction models are also evaluated against in~vivo connectivity data from ABA with an estimated precision of 78\%. The resulting database contains over 4 million brain region mentions and over 100\,000 (ABA) and 122\,000 (BAMS) potential brain region connections. This database drastically accelerates connectivity literature review, by providing a centralized repository of connectivity data to neuroscientists.Availability and implementation: The resulting models are publicly available at github.com/BlueBrain/bluima.Contact:renaud.richardet@epfl.chSupplementary information:Supplementary data are available at Bioinformatics online.}, + language = {en}, + number = {10}, + journal = {Bioinformatics}, + author = {Richardet, Renaud and Chappelier, Jean-C{\'e}dric and Telefont, Martin and Hill, Sean}, + month = may, + year = {2015}, + pages = {1640-1647}, + file = {C:\\Users\\saram\\Zotero\\storage\\4ACJ6JGB\\Richardet et al. 2015 Large-scale extraction of brain connectivity from the neuroscientific literature.pdf} +} + +@article{Marblestone2013, + title = {Physical Principles for Scalable Neural Recording}, + volume = {7}, + issn = {1662-5188}, + doi = {10.3389/fncom.2013.00137}, + abstract = {Simultaneously measuring the activities of all neurons in a mammalian brain at millisecond resolution is a challenge beyond the limits of existing techniques in neuroscience. Entirely new approaches may be required, motivating an analysis of the fundamental physical constraints on the problem. We outline the physical principles governing brain activity mapping using optical, electrical, magnetic resonance, and molecular modalities of neural recording. Focusing on the mouse brain, we analyze the scalability of each method, concentrating on the limitations imposed by spatiotemporal resolution, energy dissipation, and volume displacement. Based on this analysis, all existing approaches require orders of magnitude improvement in key parameters. Electrical recording is limited by the low multiplexing capacity of electrodes and their lack of intrinsic spatial resolution, optical methods are constrained by the scattering of visible light in brain tissue, magnetic resonance is hindered by the diffusion and relaxation timescales of water protons, and the implementation of molecular recording is complicated by the stochastic kinetics of enzymes. Understanding the physical limits of brain activity mapping may provide insight into opportunities for novel solutions. For example, unconventional methods for delivering electrodes may enable unprecedented numbers of recording sites, embedded optical devices could allow optical detectors to be placed within a few scattering lengths of the measured neurons, and new classes of molecularly engineered sensors might obviate cumbersome hardware architectures. We also study the physics of powering and communicating with microscale devices embedded in brain tissue and find that, while radio-frequency electromagnetic data transmission suffers from a severe power\textendash{}bandwidth tradeoff, communication via infrared light or ultrasound may allow high data rates due to the possibility of spatial multiplexing. The use of embedded local recording and wireless data transmission would only be viable, however, given major improvements to the power efficiency of microelectronic devices.}, + journal = {Frontiers in Computational Neuroscience}, + author = {Marblestone, Adam H. and Zamft, Bradley M. and Maguire, Yael G. and Shapiro, Mikhail G. and Cybulski, Thaddeus R. and Glaser, Joshua I. and Amodei, Dario and Stranges, P. Benjamin and Kalhor, Reza and Dalrymple, David A. and Seo, Dongjin and Alon, Elad and Maharbiz, Michel M. and Carmena, Jose M. and Rabaey, Jan M. and Boyden, Edward S. and Church, George M. and Kording, Konrad P.}, + year = {2013}, + file = {C:\\Users\\saram\\Zotero\\storage\\53YRRX3E\\Marblestone et al. - 2013 - Physical principles for scalable neural recording.pdf} +} + +@article{Choi2010, + title = {Quantifying {{Time}}-{{Varying Multiunit Neural Activity Using Entropy}}-{{Based Measures}}}, + volume = {57}, + issn = {0018-9294}, + doi = {10.1109/TBME.2010.2049266}, + abstract = {Modern microelectrode arrays make it possible to simultaneously record population neural activity. However, methods to analyze multiunit activity (MUA), which reflects the aggregate spiking activity of a population of neurons, have remained underdeveloped in comparison to those used for studying single unit activity (SUA). In scenarios where SUA is hard to record and maintain or is not representative of brain's response, MUA is informative in deciphering the brain's complex time-varying response to stimuli or to clinical insults. Here, we present two quantitative methods of analysis of the time-varying dynamics of MUA without spike detection. These methods are based on the multiresolution discrete wavelet transform (DWT) of an envelope of MUA (eMUA) followed by information theoretic measures: multiresolution entropy (MRE) and the multiresolution Kullback\textendash{}Leibler distance (MRKLD).We test the proposed quantifiers on both simulated and experimental MUA recorded from rodent cortex in an experimental model of global hypoxic\textendash{}ischemic brain injury. First, our results validate the use of the eMUA as an alternative to detecting and analyzing transient and complex spike activity. Second, the MRE and MRKLD are shown to respond to dynamic changes due to the brain's response to global injury and to identify the transient changes in the MUA.}, + number = {11}, + journal = {IEEE transactions on bio-medical engineering}, + author = {Choi, Young-Seok and Koenig, Matthew A. and Jia, Xiaofeng and Thakor, Nitish V.}, + month = nov, + year = {2010}, + file = {C:\\Users\\saram\\Zotero\\storage\\9NW8F7E5\\Choi et al. - 2010 - Quantifying Time-Varying Multiunit Neural Activity.pdf}, + pmid = {20460201}, + pmcid = {PMC3111013} +} + +@article{Blanche2006, + title = {Nyquist Interpolation Improves Neuron Yield in Multiunit Recordings}, + volume = {155}, + issn = {01650270}, + doi = {10.1016/j.jneumeth.2005.12.031}, + abstract = {Multiunit electrodes, in particular tetrodes and polytrodes, are able to isolate action potentials from many neurons simultaneously. However, inaccuracies in the post-acquisition reconstruction of recorded spike waveforms can affect the reliability of spike detection and sorting. Here we show that bandlimited interpolation with sample-and-hold delay correction reduces waveform variability, leading to improved reliability of threshold-based event detection and improved spike sorting accuracy. Interpolation of continuously acquired data is, however, computationally expensive. A cost-benefit analysis was made of varying sampling rates from 12.5 kHz (no interpolation) to 100 kHz (eight times oversampling, with respect to the Nyquist frequency), taking into consideration the final application of the data. For most purposes, including spike sorting, sample rates below 25 kHz with bandlimited interpolation to 50 kHz were ideal, with negligible gains above this rate. A practical benefit, especially for large electrode arrays, is that the bandwidth and storage requirements can be greatly reduced by using data acquisition rates at or slightly above the Nyquist frequency.}, + language = {en}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Blanche, Timothy J. and Swindale, Nicholas V.}, + month = jul, + year = {2006}, + pages = {81-91}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZFTNDSNQ\\Blanche and Swindale - 2006 - Nyquist interpolation improves neuron yield in mul.pdf} +} + +@misc{zotero-1530, + title = {Mail - Sara.Mahallati@mail.Utoronto.Ca}, + howpublished = {https://outlook.office.com/owa/?realm=mail.utoronto.ca\&path=/mail/search} +} + +@article{Cohen2000, + title = {Contributions of Intrinsic and Synaptic Activities to the Generation of Neuronal Discharges in in Vitro Hippocampus}, + volume = {524}, + issn = {0022-3751}, + doi = {10.1111/j.1469-7793.2000.00485.x}, + abstract = {Extracellular and intracellular records were made from guinea-pig hippocampal slices to examine the contributions of intrinsic cellular properties and synaptic events to the generation of neuronal activity. Extracellular signals were filtered to pass action potentials, which could be detected within a distance of about 80 $\mu$m from a discharging cell.Spontaneous action potentials were invariably detected in records from the stratum pyramidale of CA3 region. Blocking excitatory synaptic transmission with NBQX and APV reduced their frequency by 23 $\pm$ 35 \%. Suppressing synaptic inhibition, while excitation was already blocked, increased the rate of spike discharge to 177 $\pm$ 71 \% of its control value.Most action potentials recorded intracellularly from CA3 pyramidal cells were initiated in the absence of a detectable synaptic event. In contrast, most action potentials generated by inhibitory cells located close to stratum pyramidale were preceded by an EPSP.In 31 simultaneous recordings, intracellular pyramidal cell action potentials appeared consistently to initiate extracellular spikes with a mean latency of 2$\cdot$2 $\pm$ 1$\cdot$0 ms. Single inhibitory cell action potentials could initiate a reduction in the frequency of extracellular spikes of duration 10\textendash{}30 ms.Some identified extracellular spikes (n = 9) consistently preceded intracellularly recorded IPSPs. IPSPs were initiated monosynaptically with latencies of 0$\cdot$9\textendash{}1$\cdot$5 ms. In reciprocal interactions, single pyramidal cell action potentials could trigger the discharge of an identified unit that in turn appeared to initiate an IPSP in the same pyramidal cell.These data suggest that intrinsic cellular mechanisms underly much of the spontaneous activity of pyramidal cells of the CA3 region of the hippocampus in vitro. Both synaptic inhibition and a strong excitation of inhibitory cells by pyramidal cells act to reduce population activity.}, + number = {Pt 2}, + journal = {The Journal of Physiology}, + author = {Cohen, Ivan and Miles, Richard}, + month = apr, + year = {2000}, + pages = {485-502}, + file = {C:\\Users\\saram\\Zotero\\storage\\UKP865X6\\Cohen and Miles - 2000 - Contributions of intrinsic and synaptic activities.pdf}, + pmid = {10766928}, + pmcid = {PMC2269886} +} + +@article{Adams2017, + title = {Hetereogeneity in {{Neuronal Intrinsic Properties}}: {{A Possible Mechanism}} for {{Hub}}-{{Like Properties}} of the {{Rat Anterior Cingulate Cortex}} during {{Network Activity}}}, + volume = {4}, + copyright = {Copyright \textcopyright{} 2017 Adams et al.. This is an open-access article distributed under the terms of the Creative Commons Attribution 4.0 International, which permits unrestricted use, distribution and reproduction in any medium provided that the original work is properly attributed.}, + issn = {2373-2822}, + shorttitle = {Hetereogeneity in {{Neuronal Intrinsic Properties}}}, + doi = {10.1523/ENEURO.0313-16.2017}, + abstract = {The anterior cingulate cortex (ACC) is vital for a range of brain functions requiring cognitive control and has highly divergent inputs and outputs, thus manifesting as a hub in connectomic analyses. Studies show diverse functional interactions within the ACC are associated with network oscillations in the $\beta$ (20\textendash{}30 Hz) and $\gamma$ (30-80 Hz) frequency range. Oscillations permit dynamic routing of information within cortex, a function that depends on bandpass filter\textendash{}like behavior to selectively respond to specific inputs. However, a putative hub region such as ACC needs to be able to combine inputs from multiple sources rather than select a single input at the expense of others. To address this potential functional dichotomy, we modeled local ACC network dynamics in the rat in vitro. Modal peak oscillation frequencies in the $\beta$- and $\gamma$-frequency band corresponded to GABAAergic synaptic kinetics as seen in other regions; however, the intrinsic properties of ACC principal neurons were highly diverse. Computational modeling predicted that this neuronal response diversity broadened the bandwidth for filtering rhythmic inputs and supported combination\textemdash{}rather than selection\textemdash{}of different frequencies within the canonical $\gamma$ and $\beta$ electroencephalograph bands. These findings suggest that oscillating neuronal populations can support either response selection (routing) or combination, depending on the interplay between the kinetics of synaptic inhibition and the degree of heterogeneity of principal cell intrinsic conductances.}, + language = {en}, + number = {1}, + journal = {eNeuro}, + author = {Adams, Natalie E. and Sherfey, Jason S. and Kopell, Nancy J. and Whittington, Miles A. and LeBeau, Fiona E. N.}, + month = jan, + year = {2017}, + keywords = {anterior cingulate,dynamic routing,intrinsic properties,modeling,network oscillations}, + pages = {ENEURO.0313-16.2017}, + file = {C:\\Users\\saram\\Zotero\\storage\\7WPBP9AL\\Adams et al. 2017 Hetereogeneity in Neuronal Intrinsic Properties A Possible Mechanism for Hub-Like Properties of the Rat Anterior Cingulate Cortex during Network Activity.pdf} +} + +@article{Pachitariu2016, + title = {Kilosort: Realtime Spike-Sorting for Extracellular Electrophysiology with Hundreds of Channels}, + copyright = {\textcopyright{} 2016, Published by Cold Spring Harbor Laboratory Press. This pre-print is available under a Creative Commons License (Attribution-NonCommercial-NoDerivs 4.0 International), CC BY-NC-ND 4.0, as described at http://creativecommons.org/licenses/by-nc-nd/4.0/}, + shorttitle = {Kilosort}, + doi = {10.1101/061481}, + abstract = {Advances in silicon probe technology mean that in vivo electrophysiological recordings from hundreds of channels will soon become commonplace. To interpret these recordings we need fast, scalable and accurate methods for spike sorting, whose output requires minimal time for manual curation. Here we introduce Kilosort, a spike sorting framework that meets these criteria, and show that it allows rapid and accurate sorting of large-scale in vivo data. Kilosort models the recorded voltage as a sum of template waveforms triggered on the spike times, allowing overlapping spikes to be identified and resolved. Rapid processing is achieved thanks to a novel low-dimensional approximation for the spatiotemporal distribution of each template, and to batch-based optimization on GPUs. A novel post-clustering merging step based on the continuity of the templates substantially reduces the requirement for subsequent manual curation operations. We compare Kilosort to an established algorithm on data obtained from 384-channel electrodes, and show superior performance, at much reduced processing times. Data from 384-channel electrode arrays can be processed in approximately realtime. Kilosort is an important step towards fully automated spike sorting of multichannel electrode recordings, and is freely available github.com/cortex-lab/Kilosort.}, + language = {en}, + journal = {bioRxiv}, + author = {Pachitariu, Marius and Steinmetz, Nicholas and Kadir, Shabnam and Carandini, Matteo and Harris, Kenneth D.}, + month = jun, + year = {2016}, + pages = {061481}, + file = {C:\\Users\\saram\\Zotero\\storage\\IHYXSCFJ\\Pachitariu et al. - 2016 - Kilosort realtime spike-sorting for extracellular.pdf} +} + +@article{Rossant2016, + title = {Spike Sorting for Large, Dense Electrode Arrays}, + volume = {19}, + copyright = {2016 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn.4268}, + abstract = {Developments in microfabrication technology have enabled the production of neural electrode arrays with hundreds of closely spaced recording sites, and electrodes with thousands of sites are under development. These probes in principle allow the simultaneous recording of very large numbers of neurons. However, use of this technology requires the development of techniques for decoding the spike times of the recorded neurons from the raw data captured from the probes. Here we present a set of tools to solve this problem, implemented in a suite of practical, user-friendly, open-source software. We validate these methods on data from the cortex, hippocampus and thalamus of rat, mouse, macaque and marmoset, demonstrating error rates as low as 5\%.}, + language = {en}, + number = {4}, + journal = {Nature Neuroscience}, + author = {Rossant, Cyrille and Kadir, Shabnam N. and Goodman, Dan F. M. and Schulman, John and Hunter, Maximilian L. D. and Saleem, Aman B. and Grosmark, Andres and Belluscio, Mariano and Denfield, George H. and Ecker, Alexander S. and Tolias, Andreas S. and Solomon, Samuel and Buzs{\'a}ki, Gy{\"o}rgy and Carandini, Matteo and Harris, Kenneth D.}, + month = apr, + year = {2016}, + pages = {634-641}, + file = {C:\\Users\\saram\\Zotero\\storage\\FTRZKWGD\\Rossant et al. - 2016 - Spike sorting for large, dense electrode arrays.pdf} +} + +@article{Jorgenson2015, + title = {The {{BRAIN Initiative}}: Developing Technology to Catalyse Neuroscience Discovery}, + volume = {370}, + issn = {0962-8436}, + shorttitle = {The {{BRAIN Initiative}}}, + doi = {10.1098/rstb.2014.0164}, + abstract = {The evolution of the field of neuroscience has been propelled by the advent of novel technological capabilities, and the pace at which these capabilities are being developed has accelerated dramatically in the past decade. Capitalizing on this momentum, the United States launched the Brain Research through Advancing Innovative Neurotechnologies (BRAIN) Initiative to develop and apply new tools and technologies for revolutionizing our understanding of the brain. In this article, we review the scientific vision for this initiative set forth by the National Institutes of Health and discuss its implications for the future of neuroscience research. Particular emphasis is given to its potential impact on the mapping and study of neural circuits, and how this knowledge will transform our understanding of the complexity of the human brain and its diverse array of behaviours, perceptions, thoughts and emotions.}, + number = {1668}, + journal = {Philosophical Transactions of the Royal Society B: Biological Sciences}, + author = {Jorgenson, Lyric A. and Newsome, William T. and Anderson, David J. and Bargmann, Cornelia I. and Brown, Emery N. and Deisseroth, Karl and Donoghue, John P. and Hudson, Kathy L. and Ling, Geoffrey S. F. and MacLeish, Peter R. and Marder, Eve and Normann, Richard A. and Sanes, Joshua R. and Schnitzer, Mark J. and Sejnowski, Terrence J. and Tank, David W. and Tsien, Roger Y. and Ugurbil, Kamil and Wingfield, John C.}, + month = may, + year = {2015}, + file = {C:\\Users\\saram\\Zotero\\storage\\H95ECH8W\\Jorgenson et al. - 2015 - The BRAIN Initiative developing technology to cat.pdf}, + pmid = {25823863}, + pmcid = {PMC4387507} +} + +@article{Jun2017, + title = {Fully Integrated Silicon Probes for High-Density Recording of Neural Activity}, + volume = {551}, + copyright = {2017 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature24636}, + abstract = {Sensory, motor and cognitive operations involve the coordinated action of large neuronal populations across multiple brain regions in both superficial and deep structures1,2. Existing extracellular probes record neural activity with excellent spatial and temporal (sub-millisecond) resolution, but from only a few dozen neurons per shank. Optical Ca2+ imaging3,4,5 offers more coverage but lacks the temporal resolution needed to distinguish individual spikes reliably and does not measure local field potentials. Until now, no technology compatible with use in unrestrained animals has combined high spatiotemporal resolution with large volume coverage. Here we design, fabricate and test a new silicon probe known as Neuropixels to meet this need. Each probe has 384 recording channels that can programmably address 960 complementary metal\textendash{}oxide\textendash{}semiconductor (CMOS) processing-compatible low-impedance TiN6 sites that tile a single 10-mm long, 70 \texttimes{} 20-$\mu$m cross-section shank. The 6 \texttimes{} 9-mm probe base is fabricated with the shank on a single chip. Voltage signals are filtered, amplified, multiplexed and digitized on the base, allowing the direct transmission of noise-free digital data from the probe. The combination of dense recording sites and high channel count yielded well-isolated spiking activity from hundreds of neurons per probe implanted in mice and rats. Using two probes, more than 700 well-isolated single neurons were recorded simultaneously from five brain structures in an awake mouse. The fully integrated functionality and small size of Neuropixels probes allowed large populations of neurons from several brain structures to be recorded in freely moving animals. This combination of high-performance electrode technology and scalable chip fabrication methods opens a path towards recording of brain-wide neural activity during behaviour.}, + language = {en}, + number = {7679}, + journal = {Nature}, + author = {Jun, James J. and Steinmetz, Nicholas A. and Siegle, Joshua H. and Denman, Daniel J. and Bauza, Marius and Barbarits, Brian and Lee, Albert K. and Anastassiou, Costas A. and Andrei, Alexandru and Ayd{\i}n, {\c C}a{\u g}atay and Barbic, Mladen and Blanche, Timothy J. and Bonin, Vincent and Couto, Jo{\~a}o and Dutta, Barundeb and Gratiy, Sergey L. and Gutnisky, Diego A. and H{\"a}usser, Michael and Karsh, Bill and Ledochowitsch, Peter and Lopez, Carolina Mora and Mitelut, Catalin and Musa, Silke and Okun, Michael and Pachitariu, Marius and Putzeys, Jan and Rich, P. Dylan and Rossant, Cyrille and Sun, Wei-lung and Svoboda, Karel and Carandini, Matteo and Harris, Kenneth D. and Koch, Christof and O'Keefe, John and Harris, Timothy D.}, + month = nov, + year = {2017}, + pages = {232-236}, + file = {C:\\Users\\saram\\Zotero\\storage\\4JMYGYGX\\Jun et al. - 2017 - Fully integrated silicon probes for high-density r.pdf} +} + +@article{Cohen2011, + title = {Measuring and Interpreting Neuronal Correlations}, + volume = {14}, + issn = {1097-6256}, + doi = {10.1038/nn.2842}, + abstract = {Mounting evidence suggests that understanding how the brain encodes information and performs computations will require studying correlations between neurons. The recent advent of recording techniques such as multielectrode arrays and two-photon imaging has made it easier to measure correlations, opening the door to detailed exploration of their properties and contributions to cortical processing. Studies to date, however, have reported discrepant findings, providing a confusing picture. Here, we briefly review these studies and conduct simulations to explore the influence of several experimental and physiological factors on correlation measurements. Differences in response strength, the time window over which spikes are counted, spike sorting conventions, and internal states can all dramatically affect measured correlations and systematically bias estimates. Given these complicating factors, we offer guidelines for interpreting correlation data and a discussion of how best to evaluate the impact of correlations on cortical processing.}, + number = {7}, + journal = {Nature neuroscience}, + author = {Cohen, Marlene R. and Kohn, Adam}, + month = jun, + year = {2011}, + pages = {811-819}, + file = {C:\\Users\\saram\\Zotero\\storage\\YR2WHVGC\\Cohen and Kohn 2011 Measuring and interpreting neuronal correlations.pdf}, + pmid = {21709677}, + pmcid = {PMC3586814} +} + +@article{Pazienti2006, + title = {Robustness of the Significance of Spike Synchrony with Respect to Sorting Errors}, + volume = {21}, + issn = {0929-5313, 1573-6873}, + doi = {10.1007/s10827-006-8899-7}, + abstract = {The aim of spike sorting is to reconstruct single unit spike times from extracellular multi-unit recordings. Failure in the identification of a spike (false negative) or assignment of a spike to a wrong unit (false positive) are typical examples of sorting errors. Their influence on cross-correlation measures has been addressed and it has been shown that correlation analysis of multi-unit signals may lead to incorrect interpretations. We formulate a model to study the influence of sorting errors on the significance of synchronized spikes, and thus are able to study if and how the significance changes in case of imperfect sorting. Here we explore the case of pairwise analysis of simultaneously recorded neurons. Interestingly, a decrease in the significance is observed in the presence of false positives, as well as for false negatives. Furthermore, false negative errors reduce the significance of synchronized spikes more strongly than false positives. Thus, conservative sorting strategies have a stronger tendency to lead to a loss of the significance of synchronization. We demonstrate that a detailed understanding of sorting techniques and their possible effects on subsequent data analyses is important in order to rule out inconsistencies in the interpretation of results.}, + language = {en}, + number = {3}, + journal = {Journal of Computational Neuroscience}, + author = {Pazienti, Antonio and Gr{\"u}n, Sonja}, + month = dec, + year = {2006}, + pages = {329-342}, + file = {C:\\Users\\saram\\Zotero\\storage\\FJCW3VHQ\\Pazienti and Grün 2006 Robustness of the significance of spike synchrony with respect to sorting errors.pdf} +} + +@article{Satuvuori2017, + title = {Measures of Spike Train Synchrony for Data with Multiple Time Scales}, + volume = {287}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2017.05.028}, + abstract = {Background +Measures of spike train synchrony are widely used in both experimental and computational neuroscience. Time-scale independent and parameter-free measures, such as the ISI-distance, the SPIKE-distance and SPIKE-synchronization, are preferable to time scale parametric measures, since by adapting to the local firing rate they take into account all the time scales of a given dataset. +New method +In data containing multiple time scales (e.g. regular spiking and bursts) one is typically less interested in the smallest time scales and a more adaptive approach is needed. Here we propose the A-ISI-distance, the A-SPIKE-distance and A-SPIKE-synchronization, which generalize the original measures by considering the local relative to the global time scales. For the A-SPIKE-distance we also introduce a rate-independent extension called the RIA-SPIKE-distance, which focuses specifically on spike timing. +Results +The adaptive generalizations A-ISI-distance and A-SPIKE-distance allow to disregard spike time differences that are not relevant on a more global scale. A-SPIKE-synchronization does not any longer demand an unreasonably high accuracy for spike doublets and coinciding bursts. Finally, the RIA-SPIKE-distance proves to be independent of rate ratios between spike trains. +Comparison with existing methods +We find that compared to the original versions the A-ISI-distance and the A-SPIKE-distance yield improvements for spike trains containing different time scales without exhibiting any unwanted side effects in other examples. A-SPIKE-synchronization matches spikes more efficiently than SPIKE-synchronization. +Conclusions +With these proposals we have completed the picture, since we now provide adaptive generalized measures that are sensitive to firing rate only (A-ISI-distance), to timing only (ARI-SPIKE-distance), and to both at the same time (A-SPIKE-distance).}, + journal = {Journal of Neuroscience Methods}, + author = {Satuvuori, Eero and Mulansky, Mario and Bozanic, Nebojsa and Malvestio, Irene and Zeldenrust, Fleur and Lenk, Kerstin and Kreuz, Thomas}, + month = aug, + year = {2017}, + keywords = {Burst,Data analysis,ISI-distance,Spike train distances,SPIKE-distance,SPIKE-synchronization,Time-scale}, + pages = {25-38}, + file = {C:\\Users\\saram\\Zotero\\storage\\TMNHAY8H\\Satuvuori et al. 2017 Measures of spike train synchrony for data with multiple time scales.pdf} +} + +@article{Fiscella2012, + title = {Recording from Defined Populations of Retinal Ganglion Cells Using a High-Density {{CMOS}}-Integrated Microelectrode Array with Real-Time Switchable Electrode Selection}, + volume = {211}, + issn = {0165-0270}, + doi = {10.1016/j.jneumeth.2012.08.017}, + abstract = {In order to understand how retinal circuits encode visual scenes, the neural activity of defined populations of retinal ganglion cells (RGCs) has to be investigated. Here we report on a method for stimulating, detecting, and subsequently targeting defined populations of RGCs. The possibility to select a distinct population of RGCs for extracellular recording enables the design of experiments that can increase our understanding of how these neurons extract precise spatio-temporal features from the visual scene, and how the brain interprets retinal signals. We used light stimulation to elicit a response from physiologically distinct types of RGCs and then utilized the dynamic-configurability capabilities of a microelectronics-based high-density microelectrode array (MEA) to record their synchronous action potentials. The layout characteristics of the MEA made it possible to stimulate and record from multiple, highly overlapping RGCs simultaneously without light-induced artifacts. The high-density of electrodes and the high signal-to-noise ratio of the MEA circuitry allowed for recording of the activity of each RGC on 14$\pm$7 electrodes. The spatial features of the electrical activity of each RGC greatly facilitated spike sorting. We were thus able to localize, identify and record from defined RGCs within a region of mouse retina. In addition, we stimulated and recorded from genetically modified RGCs to demonstrate the applicability of optogenetic methods, which introduces an additional feature to target a defined cell type. The developed methodologies can likewise be applied to other neuronal preparations including brain slices or cultured neurons.}, + number = {1}, + journal = {Journal of Neuroscience Methods}, + author = {Fiscella, Michele and Farrow, Karl and Jones, Ian L. and J{\"a}ckel, David and M{\"u}ller, Jan and Frey, Urs and Bakkum, Douglas J. and Hantz, P{\'e}ter and Roska, Botond and Hierlemann, Andreas}, + month = oct, + year = {2012}, + keywords = {Extracellular recording,Spike sorting,Retina,CMOS,Light stimulation,Microelectrode arrays}, + pages = {103-113}, + file = {C:\\Users\\saram\\Zotero\\storage\\ICPU8DCE\\Fiscella et al. 2012 Recording from defined populations of retinal ganglion cells using a high-density CMOS-integrated microelectrode array with real-time switchable electrode selection.pdf} +} + +@article{Ness2015, + title = {Modelling and {{Analysis}} of {{Electrical Potentials Recorded}} in {{Microelectrode Arrays}} ({{MEAs}})}, + volume = {13}, + issn = {1539-2791, 1559-0089}, + doi = {10.1007/s12021-015-9265-6}, + language = {en}, + number = {4}, + journal = {Neuroinformatics}, + author = {Ness, Torbj{\o}rn V. and Chintaluri, Chaitanya and Potworowski, Jan and {\L}\k{e}ski, Szymon and G{\l}\k{a}bska, Helena and W{\'o}jcik, Daniel K. and Einevoll, Gaute T.}, + month = oct, + year = {2015}, + pages = {403-426}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z8X5ZEVV\\Ness et al. 2015 Modelling and Analysis of Electrical Potentials Recorded in Microelectrode Arrays (MEAs).pdf} +} + +@article{Yger2018, + title = {A Spike Sorting Toolbox for up to Thousands of Electrodes Validated with Ground Truth Recordings in Vitro and in Vivo}, + volume = {7}, + copyright = {\textcopyright{} 2018 Yger et al.. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.}, + issn = {2050-084X}, + doi = {10.7554/eLife.34518}, + abstract = {A spike sorting toolbox to quickly and reliably access the activity of thousands of neurons recorded with dense extracellular probes.}, + language = {en}, + journal = {eLife}, + author = {Yger, Pierre and Spampinato, Giulia LB and Esposito, Elric and Lefebvre, Baptiste and Deny, St{\'e}phane and Gardella, Christophe and Stimberg, Marcel and Jetter, Florian and Zeck, Guenther and Picaud, Serge and Duebel, Jens and Marre, Olivier}, + month = mar, + year = {2018}, + pages = {e34518}, + file = {C:\\Users\\saram\\Zotero\\storage\\M94NXM7A\\Yger et al. 2018 A spike sorting toolbox for up to thousands of electrodes validated with ground truth recordings in vitro and in vivo.pdf} +} + +@article{Anastassiou2015, + title = {Cell Type- and Activity-Dependent Extracellular Correlates of Intracellular Spiking}, + volume = {114}, + issn = {0022-3077}, + doi = {10.1152/jn.00628.2014}, + abstract = {Despite decades of extracellular action potential (EAP) recordings monitoring brain activity, the biophysical origin and inherent variability of these signals remain enigmatic. We performed whole cell patch recordings of excitatory and inhibitory neurons in rat somatosensory cortex slice while positioning a silicon probe in their vicinity to concurrently record intra- and extracellular voltages for spike frequencies under 20 Hz. We characterize biophysical events and properties (intracellular spiking, extracellular resistivity, temporal jitter, etc.) related to EAP recordings at the single-neuron level in a layer-specific manner. Notably, EAP amplitude was found to decay as the inverse of distance between the soma and the recording electrode with similar (but not identical) resistivity across layers. Furthermore, we assessed a number of EAP features and their variability with spike activity: amplitude (but not temporal) features varied substantially ($\sim$30\textendash{}50\% compared with mean) and nonmonotonically as a function of spike frequency and spike order. Such EAP variation only partly reflects intracellular somatic spike variability and points to the plethora of processes contributing to the EAP. Also, we show that the shape of the EAP waveform is qualitatively similar to the negative of the temporal derivative to the intracellular somatic voltage, as expected from theory. Finally, we tested to what extent EAPs can impact the lowpass-filtered part of extracellular recordings, the local field potential (LFP), typically associated with synaptic activity. We found that spiking of excitatory neurons can significantly impact the LFP at frequencies as low as 20 Hz. Our results question the common assertion that the LFP acts as proxy for synaptic activity.}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Anastassiou, Costas A. and Perin, Rodrigo and Buzs{\'a}ki, Gy{\"o}rgy and Markram, Henry and Koch, Christof}, + month = may, + year = {2015}, + pages = {608-623}, + file = {C:\\Users\\saram\\Zotero\\storage\\WNW3ZJMH\\Anastassiou et al. 2015 Cell type- and activity-dependent extracellular correlates of intracellular spiking.pdf} +} + +@article{Markram2015, + title = {Reconstruction and {{Simulation}} of {{Neocortical Microcircuitry}}}, + volume = {163}, + issn = {00928674}, + doi = {10.1016/j.cell.2015.09.029}, + language = {en}, + number = {2}, + journal = {Cell}, + author = {Markram, Henry and Muller, Eilif and Ramaswamy, Srikanth and Reimann, Michael W. and Abdellah, Marwan and Sanchez, Carlos Aguado and Ailamaki, Anastasia and Alonso-Nanclares, Lidia and Antille, Nicolas and Arsever, Selim and Kahou, Guy Antoine Atenekeng and Berger, Thomas K. and Bilgili, Ahmet and Buncic, Nenad and Chalimourda, Athanassia and Chindemi, Giuseppe and Courcol, Jean-Denis and Delalondre, Fabien and Delattre, Vincent and Druckmann, Shaul and Dumusc, Raphael and Dynes, James and Eilemann, Stefan and Gal, Eyal and Gevaert, Michael Emiel and Ghobril, Jean-Pierre and Gidon, Albert and Graham, Joe W. and Gupta, Anirudh and Haenel, Valentin and Hay, Etay and Heinis, Thomas and Hernando, Juan B. and Hines, Michael and Kanari, Lida and Keller, Daniel and Kenyon, John and Khazen, Georges and Kim, Yihwa and King, James G. and Kisvarday, Zoltan and Kumbhar, Pramod and Lasserre, S{\'e}bastien and Le B{\'e}, Jean-Vincent and Magalh{\~a}es, Bruno R.C. and Merch{\'a}n-P{\'e}rez, Angel and Meystre, Julie and Morrice, Benjamin Roy and Muller, Jeffrey and Mu{\~n}oz-C{\'e}spedes, Alberto and Muralidhar, Shruti and Muthurasa, Keerthan and Nachbaur, Daniel and Newton, Taylor H. and Nolte, Max and Ovcharenko, Aleksandr and Palacios, Juan and Pastor, Luis and Perin, Rodrigo and Ranjan, Rajnish and Riachi, Imad and Rodr{\'\i}guez, Jos{\'e}-Rodrigo and Riquelme, Juan Luis and R{\"o}ssert, Christian and Sfyrakis, Konstantinos and Shi, Ying and Shillcock, Julian C. and Silberberg, Gilad and Silva, Ricardo and Tauheed, Farhan and Telefont, Martin and Toledo-Rodriguez, Maria and Tr{\"a}nkler, Thomas and Van Geit, Werner and D{\'\i}az, Jafet Villafranca and Walker, Richard and Wang, Yun and Zaninetta, Stefano M. and DeFelipe, Javier and Hill, Sean L. and Segev, Idan and Sch{\"u}rmann, Felix}, + month = oct, + year = {2015}, + pages = {456-492}, + file = {C:\\Users\\saram\\Zotero\\storage\\NYY8ZWDW\\Markram et al. 2015 Reconstruction and Simulation of Neocortical Microcircuitry.pdf} +} + +@article{Schmitzer-Torbert2005, + title = {Quantitative Measures of Cluster Quality for Use in Extracellular Recordings}, + volume = {131}, + issn = {03064522}, + doi = {10.1016/j.neuroscience.2004.09.066}, + abstract = {While the use of multi-channel electrodes (stereotrodes and tetrodes) has allowed for the simultaneous recording and identification of many neurons, quantitative measures of the quality of neurons in such recordings are lacking. In multi-channel recordings, each spike waveform is discriminated in a high-dimensional space, making traditional measures of unit quality inapplicable. We describe two measures of unit isolation quality, Lratio and Isolation Distance, and evaluate their performance using simulations and tetrode recordings. Both measures quantified how well separated the spikes of one cluster (putative neuron) were from other spikes recorded simultaneously on the same multichannel electrode. In simulations and tetrode recordings, both Lratio and Isolation Distance discriminated well- and poorly-separated clusters. In data sets from the rodent hippocampus in which neurons were simultaneously recorded intracellularly and extracellularly, values of Isolation Distance and Lratio were related to the correct identification of spikes. \textcopyright{} 2005 IBRO. Published by Elsevier Ltd. All rights reserved.}, + language = {en}, + number = {1}, + journal = {Neuroscience}, + author = {Schmitzer-Torbert, N. and Jackson, J. and Henze, D. and Harris, K. and Redish, A.D.}, + month = jan, + year = {2005}, + pages = {1-11}, + file = {C:\\Users\\saram\\Zotero\\storage\\VMIWFEJZ\\Schmitzer-Torbert et al. 2005 Quantitative measures of cluster quality for use in extracellular recordings.pdf} +} + +@article{Tsodyks1997, + title = {The Neural Code between Neocortical Pyramidal Neurons Depends on Neurotransmitter Release Probability}, + volume = {94}, + copyright = {Copyright \textcopyright{} 1997, The National Academy of Sciences of the USA}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.94.2.719}, + abstract = {Although signaling between neurons is central to the functioning of the brain, we still do not understand how the code used in signaling depends on the properties of synaptic transmission. Theoretical analysis combined with patch clamp recordings from pairs of neocortical pyramidal neurons revealed that the rate of synaptic depression, which depends on the probability of neurotransmitter release, dictates the extent to which firing rate and temporal coherence of action potentials within a presynaptic population are signaled to the postsynaptic neuron. The postsynaptic response primarily reflects rates of firing when depression is slow and temporal coherence when depression is fast. A wide range of rates of synaptic depression between different pairs of pyramidal neurons was found, suggesting that the relative contribution of rate and temporal signals varies along a continuum. We conclude that by setting the rate of synaptic depression, release probability is an important factor in determining the neural code.$<$/p$>$}, + language = {en}, + number = {2}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Tsodyks, Misha V. and Markram, Henry}, + month = jan, + year = {1997}, + keywords = {action potential decoding,neural networks,synaptic depression,synaptic plasticity}, + pages = {719-723}, + file = {C:\\Users\\saram\\Zotero\\storage\\WDK5YI4W\\Tsodyks and Markram 1997 The neural code between neocortical pyramidal neurons depends on neurotransmitter release probability.pdf}, + pmid = {9012851} +} + +@article{Dayan2001, + title = {{{THEORETICAL NEUROSCIENCE}}}, + language = {en}, + author = {Dayan, Peter and Abbott, L F}, + year = {2001}, + pages = {432}, + file = {C:\\Users\\saram\\Zotero\\storage\\BLGYYBES\\Dayan and Abbott THEORETICAL NEUROSCIENCE.pdf} +} + +@article{Rullen2001, + title = {Rate {{Coding Versus Temporal Order Coding}}: {{What}} the {{Retinal Ganglion Cells Tell}} the {{Visual Cortex}}}, + volume = {13}, + issn = {0899-7667}, + shorttitle = {Rate {{Coding Versus Temporal Order Coding}}}, + doi = {10.1162/08997660152002852}, + abstract = {It is often supposed that the messages sent to the visual cortex by the retinal ganglion cells are encoded by the mean firing rates observed on spike trains generated with a Poisson process. Using an information transmission approach, we evaluate the performances of two such codes, one based on the spike count and the other on the mean interspike interval, and compare the results with a rank order code, where the first ganglion cells to emit a spike are given a maximal weight. Our results show that the rate codes are far from optimal for fast information transmission and that the temporal structure of the spike train can be efficiently used to maximize the information transfer rate under conditions where each cell needs to fire only one spike.}, + number = {6}, + journal = {Neural Computation}, + author = {Rullen, Rufin Van and Thorpe, Simon J.}, + month = jun, + year = {2001}, + pages = {1255-1283}, + file = {C:\\Users\\saram\\Zotero\\storage\\JA8FUXLC\\Rullen and Thorpe 2001 Rate Coding Versus Temporal Order Coding What the Retinal Ganglion Cells Tell the Visual Cortex.pdf} +} + +@article{Huxter2003, + title = {Independent Rate and Temporal Coding in Hippocampal Pyramidal Cells}, + volume = {425}, + copyright = {2003 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature02058}, + abstract = {In the brain, hippocampal pyramidal cells use temporal1 as well as rate2 coding to signal spatial aspects of the animal's environment or behaviour. The temporal code takes the form of a phase relationship to the concurrent cycle of the hippocampal electroencephalogram theta rhythm1. These two codes could each represent a different variable3,4. However, this requires the rate and phase to vary independently, in contrast to recent suggestions5,6 that they are tightly coupled, both reflecting the amplitude of the cell's input. Here we show that the time of firing and firing rate are dissociable, and can represent two independent variables: respectively the animal's location within the place field, and its speed of movement through the field. Independent encoding of location together with actions and stimuli occurring there may help to explain the dual roles of the hippocampus in spatial and episodic memory7,8, or may indicate a more general role of the hippocampus in relational/declarative memory9,10.}, + language = {en}, + number = {6960}, + journal = {Nature}, + author = {Huxter, John and Burgess, Neil and O'Keefe, John}, + month = oct, + year = {2003}, + pages = {828-832}, + file = {C:\\Users\\saram\\Zotero\\storage\\5KHQWUHE\\Huxter et al. 2003 Independent rate and temporal coding in hippocampal pyramidal cells.pdf} +} + +@article{Mehta2002, + title = {Role of Experience and Oscillations in Transforming a Rate Code into a Temporal Code}, + volume = {417}, + copyright = {2002 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature00807}, + abstract = {In the vast majority of brain areas, the firing rates of neurons, averaged over several hundred milliseconds to several seconds, can be strongly modulated by, and provide accurate information about, properties of their inputs. This is referred to as the rate code. However, the biophysical laws of synaptic plasticity require precise timing of spikes over short timescales ($<$10 ms)1,2. Hence it is critical to understand the physiological mechanisms that can generate precise spike timing in vivo, and the relationship between such a temporal code and a rate code. Here we propose a mechanism by which a temporal code can be generated through an interaction between an asymmetric rate code and oscillatory inhibition. Consistent with the predictions of our model, the rate3,4 and temporal5,6,7 codes of hippocampal pyramidal neurons are highly correlated. Furthermore, the temporal code becomes more robust with experience. The resulting spike timing satisfies the temporal order constraints of hebbian learning. Thus, oscillations and receptive field asymmetry may have a critical role in temporal sequence learning.}, + language = {en}, + number = {6890}, + journal = {Nature}, + author = {Mehta, M. R. and Lee, A. K. and Wilson, M. A.}, + month = jun, + year = {2002}, + pages = {741-746}, + file = {C:\\Users\\saram\\Zotero\\storage\\PP8EA2D2\\Mehta et al. 2002 Role of experience and oscillations in transforming a rate code into a temporal code.pdf} +} + +@article{Akam2014, + title = {Oscillatory Multiplexing of Population Codes for Selective Communication in the Mammalian Brain}, + volume = {15}, + copyright = {2014 Nature Publishing Group}, + issn = {1471-0048}, + doi = {10.1038/nrn3668}, + abstract = {Mammalian brains exhibit population oscillations, the structures of which vary in time and space according to behavioural state. A proposed function of these oscillations is to control the flow of signals among anatomically connected networks. However, the nature of neural coding that may support selective communication that depends on oscillations has received relatively little attention. Here, we consider the role of multiplexing, whereby multiple information streams share a common neural substrate. We suggest that multiplexing implemented through periodic modulation of firing-rate population codes enables flexible reconfiguration of effective connectivity among brain areas.}, + language = {en}, + number = {2}, + journal = {Nature Reviews Neuroscience}, + author = {Akam, Thomas and Kullmann, Dimitri M.}, + month = feb, + year = {2014}, + pages = {111-122}, + file = {C:\\Users\\saram\\Zotero\\storage\\PUZWNAL4\\Akam and Kullmann 2014 Oscillatory multiplexing of population codes for selective communication in the mammalian brain.pdf} +} + +@article{Zuo2015, + title = {Complementary {{Contributions}} of {{Spike Timing}} and {{Spike Rate}} to {{Perceptual Decisions}} in {{Rat S1}} and {{S2 Cortex}}}, + volume = {25}, + issn = {0960-9822}, + doi = {10.1016/j.cub.2014.11.065}, + abstract = {Summary +When a neuron responds to a sensory stimulus, two fundamental codes [1\textendash{}6] may transmit the information specifying stimulus identity\textemdash{}spike rate (the total number of spikes in the sequence, normalized by time) and spike timing (the~detailed millisecond-scale temporal structure of the response). To assess the functional significance of these codes, we recorded neuronal responses in primary (S1) and secondary (S2) somatosensory cortex of five rats as they used their whiskers to identify textured surfaces. From the spike trains evoked during whisker contact with the texture, we computed the information that rate and timing codes carried about texture identity and about the rat's choice. S1 and S2 spike timing carried more information about stimulus and about choice than spike rates; the conjunction of rate and timing carried more information than either code alone. Moreover, on trials when our spike-timing-decoding algorithm extracted faithful texture information, the rat was more likely to choose correctly; when our spike-timing-decoding algorithm extracted misleading texture information, the rat was more likely to err. For spike rate information, the relationship between faithfulness of the message and correct choice was significant but weaker. These results indicate that spike timing makes crucial contributions to tactile perception, complementing and surpassing those made by rate. The language by which somatosensory cortical neurons transmit information, and the readout mechanism used to produce behavior, appears to rely on multiplexed signals from spike rate and timing.}, + number = {3}, + journal = {Current Biology}, + author = {Zuo, Yanfang and Safaai, Houman and Notaro, Giuseppe and Mazzoni, Alberto and Panzeri, Stefano and Diamond, Mathew E.}, + month = feb, + year = {2015}, + pages = {357-363}, + file = {C:\\Users\\saram\\Zotero\\storage\\XQXPYFRP\\Zuo et al. 2015 Complementary Contributions of Spike Timing and Spike Rate to Perceptual Decisions in Rat S1 and S2 Cortex.pdf} +} + +@article{Fukushima2018, + title = {Structure\textendash{}function Relationships during Segregated and Integrated Network States of Human Brain Functional Connectivity}, + volume = {223}, + issn = {1863-2653, 1863-2661}, + doi = {10.1007/s00429-017-1539-3}, + abstract = {Structural white matter connections are thought to facilitate integration of neural information across functionally segregated systems. Recent studies have demonstrated that changes in the balance between segregation and integration in brain networks can be tracked by time-resolved functional connectivity derived from resting-state functional magnetic resonance imaging (rs-fMRI) data and that fluctuations between segregated and integrated network states are related to human behavior. However, how these network states relate to structural connectivity is largely unknown. To obtain a better understanding of structural substrates for these network states, we investigated how the relationship between structural connectivity, derived from diffusion tractography, and functional connectivity, as measured by rs-fMRI, changes with fluctuations between segregated and integrated states in the human brain. We found that the similarity of edge weights between structural and functional connectivity was greater in the integrated state, especially at edges connecting the default mode and the dorsal attention networks. We also demonstrated that the similarity of network partitions, evaluated between structural and functional connectivity, increased and the density of direct structural connections within modules in functional networks was elevated during the integrated state. These results suggest that, when functional connectivity exhibited an integrated network topology, structural connectivity and functional connectivity were more closely linked to each other and direct structural connections mediated a larger proportion of neural communication within functional modules. Our findings point out the possibility of significant contributions of structural connections to integrative neural processes underlying human behavior.}, + language = {en}, + number = {3}, + journal = {Brain Structure and Function}, + author = {Fukushima, Makoto and Betzel, Richard F. and He, Ye and van den Heuvel, Martijn P. and Zuo, Xi-Nian and Sporns, Olaf}, + month = apr, + year = {2018}, + pages = {1091-1106}, + file = {C:\\Users\\saram\\Zotero\\storage\\MEEC7SYR\\Fukushima et al. - 2018 - Structure–function relationships during segregated.pdf} +} + +@article{Ricci-Tersenghi2012, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {1112.4814}, + title = {The {{Bethe}} Approximation for Solving the Inverse {{Ising}} Problem: A Comparison with Other Inference Methods}, + volume = {2012}, + issn = {1742-5468}, + shorttitle = {The {{Bethe}} Approximation for Solving the Inverse {{Ising}} Problem}, + doi = {10.1088/1742-5468/2012/08/P08015}, + abstract = {The inverse Ising problem consists in inferring the coupling constants of an Ising model given the correlation matrix. The fastest methods for solving this problem are based on mean-field approximations, but which one performs better in the general case is still not completely clear. In the first part of this work, I summarize the formulas for several mean- field approximations and I derive new analytical expressions for the Bethe approximation, which allow to solve the inverse Ising problem without running the Susceptibility Propagation algorithm (thus avoiding the lack of convergence). In the second part, I compare the accuracy of different mean field approximations on several models (diluted ferromagnets and spin glasses) defined on random graphs and regular lattices, showing which one is in general more effective. A simple improvement over these approximations is proposed. Also a fundamental limitation is found in using methods based on TAP and Bethe approximations in presence of an external field.}, + number = {08}, + journal = {Journal of Statistical Mechanics: Theory and Experiment}, + author = {Ricci-Tersenghi, Federico}, + month = aug, + year = {2012}, + keywords = {Condensed Matter - Disordered Systems and Neural Networks,Condensed Matter - Statistical Mechanics}, + pages = {P08015}, + file = {C:\\Users\\saram\\Zotero\\storage\\T3NWSP4I\\Ricci-Tersenghi 2012 The Bethe approximation for solving the inverse Ising problem a comparison with other inference methods.pdf} +} + +@article{Nguyen2017, + title = {Inverse Statistical Problems: From the Inverse {{Ising}} Problem to Data Science}, + volume = {66}, + issn = {0001-8732, 1460-6976}, + shorttitle = {Inverse Statistical Problems}, + doi = {10.1080/00018732.2017.1341604}, + language = {en}, + number = {3}, + journal = {Advances in Physics}, + author = {Nguyen, H. Chau and Zecchina, Riccardo and Berg, Johannes}, + month = jul, + year = {2017}, + pages = {197-261}, + file = {C:\\Users\\saram\\Zotero\\storage\\FPASIJER\\Nguyen et al. 2017 Inverse statistical problems from the inverse Ising problem to data science.pdf} +} + +@article{Sakellariou, + title = {Inverse Inference in the Asymmetric {{Ising}} Model}, + language = {en}, + author = {Sakellariou, Jason}, + pages = {150}, + file = {C:\\Users\\saram\\Zotero\\storage\\EIUZ4EKL\\Sakellariou Inverse inference in the asymmetric Ising model.pdf} +} + +@article{Carracedo2013, + title = {A {{Neocortical Delta Rhythm Facilitates Reciprocal Interlaminar Interactions}} via {{Nested Theta Rhythms}}}, + volume = {33}, + copyright = {Copyright \textcopyright{} 2013 the authors 0270-6474/13/3310750-12\$15.00/0. This article is freely available online through the J Neurosci Author Open Choice option.}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0735-13.2013}, + abstract = {Delta oscillations (1\textendash{}4 Hz) associate with deep sleep and are implicated in memory consolidation and replay of cortical responses elicited during wake states. A potent local generator has been characterized in thalamus, and local generators in neocortex have been suggested. Here we demonstrate that isolated rat neocortex generates delta rhythms in conditions mimicking the neuromodulatory state during deep sleep (low cholinergic and dopaminergic tone). The rhythm originated in an NMDA receptor-driven network of intrinsic bursting (IB) neurons in layer 5, activating a source of GABAB receptor-mediated inhibition. In contrast, regular spiking (RS) neurons in layer 5 generated theta-frequency outputs. In layer 2/3 principal cells, outputs from IB cells associated with IPSPs, whereas those from layer 5 RS neurons related to nested bursts of theta-frequency EPSPs. Both interlaminar spike and field correlations revealed a sequence of events whereby sparse spiking in layer 2/3 was partially reflected back from layer 5 on each delta period. We suggest that these reciprocal, interlaminar interactions may represent a ``Helmholtz machine''-like process to control synaptic rescaling during deep sleep.}, + language = {en}, + number = {26}, + journal = {Journal of Neuroscience}, + author = {Carracedo, Lucy M. and Kjeldsen, Henrik and Cunnington, Leonie and Jenkins, Alastair and Schofield, Ian and Cunningham, Mark O. and Davies, Ceri H. and Traub, Roger D. and Whittington, Miles A.}, + month = jun, + year = {2013}, + pages = {10750-10761}, + file = {C:\\Users\\saram\\Zotero\\storage\\5NIW5GIY\\Carracedo et al. 2013 A Neocortical Delta Rhythm Facilitates Reciprocal Interlaminar Interactions via Nested Theta Rhythms.pdf}, + pmid = {23804097} +} + +@article{Shoham2006, + title = {How Silent Is the Brain: Is There a ``Dark Matter'' Problem in Neuroscience?}, + volume = {192}, + issn = {0340-7594, 1432-1351}, + shorttitle = {How Silent Is the Brain}, + doi = {10.1007/s00359-006-0117-6}, + abstract = {Evidence from a variety of recording methods suggests that many areas of the brain are far more sparsely active than commonly thought. Here, we review experimental findings pointing to the existence of neurons which fire action potentials rarely or only to very specific stimuli. Because such neurons would be difficult to detect with the most common method of monitoring neural activity in vivo\textemdash{}extracellular electrode recording\textemdash{}they could be referred to as ``dark neurons,'' in analogy to the astrophysical observation that much of the matter in the universe is undetectable, or dark. In addition to discussing the evidence for largely silent neurons, we review technical advances that will ultimately answer the question: how silent is the brain?}, + language = {en}, + number = {8}, + journal = {Journal of Comparative Physiology A}, + author = {Shoham, Shy and O'Connor, Daniel H. and Segev, Ronen}, + month = aug, + year = {2006}, + pages = {777-784}, + file = {C:\\Users\\saram\\Zotero\\storage\\DKGQQS4L\\Shoham et al. 2006 How silent is the brain is there a “dark matter” problem in neuroscience.pdf} +} + +@article{Dehghani2016, + title = {Dynamic {{Balance}} of {{Excitation}} and {{Inhibition}} in {{Human}} and {{Monkey Neocortex}}}, + volume = {6}, + issn = {2045-2322}, + doi = {10.1038/srep23176}, + language = {en}, + number = {1}, + journal = {Scientific Reports}, + author = {Dehghani, Nima and Peyrache, Adrien and Telenczuk, Bartosz and Le Van Quyen, Michel and Halgren, Eric and Cash, Sydney S. and Hatsopoulos, Nicholas G. and Destexhe, Alain}, + month = sep, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\2C46EWV5\\Dehghani et al. 2016 Dynamic Balance of Excitation and Inhibition in Human and Monkey Neocortex.pdf;C:\\Users\\saram\\Zotero\\storage\\5GZI3UM7\\Dehghani et al. 2016 Dynamic Balance of Excitation and Inhibition in Human and Monkey Neocortex.pdf} +} + +@article{Zhang2018, + title = {A Review on Cluster Estimation Methods and Their Application to Neural Spike Data}, + volume = {15}, + issn = {1741-2560, 1741-2552}, + doi = {10.1088/1741-2552/aab385}, + abstract = {The extracellular action potentials recorded on an electrode result from the collective simultaneous electrophysiological activity of an unknown number of neurons. Identifying and assigning these action potentials to their firing neurons\textemdash`spike sorting'\textemdash{}is an indispensable step in studying the function and the response of an individual or ensemble of neurons to certain stimuli. Given the task of neural spike sorting, the determination of the number of clusters (neurons) is arguably the most difficult and challenging issue, due to the existence of background noise and the overlap and interactions among neurons in neighbouring regions. It is not surprising that some researchers still rely on visual inspection by experts to estimate the number of clusters in neural spike sorting. Manual inspection, however, is not suitable to processing the vast, ever-growing amount of neural data. To address this pressing need, in this paper, thirty-three clustering validity indices have been comprehensively reviewed and implemented to determine the number of clusters in neural datasets. To gauge the suitability of the indices to neural spike data, and inform the selection process, we then calculated the indices by applying k-means clustering to twenty widely used synthetic neural datasets and one empirical dataset, and compared the performance of these indices against preexisting ground truth labels. The results showed that the top five validity indices work consistently well across variations in noise level, both for the synthetic datasets and the real dataset. Using these top performing indices provides strong support for the determination of the number of neural clusters, which is essential in the spike sorting process.}, + language = {en}, + number = {3}, + journal = {Journal of Neural Engineering}, + author = {Zhang, James and Nguyen, Thanh and Cogill, Steven and Bhatti, Asim and Luo, Lingkun and Yang, Samuel and Nahavandi, Saeid}, + month = jun, + year = {2018}, + pages = {031003}, + file = {C:\\Users\\saram\\Zotero\\storage\\BUXXVSUY\\Zhang et al. 2018 A review on cluster estimation methods and their application to neural spike data.pdf} +} + +@inproceedings{Nghiem2017, + series = {Lecture Notes in Computer Science}, + title = {Pairwise {{Ising Model Analysis}} of {{Human Cortical Neuron Recordings}}}, + isbn = {978-3-319-68444-4 978-3-319-68445-1}, + doi = {10.1007/978-3-319-68445-1_30}, + abstract = {During wakefulness and deep sleep brain states, cortical neural networks show a different behavior, with the second characterized by transients of high network activity. To investigate their impact on neuronal behavior, we apply a pairwise Ising model analysis by inferring the maximum entropy model that reproduces single and pairwise moments of the neuron's spiking activity. In this work we first review the inference algorithm introduced in Ferrari, Phys. Rev. E (2016) [1]. We then succeed in applying the algorithm to infer the model from a large ensemble of neurons recorded by multi-electrode array in human temporal cortex. We compare the Ising model performance in capturing the statistical properties of the network activity during wakefulness and deep sleep. For the latter, the pairwise model misses relevant transients of high network activity, suggesting that additional constraints are necessary to accurately model the data.}, + language = {en}, + booktitle = {Geometric {{Science}} of {{Information}}}, + publisher = {{Springer, Cham}}, + author = {Nghiem, Trang-Anh and Marre, Olivier and Destexhe, Alain and Ferrari, Ulisse}, + month = nov, + year = {2017}, + pages = {257-264}, + file = {C:\\Users\\saram\\Zotero\\storage\\6NSJAW4K\\Nghiem et al. - 2017 - Pairwise Ising Model Analysis of Human Cortical Ne.pdf} +} + +@article{Wetzel2017, + title = {Machine Learning of Explicit Order Parameters: {{From}} the {{Ising}} Model to {{SU}}(2) Lattice Gauge Theory}, + volume = {96}, + shorttitle = {Machine Learning of Explicit Order Parameters}, + doi = {10.1103/PhysRevB.96.184410}, + abstract = {We present a solution to the problem of interpreting neural networks classifying phases of matter. We devise a procedure for reconstructing the decision function of an artificial neural network as a simple function of the input, provided the decision function is sufficiently symmetric. In this case one can easily deduce the quantity by which the neural network classifies the input. The method is applied to the Ising model and SU(2) lattice gauge theory. In both systems we deduce the explicit expressions of the order parameters from the decision functions of the neural networks. We assume no prior knowledge about the Hamiltonian or the order parameters except Monte Carlo\textendash{}sampled configurations.}, + number = {18}, + journal = {Physical Review B}, + author = {Wetzel, Sebastian J. and Scherzer, Manuel}, + month = nov, + year = {2017}, + pages = {184410} +} + +@article{Koch-Janusz2018, + title = {Mutual Information, Neural Networks and the Renormalization Group}, + copyright = {2018 The Author(s)}, + issn = {1745-2481}, + doi = {10.1038/s41567-018-0081-4}, + abstract = {Finding the relevant degrees of freedom of a system is a key step in any renormalization group procedure. But this can be difficult, particularly in strongly interacting systems. A machine-learning algorithm proves adept at identifying them for us.}, + language = {en}, + journal = {Nature Physics}, + author = {Koch-Janusz, Maciej and Ringel, Zohar}, + month = mar, + year = {2018}, + pages = {1}, + file = {C:\\Users\\saram\\Zotero\\storage\\JUUJ6GNX\\Koch-Janusz and Ringel - 2018 - Mutual information, neural networks and the renorm.pdf} +} + +@article{Kadirvelu2017, + title = {Inferring Structural Connectivity Using {{Ising}} Couplings in Models of Neuronal Networks}, + volume = {7}, + issn = {2045-2322}, + doi = {10.1038/s41598-017-05462-2}, + abstract = {Functional connectivity metrics have been widely used to infer the underlying structural connectivity in neuronal networks. Maximum entropy based Ising models have been suggested to discount the effect of indirect interactions and give good results in inferring the true anatomical connections. However, no benchmarking is currently available to assess the performance of Ising couplings against other functional connectivity metrics in the microscopic scale of neuronal networks through a wide set of network conditions and network structures. In this paper, we study the performance of the Ising model couplings to infer the synaptic connectivity in in silico networks of neurons and compare its performance against partial and cross-correlations~for different correlation levels, firing rates, network sizes, network densities, and topologies. Our results show that the relative performance amongst the three functional connectivity metrics depends primarily on the network correlation levels. Ising couplings detected the most structural links at very weak network correlation levels, and partial correlations outperformed Ising couplings and cross-correlations at strong correlation levels. The result was consistent across varying firing rates, network sizes, and topologies. The findings of this paper serve as a guide in choosing the right functional connectivity tool to reconstruct the structural connectivity.}, + journal = {Scientific Reports}, + author = {Kadirvelu, Balasundaram and Hayashi, Yoshikatsu and Nasuto, Slawomir J.}, + month = aug, + year = {2017}, + file = {C:\\Users\\saram\\Zotero\\storage\\CQGGQ6N9\\Kadirvelu et al. - 2017 - Inferring structural connectivity using Ising coup.pdf}, + pmid = {28811468}, + pmcid = {PMC5557813} +} + +@article{Tkacik2006, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {q-bio/0611072}, + title = {Ising Models for Networks of Real Neurons}, + abstract = {Ising models with pairwise interactions are the least structured, or maximum-entropy, probability distributions that exactly reproduce measured pairwise correlations between spins. Here we use this equivalence to construct Ising models that describe the correlated spiking activity of populations of 40 neurons in the retina, and show that pairwise interactions account for observed higher-order correlations. By first finding a representative ensemble for observed networks we can create synthetic networks of 120 neurons, and find that with increasing size the networks operate closer to a critical point and start exhibiting collective behaviors reminiscent of spin glasses.}, + journal = {arXiv:q-bio/0611072}, + author = {Tkacik, Gasper and Schneidman, Elad and Berry II, Michael J. and Bialek, William}, + month = nov, + year = {2006}, + keywords = {Quantitative Biology - Neurons and Cognition,Condensed Matter - Disordered Systems and Neural Networks}, + file = {C:\\Users\\saram\\Zotero\\storage\\IS2RKS35\\Tkacik et al. - 2006 - Ising models for networks of real neurons.pdf} +} + +@article{Yu2008, + title = {A {{Small World}} of {{Neuronal Synchrony}}}, + volume = {18}, + issn = {1047-3211}, + doi = {10.1093/cercor/bhn047}, + abstract = {A small-world network has been suggested to be an efficient solution for achieving both modular and global processing\textemdash{}a property highly desirable for brain computations. Here, we investigated functional networks of cortical neurons using correlation analysis to identify functional connectivity. To reconstruct the interaction network, we applied the Ising model based on the principle of maximum entropy. This allowed us to assess the interactions by measuring pairwise correlations and to assess the strength of coupling from the degree of synchrony. Visual responses were recorded in visual cortex of anesthetized cats, simultaneously from up to 24 neurons. First, pairwise correlations captured most of the patterns in the population's activity and, therefore, provided a reliable basis for the reconstruction of the interaction networks. Second, and most importantly, the resulting networks had small-world properties; the average path lengths were as short as in simulated random networks, but the clustering coefficients were larger. Neurons differed considerably with respect to the number and strength of interactions, suggesting the existence of ``hubs'' in the network. Notably, there was no evidence for scale-free properties. These results suggest that cortical networks are optimized for the coexistence of local and global computations: feature detection and feature integration or binding.}, + language = {en}, + number = {12}, + journal = {Cerebral Cortex}, + author = {Yu, Shan and Huang, Debin and Singer, Wolf and Nikoli{\'c}, Danko}, + month = dec, + year = {2008}, + pages = {2891-2901}, + file = {C:\\Users\\saram\\Zotero\\storage\\4DK2ILFA\\Yu et al. - 2008 - A Small World of Neuronal Synchrony.pdf} +} + +@article{Pernice2013, + title = {Reconstruction of Sparse Connectivity in Neural Networks from Spike Train Covariances}, + volume = {2013}, + issn = {1742-5468}, + doi = {10.1088/1742-5468/2013/03/P03008}, + abstract = {The inference of causation from correlation is in general highly problematic. Correspondingly, it is difficult to infer the existence of physical synaptic connections between neurons from correlations in their activity. Covariances in neural spike trains and their relation to network structure have been the subject of intense research, both experimentally and theoretically. The influence of recurrent connections on covariances can be characterized directly in linear models, where connectivity in the network is described by a matrix of linear coupling kernels. However, as indirect connections also give rise to covariances, the inverse problem of inferring network structure from covariances can generally not be solved unambiguously.}, + language = {en}, + number = {03}, + journal = {Journal of Statistical Mechanics: Theory and Experiment}, + author = {Pernice, Volker and Rotter, Stefan}, + month = mar, + year = {2013}, + pages = {P03008}, + file = {C:\\Users\\saram\\Zotero\\storage\\JXAXRNUZ\\Pernice and Rotter - 2013 - Reconstruction of sparse connectivity in neural ne.pdf} +} + +@article{Barton2013, + title = {Ising Models for Neural Activity Inferred via Selective Cluster Expansion: Structural and Coding Properties}, + volume = {2013}, + issn = {1742-5468}, + shorttitle = {Ising Models for Neural Activity Inferred via Selective Cluster Expansion}, + doi = {10.1088/1742-5468/2013/03/P03002}, + abstract = {We describe the Selective Cluster Expansion (SCE) of the entropy, a method for inferring an Ising model which describes the correlated activity of populations of neurons [1, 2]. We re-analyze data obtained from multielectrode recordings performed in vitro on the retina and in vivo on the prefrontal cortex. Recorded population sizes N range from N = 37 to N = 117 neurons. We compare the SCE method with the simplest mean field methods (corresponding to a Gaussian model) and with regularizations which favor sparse networks (L1 norm) or penalize large couplings (L2 norm). The network of the strongest interactions inferred via mean field methods generally agree with those obtained from SCE. Reconstruction of the sampled moments of the distributions, corresponding to neuron spiking frequencies and pairwise correlations, and the prediction of higher moments including three-cell correlations and multi-neuron firing frequencies, is more difficult than determining the large-scale structure of the interaction network, and apart from a cortical recording in which the measured correlation indices are small, these goals are achieved with the SCE but not with mean field approaches. We also find differences in the inferred structure of retinal and cortical networks: inferred interactions tend to be more irregular and sparse for cortical data than for retinal data. This result may reflect the structure of the recording. As a consequence the SCE is more effective for retinal data when expanding the entropy with respect to a mean field reference S -SMF, while expansions of the entropy S alone perform better for cortical data.}, + language = {en}, + number = {03}, + journal = {Journal of Statistical Mechanics: Theory and Experiment}, + author = {Barton, John and Cocco, Simona}, + month = mar, + year = {2013}, + pages = {P03002}, + file = {C:\\Users\\saram\\Zotero\\storage\\W7MDIHIM\\Barton and Cocco - 2013 - Ising models for neural activity inferred via sele.pdf} +} + +@article{Kusmartsev, + title = {Ising Model \textendash{} {{An}} Analysis, from Opinions to Neuronal States.}, + abstract = {Here we have developed a mathematical model of a random neuron network with two types of neurons: inhibitory and excitatory. Every neuron was modelled as a functional cell with three states, parallel to hyperpolarised, neutral and depolarised states in vivo. These either induce a signal or not into their postsynaptic partners. First a system including just one network was simulated numerically using the software developed in Python.}, + language = {en}, + author = {Kusmartsev, Vassili F and Zhang, W and Kusmartseva, A and Balanov, A and Janson, N and Kusmartsev, F V}, + pages = {16}, + file = {C:\\Users\\saram\\Zotero\\storage\\D97KR83D\\Kusmartsev et al. - Ising model – An analysis, from opinions to neuron.pdf} +} + +@article{Capone2015, + title = {Inferring {{Synaptic Structure}} in {{Presence}} of {{Neural Interaction Time Scales}}}, + volume = {10}, + issn = {1932-6203}, + doi = {10.1371/journal.pone.0118412}, + abstract = {Biological networks display a variety of activity patterns reflecting a web of interactions that is complex both in space and time. Yet inference methods have mainly focused on reconstructing, from the network's activity, the spatial structure, by assuming equilibrium conditions or, more recently, a probabilistic dynamics with a single arbitrary time-step. Here we show that, under this latter assumption, the inference procedure fails to reconstruct the synaptic matrix of a network of integrate-and-fire neurons when the chosen time scale of interaction does not closely match the synaptic delay or when no single time scale for the interaction can be identified; such failure, moreover, exposes a distinctive bias of the inference method that can lead to infer as inhibitory the excitatory synapses with interaction time scales longer than the model's time-step. We therefore introduce a new two-step method, that first infers through cross-correlation profiles the delay-structure of the network and then reconstructs the synaptic matrix, and successfully test it on networks with different topologies and in different activity regimes. Although step one is able to accurately recover the delay-structure of the network, thus getting rid of any a priori guess about the time scales of the interaction, the inference method introduces nonetheless an arbitrary time scale, the time-bin dt used to binarize the spike trains. We therefore analytically and numerically study how the choice of dt affects the inference in our network model, finding that the relationship between the inferred couplings and the real synaptic efficacies, albeit being quadratic in both cases, depends critically on dt for the excitatory synapses only, whilst being basically independent of it for the inhibitory ones.}, + language = {en}, + number = {3}, + journal = {PLOS ONE}, + author = {Capone, Cristiano and Filosa, Carla and Gigante, Guido and Ricci-Tersenghi, Federico and Giudice, Paolo Del}, + month = mar, + year = {2015}, + keywords = {Synapses,Neurons,Neural networks,Membrane potential,Probability distribution,Action potentials,Decision making,Depression}, + pages = {e0118412}, + file = {C:\\Users\\saram\\Zotero\\storage\\DLC2YEWT\\Capone et al. - 2015 - Inferring Synaptic Structure in Presence of Neural.pdf} +} + +@article{Battaglia, + title = {Memory Consolidation in Rats}, + language = {en}, + author = {Battaglia, Peyrache}, + pages = {28}, + file = {C:\\Users\\saram\\Zotero\\storage\\27W238QB\\Battaglia - Memory consolidation in rats.pdf} +} + +@article{Hennig, + title = {Maximum {{Entropy Models}} in {{Neuroscience}}}, + language = {en}, + author = {Hennig, Matthias}, + pages = {26}, + file = {C:\\Users\\saram\\Zotero\\storage\\ILFH4ITN\\Hennig - Maximum Entropy Models in Neuroscience.pdf} +} + +@article{Roudi2009, + title = {Ising Model for Neural Data: {{Model}} Quality and Approximate Methods for Extracting Functional Connectivity}, + volume = {79}, + issn = {1539-3755, 1550-2376}, + shorttitle = {Ising Model for Neural Data}, + doi = {10.1103/PhysRevE.79.051915}, + language = {en}, + number = {5}, + journal = {Physical Review E}, + author = {Roudi, Yasser and Tyrcha, Joanna and Hertz, John}, + month = may, + year = {2009}, + file = {C:\\Users\\saram\\Zotero\\storage\\SLX2QLB4\\Roudi et al. 2009 Ising model for neural data Model quality and approximate methods for extracting functional connectivity.pdf} +} + +@article{Roudi2009c, + title = {Statistical Physics of Pairwise Probability Models}, + volume = {3}, + issn = {1662-5188}, + doi = {10.3389/neuro.10.022.2009}, + abstract = {Statistical models for describing the probability distribution over the states of biological systems are commonly used for dimensional reduction. Among these models, pairwise models are very attractive in part because they can be fit using a reasonable amount of data: knowledge of the means and correlations between pairs of elements in the system is sufficient. Not surprisingly, then, using pairwise models for studying neural data has been the focus of many studies in recent years. In this paper, we describe how tools from statistical physics can be employed for studying and using pairwise models. We build on our previous work on the subject and study the relation between different methods for fitting these models and evaluating their quality. In particular, using data from simulated cortical networks we study how the quality of various approximate methods for inferring the parameters in a pairwise model depends on the time bin chosen for binning the data. We also study the effect of the size of the time bin on the model quality itself, again using simulated data. We show that using finer time bins increases the quality of the pairwise model. We offer new ways of deriving the expressions reported in our previous work for assessing the quality of pairwise models.}, + language = {English}, + journal = {Frontiers in Computational Neuroscience}, + author = {Roudi, Yasser and Aurell, Erik and Hertz, John A.}, + year = {2009}, + keywords = {inference,inverse ising problem,maximum entropy distribution,pairwise models}, + file = {C:\\Users\\saram\\Zotero\\storage\\GTD4M2WZ\\Roudi et al. 2009 Statistical physics of pairwise probability models.pdf} +} + +@article{Hertz2010, + title = {Inferring Network Connectivity Using Kinetic {{Ising}} Models}, + volume = {11}, + issn = {1471-2202}, + doi = {10.1186/1471-2202-11-S1-P51}, + number = {1}, + journal = {BMC Neuroscience}, + author = {Hertz, John A. and Roudi, Yasser and Thorning, Andreas and Tyrcha, Joanna and Aurell, Erik and Zeng, Hong-Li}, + month = jul, + year = {2010}, + keywords = {Approximate Formula,Connection Strength,Firing Rate,Functional Connectivity,Ising Model}, + pages = {P51}, + file = {C:\\Users\\saram\\Zotero\\storage\\PT6MA6VL\\Hertz et al. 2010 Inferring network connectivity using kinetic Ising models.pdf} +} + +@article{Tyrcha2011, + title = {Network Inference from Non-Stationary Spike Trains}, + volume = {12}, + issn = {1471-2202}, + doi = {10.1186/1471-2202-12-S1-P150}, + language = {en}, + number = {Suppl 1}, + journal = {BMC Neuroscience}, + author = {Tyrcha, Joanna and Roudi, Yasser and Hertz, John}, + year = {2011}, + pages = {P150}, + file = {C:\\Users\\saram\\Zotero\\storage\\EFTUCCGZ\\Tyrcha et al. 2011 Network inference from non-stationary spike trains.pdf} +} + +@article{Hertz2011, + archivePrefix = {arXiv}, + eprinttype = {arxiv}, + eprint = {1106.1752}, + primaryClass = {cond-mat, q-bio}, + title = {Ising {{Models}} for {{Inferring Network Structure From Spike Data}}}, + abstract = {Now that spike trains from many neurons can be recorded simultaneously, there is a need for methods to decode these data to learn about the networks that these neurons are part of. One approach to this problem is to adjust the parameters of a simple model network to make its spike trains resemble the data as much as possible. The connections in the model network can then give us an idea of how the real neurons that generated the data are connected and how they influence each other. In this chapter we describe how to do this for the simplest kind of model: an Ising network. We derive algorithms for finding the best model connection strengths for fitting a given data set, as well as faster approximate algorithms based on mean field theory. We test the performance of these algorithms on data from model networks and experiments.}, + journal = {arXiv:1106.1752 [cond-mat, q-bio]}, + author = {Hertz, John and Roudi, Yasser and Tyrcha, Joanna}, + month = jun, + year = {2011}, + keywords = {Condensed Matter - Disordered Systems and Neural Networks,Quantitative Biology - Quantitative Methods}, + file = {C:\\Users\\saram\\Zotero\\storage\\GESAR7UG\\Hertz et al. 2011 Ising Models for Inferring Network Structure From Spike Data.pdf} +} + +@book{Quiroga2013, + title = {Principles of {{Neural Coding}}}, + isbn = {978-1-4398-5331-3}, + abstract = {Understanding how populations of neurons encode information is the challenge faced by researchers in the field of neural coding. Focusing on the many mysteries and marvels of the mind has prompted a prominent team of experts in the field to put their heads together and fire up a book on the subject. Simply titled Principles of Neural Coding, this book covers the complexities of this discipline. It centers on some of the major developments in this area and presents a complete assessment of how neurons in the brain encode information. The book collaborators contribute various chapters that describe results in different systems (visual, auditory, somatosensory perception, etc.) and different species (monkeys, rats, humans, etc). Concentrating on the recording and analysis of the firing of single and multiple neurons, and the analysis and recording of other integrative measures of network activity and network states\textemdash{}such as local field potentials or current source densities\textemdash{}is the basis of the introductory chapters. Provides a comprehensive and interdisciplinary approach Describes topics of interest to a wide range of researchers The book then moves forward with the description of the principles of neural coding for different functions and in different species and concludes with theoretical and modeling works describing how information processing functions are implemented. The text not only contains the most important experimental findings, but gives an overview of the main methodological aspects for studying neural coding. In addition, the book describes alternative approaches based on simulations with neural networks and in silico modeling in this highly interdisciplinary topic. It can serve as an important reference to students and professionals.}, + language = {en}, + publisher = {{CRC Press}}, + author = {Quiroga, Rodrigo Quian and Panzeri, Stefano}, + month = may, + year = {2013}, + keywords = {Medical / Biotechnology,Science / Life Sciences / Neuroscience,Technology \& Engineering / Biomedical} +} + +@article{Zeng2013, + title = {Maximum {{Likelihood Reconstruction}} for {{Ising Models}} with {{Asynchronous Updates}}}, + volume = {110}, + doi = {10.1103/PhysRevLett.110.210601}, + abstract = {We describe how the couplings in an asynchronous kinetic Ising model can be inferred. We consider two cases: one in which we know both the spin history and the update times and one in which we know only the spin history. For the first case, we show that one can average over all possible choices of update times to obtain a learning rule that depends only on spin correlations and can also be derived from the equations of motion for the correlations. For the second case, the same rule can be derived within a further decoupling approximation. We study all methods numerically for fully asymmetric Sherrington-Kirkpatrick models, varying the data length, system size, temperature, and external field. Good convergence is observed in accordance with the theoretical expectations.}, + number = {21}, + journal = {Physical Review Letters}, + author = {Zeng, Hong-Li and Alava, Mikko and Aurell, Erik and Hertz, John and Roudi, Yasser}, + month = may, + year = {2013}, + pages = {210601}, + file = {C:\\Users\\saram\\Zotero\\storage\\IFHG7AYC\\Zeng et al. 2013 Maximum Likelihood Reconstruction for Ising Models with Asynchronous Updates.pdf} +} + +@article{Roudi2015a, + series = {Large-Scale Recording Technology (32)}, + title = {Multi-Neuronal Activity and Functional Connectivity in Cell Assemblies}, + volume = {32}, + issn = {0959-4388}, + doi = {10.1016/j.conb.2014.10.011}, + abstract = {Our ability to collect large amounts of data from many cells has been paralleled by the development of powerful statistical models for extracting information from this data. Here we discuss how the activity of cell assemblies can be analyzed using these models, focusing on the generalized linear models and the maximum entropy models and describing a number of recent studies that employ these tools for analyzing multi-neuronal activity. We show results from simulations comparing inferred functional connectivity, pairwise correlations and the real synaptic connections in simulated networks demonstrating the power of statistical models in inferring functional connectivity. Further development of network reconstruction techniques based on statistical models should lead to more powerful methods of understanding functional anatomy of cell assemblies.}, + journal = {Current Opinion in Neurobiology}, + author = {Roudi, Yasser and Dunn, Benjamin and Hertz, John}, + month = jun, + year = {2015}, + pages = {38-44}, + file = {C:\\Users\\saram\\Zotero\\storage\\SRD8ZV8H\\Roudi et al. 2015 Multi-neuronal activity and functional connectivity in cell assemblies.pdf} +} + +@article{Roudi2009d, + title = {Pairwise {{Maximum Entropy Models}} for {{Studying Large Biological Systems}}: {{When They Can Work}} and {{When They Can}}'t}, + volume = {5}, + issn = {1553-7358}, + shorttitle = {Pairwise {{Maximum Entropy Models}} for {{Studying Large Biological Systems}}}, + doi = {10.1371/journal.pcbi.1000380}, + abstract = {One of the most critical problems we face in the study of biological systems is building accurate statistical descriptions of them. This problem has been particularly challenging because biological systems typically contain large numbers of interacting elements, which precludes the use of standard brute force approaches. Recently, though, several groups have reported that there may be an alternate strategy. The reports show that reliable statistical models can be built without knowledge of all the interactions in a system; instead, pairwise interactions can suffice. These findings, however, are based on the analysis of small subsystems. Here, we ask whether the observations will generalize to systems of realistic size, that is, whether pairwise models will provide reliable descriptions of true biological systems. Our results show that, in most cases, they will not. The reason is that there is a crossover in the predictive power of pairwise models: If the size of the subsystem is below the crossover point, then the results have no predictive power for large systems. If the size is above the crossover point, then the results may have predictive power. This work thus provides a general framework for determining the extent to which pairwise models can be used to predict the behavior of large biological systems. Applied to neural data, the size of most systems studied so far is below the crossover point.}, + language = {en}, + number = {5}, + journal = {PLOS Computational Biology}, + author = {Roudi, Yasser and Nirenberg, Sheila and Latham, Peter E.}, + month = may, + year = {2009}, + keywords = {Neurons,Neural networks,Probability distribution,Entropy,Distance measurement,Extrapolation,Information entropy,Perturbation (geology)}, + pages = {e1000380}, + file = {C:\\Users\\saram\\Zotero\\storage\\8F3CWX8U\\Roudi et al. 2009 Pairwise Maximum Entropy Models for Studying Large Biological Systems When They Can Work and When They Can't.pdf} +} + +@article{Tateno2005, + title = {Spatio-Temporal Cholinergic Modulation in Cultured Networks of Rat Cortical Neurons: {{Spontaneous}} Activity}, + volume = {134}, + issn = {03064522}, + shorttitle = {Spatio-Temporal Cholinergic Modulation in Cultured Networks of Rat Cortical Neurons}, + doi = {10.1016/j.neuroscience.2005.04.049}, + abstract = {Activation of the cholinergic innervation of the cortex has been implicated in sensory processing, learning, and memory. At the cellular level, acetylcholine both increases excitability and depresses synaptic transmission, and its effects on network firing are hard to predict. We studied the effects of carbachol, a cholinergic agonist, on network firing in cultures of rat cortical neurons, using electrode arrays to monitor the activity of large numbers of neurons simultaneously. These cultures show stable spontaneous synchronized burst firing which propagates through dense synaptic connections. Carbachol (10 \textendash{}50 ␮M), acting through muscarinic receptors, was found to induce a switch to asynchronous single-spike firing and to result in a loss of regularity and fragmentation of the burst structure. To obtain a quantitative measure of cholinergic actions on cortical networks, we applied a cluster Poisson-process model to sets of paralleled spike-trains in the presence and absence of carbachol. This revealed that the time series can be well-characterized by such a simple model, consistent with the observed 1/f b-like spectra (0.04$<$b$<$2.08). After applying higher concentrations of carbachol the property of the spectra shifted toward a Poisson-process (white) spectrum. These results indicate that cholinergic neurotransmitters have a strong and reliable desynchronizing action on cortical neural activity. \textcopyright{} 2005 Published by Elsevier Ltd on behalf of IBRO.}, + language = {en}, + number = {2}, + journal = {Neuroscience}, + author = {Tateno, T. and Jimbo, Y. and Robinson, H.P.C.}, + month = jan, + year = {2005}, + pages = {425-437}, + file = {C:\\Users\\saram\\Zotero\\storage\\SSFSUC4H\\Tateno et al. 2005 Spatio-temporal cholinergic modulation in cultured networks of rat cortical neurons Spontaneous activity.pdf} +} + +@article{Shlens2006, + title = {The {{Structure}} of {{Multi}}-{{Neuron Firing Patterns}} in {{Primate Retina}}}, + volume = {26}, + copyright = {Copyright \textcopyright{} 2006 Society for Neuroscience 0270-6474/06/268254-13\$15.00/0}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.1282-06.2006}, + abstract = {Current understanding of many neural circuits is limited by our ability to explore the vast number of potential interactions between different cells. We present a new approach that dramatically reduces the complexity of this problem. Large-scale multi-electrode recordings were used to measure electrical activity in nearly complete, regularly spaced mosaics of several hundred ON and OFF parasol retinal ganglion cells in macaque monkey retina. Parasol cells exhibited substantial pairwise correlations, as has been observed in other species, indicating functional connectivity. However, pairwise measurements alone are insufficient to determine the prevalence of multi-neuron firing patterns, which would be predicted from widely diverging common inputs and have been hypothesized to convey distinct visual messages to the brain. The number of possible multi-neuron firing patterns is far too large to study exhaustively, but this problem may be circumvented if two simple rules of connectivity can be established: (1) multi-cell firing patterns arise from multiple pairwise interactions, and (2) interactions are limited to adjacent cells in the mosaic. Using maximum entropy methods from statistical mechanics, we show that pairwise and adjacent interactions accurately accounted for the structure and prevalence of multi-neuron firing patterns, explaining $\sim$98\% of the departures from statistical independence in parasol cells and $\sim$99\% of the departures that were reproducible in repeated measurements. This approach provides a way to define limits on the complexity of network interactions and thus may be relevant for probing the function of many neural circuits.}, + language = {en}, + number = {32}, + journal = {Journal of Neuroscience}, + author = {Shlens, Jonathon and Field, Greg D. and Gauthier, Jeffrey L. and Grivich, Matthew I. and Petrusca, Dumitru and Sher, Alexander and Litke, Alan M. and Chichilnisky, E. J.}, + month = aug, + year = {2006}, + keywords = {information theory,vision,synchrony,neural coding,correlated variability,retinal ganglion cell}, + pages = {8254-8266}, + file = {C:\\Users\\saram\\Zotero\\storage\\57K2XGMQ\\Shlens et al. 2006 The Structure of Multi-Neuron Firing Patterns in Primate Retina.pdf}, + pmid = {16899720} +} + +@article{Tavoni2016a, + title = {Neural Assemblies Revealed by Inferred Connectivity-Based Models of Prefrontal Cortex Recordings}, + volume = {41}, + issn = {0929-5313, 1573-6873}, + doi = {10.1007/s10827-016-0617-5}, + abstract = {We present two graphical model-based approaches to analyse the distribution of neural activities in the prefrontal cortex of behaving rats. The first method aims at identifying cell assemblies, groups of synchronously activating neurons possibly representing the units of neural coding and memory. A graphical (Ising) model distribution of snapshots of the neural activities, with an effective connectivity matrix reproducing the correlation statistics, is inferred from multi-electrode recordings, and then simulated in the presence of a virtual external drive, favoring high activity (multi-neuron) configurations. As the drive increases groups of neurons may activate together, and reveal the existence of cell assemblies. The identified groups are then showed to strongly coactivate in the neural spiking data and to be highly specific of the inferred connectivity network, which offers a sparse representation of the correlation pattern across neural cells. The second method relies on the inference of a Generalized Linear Model, in which spiking events are integrated over time by neurons through an effective connectivity matrix. The functional connectivity matrices inferred with the two approaches are compared. Sampling of the inferred GLM distribution allows us to study the spatio-temporal patterns of activation of neurons within the identified cell assemblies, particularly their activation order: the prevalence of one order with respect to the others is weak and reflects the neuron average firing rates and the strength of the largest effective connections. Other properties of the identified cell assemblies (spatial distribution of coactivation events and firing rates of coactivating neurons) are discussed.}, + language = {en}, + number = {3}, + journal = {Journal of Computational Neuroscience}, + author = {Tavoni, G. and Cocco, S. and Monasson, R.}, + month = dec, + year = {2016}, + pages = {269-293}, + file = {C:\\Users\\saram\\Zotero\\storage\\EXUR4C4L\\Tavoni et al. 2016 Neural assemblies revealed by inferred connectivity-based models of prefrontal cortex recordings.pdf} +} + +@article{Ferrari2016b, + title = {Learning Maximum Entropy Models from Finite-Size Data Sets: {{A}} Fast Data-Driven Algorithm Allows Sampling from the Posterior Distribution}, + volume = {94}, + issn = {2470-0045, 2470-0053}, + shorttitle = {Learning Maximum Entropy Models from Finite-Size Data Sets}, + doi = {10.1103/PhysRevE.94.023301}, + language = {en}, + number = {2}, + journal = {Physical Review E}, + author = {Ferrari, Ulisse}, + month = aug, + year = {2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\9853T9BM\\Ferrari 2016 Learning maximum entropy models from finite-size data sets A fast data-driven algorithm allows sampling from the posterior distribution.pdf} +} + +@article{Poli2016a, + title = {From Functional to Structural Connectivity Using Partial Correlation in Neuronal Assemblies}, + volume = {13}, + issn = {1741-2560, 1741-2552}, + doi = {10.1088/1741-2560/13/2/026023}, + abstract = {Objective. Our goal is to re-introduce an optimized version of the partial correlation to infer structural connections from functional-effective ones in dissociated neuronal cultures coupled to microelectrode arrays. Approach. We first validate our partialization procedure on in silico networks, mimicking different experimental conditions (i.e., different connectivity degrees and number of nodes) and comparing the partial correlation's performance with two gold-standard methods: cross-correlation and transfer entropy. Afterwards, to infer the structural connections in in vitro neuronal networks where the ground truth is unknown, we propose a thresholding heuristic approach. Then, to validate whether the partialization process correctly reconstructs macroscopic features of the network structure, we extract a modularity index from segregated in silico and in vitro models. Finally, as a case study, we apply our partialization procedure to analyze connectivity and topology on spontaneous developing and electrically stimulated in vitro cultures. Main results. In simulated networks, partial correlation outperforms cross-correlation and transfer entropy at low and medium connectivity degrees, not only in relatively small (60 nodes) but also in larger (120\textendash{}240 nodes) assemblies. Furthermore, partial correlation correctly identifies interconnected neuronal sub-populations and allows one to derive network topology in in vitro cortical networks. Significance. Our results support the idea that partial correlation is a good method for connectivity studies and can be applied to derive topological and structural features of neuronal assemblies.}, + language = {en}, + number = {2}, + journal = {Journal of Neural Engineering}, + author = {Poli, Daniele and Pastore, Vito Paolo and Martinoia, Sergio and Massobrio, Paolo}, + month = apr, + year = {2016}, + pages = {026023}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z4G7FI67\\Poli et al. 2016 From functional to structural connectivity using partial correlation in neuronal assemblies.pdf} +} + +@article{Lei2017, + title = {Ground Truth Bias in External Cluster Validity Indices}, + volume = {65}, + issn = {0031-3203}, + doi = {10.1016/j.patcog.2016.12.003}, + abstract = {External cluster validity indices (CVIs) are used to quantify the quality of a clustering by comparing the similarity between the clustering and a ground truth partition. However, some external CVIs show a biased behavior when selecting the most similar clustering. Users may consequently be misguided by such results. Recognizing and understanding the bias behavior of CVIs is therefore crucial. +It has been noticed that, some external CVIs exhibit a preferential bias towards a larger or smaller number of clusters which is monotonic (directly or inversely) in the number of clusters in candidate partitions. This type of bias is caused by the functional form of the CVI model. For example, the popular Rand Index (RI) exhibits a monotone increasing (NCinc) bias, while the Jaccard Index (JI) index suffers from a monotone decreasing (NCdec) bias. This type of bias has been previously recognized in the literature. +In this work, we identify a new type of bias arising from the distribution of the ground truth (reference) partition against which candidate partitions are compared. We call this new type of bias ground truth (GT) bias. This type of bias occurs if a change in the reference partition causes a change in the bias status (e.g., NCinc, NCdec) of a CVI. For example, NCinc bias in the RI can be changed to NCdec bias by skewing the distribution of clusters in the ground truth partition. It is important for users to be aware of this new type of biased behavior, since it may affect the interpretations of CVI results. +The objective of this article is to study the empirical and theoretical implications of GT bias. To the best of our knowledge, this is the first extensive study of such a property for external CVIs. Our computational experiments show that 5 of 26 pair-counting based CVIs studied in this paper, which are all functions of the RI, exhibit GT bias. Following the numerical examples, we provide a theoretical analysis of GT bias based on the relationship between the RI and quadratic entropy. Specifically, we prove that the quadratic entropy of the ground truth partition provides a computable test which predicts the NC bias status of the RI.}, + journal = {Pattern Recognition}, + author = {Lei, Yang and Bezdek, James C. and Romano, Simone and Vinh, Nguyen Xuan and Chan, Jeffrey and Bailey, James}, + month = may, + year = {2017}, + keywords = {External cluster validity indices,Ground truth bias,Quadratic entropy,Rand index}, + pages = {58-70}, + file = {C:\\Users\\saram\\Zotero\\storage\\PSNKIWYI\\Lei et al. 2017 Ground truth bias in external cluster validity indices.pdf} +} + +@article{Seeman2018, + title = {Sparse Recurrent Excitatory Connectivity in the Microcircuit of the Adult Mouse and Human Cortex}, + copyright = {\textcopyright{} 2018, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NonCommercial-NoDerivs 4.0 International), CC BY-NC-ND 4.0, as described at http://creativecommons.org/licenses/by-nc-nd/4.0/}, + doi = {10.1101/292706}, + abstract = {Understanding cortical function will require a detailed knowledge of local circuit properties. Many prior studies have addressed this problem; however, generating a comprehensive description of cortical networks requires a large-scale, systematic approach. To that end, the Allen Institute for Brain Science is engaged in a pipeline project using multipatch electrophysiology, supplemented with 2-photon optogenetics, to characterize local connectivity and synaptic signaling between major classes of neurons in the adult mouse primary visual cortex and neurosurgical samples from human cortex. We focus on producing results that are detailed enough for the generation of computational models and enable rigorous comparison with future studies. Here we report our examination of the intralaminar connectivity within each of several classes of excitatory neurons. We find that connections are sparse but present among all excitatory cell types and layers we sampled, with the most sparse connections in layers 5 and 6. Almost all synapses in mouse exhibited short-term depression with similar dynamics. Synaptic signaling between a subset of layer 2/3 neurons, however, exhibited facilitation. These results contribute to a body of evidence describing recurrent excitatory connectivity as a conserved feature of cortical microcircuits.}, + language = {en}, + journal = {bioRxiv}, + author = {Seeman, Stephanie C. and Campagnola, Luke and Davoudian, Pasha A. and Hoggarth, Alex and Hage, Travis A. and Bosma-Moody, Alice and Baker, Christopher A. and Lee, Jung H. and Mihalas, Stefan and Teeter, Corinne and Ko, Andrew L. and Ojemann, Jeffrey G. and Gwinn, Ryder P. and Silbergeld, Daniel L. and Cobbs, Charles and Phillips, John and Lein, Ed and Murphy, Gabe and Koch, Christof and Zeng, Hongkui and Jarsky, Tim}, + month = apr, + year = {2018}, + pages = {292706}, + file = {C:\\Users\\saram\\Zotero\\storage\\VEWUAYY2\\Seeman et al. 2018 Sparse recurrent excitatory connectivity in the microcircuit of the adult mouse and human cortex.pdf} +} + +@article{Yadollahi2014, + title = {Acoustic {{Estimation}} of {{Neck Fluid Volume}}}, + volume = {42}, + copyright = {All rights reserved}, + issn = {0090-6964, 1573-9686}, + doi = {10.1007/s10439-014-1083-8}, + abstract = {Recently we showed that fluid accumulation in the neck can narrow the upper airway (UA) and increase its collapsibility, which may exacerbate obstructive sleep apnea (OSA). However, the available methods for measuring neck fluid volume (NFV) are inconvenient and expensive. Narrowing of the UA due to fluid accumulation could change acoustic characteristics of respiratory sounds. In this study, we developed a novel approach for non-invasive estimation of NFV from acoustic measurements. Twenty-eight healthy subjects lay awake and supine for 90 min while NFV and tracheal sounds were measured simultaneously using bioimpedance and a microphone, respectively. Sets of tracheal sound features were calculated in time and frequency domains and were reduced using methods based on regression and minimum-redundancy-maximum-relevance. The resulting feature sets were applied to a multi-linear regression and a mixture-density neural network to estimate NFV. Our results show very small relative estimation errors of 1.25 and 3.23\%, based on the regression and neural network methods, respectively. These results support the practical application of this technology in diagnosing fluid accumulation in the neck and its possible contributions to the pathogenesis of OSA.}, + language = {en}, + number = {10}, + journal = {Annals of Biomedical Engineering}, + author = {Yadollahi, A. and Rudzicz, F. and Mahallati, S. and Coimbra, M. and Bradley, T. D.}, + month = oct, + year = {2014}, + pages = {2132-2142}, + file = {C:\\Users\\saram\\Zotero\\storage\\4FF4NS88\\Yadollahi et al. 2014 Acoustic Estimation of Neck Fluid Volume.pdf} +} + +@article{Mahallati2016, + title = {Multisegment {{Kinematics}} of the {{Spinal Column}}: {{Soft Tissue Artifacts Assessment}}}, + volume = {138}, + copyright = {All rights reserved}, + issn = {0148-0731}, + shorttitle = {Multisegment {{Kinematics}} of the {{Spinal Column}}}, + doi = {10.1115/1.4033545}, + number = {7}, + journal = {Journal of Biomechanical Engineering}, + author = {Mahallati, Sara and Rouhani, Hossein and Preuss, Richard and Masani, Kei and Popovic, Milos R.}, + month = jul, + year = {2016}, + pages = {071003}, + file = {C:\\Users\\saram\\Zotero\\storage\\HTSYWVDD\\Mahallati et al. 2016 Multisegment Kinematics of the Spinal Column Soft Tissue Artifacts Assessment.pdf} +} + +@article{Rouhani2015, + title = {Sensitivity of {{Intersegmental Angles}} of the {{Spinal Column}} to {{Errors Due}} to {{Marker Misplacement}}}, + volume = {137}, + copyright = {All rights reserved}, + issn = {0148-0731}, + doi = {10.1115/1.4030406}, + abstract = {The ranges of angular motion measured using multisegmented spinal column models are typically small, meaning that minor experimental errors can potentially affect the reliability of these measures. This study aimed to investigate the sensitivity of the 3D intersegmental angles, measured using a multisegmented spinal column model, to errors due to marker misplacement. Eleven healthy subjects performed trunk bending in five directions. Six cameras recorded the trajectory of 22 markers, representing seven spinal column segments. Misplacement error for each marker was modeled as a Gaussian function with a standard deviation of 6\,mm, and constrained to a maximum value of 12\,mm in each coordinate across the skin. The sensitivity of 3D intersegmental angles to these marker misplacement errors, added to the measured data, was evaluated. The errors in sagittal plane motions resulting from marker misplacement were small (RMS error less than 3.2\,deg and relative error in the angular range less than 15\%) during the five trunk bending direction. The errors in the frontal and transverse plane motions, induced by marker misplacement, however, were large (RMS error up to 10.2\,deg and relative error in the range up to 58\%), especially during trunk bending in anterior, anterior-left, and anterior-right directions, and were often comparable in size to the intersubject variability for those motions. The induced errors in the frontal and transverse plane motions tended to be the greatest at the intersegmental levels in the lower lumbar region. These observations questioned reliability of angle measures in the frontal and transverse planes particularly in the lower lumbar region during trunk bending in anterior direction, and thus did not recommend interpreting these measures for clinical evaluation and decision-making.}, + number = {7}, + journal = {Journal of Biomechanical Engineering}, + author = {Rouhani, Hossein and Mahallati, Sara and Preuss, Richard and Masani, Kei and Popovic, Milos R.}, + month = jul, + year = {2015}, + pages = {074502-074502-6}, + file = {C:\\Users\\saram\\Zotero\\storage\\NH6SR8JS\\Rouhani et al. 2015 Sensitivity of Intersegmental Angles of the Spinal Column to Errors Due to Marker Misplacement.pdf} +} + +@article{Mahallati2018a, + title = {Cluster {{Tendency Assessment}} in {{Neuronal Spike Data}}}, + copyright = {\textcopyright{} 2018, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NonCommercial-NoDerivs 4.0 International), CC BY-NC-ND 4.0, as described at http://creativecommons.org/licenses/by-nc-nd/4.0/}, + doi = {10.1101/285064}, + abstract = {Sorting spikes from extracellular recording into clusters associated with distinct single units (putative neurons) is a fundamental step in analyzing neuronal populations. Such spike sorting is intrinsically unsupervised, as the number of neurons are not known a priori. Clustering can be performed using either the full dimensional waveforms or on low-dimensional representations obtained by dimensionality reduction or feature extraction methods. In this paper, we evaluate the utility of several methods for providing lower dimensional visualization of the cluster structure and on subsequent spike clustering. Experimental results are conducted on two datasets with ground truth labels. We also introduce a visualization technique called improved visual assessment of cluster tendency (iVAT) to estimate possible cluster structures in data without the need for dimensionality reduction. In data with a relatively small number of clusters, iVAT is beneficial in estimating the number of clusters to inform the initialization of clustering algorithms. With larger numbers of clusters, iVAT gives a useful estimate of the coarse cluster structure but sometimes fails to indicate the presumptive number of clusters. We show that noise associated with recording extracellular neuronal potentials can disrupt computational clustering schemes, highlighting the benefit of probabilistic clustering models. Results show that t-Distributed Stochastic Neighbor Embedding (t-SNE) feature extraction provides representations of the data that yield more accurate clustering than low-dimensional representations obtained with four other methods. Moreover, the clustering obtained using t-SNE representation outperforms clustering within the other four feature spaces and also with algorithms operating directly within the input dimensional space.}, + language = {en}, + journal = {bioRxiv}, + author = {Mahallati, Sara and Bezdek, James C. and Popovic, Milos R. and Valiante, Taufik}, + month = apr, + year = {2018}, + pages = {285064}, + file = {C:\\Users\\saram\\Zotero\\storage\\2V8E7GG5\\Mahallati et al. - 2018 - Cluster Tendency Assessment in Neuronal Spike Data.pdf} +} + +@incollection{Wibral2014, + series = {Understanding Complex Systems}, + title = {Transfer {{Entropy}} in {{Neuroscience}}}, + isbn = {978-3-642-54473-6 978-3-642-54474-3}, + abstract = {Information transfer is a key component of information processing, next to information storage and modification. Information transfer can be measured by a variety of directed informationmeasures of which transfer entropy is themost popular, andmost principled one. This chapter presents the basic concepts behind transfer entropy in an intuitive fashion, including graphical depictions of the key concepts. It also includes a special section devoted to the correct interpretation of the measure, especially with respect to concepts of causality. The chapter also provides an overview of estimation techniques for transfer entropy and pointers to popular open source toolboxes. It also introduces recent extensions of transfer entropy that serve to estimate delays involved in information transfer in a network. By touching upon alternative measures of information transfer, such as Massey's directed information transfer and Runge's momentary information transfer, it may serve as a frame of reference for more specialised treatments and as an overview over the field of studies in information transfer in general.}, + language = {en}, + booktitle = {Directed {{Information Measures}} in {{Neuroscience}}}, + publisher = {{Springer, Berlin, Heidelberg}}, + author = {Wibral, Michael and Vicente, Raul and Lindner, Michael}, + year = {2014}, + pages = {3-36}, + file = {C:\\Users\\saram\\Zotero\\storage\\XZLCMQ98\\Wibral et al. 2014 Transfer Entropy in Neuroscience.pdf}, + doi = {10.1007/978-3-642-54474-3_1} +} + +@article{Kutzing2011, + title = {Measurement of {{Synchronous Activity}} by {{Microelectrode Arrays Uncovers Differential Effects}} of {{Sublethal}} and {{Lethal Glutamate Concentrations}} on {{Cortical Neurons}}}, + volume = {39}, + issn = {0090-6964, 1573-9686}, + doi = {10.1007/s10439-011-0319-0}, + abstract = {We grew cultures of rat cortical cells on microelectrode arrays to investigate the effects of glutamate-mediated neurotoxicity as a model of traumatic brain injury. Treatment with two different concentrations of glutamate, 175 and 250 $\mu$M, led to different outcomes. Cultures treated with 250 $\mu$M glutamate suffered a loss in overall activity that was not seen in cultures treated with 175 $\mu$M glutamate. An analysis of the changes in the synchronization of action potential firing between electrodes, however, revealed a loss of synchronization in subsets of electrode pairs treated with both the higher and lower concentrations of glutamate. We found that this loss of action potential synchronization was dependent on the initial amount of synchronization prior to injury. Finally, our data suggest that the synchronization of electrical activity as well as the susceptibility to loss of firing synchrony is independent of the distance between neurons in a network.}, + language = {en}, + number = {8}, + journal = {Annals of Biomedical Engineering}, + author = {Kutzing, Melinda K. and Luo, Vincent and Firestein, Bonnie L.}, + month = aug, + year = {2011}, + pages = {2252-2262}, + file = {C:\\Users\\saram\\Zotero\\storage\\BUUEPYUL\\Kutzing et al. 2011 Measurement of Synchronous Activity by Microelectrode Arrays Uncovers Differential Effects of Sublethal and Lethal Glutamate Concentrations on Cortical Neurons.pdf} +} + +@article{Bonzano2006, + title = {Effects of {{NMDA}} and Non-{{NMDA}} Receptors Antagonists on the Dynamic Behavior of Cultured Cortical Networks}, + volume = {69}, + issn = {09252312}, + doi = {10.1016/j.neucom.2005.11.014}, + abstract = {Non-conventional electrophysiological techniques allow screening the activity of nerve cells in spontaneous and stimulus-evoked conditions. Activity patterns in cultured networks of cortical neurons from rat embryos were investigated at different days in vitro (DIV), by a multi-site recording technique based on planar microelectrode arrays (MEAs). Transitions in neuronal dynamics of the networks were induced by administering antagonists of NMDA and non-NMDA receptors. Neurochemical effects on synaptic transmission were evaluated analyzing the network activity by using ad hoc developed algorithms. A decrease in excitatory synaptic transmission corresponded to a decrease in spiking and bursting activity with a loss of synchronization.}, + language = {en}, + number = {16-18}, + journal = {Neurocomputing}, + author = {Bonzano, L. and Bove, M. and Martinoia, S.}, + month = oct, + year = {2006}, + pages = {1897-1903}, + file = {C:\\Users\\saram\\Zotero\\storage\\22IPJUKM\\Bonzano et al. 2006 Effects of NMDA and non-NMDA receptors antagonists on the dynamic behavior of cultured cortical networks.pdf} +} + +@article{Suresh2016, + title = {Network Burst Activity in Hippocampal Neuronal Cultures: The Role of Synaptic and Intrinsic Currents}, + volume = {115}, + issn = {0022-3077}, + shorttitle = {Network Burst Activity in Hippocampal Neuronal Cultures}, + doi = {10.1152/jn.00995.2015}, + abstract = {The goal of this work was to define the contributions of intrinsic and synaptic mechanisms toward spontaneous network-wide bursting activity, observed in dissociated rat hippocampal cell cultures. This network behavior is typically characterized by short-duration bursts, separated by order of magnitude longer interburst intervals. We hypothesize that while short-timescale synaptic processes modulate spectro-temporal intraburst properties and network-wide burst propagation, much longer timescales of intrinsic membrane properties such as persistent sodium (Nap) currents govern burst onset during interburst intervals. To test this, we used synaptic receptor antagonists picrotoxin, 6-cyano-7-nitroquinoxaline-2,3-dione (CNQX), and 3-(2-carboxypiperazine-4-yl)propyl-1-phosphonate (CPP) to selectively block GABAA, AMPA, and NMDA receptors and riluzole to selectively block Nap channels. We systematically compared intracellular activity (recorded with patch clamp) and network activity (recorded with multielectrode arrays) in eight different synaptic connectivity conditions: GABAA + NMDA + AMPA, NMDA + AMPA, GABAA + AMPA, GABAA + NMDA, AMPA, NMDA, GABAA, and all receptors blocked. Furthermore, we used mixed-effects modeling to quantify the aforementioned independent and interactive synaptic receptor contributions toward spectro-temporal burst properties including intraburst spike rate, burst activity index, burst duration, power in the local field potential, network connectivity, and transmission delays. We found that blocking intrinsic Nap currents completely abolished bursting activity, demonstrating their critical role in burst onset within the network. On the other hand, blocking different combinations of synaptic receptors revealed that spectro-temporal burst properties are uniquely associated with synaptic functionality and that excitatory connectivity is necessary for the presence of network-wide bursting. In addition to confirming the critical contribution of direct excitatory effects, mixed-effects modeling also revealed distinct combined (nonlinear) contributions of excitatory and inhibitory synaptic activity to network bursting properties.}, + number = {6}, + journal = {Journal of Neurophysiology}, + author = {Suresh, Jyothsna and Radojicic, Mihailo and Pesce, Lorenzo L. and Bhansali, Anita and Wang, Janice and Tryba, Andrew K. and Marks, Jeremy D. and {van Drongelen}, Wim}, + month = mar, + year = {2016}, + pages = {3073-3089}, + file = {C:\\Users\\saram\\Zotero\\storage\\6XVC52LW\\Suresh et al. 2016 Network burst activity in hippocampal neuronal cultures the role of synaptic and intrinsic currents.pdf} +} + +@article{Cocco2009, + title = {Neuronal Couplings between Retinal Ganglion Cells Inferred by Efficient Inverse Statistical Physics Methods}, + volume = {106}, + copyright = {\textcopyright{} 2009}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.0906705106}, + abstract = {Complexity of neural systems often makes impracticable explicit measurements of all interactions between their constituents. Inverse statistical physics approaches, which infer effective couplings between neurons from their spiking activity, have been so far hindered by their computational complexity. Here, we present 2 complementary, computationally efficient inverse algorithms based on the Ising and ``leaky integrate-and-fire'' models. We apply those algorithms to reanalyze multielectrode recordings in the salamander retina in darkness and under random visual stimulus. We find strong positive couplings between nearby ganglion cells common to both stimuli, whereas long-range couplings appear under random stimulus only. The uncertainty on the inferred couplings due to limitations in the recordings (duration, small area covered on the retina) is discussed. Our methods will allow real-time evaluation of couplings for large assemblies of neurons.}, + language = {en}, + number = {33}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Cocco, Simona and Leibler, Stanislas and Monasson, R{\'e}mi}, + month = aug, + year = {2009}, + keywords = {inference and inverse problems,multielectrode recordings,neural couplings,from Ferrari2016}, + pages = {14058-14062}, + file = {C:\\Users\\saram\\Zotero\\storage\\4WCQPUVY\\Cocco et al. 2009 Neuronal couplings between retinal ganglion cells inferred by efficient inverse statistical physics methods.pdf}, + pmid = {19666487} +} + +@article{Mora2015, + title = {Dynamical {{Criticality}} in the {{Collective Activity}} of a {{Population}} of {{Retinal Neurons}}}, + volume = {114}, + issn = {0031-9007, 1079-7114}, + doi = {10.1103/PhysRevLett.114.078105}, + language = {en}, + number = {7}, + journal = {Physical Review Letters}, + author = {Mora, Thierry and Deny, St{\'e}phane and Marre, Olivier}, + month = feb, + year = {2015}, + keywords = {from Ferrari2016}, + file = {C:\\Users\\saram\\Zotero\\storage\\WT2EAN4H\\Mora et al. 2015 Dynamical Criticality in the Collective Activity of a Population of Retinal Neurons.pdf} +} + +@article{Tavoni2015, + title = {Inferred {{Model}} of the {{Prefrontal Cortex Activity Unveils Cell Assemblies}} and {{Memory Replay}}}, + copyright = {\textcopyright{} 2015, Published by Cold Spring Harbor Laboratory Press. This pre-print is available under a Creative Commons License (Attribution-NonCommercial 4.0 International), CC BY-NC 4.0, as described at http://creativecommons.org/licenses/by-nc/4.0/}, + doi = {10.1101/028316}, + abstract = {Cell assemblies are thought to be the units of information representation in the brain, yet their detection from experimental data is arduous. Here, we propose to infer effective coupling networks and model distributions for the activity of simultaneously recorded neurons in prefrontal cortex, during the performance of a decision-making task, and during preceding and following sleep epochs. Our approach, inspired from statistical physics, allows us to define putative cell assemblies as the groups of co-activated neurons in the models of the three recorded epochs. It reveals the existence of task-related changes of the effective couplings between the sleep epochs. The assemblies which strongly coactivate during the task epoch are found to replay during subsequent sleep, in correspondence to the changes of the inferred network. Across sessions, a variety of different network scenarios is observed, providing insight in cell assembly formation and replay.}, + language = {en}, + journal = {bioRxiv}, + author = {Tavoni, Gaia and Ferrari, Ulisse and Battaglia, Francesco Paolo and Cocco, Simona and Monasson, R{\'e}mi}, + month = oct, + year = {2015}, + keywords = {from Ferrari2016}, + pages = {028316}, + file = {C:\\Users\\saram\\Zotero\\storage\\7AER27QW\\Tavoni et al. 2015 Inferred Model of the Prefrontal Cortex Activity Unveils Cell Assemblies and Memory Replay.pdf} +} + +@article{Peyrache2009, + title = {Replay of Rule-Learning Related Neural Patterns in the Prefrontal Cortex during Sleep}, + volume = {12}, + copyright = {2009 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn.2337}, + abstract = {Slow-wave sleep (SWS) is important for memory consolidation. During sleep, neural patterns reflecting previously acquired information are replayed. One possible reason for this is that such replay exchanges information between hippocampus and neocortex, supporting consolidation. We recorded neuron ensembles in the rat medial prefrontal cortex (mPFC) to study memory trace reactivation during SWS following learning and execution of cross-modal strategy shifts. In general, reactivation of learning-related patterns occurred in distinct, highly synchronized transient bouts, mostly simultaneous with hippocampal sharp wave/ripple complexes (SPWRs), when hippocampal ensemble reactivation and cortico-hippocampal interaction is enhanced. During sleep following learning of a new rule, mPFC neural patterns that appeared during response selection replayed prominently, coincident with hippocampal SPWRs. This was learning dependent, as the patterns appeared only after rule acquisition. Therefore, learning, or the resulting reliable reward, influenced which patterns were most strongly encoded and successively reactivated in the hippocampal/prefrontal network.}, + language = {en}, + number = {7}, + journal = {Nature Neuroscience}, + author = {Peyrache, Adrien and Khamassi, Mehdi and Benchenane, Karim and Wiener, Sidney I. and Battaglia, Francesco P.}, + month = jul, + year = {2009}, + pages = {919-926}, + file = {C:\\Users\\saram\\Zotero\\storage\\6NQI3AB2\\Peyrache et al. 2009 Replay of rule-learning related neural patterns in the prefrontal cortex during sleep.pdf} +} + +@incollection{Gilbert2018, + address = {San Diego}, + title = {Chapter 3 - {{The Allen Brain Atlas}}: {{Toward Understanding Brain Behavior}} and {{Function Through Data Acquisition}}, {{Visualization}}, {{Analysis}}, and {{Integration}}}, + isbn = {978-0-12-804078-2}, + shorttitle = {Chapter 3 - {{The Allen Brain Atlas}}}, + abstract = {The Allen Institute for Brain Science was created in 2003 to produce standardized, systematic surveys of gene expression across development in mouse, macaque, and human brains. While the high-throughput method used to collect these data was in itself innovative, publishing the data along with informatics tools designed to visualize and analyze these data in an open science framework created a resource used by neuroscientists globally. Since 2010 the Allen Institute for Brain Science has focused on producing publicly available resources designed to answer more complex questions aimed at addressing brain connectivity and function. This chapter is a review of the data and informatics resources available to the public, as well as a discourse on the power of integrating data modalities to understand and discover fundamental brain properties.}, + booktitle = {Molecular-{{Genetic}} and {{Statistical Techniques}} for {{Behavioral}} and {{Neural Research}}}, + publisher = {{Academic Press}}, + author = {Gilbert, Terri L. and Ng, Lydia}, + editor = {Gerlai, Robert T.}, + year = {2018}, + keywords = {Allen Brain Atlas,Brain observatory,Connectivity,Human brain,Mouse brain,Neuroinformatics}, + pages = {51-72}, + file = {C:\\Users\\saram\\Zotero\\storage\\R7H249VU\\Gilbert and Ng - 2018 - Chapter 3 - The Allen Brain Atlas Toward Understa.pdf}, + doi = {10.1016/B978-0-12-804078-2.00003-9} +} + +@article{Ganmor2011, + title = {Sparse Low-Order Interaction Network Underlies a Highly Correlated and Learnable Neural Population Code}, + volume = {108}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.1019641108}, + language = {en}, + number = {23}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Ganmor, E. and Segev, R. and Schneidman, E.}, + month = jun, + year = {2011}, + pages = {9679-9684}, + file = {C:\\Users\\saram\\Zotero\\storage\\XBH4P4C3\\Ganmor et al. 2011 Sparse low-order interaction network underlies a highly correlated and learnable neural population code.pdf} +} + +@article{Izhikevich2004, + title = {Which {{Model}} to {{Use}} for {{Cortical Spiking Neurons}}?}, + volume = {15}, + issn = {1045-9227}, + doi = {10.1109/TNN.2004.832719}, + abstract = {We discuss the biological plausibility and computational efficiency of some of the most useful models of spiking and bursting neurons. We compare their applicability to large-scale simulations of cortical neural networks.}, + language = {en}, + number = {5}, + journal = {IEEE Transactions on Neural Networks}, + author = {Izhikevich, E.M.}, + month = sep, + year = {2004}, + pages = {1063-1070}, + file = {C:\\Users\\saram\\Zotero\\storage\\43HIT4AK\\Izhikevich 2004 Which Model to Use for Cortical Spiking Neurons.pdf} +} + +@book{Cajal1988, + address = {New York}, + edition = {1 edition}, + title = {Cajal on the {{Cerebral Cortex}}: {{An Annotated Translation}} of the {{Complete Writings}}}, + isbn = {978-0-19-505280-0}, + shorttitle = {Cajal on the {{Cerebral Cortex}}}, + abstract = {This is the first English-language publication of the complete works of the great Spanish neurohistologist, Santiago Ramon y Cajal, on the cerebral cortex. The new translations include all Cajal's very early contributions on the cortex of small mammals, relevant chapters from his definitive textbook, and all his great works on the human cerebral cortex made at the peak of his career. The book also presents Cajal's surveys of cortical structure dating from his later years. It is extensively annotated, and the editors have verified and completed all Cajal's references. Special introductory chapters review the state of knowledge during each period covered, and the work concludes with an extensive essay on modern cortical neurohistology in which the quality and lasting significance of Cajal's contributions are highlighted.}, + language = {English}, + publisher = {{Oxford University Press}}, + author = {y Cajal, Santiago Ramon and DeFelipe, Javier}, + editor = {Jones, Edward G.}, + month = dec, + year = {1988} +} + +@article{Hodgkin1952, + title = {A Quantitative Description of Membrane Current and Its Application to Conduction and Excitation in Nerve}, + volume = {117}, + issn = {0022-3751}, + number = {4}, + journal = {The Journal of Physiology}, + author = {Hodgkin, A. L. and Huxley, A. F.}, + month = aug, + year = {1952}, + pages = {500-544}, + file = {C:\\Users\\saram\\Zotero\\storage\\MDSDNEIG\\Hodgkin and Huxley 1952 A quantitative description of membrane current and its application to conduction and excitation in nerve.pdf}, + pmid = {12991237}, + pmcid = {PMC1392413} +} + +@book{Hebb1949, + title = {The {{Organization}} of {{Behavior}}: {{A Neuropsychological Theory}}}, + isbn = {978-0-471-36727-7}, + shorttitle = {The {{Organization}} of {{Behavior}}}, + language = {en}, + publisher = {{Wiley}}, + author = {Hebb, Donald Olding}, + month = jan, + year = {1949}, + file = {C:\\Users\\saram\\Zotero\\storage\\9YVZWS4L\\The_Organization_of_Behavior-Donald_O._Hebb.pdf} +} + +@article{Hill2005, + title = {Molecular Insights into Human Brain Evolution}, + volume = {437}, + copyright = {2005 Nature Publishing Group}, + issn = {1476-4687}, + doi = {10.1038/nature04103}, + abstract = {Rapidly advancing knowledge of genome structure and sequence enables new means for the analysis of specific DNA changes associated with the differences between the human brain and that of other mammals. Recent studies implicate evolutionary changes in messenger RNA and protein expression levels, as well as DNA changes that alter amino acid sequences. We can anticipate having a systematic catalogue of DNA changes in the lineage leading to humans, but an ongoing challenge will be relating these changes to the anatomical and functional differences between our brain and that of our ancient and more recent ancestors.}, + language = {en}, + number = {7055}, + journal = {Nature}, + author = {Hill, Robert Sean and Walsh, Christopher A.}, + month = sep, + year = {2005}, + pages = {64-67}, + file = {C:\\Users\\saram\\Zotero\\storage\\P6HP7L2E\\Hill and Walsh 2005 Molecular insights into human brain evolution.pdf} +} + +@article{Geschwind2012, + title = {Neuroscience: {{Genes}} and Human Brain Evolution}, + volume = {486}, + copyright = {2012 Nature Publishing Group}, + issn = {1476-4687}, + shorttitle = {Neuroscience}, + doi = {10.1038/nature11380}, + abstract = {Several genes were duplicated during human evolution. It seems that one such duplication gave rise to a gene that may have helped to make human brains bigger and more adaptable than those of our ancestors.}, + language = {en}, + number = {7404}, + journal = {Nature}, + author = {Geschwind, Daniel H. and Konopka, Genevieve}, + month = jun, + year = {2012}, + pages = {481-482}, + file = {C:\\Users\\saram\\Zotero\\storage\\TTAC8JXF\\Geschwind and Konopka 2012 Neuroscience Genes and human brain evolution.pdf} +} + +@article{Ryan2009, + title = {The Origin and Evolution of Synapses}, + volume = {10}, + copyright = {2009 Nature Publishing Group}, + issn = {1471-0048}, + doi = {10.1038/nrn2717}, + abstract = {See more Darwin-related content in our Nature Publishing Group collection.Understanding the evolutionary origins of behaviour is a central aim in the study of biology and may lead to insights into human disorders. Synaptic transmission is observed in a wide range of invertebrate and vertebrate organisms and underlies their behaviour. Proteomic studies of the molecular components of the highly complex mammalian postsynaptic machinery point to an ancestral molecular machinery in unicellular organisms \textemdash{} the protosynapse \textemdash{} that existed before the evolution of metazoans and neurons, and hence challenges existing views on the origins of the brain. The phylogeny of the molecular components of the synapse provides a new model for studying synapse diversity and complexity, and their implications for brain evolution.}, + language = {en}, + number = {10}, + journal = {Nature Reviews Neuroscience}, + author = {Ryan, Tom{\'a}s J. and Grant, Seth G. N.}, + month = oct, + year = {2009}, + pages = {701-712}, + file = {C:\\Users\\saram\\Zotero\\storage\\QEYG2H6V\\Ryan and Grant 2009 The origin and evolution of synapses.pdf} +} + +@book{Economo2008, + edition = {1st English ed}, + title = {Atlas of Cytoarchitectonics of the Adult Human Cerebral Cortex}, + isbn = {978-3-8055-8289-6}, + abstract = {In 1 library. x, 182 p. : chiefly ill. (some col.) ; 49 cm. Cerebral cortex -- Atlases.}, + language = {English}, + publisher = {{Basil ; New York : Karger}}, + author = {von Economo, Constantin Freiherr and Koskinas, Georg N and Triarhou, Lazaros Constantinos}, + year = {2008} +} + +@article{Nimchinsky1999, + title = {A Neuronal Morphologic Type Unique to Humans and Great Apes}, + volume = {96}, + copyright = {Copyright \textcopyright{} 1999, The National Academy of Sciences}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.96.9.5268}, + abstract = {We report the existence and distribution of an unusual type of projection neuron, a large, spindle-shaped cell, in layer Vb of the anterior cingulate cortex of pongids and hominids. These spindle cells were not observed in any other primate species or any other mammalian taxa, and their volume was correlated with brain volume residuals, a measure of encephalization in higher primates. These observations are of particular interest when considering primate neocortical evolution, as they reveal possible adaptive changes and functional modifications over the last 15\textendash{}20 million years in the anterior cingulate cortex, a region that plays a major role in the regulation of many aspects of autonomic function and of certain cognitive processes. That in humans these unique neurons have been shown previously to be severely affected in the degenerative process of Alzheimer's disease suggests that some of the differential neuronal susceptibility that occurs in the human brain in the course of age-related dementing illnesses may have appeared only recently during primate evolution.}, + language = {en}, + number = {9}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Nimchinsky, Esther A. and Gilissen, Emmanuel and Allman, John M. and Perl, Daniel P. and Erwin, Joseph M. and Hof, Patrick R.}, + month = apr, + year = {1999}, + pages = {5268-5273}, + file = {C:\\Users\\saram\\Zotero\\storage\\DM2J9HLH\\Nimchinsky et al. 1999 A neuronal morphologic type unique to humans and great apes.pdf}, + pmid = {10220455} +} + +@article{Wang2015, + title = {A {{Subtype}} of {{Inhibitory Interneuron}} with {{Intrinsic Persistent Activity}} in {{Human}} and {{Monkey Neocortex}}}, + volume = {10}, + issn = {22111247}, + doi = {10.1016/j.celrep.2015.02.018}, + abstract = {A critical step in understanding the neural basis of human cognitive functions is to identify neuronal types in the neocortex. In this study, we performed whole-cell recording from human cortical slices and found a distinct subpopulation of neurons with intrinsic persistent activity that could be triggered by single action potentials (APs) but terminated by bursts of APs. This persistent activity was associated with a depolarizing plateau potential induced by the activation of a persistent Na+ current. Singlecell RT-PCR revealed that these neurons were inhibitory interneurons. This type of neuron was found in different cortical regions, including temporal, frontal, occipital, and parietal cortices in human and also in frontal and temporal lobes of nonhuman primate but not in rat cortical tissues, suggesting that it could be unique to primates. The characteristic persistent activity in these inhibitory interneurons may contribute to the regulation of pyramidal cell activity and participate in cortical processing.}, + language = {en}, + number = {9}, + journal = {Cell Reports}, + author = {Wang, Bo and Yin, Luping and Zou, Xiaolong and Ye, Min and Liu, Yaping and He, Ting and Deng, Suixin and Jiang, Yanbo and Zheng, Rui and Wang, Yun and Yang, Mingpo and Lu, Haidong and Wu, Si and Shu, Yousheng}, + month = mar, + year = {2015}, + pages = {1450-1458}, + file = {C:\\Users\\saram\\Zotero\\storage\\4W5W7DDL\\Wang et al. 2015 A Subtype of Inhibitory Interneuron with Intrinsic Persistent Activity in Human and Monkey Neocortex.pdf} +} + +@article{Oberheim2009, + title = {Uniquely Hominid Features of Adult Human Astrocytes}, + volume = {29}, + issn = {0270-6474}, + doi = {10.1523/JNEUROSCI.4707-08.2009}, + abstract = {Defining the microanatomic differences between the human brain and that of other mammals is key to understanding its unique computational power. While much effort has been devoted to comparative studies of neurons, astrocytes have received far less attention. We report here that protoplasmic astrocytes in human neocortex are 2.6 fold larger in diameter and extend 10-fold more GFAP+ primary processes than their rodent counterparts. In cortical slices prepared from acutely resected surgical tissue, protoplasmic astrocytes propagate Ca2+ waves with a speed of 36 $\mathrm{\mu}$m/second, approximately 4-fold faster than rodent. Human astrocytes also transiently increase cystosolic Ca2+ in response to glutamatergic and purinergic receptor agonists. The human neocortex also harbors several anatomically-defined subclasses of astrocytes not represented in rodents. These include a population of astrocytes that reside in layers 5\textendash{}6 and extend long fibers characterized by regularly spaced varicosities. Another specialized type of astrocyte, the interlaminar astrocyte, abundantly populates the superficial cortical layers and extends long processes without varicosities to cortical layers 3 and 4. Human fibrous astrocytes resemble their rodent counterpart, but are larger in diameter. Thus, human cortical astrocytes are both larger, and structurally both more complex and more diverse, than those of rodents. On this basis, we posit that this astrocytic complexity has permitted the increased functional competence of the adult human brain.}, + number = {10}, + journal = {The Journal of neuroscience : the official journal of the Society for Neuroscience}, + author = {Oberheim, Nancy Ann and Takano, Takahiro and Han, Xiaoning and He, Wei and Lin, Jane HC and Wang, Fushun and Xu, Qiwu and Wyatt, Jeffrey D. and Pilcher, Webster and Ojemann, Jeffrey G and Ransom, Bruce R and Goldman, Steven A and Nedergaard, Maiken}, + month = mar, + year = {2009}, + pages = {3276}, + file = {C:\\Users\\saram\\Zotero\\storage\\8HGDE6XP\\Oberheim et al. 2009 Uniquely hominid features of adult human astrocytes.pdf}, + pmid = {19279265}, + pmcid = {PMC2819812} +} + +@article{Testa-Silva2014, + title = {High {{Bandwidth Synaptic Communication}} and {{Frequency Tracking}} in {{Human Neocortex}}}, + volume = {12}, + issn = {1545-7885}, + doi = {10.1371/journal.pbio.1002007}, + abstract = {Because of fast recovery from synaptic depression and fast-initiated action potentials, neuronal information transfer can have a substantially higher bandwidth in human neocortical circuits than in those of rodents.}, + language = {en}, + number = {11}, + journal = {PLOS Biology}, + author = {Testa-Silva, Guilherme and Verhoog, Matthijs B. and Linaro, Daniele and de Kock, Christiaan P. J. and Baayen, Johannes C. and Meredith, Rhiannon M. and Zeeuw, Chris I. De and Giugliano, Michele and Mansvelder, Huibert D.}, + month = nov, + year = {2014}, + keywords = {Action potentials,Adults,Depression,Excitatory postsynaptic potentials,Membrane potential,Neurons,Rodents,Synapses}, + pages = {e1002007}, + file = {C:\\Users\\saram\\Zotero\\storage\\NXLRPUFZ\\Testa-Silva et al. 2014 High Bandwidth Synaptic Communication and Frequency Tracking in Human Neocortex.pdf} +} + +@article{DeFelipe2011, + title = {The {{Evolution}} of the {{Brain}}, the {{Human Nature}} of {{Cortical Circuits}}, and {{Intellectual Creativity}}}, + volume = {5}, + issn = {1662-5129}, + doi = {10.3389/fnana.2011.00029}, + abstract = {The tremendous expansion and the differentiation of the neocortex constitute two major events in the evolution of the mammalian brain. The increase in size and complexity of our brains opened the way to a spectacular development of cognitive and mental skills. This expansion during evolution facilitated the addition of microcircuits with a similar basic structure, which increased the complexity of the human brain and contributed to its uniqueness. However, fundamental differences even exist between distinct mammalian species. Here, we shall discuss the issue of our humanity from a neurobiological and historical perspective.}, + journal = {Frontiers in Neuroanatomy}, + author = {DeFelipe, Javier}, + month = may, + year = {2011}, + file = {C:\\Users\\saram\\Zotero\\storage\\AHB3BV7G\\DeFelipe 2011 The Evolution of the Brain, the Human Nature of Cortical Circuits, and Intellectual Creativity.pdf}, + pmid = {21647212}, + pmcid = {PMC3098448} +} + +@article{Florez2015, + title = {In {{Vitro Recordings}} of {{Human Neocortical Oscillations}}}, + volume = {25}, + issn = {1460-2199, 1047-3211}, + doi = {10.1093/cercor/bht235}, + language = {en}, + number = {3}, + journal = {Cerebral Cortex}, + author = {Florez, C.M. and McGinn, R.J. and Lukankin, V. and Marwa, I. and Sugumar, S. and Dian, J. and Hazrati, L.-N. and Carlen, P.L. and Zhang, L. and Valiante, T.A.}, + month = mar, + year = {2015}, + pages = {578-597}, + file = {C:\\Users\\saram\\Zotero\\storage\\QJ5IZY6C\\Florez et al. 2015 In Vitro Recordings of Human Neocortical Oscillations.pdf} +} + +@article{Migliore2005, + title = {An Integrated Approach to Classifying Neuronal Phenotypes}, + volume = {6}, + copyright = {2005 Nature Publishing Group}, + issn = {1471-0048}, + doi = {10.1038/nrn1769}, + abstract = {Characterizing the functional phenotypes of neurons is essential for understanding how genotypes can be related to the neural basis of behaviour. Traditional classifications of neurons by single features (such as morphology or firing behaviour) are increasingly inadequate for reflecting functional phenotypes, as they do not integrate functions across different neuronal types. Here, we describe a set of rules for identifying and predicting functional phenotypes that combine morphology, intrinsic ion channel species and their distributions in dendrites, and functional properties. This more comprehensive neuronal classification should be an improvement on traditional classifications for relating genotype to functional phenotype.}, + language = {en}, + number = {10}, + journal = {Nature Reviews Neuroscience}, + author = {Migliore, Michele and Shepherd, Gordon M.}, + month = oct, + year = {2005}, + pages = {810-818}, + file = {C:\\Users\\saram\\Zotero\\storage\\YF8NJLKW\\Migliore and Shepherd 2005 An integrated approach to classifying neuronal phenotypes.pdf} +} + +@book{Buzsaki2006, + title = {Rhythms of the {{Brain}}}, + isbn = {978-0-19-530106-9}, + language = {en}, + publisher = {{Oxford University Press}}, + author = {Buzs{\'a}ki, Gy{\"o}rgy}, + month = oct, + year = {2006}, + file = {C:\\Users\\saram\\Zotero\\storage\\2BI79KYM\\Buzsáki 2006 Rhythms of the Brain.pdf}, + doi = {10.1093/acprof:oso/9780195301069.001.0001} +} + +@article{Gilbert1975, + title = {The Projections of Cells in Different Layers of the Cat's Visual Cortex}, + volume = {163}, + copyright = {Copyright \textcopyright{} 1975 The Wistar Institute of Anatomy and Biology}, + issn = {1096-9861}, + doi = {10.1002/cne.901630106}, + abstract = {The projection of cells in different layers of several cortical visual areas in the cat were studied using the method of retrograde transport of horseradish peroxidase. Injections of the enzyme were made through a recording micropipette, making it possible to localize the injection site by physiological criteria. We found that layer VI cells projected to the lateral geniculate nucleus, while a distinct population of cells in layer V projected to the superior colliculus. Cells in layers II and III were the major sources of ipsilateral cortico-cortical connections. This pattern of projection was consistent from one visual area to another. Pyramidal cells appeared to be the source of cortico-geniculate, cortico-collicular and cortico-cortical projections. The proportion of cells within a layer that terminated in a given site varied from layer to layer: apparently all of the large pyramids in layer V had terminals in the superior colliculus, about half of the pyramids in layer VI had terminals in the lateral geniculate nucleus, while only a small proportion of the pyramids in layers II and III had terminals in any single cortical area. The results indicated a remarkable specificity in the projections of the cortical layers. The cortical connections of the different cell types in layers A and A1 of the lateral geniculate nucleus were also examined: the cells that projected to area 17 were much more numerous and were on the average smaller than those that projected to area 18. Projections to the cortex were also found from the pulvinar, the medial interlaminar nucleus and the posterior nucleus. Direct connections were observed to the lateral geniculate nucleus from several midbrain reticular nuclei. Finally, projections were found to the superior colliculus from the zona incerta, the reticular nucleus of the thalamus and the ventral lateral geniculate nucleus.}, + language = {en}, + number = {1}, + journal = {Journal of Comparative Neurology}, + author = {Gilbert, C. D. and Kelly, J. P.}, + month = sep, + year = {1975}, + pages = {81-105}, + file = {C:\\Users\\saram\\Zotero\\storage\\W2XL2WAY\\Gilbert and Kelly 1975 The projections of cells in different layers of the cat's visual cortex.pdf} +} + +@article{Lund1975, + title = {The Origin of Efferent Pathways from the Primary Visual Cortex, Area 17, of the Macaque Monkey as Shown by Retrograde Transport of Horseradish Peroxidase}, + volume = {164}, + copyright = {Copyright \textcopyright{} 1975 The Wistar Institute Press}, + issn = {1096-9861}, + doi = {10.1002/cne.901640303}, + abstract = {The retrograde transport of horseradish peroxidase has been used to identify efferent cells in area 17 of the macaque. Cells projecting to the lateral geniculate nucleus are small to medium sized pyramidal neurons with somata in lamina 6 and the adjacent white matter. The projection to the parvocellular division arises preferentially from the upper half of lamina 6, while that to the magnocellular division arises preferentially from the lower part of the lamina. The projection to both superior colliculus and inferior pulvinar arises from all sizes of pyramidal neurons lying in lamina 5B (Lund and Boothe, '75); at least the largest pyramidal neurons of lamina 5B send collateral axon branches to both destinations. Injections with extensive spread of horseradish peroxidase show that many cells of lamina 4B and the large pyramidal neurons of upper lamina 6 also project extrinsically but their terminal sites have not been identified. Other studies have indicated that cells of laminae 2 and 3 project to areas 18 and 19. Therefore every lamina of the visual cortex, with the exception of those receiving a direct thalamic input, contains cells projecting extrinsically. Further, each lamina projects to a different destination and from Golgi studies can be shown to contain cells with specific patterns of dendritic branching which relate to the distribution of thalamic afferents and to the patterns of intracortical connections. These findings emphasise the significance of the horizontal organisation of the cortex with relation to the flow of information through it and contrast with the current concept of columnar organisation shown in physiological studies.}, + language = {en}, + number = {3}, + journal = {Journal of Comparative Neurology}, + author = {Lund, Jennifer S. and Lund, Raymond D. and Hendrickson, Anita E. and Bunt, Ann H. and Fuchs, Albert F.}, + month = dec, + year = {1975}, + pages = {287-303}, + file = {C:\\Users\\saram\\Zotero\\storage\\WVHIG2EV\\Lund et al. 1975 The origin of efferent pathways from the primary visual cortex, area 17, of the macaque monkey as shown by retrograde transport of horseradish peroxidase.pdf} +} + +@article{Felleman1991, + title = {Distributed {{Hierarchical Processing}} in the {{Primate Cerebral Cortex}}}, + volume = {1}, + issn = {1047-3211, 1460-2199}, + doi = {10.1093/cercor/1.1.1}, + language = {en}, + number = {1}, + journal = {Cerebral Cortex}, + author = {Felleman, D. J. and Van Essen, D. C.}, + month = jan, + year = {1991}, + pages = {1-47}, + file = {C:\\Users\\saram\\Zotero\\storage\\F22SLGKG\\Felleman and Van Essen 1991 Distributed Hierarchical Processing in the Primate Cerebral Cortex.pdf} +} + +@article{Hubel1974, + title = {Sequence Regularity and Geometry of Orientation Columns in the Monkey Striate Cortex}, + volume = {158}, + issn = {0021-9967, 1096-9861}, + doi = {10.1002/cne.901580304}, + abstract = {The striate cortex of the macaque monkey is subdivided into two independent and overlapping systems of columns termed ``orientation columns'' and ``ocular dominance columns.'' The present paper is concerned with the orientation columns, particularly their geometry and the relationship between successive columns. The arrangement of the columns is highly ordered; in the great majority of oblique or tangential microelectrode penetrations the preferred orientations of cells changed systematically with electrode position, in a clockwise or counterclockwise direction. Graphs of orientation vs. electrode track distance were virtually straight lines over distances of up to several millimeters; such orderly sequences were often terminated by sudden changes in the direction of orientation shifts, from clockwise to counterclockwise or back. The orientations at which these reversals occurred were quite unpredictable. Total rotations of 18\% 360'' were frequently seen between reversals. In tangential or almost tangential penetrations orientation shifts occurred almost every time the electrode was moved forward, indicating that the columns were either not discrete or had a thickness of less than 25-50 p, the smallest order of distance that our methods could resolve. In penetrations that were almost perpendicular to the surface, the graphs of orientation vs. track distance were relatively flatter, as expected if the surfaces of constant orientation are perpendicular to the cortical surface. S t e p wise changes in orientation of about 10'' could sometimes be seen in perpendicular penetrations, each orientation persisting through several clear advances of the electrode, suggesting a set of discrete columnar subdivisions. The possibility of some kind of continuous variation in orientation with horizontal distance along the cortex was not, however, completely ruled out. Occasionaliy a highly ordered sequence was broken by an abrupt large shift in orientation of up to 90''. Shifts in ocular dominance occurred roughly every 0.25-0.5 mm and were independent of orientation shifts. In multiple parallel penetrations spaced closer than about 250 p the slopes of the orientation vs. track distance curves were almost the same; reconstruction of these penetrations indicated that the regions of constant orientation are parallel sheets. On crossing perpendicular to these sheets, a total orientation shift of 180'' took place over a distance of 0.51.0 mm. Column thickness, size of shifts in orientation, and the rate of change of orientation with distance along the cortex seemed to be independent of eccentricity, at least between 2 '' and 15''from the fovea. A few penetrations made in area 17 of the cat and in area 18 of the monkey showed similar orderly sequences of receptive-field orientation shifts.}, + language = {en}, + number = {3}, + journal = {The Journal of Comparative Neurology}, + author = {Hubel, David H. and Wiesel, Torsten N.}, + month = dec, + year = {1974}, + pages = {267-293}, + file = {C:\\Users\\saram\\Zotero\\storage\\E8FKB7JD\\Hubel and Wiesel 1974 Sequence regularity and geometry of orientation columns in the monkey striate cortex.pdf} +} + +@article{Hubel1962, + title = {Receptive Fields, Binocular Interaction and Functional Architecture in the Cat's Visual Cortex}, + volume = {160}, + issn = {0022-3751}, + abstract = {Images +null}, + number = {1}, + journal = {The Journal of Physiology}, + author = {Hubel, D. H. and Wiesel, T. N.}, + month = jan, + year = {1962}, + pages = {106-154.2}, + file = {C:\\Users\\saram\\Zotero\\storage\\G5WAKY4A\\Hubel and Wiesel 1962 Receptive fields, binocular interaction and functional architecture in the cat's visual cortex.pdf;C:\\Users\\saram\\Zotero\\storage\\WDVR6BR7\\Hubel Weisel 1962 Receptive fields, binocular interaction and functional architecture in the cat's visual cortex.pdf}, + pmid = {14449617}, + pmcid = {PMC1359523} +} + +@article{Mooser2004, + title = {A Morphological Basis for Orientation Tuning in Primary Visual Cortex}, + volume = {7}, + copyright = {2004 Nature Publishing Group}, + issn = {1546-1726}, + doi = {10.1038/nn1287}, + abstract = {Feedforward connections are thought to be important in the generation of orientation-selective responses in visual cortex by establishing a bias in the sampling of information from regions of visual space that lie along a neuron's axis of preferred orientation. It remains unclear, however, which structural elements\textemdash{}dendrites or axons\textemdash{}are ultimately responsible for conveying this sampling bias. To explore this question, we have examined the spatial arrangement of feedforward axonal connections that link non-oriented neurons in layer 4 and orientation-selective neurons in layer 2/3 of visual cortex in the tree shrew. Target sites of labeled boutons in layer 2/3 resulting from focal injections of biocytin in layer 4 show an orientation-specific axial bias that is sufficient to confer orientation tuning to layer 2/3 neurons. We conclude that the anisotropic arrangement of axon terminals is the principal source of the orientation bias contributed by feedforward connections.}, + language = {en}, + number = {8}, + journal = {Nature Neuroscience}, + author = {Mooser, Fran{\c c}ois and Bosking, William H. and Fitzpatrick, David}, + month = aug, + year = {2004}, + pages = {872-879}, + file = {C:\\Users\\saram\\Zotero\\storage\\TBYHSB4F\\Mooser et al. 2004 A morphological basis for orientation tuning in primary visual cortex.pdf} +} + +@article{Mountcastle2003, + title = {Introduction}, + volume = {13}, + issn = {1047-3211}, + doi = {10.1093/cercor/13.1.2}, + abstract = {Every neuroscientist has a list of those he considers the most important unsolved problems in brain science. Surely high on the list of many will be that consid}, + language = {en}, + number = {1}, + journal = {Cerebral Cortex}, + author = {Mountcastle, Vernon B.}, + month = jan, + year = {2003}, + pages = {2-4} +} + +@article{Mountcastle1997, + title = {The Columnar Organization of the Neocortex}, + volume = {120}, + issn = {14602156}, + doi = {10.1093/brain/120.4.701}, + language = {en}, + number = {4}, + journal = {Brain}, + author = {Mountcastle, V.}, + month = apr, + year = {1997}, + pages = {701-722}, + file = {C:\\Users\\saram\\Zotero\\storage\\62LQU3QV\\Mountcastle 1997 The columnar organization of the neocortex.pdf} +} + +@article{Larkum2013, + title = {A Cellular Mechanism for Cortical Associations: An Organizing Principle for the Cerebral Cortex}, + volume = {36}, + issn = {01662236}, + shorttitle = {A Cellular Mechanism for Cortical Associations}, + doi = {10.1016/j.tins.2012.11.006}, + language = {en}, + number = {3}, + journal = {Trends in Neurosciences}, + author = {Larkum, Matthew}, + month = mar, + year = {2013}, + pages = {141-151}, + file = {C:\\Users\\saram\\Zotero\\storage\\JS5V4EC2\\Larkum 2013 A cellular mechanism for cortical associations an organizing principle for the cerebral cortex.pdf} +} + +@article{Grillner2005, + title = {Microcircuits in Action \textendash{} from {{CPGs}} to Neocortex}, + volume = {28}, + issn = {01662236}, + doi = {10.1016/j.tins.2005.08.003}, + language = {en}, + number = {10}, + journal = {Trends in Neurosciences}, + author = {Grillner, Sten and Markram, Henry and De Schutter, Erik and Silberberg, Gilad and LeBeau, Fiona E.N.}, + month = oct, + year = {2005}, + pages = {525-533}, + file = {C:\\Users\\saram\\Zotero\\storage\\LMMD4A8Z\\Grillner et al. 2005 Microcircuits in action – from CPGs to neocortex.pdf} +} + +@article{McCormick1985, + title = {Comparative Electrophysiology of Pyramidal and Sparsely Spiny Stellate Neurons of the Neocortex}, + volume = {54}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.1985.54.4.782}, + language = {en}, + number = {4}, + journal = {Journal of Neurophysiology}, + author = {McCormick, D. A. and Connors, B. W. and Lighthall, J. W. and Prince, D. A.}, + month = oct, + year = {1985}, + pages = {782-806}, + file = {C:\\Users\\saram\\Zotero\\storage\\QRX5AUZP\\McCormick et al. 1985 Comparative electrophysiology of pyramidal and sparsely spiny stellate neurons of the neocortex.pdf} +} + +@article{DeFelipe1992a, + title = {The Pyramidal Neuron of the Cerebral Cortex: {{Morphological}} and Chemical Characteristics of the Synaptic Inputs}, + volume = {39}, + issn = {03010082}, + shorttitle = {The Pyramidal Neuron of the Cerebral Cortex}, + doi = {10.1016/0301-0082(92)90015-7}, + language = {en}, + number = {6}, + journal = {Progress in Neurobiology}, + author = {DeFelipe, Javier and Fari{\~n}as, Isabel}, + month = dec, + year = {1992}, + pages = {563-607}, + file = {C:\\Users\\saram\\Zotero\\storage\\JUIPEV9M\\DeFelipe and Fariñas 1992 The pyramidal neuron of the cerebral cortex Morphological and chemical characteristics of the synaptic inputs.pdf} +} + +@article{Molnar2006, + title = {Towards the Classification of Subpopulations of Layer {{V}} Pyramidal Projection Neurons}, + volume = {55}, + issn = {01680102}, + doi = {10.1016/j.neures.2006.02.008}, + abstract = {The nature of cerebral cortical circuitry has been increasingly clarified by markers for the identification of precise cell types with specific morphology, connectivity and distinct physiological properties. Molecular markers are not only helpful in dissecting cortical circuitry, but also give insight into the mechanisms of cortical neuronal specification and differentiation. The two principal neuronal types of the cerebral cortex are the pyramidal and GABAergic cells. Pyramidal cells are excitatory and project to distant targets, while GABAergic neurons are mostly inhibitory non-pyramidal interneurons. Reliable markers for specific subtypes of interneurons are available and have been employed in the classification and functional analysis of cortical circuitry. Until recently, cortical pyramidal neurons have been considered a homogeneous class of cells. This concept is now changing as the powerful tools of molecular biology and genetics identify molecular tags for subtypes of pyramidal cells such as: Otx-1 [Frantz, G.D., Bohner, A.P., Akers, R.M., McConnell, S.K., 1994. Regulation of the POU domain gene SCIP during cerebral cortical development. J. Neurosci. 14, 472\textendash{}485; Weimann, J.M., Zhang, Y.A., Levin, M.E., Devine, W.P., Brulet, P., McConnell, S.K., 1999. Cortical neurons require Otx1 for the refinement of exuberant axonal projections to subcortical targets. Neuron 24, 819\textendash{}831]; SMI-32, N200 and FNP-7 [Voelker, C.C., Garin, N., Taylor, J.S., Gahwiler, B.H., Hornung, J.P., Molna\textasciiacute{}r, Z., 2004. Selective neurofilament (SMI-32, FNP-7 and N200) expression in subpopulations of layer V pyramidal neurons in vivo and in vitro. Cereb. Cortex 14, 1276\textendash{}1286]; ER81 [Hevner, R.F., Daza, R.A., Rubenstein, J.L., Stunnenberg, H., Olavarria, J.F., Englund, C., 2003. Beyond laminar fate: toward a molecular classification of cortical projection/pyramidal neurons. Dev. Neurosci. 25 (2\textendash{}4), 139\textendash{}151; Yoneshima, H., Yamasaki, S., Voelker, C., Molna\textasciiacute{}r, Z., Christophe, E., Audinat, E., Takemoto, M., Tsuji, S., Fujita, I., Yamamoto, N., 2006. ER81 is expressed in a subpopulation of layer 5 projection neurons in rodent cerebral cortices. Neuroscience, 137, 401\textendash{}412]; Lmo4 [Bulchand, S., Subramanian, L., Tole, S., 2003. Dynamic spatiotemporal expression of LIM genes and cofactors in the embryonic and postnatal cerebral cortex. Dev. Dyn. 226, 460\textendash{}469; Arlotta, P., Molyneaux, B.J., Chen, J., Inoue, J., Kominami, R., Macklis, J.D., 2005. Neuronal subtype-specific genes that control corticospinal motor neuron development in vivo. Neuron 45 (2), 207\textendash{}221]; CTIP2 [Arlotta, P., Molyneaux, B.J., Chen, J., Inoue, J., Kominami, R., Macklis, J.D., 2005. Neuronal subtype-specific genes that control corticospinal motor neuron development in vivo. Neuron 45 (2), 207\textendash{}221]; Fez1 [Molyneaux, B.J., Arlotta, P., Hirata, T., Hibi, M., Macklis, J.D., 2005. Fez1 is required for the birth and specification of corticospinal motor neurons. Neuron 47 (6), 817\textendash{}831; Chen, B., Schaevitz, L.R., McConnell, S.K., 2005. Fez1 regulates the differentiation and axon targeting of layer 5 subcortical projection neurons in cerebral cortex. Proc. Natl. Acad. Sci. U.S.A. 102 (47), 17184\textendash{}17189]. These genes outline the numerous subtypes of pyramidal cells and are increasingly refining our previous classifications. They also indicate specific developmental programs operate in cell fate decisions. This review will describe the progress made on the correlation of these markers to each other within a specific subtype of layer V neurons with identified, stereotypic projections. Further work is needed to link these data with observations on somatodendritic morphology and physiological properties. The integrated molecular, anatomical and physiological characterisation of pyramidal neurons will lead to a much better appreciation of functional cortical circuits.}, + language = {en}, + number = {2}, + journal = {Neuroscience Research}, + author = {Moln{\'a}r, Zolt{\'a}n and Cheung, Amanda F.P.}, + month = jun, + year = {2006}, + pages = {105-115}, + file = {C:\\Users\\saram\\Zotero\\storage\\KUPN8DHH\\Molnár and Cheung 2006 Towards the classification of subpopulations of layer V pyramidal projection neurons.pdf} +} + +@article{DeFelipe2002, + title = {Microstructure of the Neocortex: Comparative Aspects}, + volume = {31}, + issn = {0300-4864}, + shorttitle = {Microstructure of the Neocortex}, + abstract = {The appearance of the neocortex, its expansion, and its differentiation in mammals, represents one of the principal episodes in the evolution of the vertebrate brain. One of the fundamental questions in neuroscience is what is special about the neocortex of humans and how does it differ from that of other species? It is clear that distinct cortical areas show important differences within both the same and different species, and this has led to some researchers emphasizing the similarities whereas others focus on the differences. In general, despite of the large number of different elements that contribute to neocortical circuits, it is thought that neocortical neurons are organized into multiple, small repeating microcircuits, based around pyramidal cells and their input-output connections. These inputs originate from extrinsic afferent systems, excitatory glutamatergic spiny cells (which include other pyramidal cells and spiny stellate cells), and inhibitory GABAergic interneurons. The problem is that the neuronal elements that make up the basic microcircuit are differentiated into subtypes, some of which are lacking or highly modified in different cortical areas or species. Furthermore, the number of neurons contained in a discrete vertical cylinder of cortical tissue varies across species. Additionally, it has been shown that the neuropil in different cortical areas of the human, rat and mouse has a characteristic layer specific synaptology. These variations most likely reflect functional differences in the specific cortical circuits. The laminar specific similarities between cortical areas and between species, with respect to the percentage, length and density of excitatory and inhibitory synapses, and to the number of synapses per neuron, might be considered as the basic cortical building bricks. In turn, the differences probably indicate the evolutionary adaptation of excitatory and inhibitory circuits to particular functions.}, + language = {eng}, + number = {3-5}, + journal = {Journal of Neurocytology}, + author = {DeFelipe, Javier and Alonso-Nanclares, Lidia and Arellano, Jon I.}, + year = {2002}, + keywords = {Animals,Biological Evolution,Cell Count,Humans,Microscopy; Electron,Neocortex,Neuropil,Species Specificity,Synapses}, + pages = {299-316}, + file = {C:\\Users\\saram\\Zotero\\storage\\TG4LLDSK\\ARELLANO Microstructure of the neocortex Comparative aspects.pdf}, + pmid = {12815249} +} + +@article{Ascoli2008, + title = {Petilla Terminology: Nomenclature of Features of {{GABAergic}} Interneurons of the Cerebral Cortex}, + volume = {9}, + issn = {1471-0048}, + shorttitle = {Petilla Terminology}, + doi = {10.1038/nrn2402}, + abstract = {Neuroscience produces a vast amount of data from an enormous diversity of neurons. A neuronal classification system is essential to organize such data and the knowledge that is derived from them. Classification depends on the unequivocal identification of the features that distinguish one type of neuron from another. The problems inherent in this are particularly acute when studying cortical interneurons. To tackle this, we convened a representative group of researchers to agree on a set of terms to describe the anatomical, physiological and molecular features of GABAergic interneurons of the cerebral cortex. The resulting terminology might provide a stepping stone towards a future classification of these complex and heterogeneous cells. Consistent adoption will be important for the success of such an initiative, and we also encourage the active involvement of the broader scientific community in the dynamic evolution of this project.}, + language = {eng}, + number = {7}, + journal = {Nature Reviews. Neuroscience}, + author = {Ascoli, Giorgio A. and Alonso-Nanclares, Lidia and Anderson, Stewart A. and Barrionuevo, German and Benavides-Piccione, Ruth and Burkhalter, Andreas and Buzs{\'a}ki, Gy{\"o}rgy and Cauli, Bruno and Defelipe, Javier and Fair{\'e}n, Alfonso and Feldmeyer, Dirk and Fishell, Gord and Fregnac, Yves and Freund, Tamas F. and Gardner, Daniel and Gardner, Esther P. and Goldberg, Jesse H. and Helmstaedter, Moritz and Hestrin, Shaul and Karube, Fuyuki and Kisv{\'a}rday, Zolt{\'a}n F. and Lambolez, Bertrand and Lewis, David A. and Marin, Oscar and Markram, Henry and Mu{\~n}oz, Alberto and Packer, Adam and Petersen, Carl C. H. and Rockland, Kathleen S. and Rossier, Jean and Rudy, Bernardo and Somogyi, Peter and Staiger, Jochen F. and Tamas, Gabor and Thomson, Alex M. and Toledo-Rodriguez, Maria and Wang, Yun and West, David C. and Yuste, Rafael}, + month = jul, + year = {2008}, + keywords = {Action Potentials,Axons,Cerebral Cortex,gamma-Aminobutyric Acid,Humans,Interneurons,Synapses}, + pages = {557-568}, + file = {C:\\Users\\saram\\Zotero\\storage\\HNSMFS5B\\Ascoli, 2008, Petilla terminology nomenclature of features of GABAergic interneurons of the cerebral cortex.pdf}, + pmid = {18568015}, + pmcid = {PMC2868386} +} + +@article{Buzsaki2002, + title = {Theta {{Oscillations}} in the {{Hippocampus}}}, + volume = {33}, + issn = {08966273}, + doi = {10.1016/S0896-6273(02)00586-X}, + language = {en}, + number = {3}, + journal = {Neuron}, + author = {Buzs{\'a}ki, Gy{\"o}rgy}, + month = jan, + year = {2002}, + pages = {325-340}, + file = {C:\\Users\\saram\\Zotero\\storage\\SV6SBYCA\\Buzsáki 2002 Theta Oscillations in the Hippocampus.pdf} +} + +@article{Buzsaki2004a, + title = {Neuronal {{Oscillations}} in {{Cortical Networks}}}, + volume = {304}, + issn = {0036-8075, 1095-9203}, + doi = {10.1126/science.1099745}, + language = {en}, + number = {5679}, + journal = {Science}, + author = {Buzsaki, G.}, + month = jun, + year = {2004}, + pages = {1926-1929}, + file = {C:\\Users\\saram\\Zotero\\storage\\WH82WCWM\\Buzsaki 2004 Neuronal Oscillations in Cortical Networks.pdf} +} + +@article{Markram2004, + title = {Interneurons of the Neocortical Inhibitory System}, + volume = {5}, + issn = {1471-003X, 1471-0048}, + doi = {10.1038/nrn1519}, + abstract = {Mammals adapt to a rapidly changing world because of the sophisticated cognitive functions that are supported by the neocortex. The neocortex, which forms almost 80\% of the human brain, seems to have arisen from repeated duplication of a stereotypical microcircuit template with subtle specializations for different brain regions and species. The quest to unravel the blueprint of this template started more than a century ago and has revealed an immensely intricate design. The largest obstacle is the daunting variety of inhibitory interneurons that are found in the circuit. This review focuses on the organizing principles that govern the diversity of inhibitory interneurons and their circuits.}, + language = {en}, + number = {10}, + journal = {Nature Reviews Neuroscience}, + author = {Markram, Henry and Toledo-Rodriguez, Maria and Wang, Yun and Gupta, Anirudh and Silberberg, Gilad and Wu, Caizhi}, + month = oct, + year = {2004}, + pages = {793-807}, + file = {C:\\Users\\saram\\Zotero\\storage\\VFT7D2VD\\Markram et al. 2004 Interneurons of the neocortical inhibitory system.pdf} +} + +@article{Connors1990a, + title = {Intrinsic Firing Patterns of Diverse Neocortical Neurons}, + volume = {13}, + issn = {0166-2236}, + doi = {10.1016/0166-2236(90)90185-D}, + abstract = {Neurons of the neocortex differ dramatically in the patterns of action potentials they generate in response to current steps. Regular-spiking cells adapt strongly during maintained stimuli, whereas fast-spiking cells can sustain very high firing frequencies with little or no adaptation. Instrinsically bursting cells generate clusters of spikes (bursts), either singly or repetitively. These physiological distinctions have morphological correlates. RS and IB cells can be either pyramidal neurons or spiny stellate cells, and thus constitute the excitatory cells of the cortex. FS cells are smooth or sparsely spiny non-pyramidal cells, and are likely to be GABAergic inhibitory interneurons. The different firing properties of neurons in neocortex contribute significantly to its network behavior.}, + number = {3}, + journal = {Trends in Neurosciences}, + author = {Connors, Barry W. and Gutnick, Michael J.}, + month = mar, + year = {1990}, + pages = {99-104}, + file = {C:\\Users\\saram\\Zotero\\storage\\VPB4XY4V\\Connors and Gutnick 1990 Intrinsic firing patterns of diverse neocortical neurons.pdf} +} + +@article{Steriade1998, + title = {Dynamic {{Properties}} of {{Corticothalamic Neurons}} and {{Local Cortical Interneurons Generating Fast Rhythmic}} (30\textendash{}40 {{Hz}}) {{Spike Bursts}}}, + volume = {79}, + issn = {0022-3077}, + doi = {10.1152/jn.1998.79.1.483}, + abstract = {Steriade, Mircea, Igor Timofeev, Niklaus D{\"u}rm{\"u}ller, and Fran{\c c}ois Grenier. Dynamic properties of corticothalamic neurons and local cortical interneurons generating fast rhythmic (30\textendash{}40 Hz) spike-bursts. J. Neurophysiol. 79: 483\textendash{}490, 1998. Fast spontaneous oscillations (mainly 30\textendash{}40 Hz) characterize cortical and thalamic neuronal networks during behavioral states of increased vigilance and depend on cell depolarization under the influence of ascending activating systems. We investigated, by means of intracellular recording and staining in vivo, the properties of fast-oscillating cortical neurons from cat's motor and association areas, some projecting to the thalamus, others with locally arborizing axons. At a given level of depolarization, 28\% of our neuronal sample discharged high-frequency spike bursts (300\textendash{}600 Hz) that recurred rhythmically between 20 and 50 Hz. Such fast rhythmic bursting neurons have been found in both superficial and deep cortical layers. Slight changes in membrane potential as well as synaptic activity in thalamocortical networks dramatically altered the discharge patterns, from single spikes to rhythmic spike-bursts, and eventually to fast tonic firing without frequency adaptation. Thus our data challenge the conventional idea that sharply defined, invariant features and distinct locations in certain cortical layers characterize some neocortical cell-classes. We demonstrate that the distinctions between intrinsic electrophysiological properties of neocortical neurons are much more labile than conventionally thought. The present results, which indicate that corticothalamic neurons discharge fast rhythmic spike bursts mainly at 30\textendash{}40 Hz, suggest that this activity results in integrated fast oscillations within corticothalamic networks.}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Steriade, Mircea and Timofeev, Igor and D{\"u}rm{\"u}ller, Niklaus and Grenier, Fran{\c c}ois}, + month = jan, + year = {1998}, + pages = {483-490}, + file = {C:\\Users\\saram\\Zotero\\storage\\2QB2AF6M\\Steriade et al. 1998 Dynamic Properties of Corticothalamic Neurons and Local Cortical Interneurons Generating Fast Rhythmic (30–40 Hz) Spike Bursts.pdf} +} + +@article{Steriade2004, + title = {Neocortical Cell Classes Are Flexible Entities}, + volume = {5}, + issn = {1471-003X, 1471-0048}, + doi = {10.1038/nrn1325}, + language = {en}, + number = {2}, + journal = {Nature Reviews Neuroscience}, + author = {Steriade, Mircea}, + month = feb, + year = {2004}, + pages = {121-134}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZYDL8Y6S\\Steriade 2004 Neocortical cell classes are flexible entities.pdf} +} + +@article{Steriade2001, + title = {Impact of {{Network Activities}} on {{Neuronal Properties}} in {{Corticothalamic Systems}}}, + volume = {86}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.2001.86.1.1}, + language = {en}, + number = {1}, + journal = {Journal of Neurophysiology}, + author = {Steriade, M.}, + month = jul, + year = {2001}, + pages = {1-39}, + file = {C:\\Users\\saram\\Zotero\\storage\\7DX44ULZ\\Steriade 2001 Impact of Network Activities on Neuronal Properties in Corticothalamic Systems.pdf} +} + +@article{Steriade1978, + title = {Cell Classification and Changes in Neuronal Activity with Shifts in Vigilance State}, + volume = {1}, + issn = {0140-525X, 1469-1825}, + doi = {10.1017/S0140525X00076482}, + abstract = {Knowledge of the input-output characteristics of various neuronal types is a necessary first step toward an understanding of cellular events related to waking and sleep. In spite of the oversimplification involved, the dichotomy in terms of type I (long-axoned, output) neurons and type II (short-axoned, local) interneurons is helpful in functionally delineating the neuronal circuits involved in the genesis and epiphenomena of waking and sleep states. The possibility is envisaged that cortical interneurons, which are particularly related to higher neuronal activity and have been found in previous experiments to be more active during sleep than during wakefulness, might be involved in complex integrative processes occurring during certain sleep stages. Electrophysiological criteria for the identification of output cells and interneurons are developed, with emphasis on various possibilities and difficulties involved in recognizing interneurons of the mammalian brain. The high-frequency repetitive activity of interneurons is discussed, together with various possibilities of error to be avoided when interpreting data from bursting cells. Data first show opposite changes in spontaneous and evoked discharges of identified output cells versus putative interneurons recorded from motor and parietal association cortical areas in behaving monkeys and cats during wakefulness (W) compared to sleep with synchronized EEG activity (S): significantly increased rates of spontaneous firing, enhanced antidromic or synaptic responsiveness, associated with shorter periods of inhibition in type I (pyramidal tract, cortico-thalamic and cortico-pontine) cells during W versus significantly decreased frequencies of spontaneous discharge and depression of synaptically elicited reponses of type II cells during W compared to S. These findings are partly explained on the basis of recent iontophoretic studies showing that acetylcholine, viewed as a synaptic transmitter of the arousal system, excites output-type neurons and inhibits high-frequency bursting cells. Comparing W and S to the deepest stage of sleep with desynchronized EEG activity (D) in type I and type II cells revealed that: (a) the increased firing rates of output cells in D, over those in W and S, is substantially due to a tonic excitation during this state, and rapid eye movements (RE Ms) only contribute to the further increase of discharge frequencies; (b) in contrast, the increased rates of discharge in interneurons during D is entirely ascribable to REM-related firing. On the basis of experiments reporting that increased duration of D has beneficial effects upon retention of information acquired during W, the suggestion is made that increased firing rates of association cortical interneurons during REM epochs of D sleep are an important factor in maintaining the soundness of a memory trace.}, + language = {en}, + number = {03}, + journal = {Behavioral and Brain Sciences}, + author = {Steriade, M.}, + month = sep, + year = {1978}, + pages = {511}, + file = {C:\\Users\\saram\\Zotero\\storage\\Z6J2Q95Z\\Steriade 1978 Cell classification and changes in neuronal activity with shifts in vigilance state.pdf} +} + +@article{LeVanQuyen2008, + title = {Cell {{Type}}-{{Specific Firing}} during {{Ripple Oscillations}} in the {{Hippocampal Formation}} of {{Humans}}}, + volume = {28}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.0437-08.2008}, + language = {en}, + number = {24}, + journal = {Journal of Neuroscience}, + author = {Le Van Quyen, M. and Bragin, A. and Staba, R. and Crepon, B. and Wilson, C. L. and Engel, J.}, + month = jun, + year = {2008}, + pages = {6104-6110}, + file = {C:\\Users\\saram\\Zotero\\storage\\TETM2B28\\Le Van Quyen et al. 2008 Cell Type-Specific Firing during Ripple Oscillations in the Hippocampal Formation of Humans.pdf} +} + +@article{Peyrache2012, + title = {Spatiotemporal Dynamics of Neocortical Excitation and Inhibition during Human Sleep}, + volume = {109}, + issn = {0027-8424, 1091-6490}, + doi = {10.1073/pnas.1109895109}, + language = {en}, + number = {5}, + journal = {Proceedings of the National Academy of Sciences}, + author = {Peyrache, A. and Dehghani, N. and Eskandar, E. N. and Madsen, J. R. and Anderson, W. S. and Donoghue, J. A. and Hochberg, L. R. and Halgren, E. and Cash, S. S. and Destexhe, A.}, + month = jan, + year = {2012}, + pages = {1731-1736}, + file = {C:\\Users\\saram\\Zotero\\storage\\K6GKKL25\\Peyrache et al. 2012 Spatiotemporal dynamics of neocortical excitation and inhibition during human sleep.pdf} +} + +@article{Einevoll2007, + title = {Laminar {{Population Analysis}}: {{Estimating Firing Rates}} and {{Evoked Synaptic Activity From Multielectrode Recordings}} in {{Rat Barrel Cortex}}}, + volume = {97}, + issn = {0022-3077, 1522-1598}, + shorttitle = {Laminar {{Population Analysis}}}, + doi = {10.1152/jn.00845.2006}, + language = {en}, + number = {3}, + journal = {Journal of Neurophysiology}, + author = {Einevoll, Gaute T. and Pettersen, Klas H. and Devor, Anna and Ulbert, Istvan and Halgren, Eric and Dale, Anders M.}, + month = mar, + year = {2007}, + pages = {2174-2190}, + file = {C:\\Users\\saram\\Zotero\\storage\\ZIPK3AHT\\Einevoll et al. 2007 Laminar Population Analysis Estimating Firing Rates and Evoked Synaptic Activity From Multielectrode Recordings in Rat Barrel Cortex.pdf} +} + +@article{Dougherty2015, + title = {Ongoing {{Alpha Activity}} in {{V1 Regulates Visually Driven Spiking Responses}}}, + issn = {1047-3211, 1460-2199}, + doi = {10.1093/cercor/bhv304}, + abstract = {The interlaminar connections in the primate primary visual cortex (V1) are well described, as is the presence of ongoing alpharange (7\textendash{}14 Hz) fluctuations in this area. Less well understood is how these interlaminar connections and ongoing fluctuations contribute to the regulation of visual spiking responses. Here, we investigate the relationship between alpha fluctuations and spiking responses to visual stimuli across cortical layers. Using laminar probes in macaque V1, we show that neural firing couples with the phase of alpha fluctuations, and that magnitude of this coupling is particularly pronounced during visual stimulation. The strongest modulation of spiking activity was observed in layers 2/3. Alpha-spike coupling and current source density analysis pointed to an infragranular origin of the alpha fluctuations. Taken together, these results indicate that ongoing infragranular alpha-range fluctuations in V1 play a role in regulating columnar visual activity.}, + language = {en}, + journal = {Cerebral Cortex}, + author = {Dougherty, Kacie and Cox, Michele A. and Ninomiya, Taihei and Leopold, David A. and Maier, Alexander}, + month = dec, + year = {2015}, + pages = {bhv304}, + file = {C:\\Users\\saram\\Zotero\\storage\\KQ55QT42\\Dougherty et al. 2015 Ongoing Alpha Activity in V1 Regulates Visually Driven Spiking Responses.pdf} +} + +@article{Chong2011, + title = {Synaptic Dysfunction in Hippocampus of Transgenic Mouse Models of {{Alzheimer}}'s Disease: {{A}} Multi-Electrode Array Study}, + volume = {44}, + issn = {09699961}, + shorttitle = {Synaptic Dysfunction in Hippocampus of Transgenic Mouse Models of {{Alzheimer}}'s Disease}, + doi = {10.1016/j.nbd.2011.07.006}, + abstract = {APP.V717I and Tau.P301L transgenic mice develop Alzheimer's disease pathology comprising important aspects of human disease including increased levels of amyloid peptides, cognitive and motor impairment, amyloid plaques and neurofibrillary tangles. The combined model, APP.V717I \texttimes{} Tau.P301L bigenic mice (biAT mice) exhibit aggravated amyloid and tau pathology with severe cognitive and behavioral defects. In the present study, we investigated early changes in synaptic function in the CA1 and CA3 regions of acute hippocampal slices of young APP.V717I, Tau.P301L and biAT transgenic animals. We have used planar multielectrode arrays (MEA) and improved methods for simultaneous multi-site recordings from two hippocampal sub-regions. In the CA1 region, long-term potentiation (LTP) was severely impaired in all transgenic animals when compared with age-matched wild-type controls, while basal synaptic transmission and paired-pulse facilitation were minimally affected. In the CA3 region, LTP was normal in Tau.P301L and APP.V717I but clearly impaired in biAT mice. Surprisingly, frequency facilitation in CA3 was significantly enhanced in Tau. P301L mice, while not affected in APP.V717I mice and depressed in biAT mice. The findings demonstrate important synaptic changes that differ considerably in the hippocampal sub-regions already at young age, well before the typical amyloid or tau pathology is evident.}, + language = {en}, + number = {3}, + journal = {Neurobiology of Disease}, + author = {Chong, Seon-Ah and Benilova, Iryna and Shaban, Hamdy and De Strooper, Bart and Devijver, Herman and Moechars, Dieder and Eberle, Wolfgang and Bartic, Carmen and Van Leuven, Fred and Callewaert, Geert}, + month = dec, + year = {2011}, + pages = {284-291}, + file = {C:\\Users\\saram\\Zotero\\storage\\2RAVZ6AY\\Chong et al. 2011 Synaptic dysfunction in hippocampus of transgenic mouse models of Alzheimer's disease A multi-electrode array study.pdf} +} + +@article{Gafurov2013, + title = {{{GABAergic}} Transmission Facilitates Ictogenesis and Synchrony between {{CA3}}, Hilus, and Dentate Gyrus in Slices from Epileptic Rats}, + volume = {110}, + issn = {0022-3077, 1522-1598}, + doi = {10.1152/jn.00679.2012}, + language = {en}, + number = {2}, + journal = {Journal of Neurophysiology}, + author = {Gafurov, Boris and Bausch, Suzanne B.}, + month = jul, + year = {2013}, + pages = {441-455}, + file = {C:\\Users\\saram\\Zotero\\storage\\DNIEAT7K\\Gafurov and Bausch 2013 GABAergic transmission facilitates ictogenesis and synchrony between CA3, hilus, and dentate gyrus in slices from epileptic rats.pdf} +} + +@article{Gonzalez-Sulser2011, + title = {The 4-Aminopyridine in Vitro Epilepsy Model Analyzed with a Perforated Multi-Electrode Array}, + volume = {60}, + issn = {00283908}, + doi = {10.1016/j.neuropharm.2010.10.007}, + abstract = {Epileptiform discharges recorded in the 4-aminopyridine (4-AP) in vitro epilepsy model are mediated by glutamatergic and GABAergic signaling. Using a 60-channel perforated multi-electrode array (pMEA) on corticohippocampal slices from 2 to 3 week old mice we recorded interictal- and ictal-like events. When glutamatergic transmission was blocked, interictal-like events no longer initiated in the hilus or CA3/CA1 pyramidal layers but originated from the dentate gyrus granule and molecular layers. Furthermore, frequencies of interictal-like events were reduced and durations were increased in these regions while cortical discharges were completely blocked. Following GABAA receptor blockade interictal-like events no longer propagated to the dentate gyrus while their frequency in CA3 increased; in addition, ictal-like cortical events became shorter while increasing in frequency. Lastly, drugs that affect tonic and synaptic GABAergic conductance modulated the frequency, duration, initiation and propagation of interictal-like events. These findings confirm and expand on previous studies indicating that multiple synaptic mechanisms contribute to synchronize neuronal network activity in forebrain structures.}, + language = {en}, + number = {7-8}, + journal = {Neuropharmacology}, + author = {Gonzalez-Sulser, Alfredo and Wang, Jing and Motamedi, Gholam K. and Avoli, Massimo and Vicini, Stefano and Dzakpasu, Rhonda}, + month = jun, + year = {2011}, + pages = {1142-1153}, + file = {C:\\Users\\saram\\Zotero\\storage\\5XXXNDSK\\Gonzalez-Sulser et al. 2011 The 4-aminopyridine in vitro epilepsy model analyzed with a perforated multi-electrode array.pdf} +} + +@article{McGinn2014, + title = {Phase-{{Amplitude Coupling}} and {{Interlaminar Synchrony Are Correlated}} in {{Human Neocortex}}}, + volume = {34}, + issn = {0270-6474, 1529-2401}, + doi = {10.1523/JNEUROSCI.2771-14.2014}, + language = {en}, + number = {48}, + journal = {Journal of Neuroscience}, + author = {McGinn, R. J. and Valiante, T. A.}, + month = nov, + year = {2014}, + pages = {15923-15930}, + file = {C:\\Users\\saram\\Zotero\\storage\\LBNDXJ3V\\McGinn and Valiante 2014 Phase-Amplitude Coupling and Interlaminar Synchrony Are Correlated in Human Neocortex.pdf;C:\\Users\\saram\\Zotero\\storage\\NRI86UR4\\McGinn_Ryan_J_201311_MASc_thesis.pdf} +} + +@article{Kalmbach2018, + title = {H-Channels Contribute to Divergent Electrophysiological Properties of Supragranular Pyramidal Neurons in Human versus Mouse Cerebral Cortex}, + copyright = {\textcopyright{} 2018, Posted by Cold Spring Harbor Laboratory. The copyright holder for this pre-print is the author. All rights reserved. The material may not be redistributed, re-used or adapted without the author's permission.}, + doi = {10.1101/312298}, + abstract = {Gene expression studies suggest that differential ion channel expression contributes to differences in rodent versus human neuronal physiology. We tested whether h-channels more prominently contribute to the physiological properties of human compared to mouse supragranular pyramidal neurons. Single cell/nucleus RNA sequencing revealed ubiquitous HCN1-subunit expression in excitatory neurons in human, but not mouse supragranular layers. Using patch-clamp recordings, we found stronger h-channel-related membrane properties in supragranular pyramidal neurons in human temporal cortex, compared to mouse supragranular pyramidal neurons in temporal association area. The magnitude of these differences depended upon cortical depth and was largest in pyramidal neurons in deep L3. Additionally, pharmacologically blocking h-channels produced a larger change in membrane properties in human compared to mouse neurons. Finally, using biophysical modeling, we provided evidence that h-channels promote the transfer of theta frequencies from dendrite-to-soma in human L3 pyramidal neurons. Thus, h-channels contribute to between-species differences in a fundamental neuronal property.}, + language = {en}, + journal = {bioRxiv}, + author = {Kalmbach, Brian and Buchin, Anatoly and Miller, Jeremy A. and Bakken, Trygve E. and Hodge, Rebecca D. and Chong, Peter and de Frates, Rebecca and Dai, Kael and Gwinn, Ryder P. and Cobbs, Charles and Ko, Andrew L. and Ojemann, Jeffrey G. and Silbergeld, Daniel L. and Koch, Christof and Anastassiou, Costas A. and Lein, Ed and Ting, Jonathan T.}, + month = may, + year = {2018}, + pages = {312298}, + file = {C:\\Users\\saram\\Zotero\\storage\\YWVUA3BG\\Kalmbach et al. 2018 h-channels contribute to divergent electrophysiological properties of supragranular pyramidal neurons in human versus mouse cerebral cortex.pdf} +} + + diff --git a/lessons/misc/latex-intro/Intro-to-Latex-Sara/contour1.jpg b/lessons/misc/latex-intro/Intro-to-Latex-Sara/contour1.jpg new file mode 100644 index 000000000..7d18f3e99 Binary files /dev/null and b/lessons/misc/latex-intro/Intro-to-Latex-Sara/contour1.jpg differ diff --git a/lessons/misc/latex-intro/Intro-to-Latex-Sara/contour2.jpg b/lessons/misc/latex-intro/Intro-to-Latex-Sara/contour2.jpg new file mode 100644 index 000000000..027fa1857 Binary files /dev/null and b/lessons/misc/latex-intro/Intro-to-Latex-Sara/contour2.jpg differ diff --git a/lessons/misc/latex-intro/Intro-to-Latex-Sara/graph.eps b/lessons/misc/latex-intro/Intro-to-Latex-Sara/graph.eps new file mode 100644 index 000000000..1fab3c420 --- /dev/null +++ b/lessons/misc/latex-intro/Intro-to-Latex-Sara/graph.eps @@ -0,0 +1,380 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: MATLAB, The Mathworks, Inc. Version 7.4.0.287 (R2007a). Operating System: Darwin 8.11.1 Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386 i386. +%%Title: /research/publications/IPM_paper/images/DVH_case005_eps001.eps +%%CreationDate: 12/25/2008 12:53:14 +%%DocumentNeededFonts: Helvetica +%%DocumentProcessColors: Cyan Magenta Yellow Black +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 30 206 580 586 +%%EndComments + +%%BeginProlog +% MathWorks dictionary +/MathWorks 160 dict begin +% definition operators +/bdef {bind def} bind def +/ldef {load def} bind def +/xdef {exch def} bdef +/xstore {exch store} bdef +% operator abbreviations +/c /clip ldef +/cc /concat ldef +/cp /closepath ldef +/gr /grestore ldef +/gs /gsave ldef +/mt /moveto ldef +/np /newpath ldef +/cm /currentmatrix ldef +/sm /setmatrix ldef +/rm /rmoveto ldef +/rl /rlineto ldef +/s {show newpath} bdef +/sc {setcmykcolor} bdef +/sr /setrgbcolor ldef +/sg /setgray ldef +/w /setlinewidth ldef +/j /setlinejoin ldef +/cap /setlinecap ldef +/rc {rectclip} bdef +/rf {rectfill} bdef +% page state control +/pgsv () def +/bpage {/pgsv save def} bdef +/epage {pgsv restore} bdef +/bplot /gsave ldef +/eplot {stroke grestore} bdef +% orientation switch +/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def +% coordinate system mappings +/dpi2point 0 def +% font control +/FontSize 0 def +/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0] + makefont setfont} bdef +/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse + exch dup 3 1 roll findfont dup length dict begin + { 1 index /FID ne {def}{pop pop} ifelse } forall + /Encoding exch def currentdict end definefont pop} bdef +/isroman {findfont /CharStrings get /Agrave known} bdef +/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse + exch FMS} bdef +/csm {1 dpi2point div -1 dpi2point div scale neg translate + dup landscapeMode eq {pop -90 rotate} + {rotateMode eq {90 rotate} if} ifelse} bdef +% line types: solid, dotted, dashed, dotdash +/SO { [] 0 setdash } bdef +/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef +/DA { [6 dpi2point mul] 0 setdash } bdef +/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4 + dpi2point mul] 0 setdash } bdef +% macros for lines and objects +/L {lineto stroke} bdef +/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef +/AP {{rlineto} repeat} bdef +/PDlw -1 def +/W {/PDlw currentlinewidth def setlinewidth} def +/PP {closepath eofill} bdef +/DP {closepath stroke} bdef +/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto + neg 0 exch rlineto closepath} bdef +/FR {MR stroke} bdef +/PR {MR fill} bdef +/L1i {{currentfile picstr readhexstring pop} image} bdef +/tMatrix matrix def +/MakeOval {newpath tMatrix currentmatrix pop translate scale +0 0 1 0 360 arc tMatrix setmatrix} bdef +/FO {MakeOval stroke} bdef +/PO {MakeOval fill} bdef +/PD {currentlinewidth 2 div 0 360 arc fill + PDlw -1 eq not {PDlw w /PDlw -1 def} if} def +/FA {newpath tMatrix currentmatrix pop translate scale + 0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef +/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale + 0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef +/FAn {newpath tMatrix currentmatrix pop translate scale + 0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef +/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale + 0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef +/vradius 0 def /hradius 0 def /lry 0 def +/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def +/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef + /ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly + vradius add translate hradius vradius scale 0 0 1 180 270 arc + tMatrix setmatrix lrx hradius sub uly vradius add translate + hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix + lrx hradius sub lry vradius sub translate hradius vradius scale + 0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub + translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix + closepath} bdef +/FRR {MRR stroke } bdef +/PRR {MRR fill } bdef +/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def + newpath tMatrix currentmatrix pop ulx rad add uly rad add translate + rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad + sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix + closepath} bdef +/FlrRR {MlrRR stroke } bdef +/PlrRR {MlrRR fill } bdef +/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def + newpath tMatrix currentmatrix pop ulx rad add uly rad add translate + rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad + sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix + closepath} bdef +/FtbRR {MtbRR stroke } bdef +/PtbRR {MtbRR fill } bdef +/stri 6 array def /dtri 6 array def +/smat 6 array def /dmat 6 array def +/tmat1 6 array def /tmat2 6 array def /dif 3 array def +/asub {/ind2 exch def /ind1 exch def dup dup + ind1 get exch ind2 get sub exch } bdef +/tri_to_matrix { + 2 0 asub 3 1 asub 4 0 asub 5 1 asub + dup 0 get exch 1 get 7 -1 roll astore } bdef +/compute_transform { + dmat dtri tri_to_matrix tmat1 invertmatrix + smat stri tri_to_matrix tmat2 concatmatrix } bdef +/ds {stri astore pop} bdef +/dt {dtri astore pop} bdef +/db {2 copy /cols xdef /rows xdef mul dup 3 mul string + currentfile + 3 index 0 eq {/ASCIIHexDecode filter} + {/ASCII85Decode filter 3 index 2 eq {/RunLengthDecode filter} if } + ifelse exch readstring pop + dup 0 3 index getinterval /rbmap xdef + dup 2 index dup getinterval /gbmap xdef + 1 index dup 2 mul exch getinterval /bbmap xdef pop pop}bdef +/it {gs np dtri aload pop moveto lineto lineto cp c + cols rows 8 compute_transform + rbmap gbmap bbmap true 3 colorimage gr}bdef +/il {newpath moveto lineto stroke}bdef +currentdict end def +%%EndProlog + +%%BeginSetup +MathWorks begin + +0 cap + +end +%%EndSetup + +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 30 206 580 586 +MathWorks begin +bpage +%%EndPageSetup + +%%BeginObject: obj1 +bplot + +/dpi2point 12 def +portraitMode 0360 7032 csm + + 0 0 6607 4556 rc +85 dict begin %Colortable dictionary +/c0 { 0.000000 0.000000 0.000000 sr} bdef +/c1 { 1.000000 1.000000 1.000000 sr} bdef +/c2 { 0.900000 0.000000 0.000000 sr} bdef +/c3 { 0.000000 0.820000 0.000000 sr} bdef +/c4 { 0.000000 0.000000 0.800000 sr} bdef +/c5 { 0.910000 0.820000 0.320000 sr} bdef +/c6 { 1.000000 0.260000 0.820000 sr} bdef +/c7 { 0.000000 0.820000 0.820000 sr} bdef +c0 +1 j +1 sg + 0 0 6608 4557 rf +6 w +0 3696 5120 0 0 -3696 859 4037 4 MP +PP +-5120 0 0 3696 5120 0 0 -3696 859 4037 5 MP stroke +4 w +DO +0 sg + 859 4037 mt 859 342 L + 859 342 mt 859 342 L +1712 4037 mt 1712 342 L +1712 342 mt 1712 342 L +2565 4037 mt 2565 342 L +2565 342 mt 2565 342 L +3419 4037 mt 3419 342 L +3419 342 mt 3419 342 L +4272 4037 mt 4272 342 L +4272 342 mt 4272 342 L +5125 4037 mt 5125 342 L +5125 342 mt 5125 342 L +5979 4037 mt 5979 342 L +5979 342 mt 5979 342 L + 859 4037 mt 5979 4037 L +5979 4037 mt 5979 4037 L + 859 3298 mt 5979 3298 L +5979 3298 mt 5979 3298 L + 859 2559 mt 5979 2559 L +5979 2559 mt 5979 2559 L + 859 1820 mt 5979 1820 L +5979 1820 mt 5979 1820 L + 859 1081 mt 5979 1081 L +5979 1081 mt 5979 1081 L + 859 342 mt 5979 342 L +5979 342 mt 5979 342 L +SO +6 w + 859 4037 mt 5979 4037 L + 859 341 mt 5979 341 L + 859 4037 mt 859 341 L +5979 4037 mt 5979 341 L + 859 4037 mt 5979 4037 L + 859 4037 mt 859 341 L + 859 4037 mt 859 3985 L + 859 342 mt 859 393 L +%%IncludeResource: font Helvetica +/Helvetica /ISOLatin1Encoding 192 FMSR + + 806 4249 mt +(0) s +1712 4037 mt 1712 3985 L +1712 342 mt 1712 393 L +1606 4249 mt +(20) s +2565 4037 mt 2565 3985 L +2565 342 mt 2565 393 L +2459 4249 mt +(40) s +3419 4037 mt 3419 3985 L +3419 342 mt 3419 393 L +3313 4249 mt +(60) s +4272 4037 mt 4272 3985 L +4272 342 mt 4272 393 L +4166 4249 mt +(80) s +5125 4037 mt 5125 3985 L +5125 342 mt 5125 393 L +4965 4249 mt +(100) s +5979 4037 mt 5979 3985 L +5979 342 mt 5979 393 L +5819 4249 mt +(120) s + 859 4037 mt 910 4037 L +5979 4037 mt 5927 4037 L + 718 4108 mt +(0) s + 859 3298 mt 910 3298 L +5979 3298 mt 5927 3298 L + 611 3369 mt +(20) s + 859 2559 mt 910 2559 L +5979 2559 mt 5927 2559 L + 611 2630 mt +(40) s + 859 1820 mt 910 1820 L +5979 1820 mt 5927 1820 L + 611 1891 mt +(60) s + 859 1081 mt 910 1081 L +5979 1081 mt 5927 1081 L + 611 1152 mt +(80) s + 859 342 mt 910 342 L +5979 342 mt 5927 342 L + 504 413 mt +(100) s + 859 4037 mt 5979 4037 L + 859 341 mt 5979 341 L + 859 4037 mt 859 341 L +5979 4037 mt 5979 341 L +gs 859 342 5121 3696 rc +24 w +42 0 43 0 43 0 42 0 43 0 43 0 42 0 43 0 +43 0 42 0 43 0 43 0 42 0 43 0 43 0 42 0 +43 0 43 0 42 0 43 0 43 0 42 0 43 0 43 0 +42 0 43 0 43 0 42 0 43 0 43 0 42 0 43 0 +43 0 42 0 43 24 43 0 42 23 43 92 43 185 42 231 +43 485 43 415 42 416 43 462 43 600 42 393 43 162 43 138 +42 23 43 23 43 23 3781 342 52 MP stroke +DA +42 0 43 0 43 0 42 0 43 0 43 0 42 0 43 0 +43 0 42 0 43 0 43 0 42 0 43 0 43 0 42 0 +43 0 43 0 42 0 43 0 43 0 42 0 43 0 43 0 +42 0 43 0 43 0 42 0 43 0 43 0 42 0 43 0 +43 0 42 0 43 1 43 0 42 1 43 5 43 6 42 9 +43 17 43 18 42 22 43 25 43 39 42 44 43 39 43 43 +42 51 43 70 43 84 42 113 43 173 43 212 42 270 43 283 +43 296 42 267 43 263 43 230 42 196 43 185 43 134 42 103 +43 127 43 80 42 56 43 52 43 40 42 32 43 22 43 15 +42 14 43 14 43 6 42 9 43 8 43 6 42 3 43 4 +43 2 42 0 43 3 43 2 42 1 43 0 2288 342 87 MP stroke +gr + +24 w +DA +2981 4445 mt +(Dose \(Gy\)) s + 406 2850 mt -90 rotate +(Percent volume) s +90 rotate +%%IncludeResource: font Helvetica +/Helvetica /ISOLatin1Encoding 120 FMSR + + 842 4080 mt +( ) s +5963 384 mt +( ) s +SO +6 w +1 sg +0 500 900 0 0 -500 5019 902 4 MP +PP +-900 0 0 500 900 0 0 -500 5019 902 5 MP stroke +4 w +DO +SO +6 w +0 sg +5019 902 mt 5919 902 L +5019 402 mt 5919 402 L +5019 902 mt 5019 402 L +5919 902 mt 5919 402 L +5019 902 mt 5919 902 L +5019 902 mt 5019 402 L +5019 902 mt 5919 902 L +5019 402 mt 5919 402 L +5019 902 mt 5019 402 L +5919 902 mt 5919 402 L +%%IncludeResource: font Helvetica +/Helvetica /ISOLatin1Encoding 192 FMSR + +5478 605 mt +(GTV) s +gs 5019 402 901 501 rc +24 w +353 0 5089 536 2 MP stroke +gr + +24 w +5478 836 mt +(PTV) s +gs 5019 402 901 501 rc +DA +353 0 5089 767 2 MP stroke +SO +6 w +gr + +6 w + +end %%Color Dict + +eplot +%%EndObject + +epage +end + +showpage + +%%Trailer +%%EOF diff --git a/lessons/misc/latex-intro/Intro-to-Latex-Sara/intro_to_LateX.tex b/lessons/misc/latex-intro/Intro-to-Latex-Sara/intro_to_LateX.tex new file mode 100644 index 000000000..424944ae3 --- /dev/null +++ b/lessons/misc/latex-intro/Intro-to-Latex-Sara/intro_to_LateX.tex @@ -0,0 +1,378 @@ +\documentclass[12pt]{article} +\usepackage{booktabs} +\usepackage[authoryear,sort&compress]{natbib} +%\usepackage[numbers,sort&compress]{natbib} +\usepackage{amsmath,amsfonts,amssymb,amsbsy} +\usepackage{color} +\usepackage[colorlinks=true,citecolor=cyan,linkcolor=blue,urlcolor=magenta]{hyperref} +\usepackage{subfigure} +\usepackage{graphicx} +\usepackage{authblk} +\usepackage{parskip} +\usepackage{lineno} + + +\title{Introduction to \LaTeX} +%\author{Sara Mahallati\thanks{IBBME, University of Toronto, Canada; \texttt{t{tt{t{sara.mahallati@mail.utoronto.ca}}} + +\author[1,2]{Sara Mahallati\thanks{sara.mahallati@mail.utoronto.ca}} +\author[3]{Dionne M. Aleman \thanks{This document is a modified version of the source file developed by Dr. Aleman}} +\affil[1]{Institute of Biomaterials and Biomedical Engineering, University of Toronto, Canada} +\affil[3]{Department of Mechanical and Industrial Engineering, University of Toronto} +\affil[2]{Krembil Research Institute, University Health Network, Toronto, Canada} + + +\date{June 21, 2018} + + +% THE ACTUAL DOCUMENT + +\begin{document} + +\maketitle +%\linenumbers + +\begin{abstract} +This is a quick and dirty guide to doing most of the things most people will ever want to do with \LaTeX. This guide contains a number of examples of useful things (e.g., abstracts, arrows, tables, etc.) that may not be covered in the session today. Just look at the source \texttt{.tex} file to see how it was done (that is why there are a number of random bullets, symbols, sections, formatting styles, etc.\ throughout the guide). This document is certainly not the definitive \LaTeX\ manual; if there is something you want to do and it is not described here, look it up online. There are no limits to what can be done! +\end{abstract} + +\newpage + +\tableofcontents + +\newpage + +\section*{Acknowledgement} %the * is added to make it an un-numbered section +\addcontentsline{toc}{section}{Acknowledgement} +This source file is mostly adopted from Dr. Dionne Aleman's tutorial at MIE department a few years back and used with her permission. + +\section{What is \LaTeX ?} \label{sec:intro} + +From \href{https://en.wikipedia.org/wiki/TeX}{wikipedia-tex}, \TeX\ (pronounced ``tek") is a typesetting system created by Donald Knuth. Together with the METAFONT language for font description and the Computer Modern typeface, it was designed with two main goals in mind: to allow anybody to produce high-quality books using a reasonable amount of effort, and to provide a system that would give the exact same results on all computers, now and in the future. Within the typesetting system, its name is formatted as \TeX. + +% A message to help newbies avoid nit-picky pitfalls + +\textbf{The key to being a proficient \LaTeX user is simple: Stop worrying about formatting, and just trust that \LaTeX\ will do it right for you.} + + + +\subsection{Why use \LaTeX?} +\LaTeX\ can be difficult to learn, and most people are too hopelessly attached to Microsoft's products to try something new. If Word works pretty well, why change? Here's a breakdown of some of the more obvious pros and cons of \LaTeX. + +\subsection{Pros and cons} + +\paragraph{Pros} +\begin{itemize} + \item \LaTeX\ documents are beautiful. The typesetting, spacing and kerning are all perfect, and the font (Computer Modern) is infinitely scalable, so it looks sharp at any size. + \item As shown in this document, you can create links to sections, tables, figures, citations, equations, bullets, URLs + \item moreover, it's automatic! You will never again have to redo your section numbers because you reorganized a paper, or worse, redo your citations because you added in a new reference that throws off the numbering. + \item You also won't have to redo your citations because the journal you are submitting your paper to wants a different citation format than what you used. +\end{itemize} + + +For a strict comparison to Word, \TeX\ documents are just text, so they will never become bloated in file size (no matter how large your paper) or mysteriously crash and cause you to lose hours of work. \LaTeX\ won't make your pictures suddenly disappear while you tried to move the image one pixel upward. Your equations will look elegant and respectable, and not like they were written by a child. Further, equations are \textit{easy}---no more hunting for symbols and brackets in MathType. Tables are pure text, so you can automate table creation right from your data matrices in Matlab, C++, etc. + + +\paragraph{Cons} +\begin{itemize} + \item \LaTeX\ has a learning curve. Unlike Word, you can't really just start using it without spending some effort to learn what is going on. That's why we have this tutorial. + \item Also unlike Word, \LaTeX\ won't let you (easily) do whatever you want in your document.\textbf{The driving vision behind \LaTeX\ is that \textit{it} will do your typesetting; you just do the typing.}. You are virtually not allowed to spend your time placing figures and tables exactly where you want them, because \LaTeX\ will generally put things where it thinks they go best. At first, this causes a lot of users headaches because they want to nitpick over positioning (and usually in an incorrect fashion). Eventually, you will realize that \LaTeX\ is in fact putting your floating objects in the best place they should be, and you will be happy not to have to worry about such things anymore. + \item Possibly the biggest drawback to \LaTeX\ is that it does not have the reviewing toolbar that Word has, which allows you and collaborators to track changes made to a document. There are some ways to get around this if you are working with non-\LaTeX\ users (one way it to copy the paragraph you want to change into Word and then track the changes made), but nothing is very elegant. +\end{itemize} + + +\section{How to install \LaTeX \ and editors} +In Section \ref{sec:intro}, we learned about \LaTeX. In Section \ref{sec:win}, we'll talk about how to get and install \LaTeX. + +There are many different packages and editors available. TeXWorks is included in the distribution you download. The ones listed below are just ones I have used and liked, but there are certainly many other good ones. Most packages and editors are 100\% free. Just download and install the packages and editors, and you are ready to go. + +\textit{PRO TIP: Install \LaTeX\ and any additional items first, then install your editor last. That way, your editor will probably auto-detect everything on its own.} + + + + +\subsection{Mac} + +\begin{enumerate} +\item \LaTeX\ package +\begin{itemize} +\item MacTex: \url{http://www.tug.org/mactex/} +\end{itemize} +\item Editor +\begin{itemize} +\item TeXShop: \url{http://www.uoregon.edu/~koch/texshop/} +\end{itemize} +\end{enumerate} + +\subsection{Windows OS} \label{sec:win} +\begin{itemize} +\item \LaTeX\ package +\begin{itemize} +\item MikTex: \url{http://miktex.org/} +\end{itemize} +\item Editor +\begin{itemize} +\item TeXstudio: \url{https://www.texstudio.org/} +\end{itemize} +\end{itemize} + + +\subsection{How to use the editors} +Once you have written your \LaTeX\ document\footnote{Look! A footnote! Did you notice that the footnote number in the text was a link to this footnote?}, you will ``typeset" (compile) your work. Your editor will automatically create a pdf document, along other auxiliary files. + +\section{How to write your \LaTeX\ document} +The rest of this document describes the basics of writing a paper in \LaTeX. This covers everything that 90\% of users will ever need, but only scratches the surface of what you can do. A famous comprehensive guide, ``The Not So Short Introduction to \LaTeX", details just about everything and can be found at +\begin{center}\url{http://www.ctan.org/tex-archive/info/lshort/english/lshort.pdf}\end{center} + + + +\subsection{How to write mathematical equations} +\LaTeX\ makes writing mathematical equations ridiculously easy, and the results are picture-perfect. + +\subsubsection{Math inline with text} +To use math inline with text, type the equation inline with your text, and surround it by \$$\ldots$\$. The equation will automatically be formatted to best fit in the paragraph. For example, with $\sum_{i \in S} x_i \geq 1$, the subscript for the summation is placed to the side rather than underneath. + + +\subsubsection{Single equations} +You can write a single equation one of two ways: +\begin{enumerate} +\item \label{longhand} \verb!\begin{equation} ... \end{equation}! +\item \label{shorthand} \verb!$$ ... $$! +\end{enumerate} +where ``\ldots" represents the equation itself. Method \ref{shorthand} is essentially just shorthand for Method \ref{longhand} (look at the source document to see how these linked labels were made). For example, using Method \ref{longhand}: +\begin{equation} +\label{eqn:f} F(\Theta) = \mu + \epsilon(\theta) +\end{equation} +yields the same result as Method \ref{shorthand}: +$$ F(\Theta) = \mu + \epsilon(\theta) $$ +Note that Method \ref{shorthand} does not number the equation. Equation \ref{eqn:f} is numbered. + +\paragraph{Pro tip} When writing equations, \textbf{do not skip lines} in your source code. A skipped line in the source document is interpreted as a new paragraph, and if you skip a line before your equation, there will be too much vertical spacing before the equation in the \texttt{pdf}. Skipping lines after the equation is fine if you intend whatever content comes next to be a new paragraph. + +\subsubsection{Numbering equations} +Equations are automatically numbered, but if you don't want to number an equation, either use the shorthand method or place an asterisk (\texttt{*}) after \texttt{equation} in both the begin and end statements. + +\begin{equation*} +F(\Theta) = \mu + \epsilon(\theta) +\end{equation*} + + +\subsubsection{Matrices/arrays} +Matrices are just arrays displayed with brackets around them. For example: + +\begin{equation} +\mathbf{R} = \left[ +\begin{array}{cc} +a & b \\ +c & d \\ +e & f \\ +\end{array} +\right], +\end{equation} + +\begin{equation} +\mathbf{R} = \left( +\begin{array}{ccc} +a_1 & \cdots & z_1 \\ +\vdots & \ddots & \vdots \\ +a_n & \cdots & z_n +\end{array} +\right). +\end{equation} + +Dots are created using \verb!\cdots! (center dots), \verb!\vdots! (vertical dots) and \verb!\ddots! (diagonal dots). Ellipses-style dots are created by \verb!\ldots! (lower dots). + +Using \verb!\left(! and \verb!\right)! will create parentheses that expand to the appropriate size to fit the content inside them. The ( and ) can be replaced with any other bracketing-type symbol with the same effect. A \verb!\left! must ALWAYS be accompanied by a \verb!\right!. To only use the left or right bracket/brace/etc., use a ``." instead of the omitted bracket/brace/etc. symbol. +\begin{equation*} +y_i = \left\{ \begin{array}{ll} +1 & \mbox{if facility is built at location } i \\ +0 & \mbox{otherwise} +\end{array} \right. +\end{equation*} + + +\subsubsection{Greek letters} +If you can spell the names of Greek letters, you can easily use them in \LaTeX. + +\paragraph{Lowercase letters} +Lowercase Greek letters are simply $\backslash$name, where ``name" is the name of the letter in all lowercase. For example: +\begin{eqnarray*} +\backslash\mbox{gamma} &\rightarrow& \gamma \\ +\backslash\mbox{delta} &\rightarrow& \delta \\ +\backslash\mbox{pi} &\leftarrow& \pi \\ +\backslash\mbox{phi} &\leftarrow& \phi \\ +\end{eqnarray*} + +\paragraph{Uppercase letters} +Uppercase Greek letters are simply $\backslash$Name, where ``Name" is the name of the letter in with the first letter capitalized. For example: +\begin{eqnarray*} +\backslash\mbox{Gamma} &\Rightarrow& \Gamma \\ +\backslash\mbox{Delta} &\Rightarrow& \Delta \\ +\backslash\mbox{Pi} &\Leftarrow& \Pi \\ +\backslash\mbox{Phi} &\Leftarrow& \Phi \\ +\end{eqnarray*} + + +\subsection{Figures} +Figures are fairly easy, and new \LaTeX\ distributions no longer mandate eps or pdf format (though eps and pdf are generally better for scaling). You can save your figures as eps files. make sure that any font in your figure (e.g., legends) is legible. This usually means that the fonts will have to be seemingly unreasonably large. + +\begin{figure}[tbp] + \centering + \includegraphics[width=0.75\textwidth]{graph} + \caption{Graphical results} + \label{fig:DVHs} +\end{figure} + +We can also easily create subfigures using the \texttt{subfigure} package. We can then refer to them as Figure \ref{fig:cluster-pre} and Figure \ref{fig:cluster-post}, or refer to the whole figure set as Figure \ref{fig:cluster}. + +\begin{figure}[tbp] + \begin{center} + \subfigure[Contour plot of iteration $k$]{ + \includegraphics[scale=0.4]{contour1.jpg} + \label{fig:cluster-pre} + } + \subfigure[Contour plot of iteration $k+1$]{ + \includegraphics[scale=0.4]{contour2.jpg} + \label{fig:cluster-post} + } + \end{center} + \caption{Contour plots of the target at two subsequent iterations of the skeletonization algorithm.} + \label{fig:cluster} +\end{figure} + +Look at the code to generate Figures \ref{fig:DVHs} and \ref{fig:cluster} in the \texttt{tex} file. Note that the width can be specified as a percentage of the total text width (\verb![width=0.75\textwidth]!) or as a scale of the original figure size (\verb![scale=0.4]!). + +\subsection{Citations} +Citations in \LaTeX \ are done through another package called BibTeX, which should come pre-installed with your \LaTeX\ package. Simply write the information for all the publications you want to cite in a text file with extension \texttt{.bib}, and then include that file (without extension) and a particular citation style as a bibliography at the end of your document: + +\begin{verbatim} +\bibliographystyle{plain} +\bibliography{bibfile_latex_howto} +\end{verbatim} + +To reference a single publication \citep{Mahallati2018}, simply write the citation's key inside a \verb!\cite{}! command: +\begin{verbatim} +\cite{Mahallati2018} +\end{verbatim} +For multiple citations like \cite{Buzsaki2012, Peyrache2012, Mahallati2018a}: +\begin{verbatim} +\cite{Buzsaki2012, Peyrache2012, Anastassiou2015} +\end{verbatim} +Unless told otherwise, BibTeX will order your bibliography by last name of first author and then by year. Section \ref{sec:citeorder} shows how to automatically sort and compress your citations. + +For fancier citations (e.g., ``name, year" format), use the \verb!natbib! package and change the bibliography style from \verb!plain! to something else. Rather than make your own style, it easier to find a journal whose style you like, and then download their citation style (which is usually publicly available). + +\subsubsection{Sorting and compressing citations} \label{sec:citeorder} +It is generally considered very bad form to have your citations appear in non-alphabetical or non-numerical order. But, it can be tedious to re-arrange your citations or insert new citations if you have a string of several reference. Compressing citations (e.g., [1--4,7] instead of [1,2,3,4,7]) can also be time-consuming. Fortunately, the \texttt{natbib} package will automatically take care of that. + +Just include the \texttt{natbib} package in your header with options to either sort or sort and compress: +\begin{verbatim} +\usepackage[sort]{natbib} +\usepackage[sort&compress]{natbib} +\end{verbatim} +Note that compressing will only change the citation appearance if you are using numbered citations. + +\subsubsection{Compiling citations} +To get your references to show up, you will have to: +\begin{enumerate} + \item Typeset your document with \LaTeX: tells the editor which publications from your \texttt{.bib} file you want to cite; + \item Typeset your document with BibTeX: formats the citations according to your bibliography style; + \item Typeset your document with \LaTeX\ twice more: figures out what numbering each citation should have (usually based on last name of first author) and puts it all in your document. +\end{enumerate} + +Some editors actually compiles both \LaTeX\ and BibTeX simultaneously, so you effectively have to compile the document 3-4 times to get the in-text citations updated. + +The same principle of multiple compilations applies to generating the table of contents and figure/table numbers, as well as to section, equation, table and figure referencing. + +\subsubsection{Making your citations into links} +Your references to bibliography items and to other sections can be turned into actually hyperlinks in the document by using the \verb!hyperref! package. Nothing different needs to be done in terms of citing references or referring to sections, tables or figures; just include the package in the document header. + +See the source code of this document for an example of how to set colors. + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\subsection{Tables} +Tables are a little bit of work in \LaTeX. Table \ref{tbl:vals} uses a plain layout. Alternatively, you can use the table styles defined in the \verb!booktabs! package for a more polished look as in Table \ref{tbl:fancyvals}. + +Although the creation of tables is not as intuitive as in, say, Microsoft Excel, the pure text format certainly has its advantages. For example, if you have a matrix of values in Matlab (or any other programming environment/language) that you want to put in a table in your document, you don't have to copy those values over by hand. Just write a quick function that will read in the matrix and print out the ampersands (\verb!&!) and endlines (\verb!\\!) appropriately. Regardless of how large your table is, you just have to call one function and your table is ready for you to paste into your \verb!.tex! file! + + +\begin{table}[tbp] % t = top, b = bottom, p = own page, h = here (not recommended) +\centering +\begin{tabular}{|c|rr|rr|} % l = left, c = center, r = right +\hline + & \multicolumn{2}{c|}{\textbf{Obj. fn. value}} & \multicolumn{2}{c|}{\textit{Run time (hrs)}} \\ +\hline +case & Avg. & St. Dev. & Avg. & St. Dev. \\ +\hline\hline +1 & 565.24 & 8.82 & 5.35 & 5.07 \\ +2 & 570.51 & 12.83 & 7.49 & 3.78 \\ +3 & 893.45 & 20.60 & 7.05 & 2.21 \\ +4 & 710.92 & 7.72 & 6.54 & 3.39 \\ +5 & 512.22 & 20.04 & 6.96 & 3.33 \\ +6 & 799.95 & 34.07 & 3.48 & 3.40 \\ +\hline +\end{tabular} +\caption{Minimum objective function values and time computation time.} +\label{tbl:vals} +\end{table} + + +\begin{table}[tbp] +\centering +\begin{tabular}{c @{ \hspace{1cm} } cc @{\hspace{1cm}} cc @{\hspace{0.5cm}}} +\toprule + & \multicolumn{2}{l}{\textit{Obj. fn. value}} & \multicolumn{2}{c}{\textit{Run time (hrs)}} \\ +case & Average & St. Dev. & Average & St. Dev. \\ +\midrule +1 & 565.24 & 8.82 & 5.35 & 5.07 \\ +2 & 570.51 & 12.83 & 7.49 & 3.78 \\ +3 & 893.45 & 20.60 & 7.05 & 2.21 \\ +4 & 710.92 & 7.72 & 6.54 & 3.39 \\ +5 & 512.22 & 20.04 & 6.96 & 3.33 \\ +6 & 799.95 & 34.07 & 3.48 & 3.40 \\ +\bottomrule +\end{tabular} +\caption{A nicer layout of the table. Note the extra spacing placed between columns.} +\label{tbl:fancyvals} +\end{table} + + +\section{\LaTeX\ instead of PowerPoint} +\LaTeX\ can be used a presentation medium as well through a package called Beamer: +\begin{center} \url{http://bitbucket.org/rivanvx/beamer/wiki/Home} \end{center} +One of the great benefits of Beamer, aside from preventing the use of animations, is the dynamic presentation outline that allows your audience to see exactly where in the presentation you are at any given moment. + +More information on how to use Beamer can be found at the link above, but it basically boils down to putting +\begin{verbatim} +\frame{ +\frametitle{Your frame title} +... +} +\end{verbatim} +around your content. + + + + +% THE REFERENCES +\bibliographystyle{abbrvnat} +%\bibliographystyle{plain} +%\bibliography{bibfile_latex_howto} +\bibliography{MyLibrary} + +\newpage + +% THE APPENDIX +\appendix + +\section{Tables of data} \label{app:tabledata} +Look, an appendix! You can reference an appendix just like anything else. See the code in Appendix \ref{app:tabledata} for examples. + +\newpage + +\section{Figures upon figures} \label{app:figs} +Another appendix! This one is automatically named Appendix \ref{app:figs}. + + + +\end{document} diff --git a/lessons/misc/latex-intro/lesson-2021.md b/lessons/misc/latex-intro/lesson-2021.md new file mode 100644 index 000000000..3d0c1ef12 --- /dev/null +++ b/lessons/misc/latex-intro/lesson-2021.md @@ -0,0 +1,27 @@ +--- +layout: page +title: 'Intro to LaTeX' +visible: true +tags: + - misc + - beginner +--- + + - **Authors**: Jesse (@jessexknight) + - **Lesson topic**: Introduction to LaTeX + - **Lesson content URL**: + +This lesson will cover the basics of writing scientific and technical documents +using LaTeX. + +Please see [here][latex-slides] for lesson material, as well as its +[parent repo][main-repo] for more resources on LaTeX. + +We will be using [Overleaf][overleaf] for this lesson. Overleaf also features +extensive [guides and documentation][overleaf-guides] for more advanced LaTeX +features beyond the scope of this lesson. + +[latex-slides]: https://github.com/jessexknight/latex/blob/master/slides/main.pdf +[main-repo]: https://github.com/jessexknight/latex +[overleaf]: https://www.overleaf.com/ +[overleaf-guides]: https://www.overleaf.com/learn diff --git a/lessons/misc/latex-intro/lesson.md b/lessons/misc/latex-intro/lesson.md new file mode 100644 index 000000000..1842d6519 --- /dev/null +++ b/lessons/misc/latex-intro/lesson.md @@ -0,0 +1,34 @@ +--- +layout: page +title: 'Intro to LaTeX' +visible: true +tags: + - misc + - beginner +--- + + - **Authors**: Curtis + - **Research field**: Democracy and Information Systems, Sustainability and Software + - **Lesson topic**: Getting Started with LaTeX + - **Lesson content URL**: + +## Preface: ## + +This is a very basic introduction to LaTeX, a markup language for document preparation. LaTeX is a popular and widely loved way of writing not only scientific and mathematical papers, but for creating beautiful documents on many types. LaTeX gives users a lot of power over their documents, but has a bit of a learning curve. This workshop is designed to give you a leg up on that! + +This lesson has been cobbled together from many pieces of advice from my experience and from across the LaTeX user community. + +No downloads are needed for this lesson, but making an account at [ShareLaTeX](https://www.sharelatex.com) will allow you to follow along and see what's going on. + +## Lesson Overview: ## + +This lesson covers: + +* What is LaTeX and what it is for +* The different parts of a TeX file + - The preamble + - Packages + - Common environments +* Compiling and troubleshooting +* Where to learn more + diff --git a/lessons/misc/latex-intro/tex_workshop/deck.tex b/lessons/misc/latex-intro/tex_workshop/deck.tex new file mode 100644 index 000000000..07c5bf323 --- /dev/null +++ b/lessons/misc/latex-intro/tex_workshop/deck.tex @@ -0,0 +1,330 @@ +%---------------------------------------------------------------------------------------- +% PACKAGES AND THEMES +%---------------------------------------------------------------------------------------- + +\documentclass{beamer} +\let\Tiny=\tiny +\mode { +\usetheme{Antibes} +\usecolortheme{whale} +} + +%\usepackage{ragged2e} +\usepackage{graphicx} % Allows including images +\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables + +%\addtobeamertemplate{block begin}{}{\justifying} + +%---------------------------------------------------------------------------------------- +% TITLE PAGE +%---------------------------------------------------------------------------------------- + +\title[Intro to \LaTeX]{Introduction to \LaTeX\ for Scientific Coders} % The short title appears at the bottom of every slide, the full title is only on the title page + +\author{} % Your name +\institute[UofT] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space +{ +University of Toronto \\ % Your institution for the title page +\medskip +\textit{curtis.mccord@mail.utoronto.ca} % Your email address +} +\date{March 10, 2016} % Date, can be changed to a custom date + +\begin{document} + +\begin{frame} +\titlepage % Print the title page as the first slide +\end{frame} + +\begin{frame} +\frametitle{Overview} % Table of contents slide +\tableofcontents +\end{frame} + +%---------------------------------------------------------------------------------------- +% PRESENTATION SLIDES +%---------------------------------------------------------------------------------------- +\section{Introduction} + +\begin{frame} +\frametitle{What you need} +For this workshop, we won't ask you to download anything. You can do that on your own, since it depends on your operating system. + +We'll be using \url{www.sharelatex.com}, a cloud-based \TeX\ editor that is alright for collaboration, but takes some of the hassle out of getting set up. +\end{frame} +%------------------------------------------------ +\section{What is \LaTeX?} + +\begin{frame} +\frametitle{What is \LaTeX\ for?} +\begin{itemize} +\item{Pronounced LAY-TEK or LAH-TEK} +\item{A document markup language} +\item{\LaTeX\ is very popular in many academic disciplines- you'll probably recognize the signs of a \TeX\ document already} +\item{\LaTeX\ is WYSINWYG - unlike WYSIWYG word processors like Open Office, Google Docs, and MS Word} +\end{itemize} +\end{frame} + +\begin{frame} +\frametitle{What is \LaTeX\ for?} +\begin{itemize} +\item{\LaTeX\ is used for document preparation} +\item{Users write in plain, marked up text and then compile that into a .pdf} +\item{\LaTeX\ is great for writing all kinds of documents (including references with BibTeX, doing homeworks, or making slideshows} +\end{itemize} +\end{frame} + +\begin{frame} +\frametitle{How can \LaTeX\ help me?} +\begin{itemize} +\item{Write impressive documents} +\item{Write neat math} +\item{Make your workflow more stable, efficient, and versatile } +\item{Use Free software!} +\item{Never touch MS Word again-- except when people force you to.} +\end{itemize} +\end{frame} + +%------------------------------------------------ +\section{Using \LaTeX } +%------------------------------------------------ + +\begin{frame} +\frametitle{Nuts and Bolts} +There are many files involved in generating a finalized document\dots +\begin{figure} + \includegraphics[scale = 0.3]{latex_dataflow.png} + \caption{\tiny{\LaTeX\ inputs, outputs and supporting files from \href{https://webhost1.ust.hk/~atcwiki/cgi-bin/atcwiki/index.php?title=ATC:LaTeX}{ATC wiki}}} +\end{figure} +\end{frame} + +\begin{frame}[fragile] + \frametitle{The .tex file} + Most \LaTeX\ documents (including this one) are shaped something like this: + \begin{semiverbatim} + \\documentclass[options]\{class\} + \\usepackage\{package\} + \\begin\{document\} + \\tableofcontents + \\section\{Section Title\} + \-\ Some content? + \-\ \$Some maths?\$ + \\end\{document\} + \end{semiverbatim} +\end{frame} + +\begin{frame} + \frametitle{The .tex preamble (and some other stuff)} + + Anything between the \textbackslash documentclass command and the \textbackslash begin\{document\} command is called the preamble. Taken inclusively, this includes a number of elements. + + \begin{description} + \item[documentclass:] sets automated margins, paper and font size, etc. Chances are you will use a lot of `article' class. + \item[usepackage:] packages add new options to your document (like libraries). I use grahpicx for include images. + \item[environments:] make \LaTeX\ use special formatting for figures, tables, lists, images, or maths + \end{description} +\end{frame} + +\begin{frame}[fragile] + \frametitle{Lists} + \begin{columns}[T] + \begin{column}{0.5\textwidth} + \textbf{Itemized lists:} + \begin{itemize} + \item item A + \item item B + \end{itemize} + \textbf{Enumerated lists:} + \begin{enumerate} + \item item AA + \item item BB + \end{enumerate} + \textbf{Description Lists:} + \begin{description} + \item[label] item AAA + \item[label] item BBB + \end{description} + \end{column} + \hspace{-50pt} + \vrule + \hspace{30pt} + \begin{column}{0.5\textwidth} + \begin{semiverbatim} + \begin{tiny} + \\begin\{itemize\} + \-\ \\item item A + \-\ \\item item B + \\end\{itemize\} + \medskip + + \\begin\{enumerate\} + \-\ \\item item AA + \-\ \\item item BB + \\end\{enumerate\} + \medskip + + \\begin\{description\} + \-\ \\item[label] item AAA + \-\ \\item[label] item BBB + \\end\{description\} + \end{tiny} + \end{semiverbatim} + \end{column} + \end{columns} +\end{frame} + +\begin{frame}[fragile] + \frametitle{Tables} + Basic \LaTeX\ tables can be a little unintuitive, but there are some great guidelines for style in the additional resources.\bigskip + \begin{columns}[c] + \begin{column}{0.45\textwidth} + \begin{tabular}{| l l l |} + \hline + Column 1 & Column 2 & Column 3 \\ + \hline \hline + A & B & C \\ + $\alpha$ & $\beta$ & $\gamma$ \\ + \hline + \end{tabular} + \end{column} + \hspace{30pt} + \vrule + \hspace{10pt} + \begin{column}{0.45\textwidth} + \begin{semiverbatim} + \begin{tiny} + \\begin\{tabular\}\{\textbar l l l \textbar\} + \\hline + Column 1 \& Column 2 \& Column 3 \\\\ + \\hline \\hline + A \& B \& C \\ \\\ + \$\\alpha\$ \& \$\\beta\$ \& \$\\gamma\$ \\\\ + \\hline + \\end\{tabular\} + \end{tiny} + \end{semiverbatim} + \end{column} + \end{columns} +\end{frame} + +\begin{frame}[fragile] + \frametitle{Images} + \begin{columns}[c] + \begin{column}{0.5\textwidth} + \hspace{10pt} + \begin{figure} + \begin{centering} + \includegraphics[scale=0.25]{enjoy_science.jpg} + \label{enjoy_science} + \caption{Enjoy Science!} + \end{centering} + \end{figure} + \end{column} + \hspace{30pt} + \vrule + \hspace{10pt} + \begin{column}{0.5\textwidth} + \begin{tiny} + \begin{semiverbatim} + \\begin\{figure\} + \\begin\{centering\} + \\includegraphics[scale=0.25]\{enjoy\_science.jpg\} + \\label\{enjoy\_science\} + \\caption\{Enjoy Science!\} + \\end{centering} + \\end\{figure\} + \end{semiverbatim} + \end{tiny} + \end{column} + \end{columns} + \begin{centering} + \tiny{image courtesy of: \href{https://scientiasalon.wordpress.com/2014/08/25/science-is-not-a-frog/}{Scientia Salon}} + \end{centering} +\end{frame} + +\begin{frame} + \frametitle{Writing Math 1} + + Math mode is called between \$ symbols. There are two kinds of math modes. In inline math mode(\$math\$), math appears like this: $f(x)= \sum_n{i=0}^{n} \frac{(a_i)}{1 + x}$ In display mode (\$\$math\$\$), math appears like this: $$f(x)= \sum_n{i=0}^{n} \frac{(a_i)}{1 + x}$$ + + Notice the difference between the ways that sub/superscript and fractions appear. + \begin{semiverbatim} + \$f(x)= \\sum\_n\{i=0\}\^\{n\} \\frac\{(a\_i)\}\{1 + x\}\$ + \end{semiverbatim} +\end{frame} + +\begin{frame}[fragile] + \frametitle{Writing Math 2} + Let's take a look at some equations to see how \LaTeX\ handles them! \bigskip +\begin{columns} + \hspace{-20pt} + \begin{column}{0.57\textwidth} + \begin{enumerate} + \item ${x = \frac{- b \pm \sqrt{b^{2} - 4ac}}{2a} }$ + \item $\oint_C {E \cdot d\ell = - \frac{d}{{dt}}} \int_S {B_n dA}$ + \item $\emptyset = {\{u \in w | (u \in u) \land \lnot(u \in u)}\}$ + \item $\forall x(Px \to Qx)\to\exists o(Po \to Qo)$ + \end{enumerate} + \end{column} + \hspace{0pt} + \begin{column}{0.55\textwidth} + \begin{enumerate} + \item {\begin{semiverbatim}\begin{tiny} +\$\{x = \\frac\{- b \\pm \\sqrt\{b^\{2\} - 4ac\}\}\{2a\} \}\$ + \end{tiny} \end{semiverbatim}} + \item {\begin{semiverbatim}\begin{tiny} + \$\\oint_C \{E \\cdot d\\ell = - \\frac\{d\}\{\{d\}\}\} \dots + \\int_S \{B_n dA\}\$ + \end{tiny}\end{semiverbatim}} + \item {\begin{semiverbatim}\begin{tiny} + \$\\emptyset = \{\\\{u \\in w \textbar (u \\in u) \\land \dots + \\lnot(u \\in u)\}\}\$ + \end{tiny}\end{semiverbatim}} + \item {\begin{semiverbatim}\begin{tiny} + \$\\forall x(Px \\to Qx)\\to\\exists o(Po \\to Qo)\$ + \end{tiny}\end{semiverbatim}} + \end{enumerate} + \end{column} +\end{columns} +\end{frame} + + +%------------------------------------------------ +\section{Learning \LaTeX} +%------------------------------------------------ + +\begin{frame} +\frametitle{What tools are available to me?} +\begin{columns} + \begin{column}{0.5\textwidth} +Edittor/Compilers: +\begin{itemize} + \item {\TeX Shop} + \item {\TeX Studio} + \item {Overleaf (Online)} + \item {Share\LaTeX\ (Online)} +\end{itemize} +\end{column} +\begin{column}{0.5\textwidth} + Distributions: +\begin{itemize} + \item MiK\TeX + \item \TeX Live + \item Max\TeX +\end{itemize} +\end{column} +\end{columns} +Or write \LaTeX\ in your emacs :p +\end{frame} + +\begin{frame} +\frametitle{Resources} +\begin{itemize} + \item{\href{https://www.inf.ethz.ch/personal/markusp/teaching/guides/guide-tables.pdf} {P\" uschel's {\em Small Guide to Making Nice Tables}}} + \item{\href{tex.stackexchange.com}{tex.stackexchange.com}} + \item{Googling `Introduction to \LaTeX'} + \item{\href{http://texdoc.net/texmf-dist/doc/plain/gentle/gentle.pdf}{Michael Doob's {\em Gentle Introduction to} \TeX}} +\end{itemize} +\end{frame} + +\end{document} diff --git a/lessons/misc/latex-intro/tex_workshop/enjoy_science.jpg b/lessons/misc/latex-intro/tex_workshop/enjoy_science.jpg new file mode 100644 index 000000000..3e48f6059 Binary files /dev/null and b/lessons/misc/latex-intro/tex_workshop/enjoy_science.jpg differ diff --git a/lessons/misc/latex-intro/tex_workshop/latex_dataflow.png b/lessons/misc/latex-intro/tex_workshop/latex_dataflow.png new file mode 100644 index 000000000..e8d5141e2 Binary files /dev/null and b/lessons/misc/latex-intro/tex_workshop/latex_dataflow.png differ diff --git a/lessons/misc/open-data-intro/lesson.md b/lessons/misc/open-data-intro/lesson.md new file mode 100644 index 000000000..b536962b1 --- /dev/null +++ b/lessons/misc/open-data-intro/lesson.md @@ -0,0 +1,55 @@ +--- +layout: page +title: 'Opening up your data' +visible: True +tags: + - misc + - beginner + +--- + + - **Authors**: Derek Howard + - **Lesson topic**: A guided discussion on opening up your research data + + +## What is open data? +[“Open data is data that can be freely used, re-used and redistributed by anyone - subject only, at most, to the requirement to attribute and sharealike.”](http://opendatahandbook.org/guide/en/what-is-open-data/) + +More specifically, from the open data handbook and [opendefinition.org](http://opendefinition.org/od/2.1/en/): +- Availability and Access: the data must be available as a whole and at no more than a reasonable reproduction cost, preferably by downloading over the internet. The data must also be available in a convenient and modifiable form. +- Re-use and Redistribution: the data must be provided under terms that permit re-use and redistribution including the intermixing with other datasets. +- Universal Participation: everyone must be able to use, re-use and redistribute - there should be no discrimination against fields of endeavour or against persons or groups. For example, ‘non-commercial’ restrictions that would prevent ‘commercial’ use, or restrictions of use for certain purposes (e.g. only in education), are not allowed. + +## [Why open data?](https://mozillascience.github.io/open-data-primers/1.1-what-and-why.html) +- Maintain accountability: +When data is open, the results or findings of that data can be more easily verified, increasing public trust in research institutions and governments. +- Speed discovery: +When data is open, researchers working in parallel on similar problems don’t need to duplicate work and can use each other’s data to advance knowledge across their research area. +- Encourage collaboration across disciplines: +When data is open, researchers can more easily find those outside their subject area doing related or relevant work; these connections and collaborations may lead to new ways of approaching and solving problems. +- Solve a broader range of problems: +When data is open, new users-- from academic researchers to citizen scientists to artists-- may use it to answer questions, solve problems, or create public understanding in ways that the original data collector may never have imagined. +- Encourage public engagement with research: +When data is open and the findings are shared in a clear and accessible way, it increases public understanding, creates opportunities for public participation, and bolsters public support of research initiatives. +- Ensure that data is preserved: +When data is open and widely shared, the responsibility for the long-term archiving and preservation of that data is distributed across broader group of interested users. + +Grant agencies care about open data: +- Tri-agency (i.e. NSERC, CIHR, SSHRC) policy on data: [Data Management Policy](http://www.science.gc.ca/eic/site/063.nsf/eng/h_83F7624E.html?OpenDocument) and [Open Access Policy](http://www.science.gc.ca/eic/site/063.nsf/eng/h_F6765465.html?OpenDocument) + +## Challenges to open data +- reference [handout](https://github.com/mozillascience/open-data-training/blob/master/Materials/Handouts/ODChallengesQI.md) from Mozilla open data training +- ["Differential privacy"](https://www.wired.com/2016/06/apples-differential-privacy-collecting-data/) as a way to anonymize sensitive data. [More technical/not for dummies](https://robertovitillo.com/2016/07/29/differential-privacy-for-dummies/) + + +## How to open your data +- Metadata +- Create a DATA_README +- Use the [data reuse checklist](https://mozillascience.github.io/checklist/) + + +## Resources +https://mozillascience.github.io/open-data-primers/ +https://mozillascience.github.io/open-data-guides/ +https://mozillascience.github.io/working-open-workshop/data_reuse/ +http://opendatahandbook.org/guide/en/what-is-open-data/ diff --git a/lessons/misc/pandoc-intro/complexlatexsample.png b/lessons/misc/pandoc-intro/complexlatexsample.png new file mode 100644 index 000000000..90eeff319 Binary files /dev/null and b/lessons/misc/pandoc-intro/complexlatexsample.png differ diff --git a/lessons/misc/pandoc-intro/example_document.md b/lessons/misc/pandoc-intro/example_document.md new file mode 100644 index 000000000..c53925d90 --- /dev/null +++ b/lessons/misc/pandoc-intro/example_document.md @@ -0,0 +1,148 @@ +--- +title: "Learning Markdown" +author: Lina Tran +date: June 28, 2018 + +# for including LaTeX packages +header-includes: + - \usepackage{fullpage} + - \usepackage{setspace} + - \usepackage[section]{placeins} + - \doublespacing + +# for citations +bibliography: library.bib +citation-style: nature.csl +--- + + +# Header 1 +## Header 2 + +This is a test of *pandoc* **formatting**. + +# Unordered Lists + +- list one +- list two +- list three + + +* list one +* list two +* list three + +# Ordered Lists + +1. ordered list one + 1. subitem + 2. subitem +2. ordered list two +5. The numbers themselves are ignored + +# Horizontal Rules + +-------------------- + +lines + +--------------------- + +# New Lines and Paragraphs + +This is one line with two spaces after the end. +This will be a new line. +This will not be. + +This will also be a new line. + +## Block Quotes + +> This is a block quote. this +> paragraph has two lines. There +> must be a space after the `>`. +> +> 1. This is a list inside the block quote +> 2. Second subitem + +> This is also +possible + +> 1. First +2. Second + +# Code Chunks + +```python +num_list = [12,3 + 4, 1] +def random_function(param): + return param*param +``` + + +## Tables using pipe_tables + +`pandoc document_1.md -o document_1.pdf -f markdown+pipe_tables` + +| Right | Left | Default | Centered | +|------:|:---------|---|:--------:| +|12|12|12|12| +|132|12|2|12| + + +# Links +## Automatic and In Line Links + + + + +This is an [inline link](https:/pandoc.org) + +## Reference Links +[my-label-1]: test1.pdf + +Here is [my link][my-label-1]. + +## Internal Links + +See the section on [Code Chunks]. + +[Code Chunks]: #new-lines + + +# Images +![picture](picture.jpg){ width=50% } + + +# Citations + +`pandoc --filter pandoc-citeproc document_1.md -o document_1.pdf` + +This is a fact [@Srivastava2014] +This fact is proven by many papers [@Joyce2013; @Omer2018; @Noor2010] + +# \LaTeX + +$H=\sum\limits_{i=1}^k |x_{i} - y_{i}|$ + +# Pandoc Commands + +For simple conversions, pandoc can infer based on file Extensions + +`pandoc document_1.md -o document_1.pdf` + +If you have a reference word document with custom styles: + +`pandoc document_1.md -o document_1.docx --reference-doc reference.docx +` + +For using an extension: + +`pandoc document_1.md -o document_1.pdf -f markdown+extension_name` + +To use citations add ` --filter pandoc-citeproc`: + +pandoc document_1.md -o document_1.pdf -f markdown+pipe_tables -t pdf --filter pandoc-citeproc + + +# References diff --git a/lessons/misc/pandoc-intro/lesson.md b/lessons/misc/pandoc-intro/lesson.md new file mode 100644 index 000000000..726ed492a --- /dev/null +++ b/lessons/misc/pandoc-intro/lesson.md @@ -0,0 +1,174 @@ +--- +layout: page +title: Intro to Pandoc and Markdown +visible: true +tags: + - misc + - beginner +--- + + - **Authors**: Dano Morrison & Lina Tran + - **Research field**: Neuroscience + - **Lesson topic**: How to use Pandoc and Markdown for writing scientific manuscripts + - **Lesson content URL**: + +# Intro to Pandoc + +Do you enjoy the spartan, academic aesthetic of LaTeX documents but not have the time to learn its unforgiving syntax? Does writing HTML documents by hand make you feel uncool? Do you enjoy automating difficult things? If so, Pandoc is what you're looking for. + +Pandoc is a command line tool that you can use to automatically convert files from markup format to another. With Pandoc, you can write in something easy like Markdown, Microsoft Word, or LibreOffice, and convert it something hard like: +- HTML +- Ebook formats +- LaTeX +- PDF +- and many others + +# Intro to Markdown + +Markdown is the best way to write things for Pandoc, and probably the best way to write things for publishing to the web. If you haven't heard of it, it's a lightweight, shortened version of HTML that uses simplified tags like `* ~ - #` to format documents. It's mostly writing plain text, but with a little practice you can easily implement the most common types of text formatting, like headings, lists, links, images, etc. The veritable bible of Markdown is [Daring Fireball.](https://daringfireball.net/projects/markdown/) + +# The Value Proposition + +With Markdown and Pandoc, you can write something that looks like this: + +~~~ +# Introduction + +## The globular theory of matter + +### A history of globbing +If we accept the philosophical (and now scientifically incontrovertible) position that the movement of all rotund entities are mediated by underlying interactions between globular units, then it follows that whenever a globby is stored in the world such that it can be reglobbed at a later time (ie. a glob-memory), there must be some concurrent change that occurs in the underlying structure of globby particles. + +Many great scientists have dedicated their lives to the study of globs and greatly advanced the globular theory of matter. In the next decade, who knows what globular secrets will be unearthed? +~~~ + +That can be converted into HTML like this: + +--- + +# Introduction + +## The globular theory of matter + +### A history of globbing +If we accept the philosophical (and now scientifically incontrovertible) position that the movement of all rotund entities are mediated by underlying interactions between globular units, then it follows that whenever a globby is stored in the world such that it can be reglobbed at a later time (ie. a glob-memory), there must be some concurrent change that occurs in the underlying structure of globby particles. + +Many great scientists have dedicated their lives to the study of globs and greatly advanced the globular theory of matter. In the next decade, who knows what globular secrets will be unearthed? + +--- + +and even converted into LaTeX so it looks like this: + +![alt text](../simplelatexsample.png) + +The real power of Pandoc, however, comes when, with style templates and a little extra formatting work, you're able to produce fully typeset and personally styled documents with a markdown file and a command line. + +![alt text](../complexlatexsample.png) + +Boom! Page numbers and everything! + +# Getting Started + +- Install [Pandoc](https://pandoc.org/installing.html) +- Install LaTeX: [TeXLive (Linux)](https://www.tug.org/texlive/), [MacTeX (Mac)](https://www.tug.org/mactex/), [MikTeX (Windows)](https://miktex.org/) +- Install XeTex? + +Whether you're doing something like `sudo apt-get install pandoc && apt-get install texlive` or `brew install pandoc && brew cask install mactex`, if you can run `pandoc -v` and `pdflatex -v` in a terminal, you're good to go. + +# Markdown + +*italics* +**bold** + +- one +- two +- three + +1. one +2. two +3. three + +[example link](https://example.com/) + +![example image](/path/to/img.jpg) + +refer to `code` inline with backticks + +```JavaScript +console.log('or define a whole bunch of code with three back ticks') +``` + +# Pandoc + +Once Pandoc is installed, the easiest way to convert a file is to open up your terminal (in the folder where your file is) and call: +`pandoc -o ` +Where `.xx` is the file extension of the new file you want + +By default, this will produce a 'fragment' of the file type you want. If you'd like to create a standalone document you need Pandoc to generate some code for you rather than just have it convert the Markdown markup to another language. If you want to create an HTML page with Head and Body sections or a LaTeX document with all the necessary boilerplate, simply add `-s` after the file you want to convert in your terminal command. + +For example, +`pandoc sample.md -s -o sample.tex` +will take this + +```Markdown +# Just learning + +Pretty *cool* stuff + +![image](./image.jpg) +``` + +and produce all of this + +```Tex +\documentclass[]{article} +\usepackage{lmodern} +\usepackage{amssymb,amsmath} +\usepackage{ifxetex,ifluatex} +\usepackage{fixltx2e} % provides \textsubscript + +.... + +\begin{document} + +\section{Just learning}\label{just-learning} + +Pretty \emph{cool} stuff + +\begin{figure}[htbp] +\centering +\includegraphics{./image.jpg} +\caption{image} +\end{figure} + +\end{document} +``` + +That's sure better than writing all that stuff yourself! +You can also go straight to pdf (if you have the right dependencies installed) with +`pandoc sample.md -s -o sample.pdf` + +You may have figured out that `-o` stands for 'output' and `-s` stands for 'standalone.' There's also a lot of other pandoc command modifiers that you can take a look at any time by running `pandoc -h` + +You can also combine multiple input files into one output files with the regular character `*` (it's not a special pandoc feature, but pandoc supports having multiple files thrown at from the terminal). +`-H` Will let you include other files as the header of whatever you're producing +`-V` will let you pass variables (ie. fontsize, documentclass for LaTeX documents) + +[This manual](https://pandoc.org/MANUAL.pdf) will be helpful for understanding these advanced features. + +# Advanced: Custom LaTeX templates for Pandoc +Chances are, if you actually are trying to publish something in LaTeX, you're going to want to put your own style on things. It's not that hard to do with Pandoc, all it takes is: +1. saving a Pandoc LaTeX template somewhere +2. edit that template the way you want +3. tell pandoc to use that template in producing an output + +## 1. Pandoc LaTeX Templates +These aren't just regular LaTeX templates but Pandoc-specific templates that instruct Pandoc how to convert files into LaTeX. Here's an [example of one](https://github.com/jgm/pandoc-templates/blob/master/default.latex) + +## 2. Editing the templates +If you want to expand on what the template provides, you can go into it and change or add things, maybe specific fonts or packages you would like to use + +## 3. Use that template to generate an output +The easiest step, simply add a `--template=yourtemplate.tex` modifier into your console command. Make sure that your template is either in your working directory or in `/.pandoc/templates` *NOTE: You have to make this directory yourself*. +You can use variables in the template such as `fontfamily` to style your own file. Example: +`pandoc sample.md -o sample.pdf --template=mytemplate.tex -V fontfamily=sans` diff --git a/lessons/misc/pandoc-intro/simplelatexsample.png b/lessons/misc/pandoc-intro/simplelatexsample.png new file mode 100644 index 000000000..e922f459d Binary files /dev/null and b/lessons/misc/pandoc-intro/simplelatexsample.png differ diff --git a/lessons/misc/quantum-computing/QuantumComputing_UofTcoders.pdf b/lessons/misc/quantum-computing/QuantumComputing_UofTcoders.pdf new file mode 100644 index 000000000..5301b581c Binary files /dev/null and b/lessons/misc/quantum-computing/QuantumComputing_UofTcoders.pdf differ diff --git a/lessons/misc/quantum-computing/grovers-algorthim-2-qubits.ipynb b/lessons/misc/quantum-computing/grovers-algorthim-2-qubits.ipynb new file mode 100644 index 000000000..d00e681d6 --- /dev/null +++ b/lessons/misc/quantum-computing/grovers-algorthim-2-qubits.ipynb @@ -0,0 +1,396 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Simulating Grover's Search Algorithm with 2 Qubits" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "from matplotlib import pyplot as plt\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Define the zero and one vectors\n", + "Define the initial state $\\psi$" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1]\n", + " [0]\n", + " [0]\n", + " [0]]\n" + ] + } + ], + "source": [ + "zero = np.matrix([[1],[0]]);\n", + "one = np.matrix([[0],[1]]);\n", + "\n", + "psi = np.kron(zero,zero);\n", + "print(psi)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Define the gates we will use:\n", + "\n", + "$\n", + "\\text{Id} = \\begin{pmatrix} \n", + "1 & 0 \\\\\n", + "0 & 1 \n", + "\\end{pmatrix},\n", + "\\quad\n", + "X = \\begin{pmatrix} \n", + "0 & 1 \\\\\n", + "1 & 0 \n", + "\\end{pmatrix},\n", + "\\quad\n", + "Z = \\begin{pmatrix} \n", + "1 & 0 \\\\\n", + "0 & -1 \n", + "\\end{pmatrix},\n", + "\\quad\n", + "H = \\frac{1}{\\sqrt{2}}\\begin{pmatrix} \n", + "1 & 1 \\\\\n", + "1 & -1 \n", + "\\end{pmatrix},\n", + "\\quad\n", + "\\text{CNOT} = \\begin{pmatrix} \n", + "1 & 0 & 0 & 0 \\\\\n", + "0 & 1 & 0 & 0 \\\\ \n", + "0 & 0 & 0 & 1 \\\\\n", + "0 & 0 & 1 & 0\n", + "\\end{pmatrix},\n", + "\\quad\n", + "CZ = (\\text{Id} \\otimes H) \\text{ CNOT } (\\text{Id} \\otimes H) \n", + "$" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1. 0. 0. 0.]\n", + " [ 0. 1. 0. 0.]\n", + " [ 0. 0. 1. 0.]\n", + " [ 0. 0. 0. -1.]]\n" + ] + } + ], + "source": [ + "Id = np.matrix([[1,0],[0,1]]);\n", + "X = np.matrix([[0,1],[1,0]]);\n", + "Z = np.matrix([[1,0],[0,-1]]);\n", + "H = np.sqrt(0.5) * np.matrix([[1,1],[1,-1]]);\n", + "\n", + "CNOT = np.matrix([[1,0,0,0],[0,1,0,0],[0,0,0,1],[0,0,1,0]]);\n", + "CZ = np.kron(Id,H).dot(CNOT).dot(np.kron(Id,H));\n", + "print(CZ)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Define the oracle for Grover's algorithm (take search answer to be \"10\")\n", + "\n", + "$\n", + "\\text{oracle} = \\begin{pmatrix} \n", + "1 & 0 & 0 & 0 \\\\\n", + "0 & 1 & 0 & 0 \\\\\n", + "0 & 0 & -1 & 0 \\\\\n", + "0 & 0 & 0 & 1\n", + "\\end{pmatrix}\n", + "= (Z \\otimes \\text{Id}) CZ\n", + "$\n", + "\n", + "Use different combinations of $Z \\otimes \\text{Id}$ to change where search answer is. " + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1. 0. 0. 0.]\n", + " [ 0. 1. 0. 0.]\n", + " [ 0. 0. -1. 0.]\n", + " [ 0. 0. 0. 1.]]\n" + ] + } + ], + "source": [ + "oracle = np.kron(Z,Id).dot(CZ);\n", + "print(oracle)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Act the H gates on the input vector and apply the oracle " + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0.5]\n", + " [ 0.5]\n", + " [-0.5]\n", + " [ 0.5]]\n" + ] + } + ], + "source": [ + "psi0 = np.kron(H,H).dot(psi);\n", + "psi1 = oracle.dot(psi0);\n", + "print(psi1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Remember that when we measure the result (\"00\", \"01\", \"10\", \"11\") is chosen randomly with probabilities given by the vector elements squared." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0.25]\n", + " [ 0.25]\n", + " [ 0.25]\n", + " [ 0.25]]\n" + ] + } + ], + "source": [ + "print(np.multiply(psi1,psi1))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There is no difference between any of the probabilities. It's still just a 25% chance of getting the right answer. \n", + "\n", + "We need some of gates after the oracle before measuring to converge on the right answer. \n", + "\n", + "These gates do the operation $W = \\frac{1}{2}\\begin{pmatrix} \n", + "-1 & 1 & 1 & 1 \\\\\n", + "1 & -1 & 1 & 1 \\\\\n", + "1 & 1 & -1 & 1 \\\\\n", + "1 & 1 & 1 & -1\n", + "\\end{pmatrix}\n", + "=\n", + "(H \\otimes H)(Z \\otimes Z) CZ (H \\otimes H)\n", + "$\n", + "\n", + "Notice that if the matrix W is multiplied by the vector after the oracle, W $\\frac{1}{2}\\begin{pmatrix} \n", + "1 \\\\\n", + "1 \\\\\n", + "-1 \\\\\n", + "1\n", + "\\end{pmatrix} \n", + "= \\begin{pmatrix} \n", + "0 \\\\\n", + "0 \\\\\n", + "1 \\\\\n", + "0\n", + "\\end{pmatrix} $,\n", + "every vector element decreases, except the correct answer element which increases. This would be true if if we chose a different place for the search result originally." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[-0.5 0.5 0.5 0.5]\n", + " [ 0.5 -0.5 0.5 0.5]\n", + " [ 0.5 0.5 -0.5 0.5]\n", + " [ 0.5 0.5 0.5 -0.5]]\n" + ] + } + ], + "source": [ + "W = np.kron(H,H).dot(np.kron(Z,Z)).dot(CZ).dot(np.kron(H,H));\n", + "print(W)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1.23259516e-32]\n", + " [ 3.08148791e-33]\n", + " [ 1.00000000e+00]\n", + " [ 3.08148791e-33]]\n" + ] + } + ], + "source": [ + "psif = W.dot(psi1);\n", + "print(np.multiply(psif,psif))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX8AAAD8CAYAAACfF6SlAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAC7BJREFUeJzt3U+IXed9h/HnW6lKd40TTRJV0lQuFaWCQv8MpqGbklgg\nZ2ElaQz2pk5xEIWKLLqpINBCVs4qUDAtamKsdmE7GIKnRCAcJ8XQNkFjmjqWhfBUJNEgEytxmk3b\nGDW/LnQpw+iORjPnaK5Gv+cDw9xz7qv7vnq5PDo6zGVSVUiSevmFWS9AkrT9jL8kNWT8Jakh4y9J\nDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIZ2z3oB69m7d28dOnRo1suQpB3l1Vdf/VFVzW007q6N/6FD\nh1haWpr1MiRpR0ny/dsZ520fSWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4\nS1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ2NEv8kTyd5O8nr6zyfJH+dZDnJa0l+d4x5JUlb\nM9aV/zPAsVs8/xBwePJ1AvibkeaVJG3BKPGvqleAd24x5Djw93XDt4D3Jtk3xtySpM3brnv++4Er\nq45XJuckSTOwXfHPlHN106DkRJKlJEvXrl3bhmVJUk/bFf8V4OCq4wPA1bWDqup0VS1U1cLc3Nw2\nLU2S+tmu+C8Cfzz5qZ/fB35aVW9t09ySpDV2j/EiSZ4F/hDYm2QF+CvgFwGq6m+Bs8DHgGXgv4A/\nGWNeSdLWjBL/qnpsg+cL+LMx5pIkDecnfCWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8k\nNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+S\nGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9J\nDRl/SWpolPgnOZbkUpLlJKemPP/pJNeSfGfy9Zkx5pUkbc3uoS+QZBfwFHAUWAHOJ1msqjfWDH2+\nqk4OnU+SNNwYV/4PAMtVdbmq3gWeA46P8LqSpDtkjPjvB66sOl6ZnFvrj5K8luSFJAdHmFeStEWD\nb/sAmXKu1hz/I/BsVf0syZ8CZ4CP3PRCyQngBMD8/PwWVzNtOfeQWru1d5j7OS73c1z38n7e4b0c\n48p/BVh9JX8AuLp6QFX9uKp+Njn8O+D3pr1QVZ2uqoWqWpibmxthaZKkacaI/3ngcJL7k+wBHgUW\nVw9Ism/V4cPAxRHmlSRt0eDbPlV1PclJ4BywC3i6qi4k+TywVFWLwGeTPAxcB94BPj10XknS1qW2\n+x7dbVpYWKilpaXN/8F7+R4geE91bO7nuNzP8WxxL5O8WlULG43zE76S1JDxl6SGjL8kNWT8Jakh\n4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGhrjF7i3\nlpt+V/0dn3BL7tLf2XMT93Nc7ud4dspe3i6v/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SG\njL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqaFR4p/kWJJLSZaTnJry\n/HuSPD95/ttJDo0xryRpawbHP8ku4CngIeAI8FiSI2uGPQH8pKp+Hfgi8IWh80qStm6MK/8HgOWq\nulxV7wLPAcfXjDkOnJk8fgH4aJI7/BsqJUnrGSP++4Erq45XJuemjqmq68BPgfePMLckaQt2j/Aa\n067g1/6a+9sZQ5ITwAmA+fn5ra2mbnrZO2p7Z5sB93Nc7ue4tnE/d8pe3u49lTGu/FeAg6uODwBX\n1xuTZDfwy8A7a1+oqk5X1UJVLczNzY2wNEnSNGPE/zxwOMn9SfYAjwKLa8YsAo9PHn8K+EbVNl8C\nSZL+3+DbPlV1PclJ4BywC3i6qi4k+TywVFWLwJeBf0iyzI0r/keHzitJ2rox7vlTVWeBs2vO/eWq\nx/8DPDLGXJKk4fyEryQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMv\nSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGX\npIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Nin+S9yV5\nKcmbk+/3rTPuf5N8Z/K1OGROSdJwQ6/8TwEvV9Vh4OXJ8TT/XVW/Pfl6eOCckqSBhsb/OHBm8vgM\n8PGBrydJ2gZD4//BqnoLYPL9A+uM+6UkS0m+lcR/ICRpxnZvNCDJ14EPTXnqc5uYZ76qrib5NeAb\nSb5bVf8xZa4TwAmA+fn5Tby8JGkzNox/VT243nNJfphkX1W9lWQf8PY6r3F18v1ykn8Cfge4Kf5V\ndRo4DbCwsFC39TeQJG3a0Ns+i8Djk8ePAy+uHZDkviTvmTzeC/wB8MbAeSVJAwyN/5PA0SRvAkcn\nxyRZSPKlyZjfBJaS/DvwTeDJqjL+kjRDG972uZWq+jHw0Snnl4DPTB7/C/BbQ+aRJI3LT/hKUkPG\nX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHj\nL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDx\nl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8ZfkhoaFP8kjyS5kOTnSRZuMe5YkktJlpOcGjKnJGm4\noVf+rwOfBF5Zb0CSXcBTwEPAEeCxJEcGzitJGmD3kD9cVRcBktxq2APAclVdnox9DjgOvDFkbknS\n1m3HPf/9wJVVxyuTc5KkGdnwyj/J14EPTXnqc1X14m3MMe2/BbXOXCeAEwDz8/O38dKSpK3YMP5V\n9eDAOVaAg6uODwBX15nrNHAaYGFhYeo/EJKk4bbjts954HCS+5PsAR4FFrdhXknSOob+qOcnkqwA\nHwa+luTc5PyvJDkLUFXXgZPAOeAi8JWqujBs2ZKkIYb+tM9Xga9OOX8V+Niq47PA2SFzSZLG4yd8\nJakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+\nktSQ8Zekhoy/JDVk/CWpoVTdnb8nPck14PuzXsdt2Av8aNaLuIe4n+NyP8ezU/byV6tqbqNBd238\nd4okS1W1MOt13Cvcz3G5n+O51/bS2z6S1JDxl6SGjP9wp2e9gHuM+zku93M899Rees9fkhryyl+S\nGjL+m5TkWJJLSZaTnJqcuz/Jt5O8meT5JHtmvc6dYJ29PDk5riR7Z73GnSTJ00neTvL6qnPvS/LS\n5L35UpL7ZrnGnWKdvXwkyYUkP0+y43/qx/hvQpJdwFPAQ8AR4LEkR4AvAF+sqsPAT4AnZrfKneEW\ne/nPwIPsjM943G2eAY6tOXcKeHny3nx5cqyNPcPNe/k68EnglW1fzR1g/DfnAWC5qi5X1bvAc8Bx\n4CPAC5MxZ4CPz2h9O8nUvayqf6uq7812aTtTVb0CvLPm9HFuvCfB9+Ztm7aXVXWxqi7NaEmjM/6b\nsx+4sup4ZXLuP6vq+ppzurX19lLj+mBVvQUw+f6BGa9HdwnjvzmZcm7XlHP+CNXGpu2l+yZtE+O/\nOSvAwVXHB4AfAO9NsnvVuavbvbAdaNpeum/j+2GSfQCT72/PeD26Sxj/zTkPHJ78dM8e4FFgEfgm\n8KnJmMeBF2e0vp1kvb3UuBa58Z4E35taxfhvwuS+/kngHHAR+EpVXQD+AvjzJMvA+4Evz26VO8N6\ne5nks0lWuPE/gdeSfGmW69xJkjwL/CvwG0lWkjwBPAkcTfImcHRyrA1M28skn5i8Nz8MfC3Judmu\nchg/4StJDXnlL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpof8DqW2XwO8e6JwAAAAA\nSUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "x = [0,1,2,3];\n", + "xb = [0.25,1.25,2.25,3.25];\n", + "labels=['00', '01', '10', '11'];\n", + "plt.axis([-0.5,3.5,-1.25,1.25]);\n", + "plt.xticks(x,labels);\n", + "plt.bar(x, np.ravel(psi0), 1/1.5, color=\"red\");\n", + "plt.bar(xb, np.ravel(np.multiply(psi0,psi0)), 1/2., color=\"blue\");" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX8AAAD8CAYAAACfF6SlAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAC71JREFUeJzt3V+IXOd9h/HnW6lK7xon2iSupa1cKkoFhf5ZTENvSmKD\nnAsrSWOwb+oUB1GoyEVvKgi0kCvnKlAwLWpirPbCdjAEb4lAOE6KoW2C1zR1LAvjrUniRSZW4jQ3\nbWPU/HrhKSyrWa12z9GMRr/nA8vOOXM078vL0aOjwwyTqkKS1MsvzHsCkqTZM/6S1JDxl6SGjL8k\nNWT8Jakh4y9JDRl/SWrI+EtSQ8ZfkhraP+8JbOfgwYN15MiReU9DkhbKiy+++KOqWtrpuJs2/keO\nHGFtbW3e05CkhZLk+9dznLd9JKkh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHj\nL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDU0SvyTPJbkrSQvb/N8kvx1kvUkLyX53THGlSTt\nzVhX/o8Dx6/x/L3A0cnPSeBvRhpXkrQHo8S/qp4H3r7GISeAv693fQt4b5LbxxhbkrR7s7rnfwfw\nxqbtjck+SdIczCr+mbKvrjooOZlkLcna5cuXZzAtSeppVvHfAA5v2j4EXNp6UFWdqaqVqlpZWlqa\n0dQkqZ9ZxX8V+OPJu35+H/hpVb05o7ElSVvsH+NFkjwB/CFwMMkG8FfALwJU1d8C54CPAevAfwF/\nMsa4kqS9GSX+VfXgDs8X8GdjjCVJGs5P+EpSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9J\nasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8k\nNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+S\nGjL+ktTQKPFPcjzJq0nWk5ye8vynk1xO8p3Jz2fGGFeStDf7h75Akn3Ao8A9wAbwQpLVqnply6FP\nVdWpoeNJkoYb48r/LmC9ql6vqneAJ4ETI7yuJOkGGSP+dwBvbNremOzb6o+SvJTk6SSHRxhXkrRH\ng2/7AJmyr7Zs/yPwRFX9LMmfAmeBj1z1QslJ4CTA8vLyHmczbTq3kNq6tDeY66mb2a18ft7gc3OM\nK/8NYPOV/CHg0uYDqurHVfWzyebfAb837YWq6kxVrVTVytLS0ghTkyRNM0b8XwCOJrkzyQHgAWB1\n8wFJbt+0eR9wcYRxJUl7NPi2T1VdSXIKOA/sAx6rqgtJPg+sVdUq8Nkk9wFXgLeBTw8dV5K0d6mb\n9J7nyspKra2t7f4P3sr3AMF7/mO7Sc9/Xadb+fzc47mZ5MWqWtnpOD/hK0kNGX9Jasj4S1JDxl+S\nGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8JamhMb7A\nvbVc9V31N3zAPVmU7yxxPce1KN91sgjruSjn5vXyyl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Z\nf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8ZfkhoaJf5Jjid5Ncl6\nktNTnn9Pkqcmz387yZExxpUk7c3g+CfZBzwK3AscAx5McmzLYQ8DP6mqXwe+CHxh6LiSpL0b48r/\nLmC9ql6vqneAJ4ETW445AZydPH4a+GiyKN8uKkm3njHifwfwxqbtjcm+qcdU1RXgp8D7RxhbkrQH\n+0d4jWlX8Fu/5v56jiHJSeAkwPLy8t5mU1e97A0129HmwPUc14z/wzvz9Zzx+TLL8Rbl3LzeU2yM\nK/8N4PCm7UPApe2OSbIf+GXg7a0vVFVnqmqlqlaWlpZGmJokaZox4v8CcDTJnUkOAA8Aq1uOWQUe\nmjz+FPCNqllfIkiS/t/g2z5VdSXJKeA8sA94rKouJPk8sFZVq8CXgX9Iss67V/wPDB1XkrR3Y9zz\np6rOAee27PvLTY//B7h/jLEkScP5CV9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Z\nf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaM\nvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPG\nX5IaGhT/JO9L8myS1ya/b9vmuP9N8p3Jz+qQMSVJww298j8NPFdVR4HnJtvT/HdV/fbk576BY0qS\nBhoa/xPA2cnjs8DHB76eJGkGhsb/g1X1JsDk9we2Oe6Xkqwl+VYS/4GQpDnbv9MBSb4OfGjKU5/b\nxTjLVXUpya8B30jy3ar6jyljnQROAiwvL+/i5aUFUTXvGUjAdcS/qu7e7rkkP0xye1W9meR24K1t\nXuPS5PfrSf4J+B3gqvhX1RngDMDKyop/SyTpBhl622cVeGjy+CHgma0HJLktyXsmjw8CfwC8MnBc\nSdIAQ+P/CHBPkteAeybbJFlJ8qXJMb8JrCX5d+CbwCNVZfwlaY52vO1zLVX1Y+CjU/avAZ+ZPP4X\n4LeGjCNJGpef8JWkhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh\n4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+ktSQ\n8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNTQo/knuT3Ihyc+TrFzj\nuONJXk2ynuT0kDElScMNvfJ/Gfgk8Px2ByTZBzwK3AscAx5McmzguJKkAfYP+cNVdREgybUOuwtY\nr6rXJ8c+CZwAXhkytiRp72Zxz/8O4I1N2xuTfZKkOdnxyj/J14EPTXnqc1X1zHWMMe2/BbXNWCeB\nkwDLy8vX8dKSpL3YMf5VdffAMTaAw5u2DwGXthnrDHAGYGVlZeo/EJKk4WZx2+cF4GiSO5McAB4A\nVmcwriRpG0Pf6vmJJBvAh4GvJTk/2f8rSc4BVNUV4BRwHrgIfKWqLgybtiRpiKHv9vkq8NUp+y8B\nH9u0fQ44N2QsSdJ4/ISvJDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh\n4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1lKqb83vSk1wGvj/veVyHg8CP5j2JW4jrOS7X\nczyLspa/WlVLOx1008Z/USRZq6qVec/jVuF6jsv1HM+ttpbe9pGkhoy/JDVk/Ic7M+8J3GJcz3G5\nnuO5pdbSe/6S1JBX/pLUkPHfpSTHk7yaZD3J6cm+O5N8O8lrSZ5KcmDe81wE26zlqcl2JTk47zku\nkiSPJXkrycub9r0vybOTc/PZJLfNc46LYpu1vD/JhSQ/T7Lw7/ox/ruQZB/wKHAvcAx4MMkx4AvA\nF6vqKPAT4OH5zXIxXGMt/xm4m8X4jMfN5nHg+JZ9p4HnJufmc5Nt7exxrl7Ll4FPAs/PfDY3gPHf\nnbuA9ap6vareAZ4ETgAfAZ6eHHMW+Pic5rdIpq5lVf1bVX1vvlNbTFX1PPD2lt0nePecBM/N6zZt\nLavqYlW9Oqcpjc74784dwBubtjcm+/6zqq5s2adr224tNa4PVtWbAJPfH5jzfHSTMP67kyn79k3Z\n51uodjZtLV03aUaM/+5sAIc3bR8CfgC8N8n+TfsuzXpiC2jaWrpu4/thktsBJr/fmvN8dJMw/rvz\nAnB08u6eA8ADwCrwTeBTk2MeAp6Z0/wWyXZrqXGt8u45CZ6b2sT478Lkvv4p4DxwEfhKVV0A/gL4\n8yTrwPuBL89vlothu7VM8tkkG7z7P4GXknxpnvNcJEmeAP4V+I0kG0keBh4B7knyGnDPZFs7mLaW\nST4xOTc/DHwtyfn5znIYP+ErSQ155S9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqaH/\nA9M+lMGwYYbcAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "labels=['00', '01', '10', '11'];\n", + "plt.axis([-0.5,3.5,-1.25,1.25]);\n", + "plt.xticks(x,labels);\n", + "plt.bar(x, np.ravel(psi1), 1/1.5, color=\"red\");\n", + "plt.bar(xb, np.ravel(np.multiply(psi1,psi1)), 1/2., color=\"blue\");" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX8AAAD8CAYAAACfF6SlAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAC4NJREFUeJzt3U+IXed9h/HnW6lKd40TTRJV0lQuFaWClv4ZTEM3pbFB\nzsJK0hjsTZ3ioE1FFt1UEGghK2cVKJgWNTFWu4gdDMFTIhC2k2Jom6AxTR3LQngqmmqQiZU4zaZ/\njJpfF7qUYXRHo5lzNHdGv+cDw9xz7uv7vn65enR0dAelqpAk9fIzs16AJGn7GX9Jasj4S1JDxl+S\nGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ3tnfUC1rN///46cuTIrJchSbvKa6+99sOqmtto3I6N/5Ej\nR1haWpr1MiRpV0ny/TsZ520fSWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4\nS1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ2NEv8kzyR5J8kb6zyfJH+RZDnJ60l+a4x5JUlb\nM9aV/7PA8ds8/zBwdPJ1EvjLkeaVJG3BKPGvqleBd28z5ATwN3XTt4H3JzkwxtySpM3brnv+B4Gr\nq45XJuckSTOwXf+Ae6acq1sGJSe5eVuI+fn5u70maftl2i+Fuzjdrb/MdqTaHcu8p2zXlf8KcHjV\n8SHg2tpBVXWmqhaqamFubm6bliZJ/WxX/BeBP5x86ud3gJ9U1dvbNLckaY1Rbvsk+Srwe8D+JCvA\nnwM/C1BVfwWcAz4OLAP/CfzRGPNKkrZmlPhX1eMbPF/AH48xlyRpOH/CV5IaMv6S1JDxl6SGjL8k\nNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+S\nGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9J\nDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIZGiX+S40kuJ1lOcnrK859Jcj3Jdydfnx1jXknS1uwd+gJJ\n9gBPAw8BK8CFJItV9eaaoc9X1amh80mShhvjyv8BYLmqrlTVe8BzwIkRXleSdJeMEf+DwNVVxyuT\nc2v9QZLXk7yQ5PAI80qStmiM+GfKuVpz/HfAkar6deBl4OzUF0pOJllKsnT9+vURliZJmmaM+K8A\nq6/kDwHXVg+oqh9V1f9MDv8a+O1pL1RVZ6pqoaoW5ubmRliaJGmaMeJ/ATia5P4k+4DHgMXVA5Ic\nWHX4CHBphHklSVs0+NM+VXUjySngPLAHeKaqLib5ArBUVYvA55I8AtwA3gU+M3ReSdLWpWrt7fmd\nYWFhoZaWlma9DGlcmfZXZHdxulv++m1n2qEZ2pWSvFZVCxuN8yd8Jakh4y9JDRl/SWrI+EtSQ8Zf\nkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zekhoy/JDVk/CWpIeMv\nSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGX\npIaMvyQ1ZPwlqSHjL0kNjRL/JMeTXE6ynOT0lOffl+T5yfPfSXJkjHklSVszOP5J9gBPAw8Dx4DH\nkxxbM+xJ4MdV9cvAl4AvDp1XkrR1Y1z5PwAsV9WVqnoPeA44sWbMCeDs5PELwMeSZIS5JUlbMEb8\nDwJXVx2vTM5NHVNVN4CfAB8cYW5J0hbsHeE1pl3B1xbGkOQkcBJgfn5++MqknaZuedvf3em2dTbt\nJmNc+a8Ah1cdHwKurTcmyV7g54F3175QVZ2pqoWqWpibmxthaZKkacaI/wXgaJL7k+wDHgMW14xZ\nBJ6YPP408M2qbb4EkiT9v8G3farqRpJTwHlgD/BMVV1M8gVgqaoWga8Af5tkmZtX/I8NnVeStHVj\n3POnqs4B59ac+7NVj/8beHSMuSRJw/kTvpLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+S\nGjL+ktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9J\nDRl/SWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+ktSQ8Zek\nhoy/JDU0KP5JPpDkpSRvTb7ft864/03y3cnX4pA5JUnDDb3yPw28UlVHgVcmx9P8V1X9xuTrkYFz\nSpIGGhr/E8DZyeOzwCcGvp4kaRsMjf+Hq+ptgMn3D60z7ueSLCX5dhJ/g5CkGdu70YAkLwMfmfLU\n5zcxz3xVXUvyS8A3k3yvqv51ylwngZMA8/Pzm3h5SdJmbBj/qnpwveeS/CDJgap6O8kB4J11XuPa\n5PuVJH8P/CZwS/yr6gxwBmBhYaHu6P9AkrRpQ2/7LAJPTB4/Aby4dkCS+5K8b/J4P/C7wJsD55Uk\nDTA0/k8BDyV5C3hockyShSRfnoz5VWApyb8A3wKeqirjL0kztOFtn9upqh8BH5tyfgn47OTxPwK/\nNmQeSdK4/AlfSWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGjL+\nktSQ8Zekhoy/JDVk/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/\nSWrI+EtSQ8Zfkhoy/pLUkPGXpIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDg+Kf5NEkF5P8NMnCbcYd\nT3I5yXKS00PmlCQNN/TK/w3gU8Cr6w1Isgd4GngYOAY8nuTYwHklSQPsHfIfV9UlgCS3G/YAsFxV\nVyZjnwNOAG8OmVuStHXbcc//IHB11fHK5JwkaUY2vPJP8jLwkSlPfb6qXryDOab9saDWmeskcBJg\nfn7+Dl5akrQVG8a/qh4cOMcKcHjV8SHg2jpznQHOACwsLEz9DUKSNNx23Pa5ABxNcn+SfcBjwOI2\nzCtJWsfQj3p+MskK8FHgG0nOT87/QpJzAFV1AzgFnAcuAV+rqovDli1JGmLop32+Dnx9yvlrwMdX\nHZ8Dzg2ZS5I0Hn/CV5IaMv6S1JDxl6SGjL8kNWT8Jakh4y9JDRl/SWrI+EtSQ8Zfkhoy/pLUkPGX\npIaMvyQ1ZPwlqSHjL0kNGX9Jasj4S1JDxl+SGkrVzvx30pNcB74/63Xcgf3AD2e9iHuI+zku93M8\nu2Uvf7Gq5jYatGPjv1skWaqqhVmv417hfo7L/RzPvbaX3vaRpIaMvyQ1ZPyHOzPrBdxj3M9xuZ/j\nuaf20nv+ktSQV/6S1JDx36Qkx5NcTrKc5PTk3P1JvpPkrSTPJ9k363XuBuvs5anJcSXZP+s17iZJ\nnknyTpI3Vp37QJKXJu/Nl5LcN8s17hbr7OWjSS4m+WmSXf+pH+O/CUn2AE8DDwPHgMeTHAO+CHyp\nqo4CPwaenN0qd4fb7OU/AA+yO37GY6d5Fji+5txp4JXJe/OVybE29iy37uUbwKeAV7d9NXeB8d+c\nB4DlqrpSVe8BzwEngN8HXpiMOQt8Ykbr202m7mVV/XNV/dtsl7Y7VdWrwLtrTp/g5nsSfG/esWl7\nWVWXquryjJY0OuO/OQeBq6uOVybn/qOqbqw5p9tbby81rg9X1dsAk+8fmvF6tEMY/83JlHN7ppzz\nI1Qbm7aX7pu0TYz/5qwAh1cdHwL+HXh/kr2rzl3b7oXtQtP20n0b3w+SHACYfH9nxuvRDmH8N+cC\ncHTy6Z59wGPAIvAt4NOTMU8AL85ofbvJenupcS1y8z0Jvje1ivHfhMl9/VPAeeAS8LWqugj8KfAn\nSZaBDwJfmd0qd4f19jLJ55KscPNPAq8n+fIs17mbJPkq8E/AryRZSfIk8BTwUJK3gIcmx9rAtL1M\n8snJe/OjwDeSnJ/tKofxJ3wlqSGv/CWpIeMvSQ0Zf0lqyPhLUkPGX5IaMv6S1JDxl6SGjL8kNfR/\n/fp5hKcupA8AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "labels=['00', '01', '10', '11'];\n", + "plt.axis([-0.5,3.5,-1.25,1.25]);\n", + "plt.xticks(x,labels);\n", + "plt.bar(x, np.ravel(psif), 1/1.5, color=\"red\");\n", + "plt.bar(xb, np.ravel(np.multiply(psif,psif)), 1/2., color=\"blue\");" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/lessons/misc/quantum-computing/lesson.md b/lessons/misc/quantum-computing/lesson.md new file mode 100644 index 000000000..4b16e9b7b --- /dev/null +++ b/lessons/misc/quantum-computing/lesson.md @@ -0,0 +1,27 @@ +--- +layout: page +title: "Introduction to Quantum Computing" +visible: true +tags: + # languages + - misc + # levels + - beginner +--- + + + + + - **Authors**: Kent Bonsma-Fisher + - **Research field**: Physics / Quantum Information + - **Lesson topic**: Introduction to quantum computing + - **Lesson content URL**: https://github.com/UofTCoders/studyGroup/tree/gh-pages/lessons/misc/quantum-computing + - **Lesson video URL**: https://www.youtube.com/watch?v=lR4mZqZJyCs& + +This is a beginner level introduction to quantum computing. It assumes some knowledge of vectors and matrices. + +We go over the matrix algebra for qubits, some examples of quantum gates acting on them, and simulate them in Python. + +Then we go through Grover's search algorithm in Python and try it out on the IBM quantum experience machine. + +See the [notebooks](https://github.com/UofTCoders/studyGroup/blob/gh-pages/lessons/misc/quantum-computing/grovers-algorthim-2-qubits.ipynb) in the linked folder and [QuantumComputing_UofTcoders.pdf](https://github.com/UofTCoders/studyGroup/blob/gh-pages/lessons/misc/quantum-computing/QuantumComputing_UofTcoders.phd) for the slides. diff --git a/lessons/misc/ruby-intro/lesson.md b/lessons/misc/ruby-intro/lesson.md new file mode 100644 index 000000000..77f94382d --- /dev/null +++ b/lessons/misc/ruby-intro/lesson.md @@ -0,0 +1,597 @@ +--- +layout: page +title: 'Introduction to Ruby' +visible: true +tags: + - misc + - beginner +--- + +- **Authors**: Jenna Blumenthal +- **Research field**: Mechanical & Industrial Engineering +- **Lesson topic**: Introduction to Ruby +- **Lesson content URL**: + +This is a very basic introduction to Ruby directed for those without much programming experience. It will cover using the terminal and interative ruby shell (IRB), data types, objects/classes, methods, conditional logic, and running a program from a file in the terminal. + +Content source: +--------------- +Based on the [**workshop**](https://github.com/ladieslearningcode/Ruby) developed by [Dessy Deskalov](https://twitter.com/dess_e) for [Ladies Learning Code](http://ladieslearningcode.com/) + +Agenda +------ + +- What is Ruby? +- Working in the Terminal +- Data Types +- Methods +- Objects and Classes +- Writing/running a program +- Control Flow + +What is Ruby? +============= + +Ruby is a programming language +------------------------------ + +Why do people love Ruby? + +- Easy to learn (compared to C, C++, Java) +- Forgiving syntax +- Large and supportive online community + +Created in 1993 by Yukihiro Matsumoto, from Japan. + +> "I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of the Ruby language." + +Ruby in the Command Line +------------------------ + +The IRB ("Interactive Ruby Shell") is an interactive command-line interpreter that can be used to test code quickly. + +### OS X + + Applications -> Utilities -> Terminal + +### Windows + +(C:\\windows\\system32\\cmd.exe) + + Start -> All Programs -> Accessories -> Command Prompt + +Using IRB (Interactive Ruby) +---------------------------- + +Type IRB into the console + + irb + +Then you'll see somthing like this: + + ruby-1.9.2-p290 :001 > + +What can Ruby do? +----------------- + +Try typing: + + irb(main):001:0>puts "Hello World" + Hello World + => nil + +`puts` is the basic command to print something out in Ruby. +`=> nill` is the result of the expression. + +Math: + + > 1 + 1 + => 2 + + > 462 * 86 + => 39732 + +Data Types +========== + +Data Types +---------- + +Numbers without decimals are called `INTEGERS`. We just did some math with some integers. + +Letters, words, and sentences are called `STRINGS`. We tell Ruby that we are intending to use a string by wrapping it in quotes. + +Some other data types in Ruby: + +- `binary` +- `boolean` +- `float` +- `decimal` +- ... + +Variables +========= + +How do Variables Work? +---------------------- + +What if we want to remember the result of some of this math? Assign the result to a variable. + + irb(main):007:0> a = 3 ** 2 + => 9 + irb(main):007:0> b = 4 ** 2 + => 16 + irb(main):007:0> Math.sqrt(a+b) + => 5.0 + + + +We can also assign a String to a variable + + irb(main):007:0> my_name = "John Doe" + => "John Doe" + + +Telling Ruby the `variable` **my\_name** points to the `string` "**John Doe**". + +Objects +======= + +Objects, Objects, Everywhere! +----------------------------- + +Everything in Ruby is an `Object`. + +Great, but what is an object? + +An `OBJECT` is an `INSTANCE` of a `CLASS`. + +### A what is a what of a what? + + + +Classes +------- + +Before she can do something with an object, Ruby needs to know what kind of `object` she's dealing with. + + irb(main):007:0> 1+1 + => 2 + irb(main):007:0> "1" + "1" + => "11" + +### So how do classes help? + +`Classes` define `objects` and what can be done with them. + +The **Integer** `class` will have different instructions for "+" than the **String** `class`. + +`Objects` have an **IS A** relationship with their `classes`. + +Methods +------- + +The **actions** you can perform on an `object` are called `methods`. + +Every `object` that IS A `class` can perform the methods defined by that class. + + irb(main):010:0> def hi + irb(main):011:1> puts "Hello World!" + irb(main):012:1> end + => :hi + +Integer Methods +--------------- + +The `Integer class` has instructions for the methods **next**, **odd?**, and **even?**. + +You can call **next**, **odd?**, and **even?** on ALL Objects that are `Integers` + +String Methods +-------------- + +The `String class` has instructions for the methods **capitalize**, **upcase**, and **reverse**. + +You can call **capitalize**, **upcase**, and **reverse** on ALL `Objects` that are `Strings`. + +Playing with Integers +--------------------- + + > 99.zero? + => false + + > 99.odd? + => true + + > 99.even? + => false + +Another example +--------------- + + > title = "Peter Rabbit" + > title.reverse + + | + --- | --- +What am I supposed to do with this object? | `reverse` +Do I know how to do that action on this object? | Yes! The `String` class defines a method **reverse** and returns the string in reverse order. + + =>"tibbaR reteP" + +Fun with strings +---------------- + + > "universityoftoronto".capitalize + => "Universityoftoronto" + + > "universityoftoronto".upcase + => "UNIVERSITYOFTORONTO" + + > "UNIVERSITYOFTORONTO".downcase + => "universityoftoronto" + + > "universityoftoronto".reverse + => "otnorotfoytisrevinu" + +Method Errors +------------- + + > myNumber = 123 + > myNumber.reverse + + | +--- | --- +What am I supposed to do with this object? | `reverse` +Do I know how to do that action on this object? | No. The **Integer** class does not define a method **reverse**. + + => NoMethodError: undefined method `reverse' for 123:Fixnum + from (irb):1 + from :0 + + +Methods and Objects and Classes, Oh My! +--------------------------------------- + +How can I find the class of my object? + + > mysteryObject = "What am I?" + > mysteryObject.class + => String + +How do I know what methods I can call on my object? + + > mysteryObject.methods + => ["upcase!", "zip", "pretty_print_cycle"....] + +How do I know what those methods do? + +Look them up [**here**](https://ruby-doc.org/) + +Built-in Classes +---------------- + +Ruby comes with many built-in classes that we can use. + +`String`, `Integer`, `File`, `Hash`, `Array`... + +You can read about all the built-in objects [**here**](https://ruby-doc.org/core/) + +Custom Classes +-------------- + +What if we want to define our own class? + +Let's return to the `method` **hi** we wrote (and improve it) + + irb(main):010:0> def hi(name) + irb(main):011:1> puts "Hello #{name}!" + irb(main):012:1> end + => :hi + +The `method` **hi** takes the **name** as a `parameter`. + +`#{name}` is Ruby's way of inserting something into a string + + irb(main):024:0> class Greeter + irb(main):025:1> def initialize(name) + irb(main):026:2> @name = name + irb(main):027:2> end + + irb(main):028:1> def say_hi + irb(main):029:2> puts "Hi #{@name}!" + irb(main):030:2> end + irb(main):034:1> end + => nil + + +The new keyword here is `class`. This defines a new class called Greeter and a bunch of methods for that class. Also notice `@name`. This is an instance variable, and is available to all the methods of the class. As you can see it’s used by `say_hi`. + +Custom Classes +-------------- + +Lets create a **Greeter** object and use it: + + irb(main):035:0> greeter = Greeter.new("Pat") + => # + irb(main):036:0> greeter.say_hi + Hi Pat! + => nil + +The method `new` is a unique type of method, which is predefined in the Ruby library. The new method belongs to the class methods. The `initialize` method is a special type of method, which will be executed when the `new` method of the class is called with parameters. + +Custom Classes: Exercise +------------------------ + +Let's make a class `Calculator` that has the methods `add` and `subtract` + + irb(main):035:0> my_calculator = Calculator.new + => # + irb(main):036:0> my_calculator.add(5,2) + 7 + => nil + irb(main):036:0> my_calculator.subtract(5,2) + 3 + => nil + +Custom Classes: Solution +------------------------ + + irb(main):024:0> class Calculator + + irb(main):025:1> def add(x,y) + irb(main):026:2> puts x + y + irb(main):027:2> end + + irb(main):028:1> def subtract(x,y) + irb(main):029:2> puts x - y + irb(main):030:2> end + irb(main):034:1> end + => nil + +Writing a Program +----------------- + +Open any text editor, add the same code, and save it as twitter.rb. +Remember the directory you have saved it in. + + tweet = "I'm writing my first program and it's pretty rad." + puts tweet.length + +To run your program, type **quit** to exit from IRB, and then type: + + ruby twitter.rb + +Getting Input From the User +--------------------------- + +### The real Twitter... + +Asks you to type something. + +Tells you how many characters you're working with. + +So far, we've just been putting our tweet directly into the program. + +Asking for Input +---------------- + +The **puts** `method` is used for output, and the **gets** `method` is used for input. Try this: + +The gets `method` warns Ruby that you're about to speak. + + > tweet = gets + all-string + I'm learning Ruby with #ladieslearningcode + + => "I'm learning Ruby with #ladieslearningcode\n" + +Wait, we didn't type \\n in our tweet. What is that? + +Asking for Input +---------------- + +The \\n is there because you hit the enter button after you typed your tweet. It represents a new line, and counts as exactly one character. To get rid of it, do this: + + > tweet = gets.chomp + all-string + I'm learning Ruby with #ladieslearningcode + + => "I'm learning Ruby with #ladieslearningcode" + +Asking for Input +---------------- + +Now try this: + + > tweet = gets.chomp + all-string + I'm a lady learning code with @learningcode #ladieslearningcode + + => "I'm a lady learning code with @learningcode #ladieslearningcode" + + > puts tweet + all-string + I'm a lady learning code with @learningcode #ladieslearningcode + => nil + +Back to your Twitter Program +---------------------------- + +Working with your group, modify your Twitter program to do the following: + +1. Ask (politely!) for a tweet from the user. + +2. Store the tweet in a variable, without \\n + +3. Output the tweet the user gave. + +4. Output the number of characters in the tweet. + +5. Output how many **more** characters the user can add until they hit 140 characters. + +(answers in assignments/twitter\_3.rb) + +Giving Output Based on Input +---------------------------- + +Twitter... + +Lets you send your tweet if it is 140 characters or less + +Tells you that your tweet is too long to send otherwise. + +Giving Output Based on Input +---------------------------- + +So far we know how to determine the length of the user's tweet. + +We don't know how to tell them whether they can or cannot send their tweet, depending on it's length. + +Conditional Logic +----------------- + +Programming is writing out sets of simple instructions for the computer to follow. + +Let's break down out tweet logic into simple instructions. + +Conditional Logic +----------------- + +We want our program to ... + +if the tweet is greater than 140 characters, tell the user that they cannot send their tweet + +if the tweet is less than or equal to 140 characters, tell the user that they can send their tweet + +Conditional Logic +----------------- + +Logical operators + +- > +- < +- >= +- <= +- == + + + + > 200 > 140 + + => true + + > 200 < 140 + + => false + +Conditional Logic: IF Statements +-------------------------------- + +Try the code below in IRB: + + >if 200 > 140 + > puts true + >end + + => true + +Conditional Logic: IF/ELSE Statements +------------------------------------- + +Try the code below in IRB: + + >if 200 > 140 + > puts true + >else + puts false + >end + + => true + +Conditional Logic in Our Simple Twitter +--------------------------------------- + + tweet = gets.chomp + + if tweet.length <= 140 + puts "Tweet your heart out!" + end + +Conditional Logic in Our Simple Twitter +--------------------------------------- + + tweet = gets.chomp + + if tweet.length <= 140 + puts "Tweet your heart out!" + else + puts "Your tweet is too long!" + end + +While Loops +----------- + +What if you want to be able to tell your program when to stop running? Create a new program with the following code. + + puts "Hi!" + greeting = gets.chomp + + while greeting != "bye!" + puts greeting + greeting = gets.chomp + end + +This is called a while loop. The program will run while the user inputs anything other than "bye!" + +Arrays +------ + + [1, 2, 3, 4, 5] + + [7, 13, 14, 16, 14, 48] + + ["ladies", "learning", "code"] + +Iterating through an Array +-------------------------- + + > my_numbers = [1, 2, 3, 4, 5] + > my_numbers.each do |i| + > puts i**2 + > end + +Final Task +---------- + +- Make an array of 5 tweets. +- For every tweet, check the number of characters. +- If the tweet is too long, give the user an error message. +- If the tweet is < 140 characters, print the tweet. + +Credits +------- + +Inspired by Chris Pine's **Learn to Program** + +![](framework/img/workshop/learn-to-program.jpg) + +Resources +--------- + +[Learn Ruby in 20 Minutes](https://www.ruby-lang.org/en/documentation/quickstart/) + +[why's poignent guide to Ruby](http://mislav.uniqpath.com/poignant-guide/) + +[Ruby Koans](http://rubykoans.com/) + +[Rails](http://rubyonrails.org/screencasts) + +[Lots more!](https://www.ruby-lang.org/en/documentation/) + +And finally... + +Thank you! +========== + +[![Creative Commons License](framework/img/cc-by-nc.svg)](https://creativecommons.org/licenses/by-nc/4.0/) by [Ladies Learning Code](http://ladieslearningcode.com) diff --git a/lessons/misc/software-defined-radio/Information in the Air - SDR.pdf b/lessons/misc/software-defined-radio/Information in the Air - SDR.pdf new file mode 100644 index 000000000..187e09c40 Binary files /dev/null and b/lessons/misc/software-defined-radio/Information in the Air - SDR.pdf differ diff --git a/lessons/misc/software-defined-radio/lesson.md b/lessons/misc/software-defined-radio/lesson.md new file mode 100644 index 000000000..523de58fb --- /dev/null +++ b/lessons/misc/software-defined-radio/lesson.md @@ -0,0 +1,41 @@ +--- +layout: page +title: "Information from the Air: Software Defined Radio" +visible: true +tags: + - misc + - intermediate +--- + + + + - **Authors**: Brian Sutherland + - **Research field**: Information + - **Lesson content URL**: + +Thanks to the mass manufacturing of digital video broadcast decoders, it's +possible to obtain a RealTek chipset USB dongle with an antenna (somewhat like +a sound card) for $20-$50 that allows your computer to receive, record, and +examine significant portions of the radio frequency spectrum, e.g. 25MHz - +1.7GHz. More expensive transceiver devices have a wider range (1MHz - 6GHz), +and they allow you to transmit as well. + +Examples - + + + +In this session you will explore the radio frequency (RF) spectrum with one of +these dongles (bring your own or use one provided) and open source software +. We'll look at +the GNU Public Radio project, gqfx and some interesting uses folks have put +these systems to, including pulling scientific data from satellites, hacking +internet of things communications devices, and recording FM broadcasts. For a +project, by dragging and dropping filters, graphical controls, participabts +will build a fully functioning FM tuner in a matter of minutes using GNU Public +Radio. Note that these devices are fully programmable in Python, making all +kinds of interesting custom applications possible. + + +Check it out: +* +* diff --git a/lessons/misc/sql-intro/.gitignore b/lessons/misc/sql-intro/.gitignore new file mode 100644 index 000000000..519cf0e85 --- /dev/null +++ b/lessons/misc/sql-intro/.gitignore @@ -0,0 +1,5 @@ +.ipynb_* +lesson.html +mtcars.csv +mtcars.sqlite +export-mtcars.csv diff --git a/lessons/misc/sql-intro/Makefile b/lessons/misc/sql-intro/Makefile new file mode 100644 index 000000000..4e3681ef9 --- /dev/null +++ b/lessons/misc/sql-intro/Makefile @@ -0,0 +1,20 @@ +lesson: + Rscript -e "library(rmarkdown); rmarkdown::render('lesson.md')" + +open: + open lesson.html + +python-notebook: + jupyter notebook python-sql.ipynb + +r-notebook: + jupyter notebook r-sql.ipynb + +requirements: + pip install -r requirements/requirements.txt + R --no-save < requirements/requirements.R + +mtcars-init: + sqlite3 mtcars.sqlite < mtcars-init.sql + +.PHONY: lesson open requirements python-notebook r-notebook diff --git a/lessons/misc/sql-intro/examples.sql b/lessons/misc/sql-intro/examples.sql new file mode 100644 index 000000000..632ceaf53 --- /dev/null +++ b/lessons/misc/sql-intro/examples.sql @@ -0,0 +1,98 @@ +-- launch sqlite3 with a DB file +-- sqlite3 mtcars.sqlite + +--------- +-- help for sqlite +-- .help + +--------- +-- export the mtcars results again + +.headers on +.mode csv +.output export-mtcars.csv +select * from results; +.output + +--------- +-- CREATE + +create table datatypes ( + numbers float, + integers int, + strings varchar(32), + truths boolean +); + +--------- +-- DROP + +drop table datatypes; + +--------- +-- SELECT * FROM TABLE +-- get all the rows and columns from a table called 'results' + +select * from results; + +--------- +-- SELECT count() WHERE +-- count the number of rows in the table called 'results' + +select count(*) from results; + +--------- +-- SELECT ... WHERE +-- filter the results to include only cars with 6 cylinder engines + +select count(*) from results where cyl=6; + +--------- +-- SELECT COL AS COLNAME +-- "rename" a column within a result set +-- here we call 'wt' by its full name, 'weight' + +select wt as weight from results where weight > 5; + +--------- +-- INSERT ... +-- add rows to the database, according to the schema +-- columns are: +-- mpg float, cyl int, disp float, hp int, drat float, wt float, +-- qsec float, vs boolean, am boolean, gear int, carb int, name varchar(256) + +insert into results values (4.3,12,320.0,774,13.62,8.31,75.5,0,1,2,6,"Powell Motors Homer"); + +-- retrieve our new row: +select * from results where name='Powell Motors Homer'; + +-- and the heaviest cars by weight are: +select * from results where wt > 5; + +--------- +-- UPDATE ... WHERE +-- change values in the table WHERE the filter is matched + +update results set cyl=16 where name='Powell Motors Homer'; +select cyl from results where name='Powell Motors Homer'; + +--------- +-- ALTER ... +-- change the table schema by adding or removing columns +-- NB: sqlite3 does not allow dropping columns + +alter table results add column emissions float; + +-- check the schema now +.schema results + +--------- +-- DELETE ... WHERE +-- remove rows that match WHERE clause + +select count(*) from results; +select count(*) from results where cyl=4; +delete from results where cyl=4; +select count(*) from results; + +-- SELECT ... JOIN diff --git a/lessons/misc/sql-intro/lesson.md b/lessons/misc/sql-intro/lesson.md new file mode 100644 index 000000000..e49e4c046 --- /dev/null +++ b/lessons/misc/sql-intro/lesson.md @@ -0,0 +1,84 @@ +--- +layout: page +title: 'Introduction to Databases and SQL' +visible: true +tags: + - misc + - beginner +--- + +- **Authors**: Ian Dennis Miller +- **Research field**: Social Psychology - Social Complexity +- **Lesson topic**: Databases and SQL +- **Lesson content URL**: + +## Presentation + + + +- covers data, databases, and sql +- contains javascript for some exercises + +## Notebooks + +The following Jupyter notebooks contain a R and Python examples: + +- [r-sql.ipynb](../r-sql.ipynb) +- [python-sql.ipynb](../python-sql.ipynb) + +These can be run locally: + + make r-notebook + make python-notebook + +## Requirements + +To follow along with the lesson, you will need a several R and Python libraries. If you don't have R, Python, and sqlite3, see [Basic System Requirements](#basic-system-requirements). For Python, consider creating a virtualenv for your workspace. + +Now you are ready to install the required R and Python libraries. Inspect and run the following files: + + pip install -r requirements/requirements.txt + R --no-save < requirements/requirements.R + +You can also automatically install requirements on Mac and Linux: + + make requirements + +## Basic System Requirements + +This lesson makes use of the following: + +- Python (Jupyter) +- R (IRkernel for Jupyter) +- sqlite3 + +### Mac + +MacOS already has Python and probably sqlite3 as well. You need R. + + brew install R + +### Linux + +You need R. Try `apt`, `yum`, or whatever: + + apt-get install r-base + yum install R + +You may need to install sqlite3. You can test by running: + + which sqlite3 + +If it returns nothing, then it is not currently installed. Try `apt`, `yum`, or whatever: + + apt-get install sqlite3 libsqlite3-dev + yum install sqlite sqlite-devel + +### Windows + +You need Python, R, sqlite3, and maybe other things like a C compiler. These links will get you started: + +- https://cran.r-project.org/bin/windows/base/ +- https://www.rstudio.com/products/rstudio/download/ +- https://www.python.org/downloads/windows/ +- https://sqlite.org/download.html diff --git a/lessons/misc/sql-intro/mtcars-init.sql b/lessons/misc/sql-intro/mtcars-init.sql new file mode 100644 index 000000000..1bad276a1 --- /dev/null +++ b/lessons/misc/sql-intro/mtcars-init.sql @@ -0,0 +1,27 @@ +-- launch with: +-- sqlite3 mtcars.sqlite < mtcars-init.sql + +-- drop the results table to start from scratch +drop table results; + +-- create results table +create table results ( + mpg float, + cyl int, + disp float, + hp int, + drat float, + wt float, + qsec float, + vs boolean, + am boolean, + gear int, + carb int, + name varchar(256) +); + +-- set sqlite3 into CSV mode +.mode csv + +-- import the mtcars file and store it in the results table +.import mtcars.csv results diff --git a/lessons/misc/sql-intro/python-sql.ipynb b/lessons/misc/sql-intro/python-sql.ipynb new file mode 100644 index 000000000..c8cf5239c --- /dev/null +++ b/lessons/misc/sql-intro/python-sql.ipynb @@ -0,0 +1,177 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Introduction to Databases and SQL\n", + "\n", + "- **Authors**: Ian Dennis Miller\n", + "- **Research field**: Social Psychology - Social Complexity\n", + "- **Lesson topic**: Databases and SQL\n", + "- **Lesson content URL**: " + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "# Plan\n", + "\n", + "- open sqlite3 database\n", + "- send a query\n", + "- parse and print the result\n", + "- import from sqlite directly into pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import sqlite3\n", + "conn = sqlite3.connect('mtcars.sqlite')\n", + "c = conn.cursor()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# select cars with 4 cylinders" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create and execute our query\n", + "cylinders = 4\n", + "cursor = c.execute(\"SELECT * FROM results WHERE cyl = {0}\".format(cylinders))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# print a list of the results" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Datsun 710:\t22.8\n", + "Merc 240D:\t24.4\n", + "Merc 230:\t22.8\n", + "Fiat 128:\t32.4\n", + "Honda Civic:\t30.4\n", + "Toyota Corolla:\t33.9\n", + "Toyota Corona:\t21.5\n", + "Fiat X1-9:\t27.3\n", + "Porsche 914-2:\t26.0\n", + "Lotus Europa:\t30.4\n", + "Volvo 142E:\t21.4\n" + ] + } + ], + "source": [ + "# fetch a list of the column names\n", + "column_names = list(map(lambda x: x[0], cursor.description))\n", + "\n", + "# fetch all rows and map column names onto them\n", + "rows = map(lambda x: dict(zip(column_names, x)), cursor.fetchall())\n", + "\n", + "# print the name and MPG for each result\n", + "for row in rows:\n", + " print(\"{name}:\\t{mpg}\".format(**row))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# import into pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " mpg cyl disp hp drat wt qsec vs am gear carb \\\n", + "0 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4 \n", + "1 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4 \n", + "2 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1 \n", + "3 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1 \n", + "4 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2 \n", + "\n", + " name \n", + "0 Mazda RX4 \n", + "1 Mazda RX4 Wag \n", + "2 Datsun 710 \n", + "3 Hornet 4 Drive \n", + "4 Hornet Sportabout \n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "df = pd.read_sql_query(\"SELECT * from results\", conn)\n", + "print(df.head())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.11" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/lessons/misc/sql-intro/r-sql.ipynb b/lessons/misc/sql-intro/r-sql.ipynb new file mode 100644 index 000000000..d0c1dbec3 --- /dev/null +++ b/lessons/misc/sql-intro/r-sql.ipynb @@ -0,0 +1,626 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Introduction to Databases and SQL\n", + "\n", + "- **Authors**: Ian Dennis Miller\n", + "- **Research field**: Social Psychology - Social Complexity\n", + "- **Lesson topic**: Databases and SQL\n", + "- **Lesson content URL**: " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Plan\n", + "\n", + "- get a data set from R: mtcars\n", + "- select from it using SQL (via sqldf)\n", + "- export it as CSV file\n", + "- in sqlite, create database and import CSV\n", + "- use RSQLite connection to select direct from database" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "# get a data set from R: mtcars" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The data contain Motor Trends car testing results. There are 32 cars." + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "32" + ], + "text/latex": [ + "32" + ], + "text/markdown": [ + "32" + ], + "text/plain": [ + "[1] 32" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "11" + ], + "text/latex": [ + "11" + ], + "text/markdown": [ + "11" + ], + "text/plain": [ + "[1] 11" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "nrow(mtcars)\n", + "ncol(mtcars)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\n", + "
    mpgcyldisphpdratwtqsecvsamgearcarb
    Mazda RX421.0 6 160 110 3.90 2.62016.460 1 4 4
    Mazda RX4 Wag21.0 6 160 110 3.90 2.87517.020 1 4 4
    Datsun 71022.8 4 108 93 3.85 2.32018.611 1 4 1
    Hornet 4 Drive21.4 6 258 110 3.08 3.21519.441 0 3 1
    Hornet Sportabout18.7 8 360 175 3.15 3.44017.020 0 3 2
    Valiant18.1 6 225 105 2.76 3.46020.221 0 3 1
    \n" + ], + "text/latex": [ + "\\begin{tabular}{r|lllllllllll}\n", + " & mpg & cyl & disp & hp & drat & wt & qsec & vs & am & gear & carb\\\\\n", + "\\hline\n", + "\tMazda RX4 & 21.0 & 6 & 160 & 110 & 3.90 & 2.620 & 16.46 & 0 & 1 & 4 & 4 \\\\\n", + "\tMazda RX4 Wag & 21.0 & 6 & 160 & 110 & 3.90 & 2.875 & 17.02 & 0 & 1 & 4 & 4 \\\\\n", + "\tDatsun 710 & 22.8 & 4 & 108 & 93 & 3.85 & 2.320 & 18.61 & 1 & 1 & 4 & 1 \\\\\n", + "\tHornet 4 Drive & 21.4 & 6 & 258 & 110 & 3.08 & 3.215 & 19.44 & 1 & 0 & 3 & 1 \\\\\n", + "\tHornet Sportabout & 18.7 & 8 & 360 & 175 & 3.15 & 3.440 & 17.02 & 0 & 0 & 3 & 2 \\\\\n", + "\tValiant & 18.1 & 6 & 225 & 105 & 2.76 & 3.460 & 20.22 & 1 & 0 & 3 & 1 \\\\\n", + "\\end{tabular}\n" + ], + "text/plain": [ + " mpg cyl disp hp drat wt qsec vs am gear carb\n", + "Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4 \n", + "Mazda RX4 Wag 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4 \n", + "Datsun 710 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1 \n", + "Hornet 4 Drive 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1 \n", + "Hornet Sportabout 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2 \n", + "Valiant 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "head(mtcars)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + " mpg cyl disp hp \n", + " Min. :10.40 Min. :4.000 Min. : 71.1 Min. : 52.0 \n", + " 1st Qu.:15.43 1st Qu.:4.000 1st Qu.:120.8 1st Qu.: 96.5 \n", + " Median :19.20 Median :6.000 Median :196.3 Median :123.0 \n", + " Mean :20.09 Mean :6.188 Mean :230.7 Mean :146.7 \n", + " 3rd Qu.:22.80 3rd Qu.:8.000 3rd Qu.:326.0 3rd Qu.:180.0 \n", + " Max. :33.90 Max. :8.000 Max. :472.0 Max. :335.0 \n", + " drat wt qsec vs \n", + " Min. :2.760 Min. :1.513 Min. :14.50 Min. :0.0000 \n", + " 1st Qu.:3.080 1st Qu.:2.581 1st Qu.:16.89 1st Qu.:0.0000 \n", + " Median :3.695 Median :3.325 Median :17.71 Median :0.0000 \n", + " Mean :3.597 Mean :3.217 Mean :17.85 Mean :0.4375 \n", + " 3rd Qu.:3.920 3rd Qu.:3.610 3rd Qu.:18.90 3rd Qu.:1.0000 \n", + " Max. :4.930 Max. :5.424 Max. :22.90 Max. :1.0000 \n", + " am gear carb \n", + " Min. :0.0000 Min. :3.000 Min. :1.000 \n", + " 1st Qu.:0.0000 1st Qu.:3.000 1st Qu.:2.000 \n", + " Median :0.0000 Median :4.000 Median :2.000 \n", + " Mean :0.4062 Mean :3.688 Mean :2.812 \n", + " 3rd Qu.:1.0000 3rd Qu.:4.000 3rd Qu.:4.000 \n", + " Max. :1.0000 Max. :5.000 Max. :8.000 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "summary(mtcars)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# use SQL to select cars with 6-cylinder engines" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "library(sqldf)\n", + "# help(sqldf)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\n", + "
    mpgcyldisphpdratwtqsecvsamgearcarb
    21.0 6 160.0110 3.90 2.62016.460 1 4 4
    21.0 6 160.0110 3.90 2.87517.020 1 4 4
    21.4 6 258.0110 3.08 3.21519.441 0 3 1
    18.1 6 225.0105 2.76 3.46020.221 0 3 1
    19.2 6 167.6123 3.92 3.44018.301 0 4 4
    17.8 6 167.6123 3.92 3.44018.901 0 4 4
    19.7 6 145.0175 3.62 2.77015.500 1 5 6
    \n" + ], + "text/latex": [ + "\\begin{tabular}{r|lllllllllll}\n", + " mpg & cyl & disp & hp & drat & wt & qsec & vs & am & gear & carb\\\\\n", + "\\hline\n", + "\t 21.0 & 6 & 160.0 & 110 & 3.90 & 2.620 & 16.46 & 0 & 1 & 4 & 4 \\\\\n", + "\t 21.0 & 6 & 160.0 & 110 & 3.90 & 2.875 & 17.02 & 0 & 1 & 4 & 4 \\\\\n", + "\t 21.4 & 6 & 258.0 & 110 & 3.08 & 3.215 & 19.44 & 1 & 0 & 3 & 1 \\\\\n", + "\t 18.1 & 6 & 225.0 & 105 & 2.76 & 3.460 & 20.22 & 1 & 0 & 3 & 1 \\\\\n", + "\t 19.2 & 6 & 167.6 & 123 & 3.92 & 3.440 & 18.30 & 1 & 0 & 4 & 4 \\\\\n", + "\t 17.8 & 6 & 167.6 & 123 & 3.92 & 3.440 & 18.90 & 1 & 0 & 4 & 4 \\\\\n", + "\t 19.7 & 6 & 145.0 & 175 & 3.62 & 2.770 & 15.50 & 0 & 1 & 5 & 6 \\\\\n", + "\\end{tabular}\n" + ], + "text/plain": [ + " mpg cyl disp hp drat wt qsec vs am gear carb\n", + "1 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4 \n", + "2 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4 \n", + "3 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1 \n", + "4 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1 \n", + "5 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4 \n", + "6 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4 \n", + "7 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sqldf('select * from mtcars where cyl=6')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## There are 7 cars matching the query." + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "7" + ], + "text/latex": [ + "7" + ], + "text/markdown": [ + "7" + ], + "text/plain": [ + "[1] 7" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "nrow(sqldf('select * from mtcars where cyl=6'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## We can obtain the same result directly with SQL... but let's not get ahead of ourselves." + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\n", + "
    count(*)
    7
    \n" + ], + "text/latex": [ + "\\begin{tabular}{r|l}\n", + " count(*)\\\\\n", + "\\hline\n", + "\t 7\\\\\n", + "\\end{tabular}\n" + ], + "text/plain": [ + " count(*)\n", + "1 7 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sqldf('select count(*) from mtcars where cyl=6')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# write mtcars dataset to the file system" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "df = mtcars\n", + "df$name = rownames(df) # move R's rownames into their own column\n", + "write.table(df, \"mtcars.csv\", quote=TRUE, row.names=FALSE, col.names=FALSE, sep=\",\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# create sqlite database in terminal\n", + "\n", + " make mtcars-init\n", + "\n", + "That will run the following:\n", + "\n", + " sqlite3 mtcars.sqlite < mtcars-init.sql\n", + "\n", + "That SQL file does the following:\n", + "\n", + "- drop a table called results\n", + "- create a table called results with columns for the mtcars data\n", + "- tell sqlite to load a CSV file\n", + "- load the CSV file into the results table" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# access sqlite from R" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "library(RSQLite)\n", + "\n", + "# connect to the database\n", + "db = dbConnect(SQLite(), dbname=\"mtcars.sqlite\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## list the tables that are available" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "'results'" + ], + "text/latex": [ + "'results'" + ], + "text/markdown": [ + "'results'" + ], + "text/plain": [ + "[1] \"results\"" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "dbListTables(db)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Inspect columns in the results table" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
      \n", + "\t
    1. 'mpg'
    2. \n", + "\t
    3. 'cyl'
    4. \n", + "\t
    5. 'disp'
    6. \n", + "\t
    7. 'hp'
    8. \n", + "\t
    9. 'drat'
    10. \n", + "\t
    11. 'wt'
    12. \n", + "\t
    13. 'qsec'
    14. \n", + "\t
    15. 'vs'
    16. \n", + "\t
    17. 'am'
    18. \n", + "\t
    19. 'gear'
    20. \n", + "\t
    21. 'carb'
    22. \n", + "\t
    23. 'name'
    24. \n", + "
    \n" + ], + "text/latex": [ + "\\begin{enumerate*}\n", + "\\item 'mpg'\n", + "\\item 'cyl'\n", + "\\item 'disp'\n", + "\\item 'hp'\n", + "\\item 'drat'\n", + "\\item 'wt'\n", + "\\item 'qsec'\n", + "\\item 'vs'\n", + "\\item 'am'\n", + "\\item 'gear'\n", + "\\item 'carb'\n", + "\\item 'name'\n", + "\\end{enumerate*}\n" + ], + "text/markdown": [ + "1. 'mpg'\n", + "2. 'cyl'\n", + "3. 'disp'\n", + "4. 'hp'\n", + "5. 'drat'\n", + "6. 'wt'\n", + "7. 'qsec'\n", + "8. 'vs'\n", + "9. 'am'\n", + "10. 'gear'\n", + "11. 'carb'\n", + "12. 'name'\n", + "\n", + "\n" + ], + "text/plain": [ + " [1] \"mpg\" \"cyl\" \"disp\" \"hp\" \"drat\" \"wt\" \"qsec\" \"vs\" \"am\" \"gear\"\n", + "[11] \"carb\" \"name\"" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "dbListFields(db, \"results\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# use SQL to select cars with 8-cylinder engines - directly from database" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\n", + "
    mpgcyldisphpdratwtqsecvsamgearcarbname
    18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2 Hornet Sportabout
    14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4 Duster 360
    16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3 Merc 450SE
    17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3 Merc 450SL
    15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3 Merc 450SLC
    10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4 Cadillac Fleetwood
    10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4 Lincoln Continental
    14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4 Chrysler Imperial
    15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2 Dodge Challenger
    15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2 AMC Javelin
    13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4 Camaro Z28
    19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2 Pontiac Firebird
    15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4 Ford Pantera L
    15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8 Maserati Bora
    \n" + ], + "text/latex": [ + "\\begin{tabular}{r|llllllllllll}\n", + " mpg & cyl & disp & hp & drat & wt & qsec & vs & am & gear & carb & name\\\\\n", + "\\hline\n", + "\t 18.7 & 8 & 360.0 & 175 & 3.15 & 3.440 & 17.02 & 0 & 0 & 3 & 2 & Hornet Sportabout \\\\\n", + "\t 14.3 & 8 & 360.0 & 245 & 3.21 & 3.570 & 15.84 & 0 & 0 & 3 & 4 & Duster 360 \\\\\n", + "\t 16.4 & 8 & 275.8 & 180 & 3.07 & 4.070 & 17.40 & 0 & 0 & 3 & 3 & Merc 450SE \\\\\n", + "\t 17.3 & 8 & 275.8 & 180 & 3.07 & 3.730 & 17.60 & 0 & 0 & 3 & 3 & Merc 450SL \\\\\n", + "\t 15.2 & 8 & 275.8 & 180 & 3.07 & 3.780 & 18.00 & 0 & 0 & 3 & 3 & Merc 450SLC \\\\\n", + "\t 10.4 & 8 & 472.0 & 205 & 2.93 & 5.250 & 17.98 & 0 & 0 & 3 & 4 & Cadillac Fleetwood \\\\\n", + "\t 10.4 & 8 & 460.0 & 215 & 3.00 & 5.424 & 17.82 & 0 & 0 & 3 & 4 & Lincoln Continental\\\\\n", + "\t 14.7 & 8 & 440.0 & 230 & 3.23 & 5.345 & 17.42 & 0 & 0 & 3 & 4 & Chrysler Imperial \\\\\n", + "\t 15.5 & 8 & 318.0 & 150 & 2.76 & 3.520 & 16.87 & 0 & 0 & 3 & 2 & Dodge Challenger \\\\\n", + "\t 15.2 & 8 & 304.0 & 150 & 3.15 & 3.435 & 17.30 & 0 & 0 & 3 & 2 & AMC Javelin \\\\\n", + "\t 13.3 & 8 & 350.0 & 245 & 3.73 & 3.840 & 15.41 & 0 & 0 & 3 & 4 & Camaro Z28 \\\\\n", + "\t 19.2 & 8 & 400.0 & 175 & 3.08 & 3.845 & 17.05 & 0 & 0 & 3 & 2 & Pontiac Firebird \\\\\n", + "\t 15.8 & 8 & 351.0 & 264 & 4.22 & 3.170 & 14.50 & 0 & 1 & 5 & 4 & Ford Pantera L \\\\\n", + "\t 15.0 & 8 & 301.0 & 335 & 3.54 & 3.570 & 14.60 & 0 & 1 & 5 & 8 & Maserati Bora \\\\\n", + "\\end{tabular}\n" + ], + "text/plain": [ + " mpg cyl disp hp drat wt qsec vs am gear carb name \n", + "1 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2 Hornet Sportabout \n", + "2 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4 Duster 360 \n", + "3 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3 Merc 450SE \n", + "4 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3 Merc 450SL \n", + "5 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3 Merc 450SLC \n", + "6 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4 Cadillac Fleetwood \n", + "7 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4 Lincoln Continental\n", + "8 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4 Chrysler Imperial \n", + "9 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2 Dodge Challenger \n", + "10 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2 AMC Javelin \n", + "11 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4 Camaro Z28 \n", + "12 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2 Pontiac Firebird \n", + "13 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4 Ford Pantera L \n", + "14 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8 Maserati Bora " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "dbGetQuery(conn = db, \"select * from results where cyl=8\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "R", + "language": "R", + "name": "ir" + }, + "language_info": { + "codemirror_mode": "r", + "file_extension": ".r", + "mimetype": "text/x-r-source", + "name": "R", + "pygments_lexer": "r", + "version": "3.3.1" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/lessons/misc/sql-intro/requirements/requirements.R b/lessons/misc/sql-intro/requirements/requirements.R new file mode 100644 index 000000000..9675a9e56 --- /dev/null +++ b/lessons/misc/sql-intro/requirements/requirements.R @@ -0,0 +1,10 @@ +# https://irkernel.github.io/installation/ + +install.packages( + c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest'), + repo='http://cran.utstat.utoronto.ca/' +) +devtools::install_github('IRkernel/IRkernel') +IRkernel::installspec() + +install.packages(c('RSQLite', 'sqldf'), repo='http://cran.utstat.utoronto.ca/') diff --git a/lessons/misc/sql-intro/requirements/requirements.txt b/lessons/misc/sql-intro/requirements/requirements.txt new file mode 100644 index 000000000..740f782b7 --- /dev/null +++ b/lessons/misc/sql-intro/requirements/requirements.txt @@ -0,0 +1,3 @@ +sqlalchemy==1.1.2 +pysqlite==2.8.3 +jupyter==1.0.0 diff --git a/lessons/misc/sqlite-fts/SQLite3 FTS Workshop.pdf b/lessons/misc/sqlite-fts/SQLite3 FTS Workshop.pdf new file mode 100644 index 000000000..6738c8f61 Binary files /dev/null and b/lessons/misc/sqlite-fts/SQLite3 FTS Workshop.pdf differ diff --git a/lessons/misc/sqlite-fts/SQLite3+FTS+Workshop.ipynb b/lessons/misc/sqlite-fts/SQLite3+FTS+Workshop.ipynb new file mode 100644 index 000000000..a7a2dbc29 --- /dev/null +++ b/lessons/misc/sqlite-fts/SQLite3+FTS+Workshop.ipynb @@ -0,0 +1,309 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import sqlite3 library" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import sqlite3\n", + "import sys\n", + "from glob import glob" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Connect to a database file or create an in-memory database" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "conn = sqlite3.connect('/users/mikespears/Desktop/mydb.db') #file-based db\n", + "#conn = sqlite3.connect(':memory:') # in-memory db\n", + "c = conn.cursor()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### SQLite basics: Create a regular (non fts) table, insert and search for values" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "c.execute('''DROP TABLE IF EXISTS uoftcoders''') \n", + "c.execute('''CREATE TABLE uoftcoders (date, title, attendance)''')\n", + "conn.commit()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "c.execute('''INSERT INTO uoftcoders VALUES (?, ?, ?)''', [\"March 7, 2019\", \"Full Text Search with SQLITE\", 12])\n", + "c.execute('''INSERT INTO uoftcoders VALUES (?, ?, ?)''', [\"March 14, 2019\", \"Software defined radio\", 15])\n", + "conn.commit()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "c.execute('''SELECT * FROM uoftcoders WHERE date = ?''', [\"March 7, 2019\"])\n", + "print(c.fetchall())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "c.execute('''SELECT * FROM uoftcoders WHERE attendance > ?''', [10])\n", + "print(c.fetchall())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#basic pattern matching with LIKE\n", + "c.execute('''SELECT * FROM uoftcoders WHERE date LIKE ?''', [\"%march_%\"])\n", + "print(c.fetchall())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Full-Text-Search: Create a table, insert data and search for matches" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "c.execute('''DROP TABLE IF EXISTS files''')\n", + "c.execute('''CREATE VIRTUAL TABLE files USING fts4(filename, text)''')\n", + "#c.execute('''CREATE VIRTUAL TABLE files USING fts4(filename, text, tokenize=porter)''')\n", + "#c.execute('''CREATE VIRTUAL TABLE files USING fts4(filename, text, tokenize=unicode61)''')\n", + "conn.commit()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Insert all the files in a directory (that contains only plaintext files)\n", + "textFileDir = \"/users/mikespears/downloads/science/\"\n", + "allFiles = glob(textFileDir + \"*.*\")\n", + "\n", + "for path in allFiles:\n", + " with open(path) as file: \n", + " try:\n", + " text = file.read()\n", + " c.execute('''INSERT INTO files(filename, text) VALUES(?, ?)''', [path, text])\n", + " #print(path)\n", + " except:\n", + " e = sys.exc_info()[0]\n", + " print(\"Read or insert error: %s (in %s)\" % (e, path))\n", + " continue\n", + " \n", + " \n", + "conn.commit()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "c.execute('''SELECT COUNT(*) from files''')\n", + "print(c.fetchall())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#basic token search text column\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', ['relativity']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#implicit 'AND'\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', ['special relativity']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# OR\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', ['special OR relativity']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#search for a phrase\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', ['\"special relativity\"']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#exclude a token\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', ['relativity -special']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#NEAR operator\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', [\"relativity NEAR special\"]):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#specify a column in the search term\n", + "for row in c.execute('''SELECT filename FROM FILES WHERE text MATCH ?''', ['filename:faq']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for row in c.execute('''SELECT snippet(files, \">>>>\", \"<<<<\", \"...\"), filename FROM FILES WHERE text MATCH ?''', ['relativity']):\n", + " print (\"\\n\\n--------%s\\n\\n\" % row[1])\n", + " print(row[0])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#get offset\n", + "for row in c.execute('''SELECT offsets(FILES) FROM FILES WHERE text MATCH ?''', ['filename:faq']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#get matchinfo\n", + "for row in c.execute('''SELECT matchinfo(FILES) FROM FILES WHERE files MATCH ?''', ['filename:faq']):\n", + " print(row)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#direct access to full-text index\n", + "c.execute('''DROP TABLE IF EXISTS files_terms''')\n", + "c.execute('''CREATE VIRTUAL TABLE files_terms USING fts4aux(files)''')\n", + "conn.commit()\n", + "for row in c.execute('''SELECT * from files_terms ORDER BY occurrences DESC'''):\n", + " print(row)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "conn.close()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/lessons/misc/sqlite-fts/lesson.md b/lessons/misc/sqlite-fts/lesson.md new file mode 100644 index 000000000..b5544c98c --- /dev/null +++ b/lessons/misc/sqlite-fts/lesson.md @@ -0,0 +1,22 @@ +--- +layout: page +title: 'Full Text Search with SQLite and Python' +visible: true +tags: + - misc + - advanced +--- + + - **Authors**: Mike Spears + - **Lesson topic**: Full Text Search with SQLite and Python + - **Lesson content URL**: + - **Lesson video stream**: + +## Presentation + + + +## Notebook + +The [provided Jupyter notebook](../SQLite3+FTS+Workshop.ipynb) contains +examples of using SQLite and FTS using Python. diff --git a/lessons/misc/sqlite-fts/sqliteFTS~prepared.db b/lessons/misc/sqlite-fts/sqliteFTS~prepared.db new file mode 100644 index 000000000..71d05161e Binary files /dev/null and b/lessons/misc/sqlite-fts/sqliteFTS~prepared.db differ diff --git a/lessons/misc/webdev-intro/.gitignore b/lessons/misc/webdev-intro/.gitignore new file mode 100644 index 000000000..1377554eb --- /dev/null +++ b/lessons/misc/webdev-intro/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/lessons/misc/webdev-intro/LICENSE b/lessons/misc/webdev-intro/LICENSE new file mode 100644 index 000000000..dbbe35581 --- /dev/null +++ b/lessons/misc/webdev-intro/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/lessons/misc/webdev-intro/app/slides-module.js b/lessons/misc/webdev-intro/app/slides-module.js new file mode 100644 index 000000000..ea9db877e --- /dev/null +++ b/lessons/misc/webdev-intro/app/slides-module.js @@ -0,0 +1,270 @@ +'use strict'; +// Separate the module scope from everything else + +(function() { +/* These variables are declared in the outside scope so they behave like global + variables */ + +console.log(this) + +var cElm, nElm, contents, layoutListener; +// the definition of layoutListener had to be moved here so it could be exported +layoutListener = function(keyEvent) { + switch(keyEvent.key) { + case 's': + toggleShowAll(cElm); + break; + case 'v': + toggleHorizontal(cElm); + } +}; + +function startSlides(contentElm, navElm, url) { + cElm = contentElm; + nElm = navElm; + + // XMLHttpRequest is the key to "AJAX" + // Many libraries will provide easier function for this + var xlr = new XMLHttpRequest(); + xlr.open('GET', url, true); + xlr.send(); + /* The simplest event listener is just a call-back function. + * This is the first step to asynchronous execution */ + xlr.addEventListener('readystatechange', function() { + contents = this.responseText; + /* I'm doing a timeout just to show callbacks and binding arguments */ + if (this.readyState === XMLHttpRequest.DONE && this.status === 200) { + window.setTimeout(setup.bind(this, contentElm, navElm), 500); + } + }); /* often there will be some combo of braces, parens, and semicolons + to finish of statements, either because of call-backs or scope */ + + /* Because these functions are defined inside `startSlides()`, + * they cannot be accessed outside of the current scope. + * They are hoisted, so that they can be used earlier in the function. */ + function setup(contentElm, navElm) { + renderContents(contentElm, this.responseText); + navElm.innerHTML = ''; + genNavbar(navElm, contentElm); + // On loading, we determine which slide to show based on the hash + var h = location.hash; + if (h === '') + selectSlide(cElm.children[0]); + else { + let slideIndex = parseInt(h.slice(1)) - 1; + selectSlide(cElm.children[slideIndex]); + } + } + + function renderContents(rootElm, contents) { + /* Setting the innerHTML will remove all elements there, generate + * a new DOM tree from the HTML, add attach it to the root element. + */ + rootElm.innerHTML = ''; + for (let elm of makeSlideElements(contents, true)) + rootElm.appendChild(elm); + rootElm.children[0].classList.add('shown'); + } + + /* Handle the hotkeys for switching slides + * Again, we just use an anonymous function */ + window.addEventListener('keyup', function(keyEvent) { + // switch-case statements are useful for handling inputs + switch(keyEvent.key) { + case 'h': + case 'ArrowLeft': + prevSlide(); + break; + case 'l': + case ' ': + case 'ArrowRight': + nextSlide(); + break; + case 'j': + //case 'ArrowDown': + selectSlide(cElm.lastElementChild); + break; + case 'k': + //case 'ArrowUp': + selectSlide(cElm.firstElementChild); + break; + } + }, true); /* `true` sets the order of evaluation of events (bubbling) + it has no effect here, but you can be aware of it */ + + /* Handle hotkeys for changing the layout + * notice that the event listeners are both run + * By using a named listener, we can remove this functionality + * with `.removeEventListener` + */ + window.addEventListener('keyup', layoutListener); + + // This handles the user changing the hash on the url + window.onpopstate = function () { + var slideIndex = location.hash.slice(1)-1; + selectSlide(cElm.children[slideIndex]); + } + +} + +/* making the nav bar (actually used by the startSlides function, but hoisted from here + */ +function genNavbar(navElm, contentElm) { + // sometimes people predefine all variables at the start + var prevButton, nextButton; + /* Complicated elements can involve a lot of statements + * HTML5 added `